openspec-new-change

Iniciar un nuevo cambio en OpenSpec usando el flujo de trabajo experimental de artefactos. Usar cuando el usuario quiera crear una nueva característica, corrección o modificación con una estructura…

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

Más skills de rivet-dev

ai-agent
rivet-dev
Construye un backend de agente de IA con memoria persistente: un Actor de Rivet por conversación, manejo de mensajes en cola y respuestas de LLM en streaming como eventos en tiempo real.
official
ai-agent-workspace
rivet-dev
Dale a cada agente de IA su propia computadora: un espacio de trabajo persistente con un sistema de archivos, procesos, shells, redes y sesiones de agente en un entorno ligero dentro del proceso…
official
chat-room
rivet-dev
Construye un backend de sala de chat en tiempo real con Rivet Actors: un actor por sala, historial de mensajes respaldado por SQLite y transmisión WebSocket a cada cliente conectado.
official
collaborative-text-editor
rivet-dev
Construye un backend de editor de texto colaborativo con CRDTs de Yjs y Rivet Actors: actores por documento retransmiten actualizaciones de sincronización y conciencia, y persisten instantáneas.
official
cron-jobs
rivet-dev
Trabajos cron duraderos con Rivet Actors: los temporizadores schedule.after y schedule.at sobreviven reinicios y fallos, además de rearmar trabajos recurrentes y manejadores idempotentes.
official
live-cursors
rivet-dev
Cursores en vivo y presencia multijugador con Rivet Actors: estado de cursor por conexión, actualizaciones en tiempo real mediante eventos o WebSockets sin procesar, y limitación de frecuencia.
official
per-tenant-database
rivet-dev
Aislamiento de datos multiinquilino con un Rivet Actor por inquilino: la clave del actor es el id del inquilino, por lo que cada inquilino obtiene su propio conjunto de datos aislado y migraciones.
official
rivetkit-client-javascript
rivet-dev
Cliente JavaScript para conectar con Rivet Actors mediante conexiones stateless o stateful. Compatible con entornos de navegador, Node.js y Bun con detección automática de endpoints mediante variables de entorno o configuración explícita. Ofrece dos modos de interacción: llamadas de acción stateless para solicitudes independientes y conexiones stateful con suscripciones a eventos en tiempo real. Incluye acceso HTTP y WebSocket de bajo nivel para actores que implementan manejadores onRequest o onWebSocket. Proporciona compuestos basados en arreglos...
official