openspec-ff-change

द्वारा rivet-dev

OpenSpec आर्टिफैक्ट निर्माण के माध्यम से तेज़ी से आगे बढ़ें। उपयोग करें जब उपयोगकर्ता चरण-दर-चरण किए बिना कार्यान्वयन के लिए आवश्यक सभी आर्टिफैक्ट जल्दी से बनाना चाहता है…

npx skills add https://github.com/rivet-dev/actors --skill openspec-ff-change

Fast-forward through artifact creation - generate everything needed to start implementation in one go.

Input: The user's request should include a change name (kebab-case) OR a description of what they want to build.

Steps

  1. If no clear input provided, ask what they want to build

    Use the AskUserQuestion tool (open-ended, no preset options) to ask:

    "What change do you want to work on? Describe what you want to build or fix."

    From their description, derive a kebab-case name (e.g., "add user authentication" → add-user-auth).

    IMPORTANT: Do NOT proceed without understanding what the user wants to build.

  2. Create the change directory

    openspec new change "<name>"
    

    This creates a scaffolded change at openspec/changes/<name>/.

  3. Get the artifact build order

    openspec status --change "<name>" --json
    

    Parse the JSON to get:

    • applyRequires: array of artifact IDs needed before implementation (e.g., ["tasks"])
    • artifacts: list of all artifacts with their status and dependencies
  4. Create artifacts in sequence until apply-ready

    Use the TodoWrite tool to track progress through the artifacts.

    Loop through artifacts in dependency order (artifacts with no pending dependencies first):

    a. For each artifact that is ready (dependencies satisfied):

    • Get instructions:
      openspec instructions <artifact-id> --change "<name>" --json
      
    • The instructions JSON includes:
      • context: Project background (constraints for you - do NOT include in output)
      • rules: Artifact-specific rules (constraints for you - do NOT include in output)
      • template: The structure to use for your output file
      • instruction: Schema-specific guidance for this artifact type
      • outputPath: Where to write the artifact
      • dependencies: Completed artifacts to read for context
    • Read any completed dependency files for context
    • Create the artifact file using template as the structure
    • Apply context and rules as constraints - but do NOT copy them into the file
    • Show brief progress: "✓ Created "

    b. Continue until all applyRequires artifacts are complete

    • After creating each artifact, re-run openspec status --change "<name>" --json
    • Check if every artifact ID in applyRequires has status: "done" in the artifacts array
    • Stop when all applyRequires artifacts are done

    c. If an artifact requires user input (unclear context):

    • Use AskUserQuestion tool to clarify
    • Then continue with creation
  5. Show final status

    openspec status --change "<name>"
    

Output

After completing all artifacts, summarize:

  • Change name and location
  • List of artifacts created with brief descriptions
  • What's ready: "All artifacts created! Ready for implementation."
  • Prompt: "Run /opsx-apply or ask me to implement to start working on the tasks."

Artifact Creation Guidelines

  • Follow the instruction field from openspec instructions for each artifact type
  • The schema defines what each artifact should contain - follow it
  • Read dependency artifacts for context before creating new ones
  • Use template as the structure for your output file - fill in its sections
  • IMPORTANT: context and rules are constraints for YOU, not content for the file
    • Do NOT copy <context>, <rules>, <project_context> blocks into the artifact
    • These guide what you write, but should never appear in the output

Guardrails

  • Create ALL artifacts needed for implementation (as defined by schema's apply.requires)
  • Always read dependency artifacts before creating a new one
  • If context is critically unclear, ask the user - but prefer making reasonable decisions to keep momentum
  • If a change with that name already exists, suggest continuing that change instead
  • Verify each artifact file exists after writing before proceeding to next

rivet-dev की और Skills

ai-agent
rivet-dev
एक AI एजेंट बैकएंड बनाएं जिसमें स्थायी मेमोरी हो: प्रति वार्तालाप एक Rivet Actor, कतारबद्ध संदेश प्रबंधन, और रीयलटाइम इवेंट के रूप में स्ट्रीमिंग LLM प्रतिक्रियाएँ।
official
ai-agent-workspace
rivet-dev
हर AI एजेंट को अपना कंप्यूटर दें: एक स्थायी कार्यक्षेत्र जिसमें फाइलसिस्टम, प्रक्रियाएं, शेल, नेटवर्किंग और एक हल्के इन-प्रोसेस पर एजेंट सत्र शामिल हों…
official
chat-room
rivet-dev
Rivet Actors के साथ एक रीयलटाइम चैट रूम बैकएंड बनाएं: प्रति कमरा एक एक्टर, SQLite-समर्थित संदेश इतिहास, और हर जुड़े क्लाइंट को WebSocket प्रसारण।
official
collaborative-text-editor
rivet-dev
Yjs CRDTs और Rivet Actors के साथ एक सहयोगी पाठ संपादक बैकएंड बनाएं: प्रति-दस्तावेज़ एक्टर सिंक और जागरूकता अपडेट रिले करते हैं और स्नैपशॉट संग्रहीत करते हैं।
official
cron-jobs
rivet-dev
Rivet Actors के साथ टिकाऊ क्रॉन जॉब्स: schedule.after और schedule.at टाइमर रीस्टार्ट और क्रैश के बाद भी बने रहते हैं, साथ ही recurring जॉब्स को फिर से सक्रिय करना और idempotent हैंडलर शामिल हैं।
official
live-cursors
rivet-dev
Rivet Actors के साथ लाइव कर्सर और मल्टीप्लेयर उपस्थिति: प्रति-कनेक्शन कर्सर स्थिति, इवेंट या रॉ वेबसॉकेट पर रीयलटाइम अपडेट, और थ्रॉटलिंग।
official
per-tenant-database
rivet-dev
प्रति-किरायेदार डेटा पृथक्करण जिसमें प्रति किरायेदार एक Rivet Actor होता है: एक्टर की कुंजी किरायेदार आईडी होती है, जिससे प्रत्येक किरायेदार को अपना पृथक डेटासेट और माइग्रेशन मिलता है।
official
rivetkit-client-javascript
rivet-dev
JavaScript क्लाइंट, Rivet Actors से स्टेटलेस या स्टेटफुल कनेक्शन के माध्यम से जुड़ने के लिए। ब्राउज़र, Node.js और Bun वातावरणों का समर्थन करता है, जिसमें पर्यावरण चर या स्पष्ट कॉन्फ़िगरेशन के माध्यम से स्वचालित एंडपॉइंट पहचान होती है। दो इंटरैक्शन मोड प्रदान करता है: स्वतंत्र अनुरोधों के लिए स्टेटलेस एक्शन कॉल और रीयल-टाइम इवेंट सब्सक्रिप्शन के साथ स्टेटफुल कनेक्शन। onRequest या onWebSocket हैंडलर ल
official