openspec-new-change

द्वारा rivet-dev

नए OpenSpec परिवर्तन की शुरुआत प्रायोगिक आर्टिफैक्ट वर्कफ़्लो का उपयोग करके करें। तब उपयोग करें जब उपयोगकर्ता एक संरचित... के साथ नई सुविधा, सुधार या संशोधन बनाना चाहता हो।

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

Start a new change using the experimental artifact-driven approach.

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. Determine the workflow schema

    Use the default schema (omit --schema) unless the user explicitly requests a different workflow.

    Use a different schema only if the user mentions:

    • A specific schema name → use --schema <name>
    • "show workflows" or "what workflows" → run openspec schemas --json and let them choose

    Otherwise: Omit --schema to use the default.

  3. Create the change directory

    openspec new change "<name>"
    

    Add --schema <name> only if the user requested a specific workflow. This creates a scaffolded change at openspec/changes/<name>/ with the selected schema.

  4. Show the artifact status

    openspec status --change "<name>"
    

    This shows which artifacts need to be created and which are ready (dependencies satisfied).

  5. Get instructions for the first artifact The first artifact depends on the schema (e.g., proposal for spec-driven). Check the status output to find the first artifact with status "ready".

    openspec instructions <first-artifact-id> --change "<name>"
    

    This outputs the template and context for creating the first artifact.

  6. STOP and wait for user direction

Output

After completing the steps, summarize:

  • Change name and location
  • Schema/workflow being used and its artifact sequence
  • Current status (0/N artifacts complete)
  • The template for the first artifact
  • Prompt: "Ready to create the first artifact? Just describe what this change is about and I'll draft it, or ask me to continue."

Guardrails

  • Do NOT create any artifacts yet - just show the instructions
  • Do NOT advance beyond showing the first artifact template
  • If the name is invalid (not kebab-case), ask for a valid name
  • If a change with that name already exists, suggest continuing that change instead
  • Pass --schema if using a non-default workflow

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