openspec-apply-change — for Claude Code openspec-apply-change, powershellScripts, community, for Claude Code, ide skills, openspec list --json, opsx:apply <other>, Parse the JSON to understand, state: "blocked", state: "all_done"

v1.0

À propos de ce Skill

Scenario recommande : Ideal for AI agents that need implement tasks from an openspec change. Resume localise : Implement tasks from an OpenSpec change. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Fonctionnalités

Implement tasks from an OpenSpec change.
If a name is provided, use it. Otherwise:
Infer from conversation context if the user mentioned a change
Auto-select if only one active change exists
If ambiguous, run openspec list --json to get available changes and use the AskUserQuestion tool

# Core Topics

mudssky mudssky
[1]
[0]
Updated: 3/28/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
10/11
Quality Score
60
Canonical Locale
en
Detected Body Locale
en

Scenario recommande : Ideal for AI agents that need implement tasks from an openspec change. Resume localise : Implement tasks from an OpenSpec change. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Pourquoi utiliser cette compétence

Recommandation : openspec-apply-change helps agents implement tasks from an openspec change. Implement tasks from an OpenSpec change. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Meilleur pour

Scenario recommande : Ideal for AI agents that need implement tasks from an openspec change.

Cas d'utilisation exploitables for openspec-apply-change

Cas d'usage : Applying Implement tasks from an OpenSpec change
Cas d'usage : Applying If a name is provided, use it. Otherwise:
Cas d'usage : Applying Infer from conversation context if the user mentioned a change

! Sécurité et Limitations

  • Limitation : Auto-select if only one active change exists
  • Limitation : If vague or ambiguous you MUST prompt for available changes
  • Limitation : Requires repository-specific context from the skill documentation

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is openspec-apply-change?

Scenario recommande : Ideal for AI agents that need implement tasks from an openspec change. Resume localise : Implement tasks from an OpenSpec change. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install openspec-apply-change?

Run the command: npx killer-skills add mudssky/powershellScripts/openspec-apply-change. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for openspec-apply-change?

Key use cases include: Cas d'usage : Applying Implement tasks from an OpenSpec change, Cas d'usage : Applying If a name is provided, use it. Otherwise:, Cas d'usage : Applying Infer from conversation context if the user mentioned a change.

Which IDEs are compatible with openspec-apply-change?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for openspec-apply-change?

Limitation : Auto-select if only one active change exists. Limitation : If vague or ambiguous you MUST prompt for available changes. Limitation : Requires repository-specific context from the skill documentation.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add mudssky/powershellScripts/openspec-apply-change. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use openspec-apply-change immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

openspec-apply-change

Implement tasks from an OpenSpec change. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows. Implement tasks from an OpenSpec change.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Implement tasks from an OpenSpec change.

Input: Optionally specify a change name. If omitted, check if it can be inferred from conversation context. If vague or ambiguous you MUST prompt for available changes.

Steps

  1. Select the change

    If a name is provided, use it. Otherwise:

    • Infer from conversation context if the user mentioned a change
    • Auto-select if only one active change exists
    • If ambiguous, run openspec list --json to get available changes and use the AskUserQuestion tool to let the user select

    Always announce: "Using change: <name>" and how to override (e.g., /opsx:apply <other>).

  2. Check status to understand the schema

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

    Parse the JSON to understand:

    • schemaName: The workflow being used (e.g., "spec-driven")
    • Which artifact contains the tasks (typically "tasks" for spec-driven, check status for others)
  3. Get apply instructions

    bash
    1openspec instructions apply --change "<name>" --json

    This returns:

    • Context file paths (varies by schema - could be proposal/specs/design/tasks or spec/tests/implementation/docs)
    • Progress (total, complete, remaining)
    • Task list with status
    • Dynamic instruction based on current state

    Handle states:

    • If state: "blocked" (missing artifacts): show message, suggest using openspec-continue-change
    • If state: "all_done": congratulate, suggest archive
    • Otherwise: proceed to implementation
  4. Read context files

    Read the files listed in contextFiles from the apply instructions output. The files depend on the schema being used:

    • spec-driven: proposal, specs, design, tasks
    • Other schemas: follow the contextFiles from CLI output
  5. Show current progress

    Display:

    • Schema being used
    • Progress: "N/M tasks complete"
    • Remaining tasks overview
    • Dynamic instruction from CLI
  6. Implement tasks (loop until done or blocked)

    For each pending task:

    • Show which task is being worked on
    • Make the code changes required
    • Keep changes minimal and focused
    • Mark task complete in the tasks file: - [ ]- [x]
    • Continue to next task

    Pause if:

    • Task is unclear → ask for clarification
    • Implementation reveals a design issue → suggest updating artifacts
    • Error or blocker encountered → report and wait for guidance
    • User interrupts
  7. On completion or pause, show status

    Display:

    • Tasks completed this session
    • Overall progress: "N/M tasks complete"
    • If all done: suggest archive
    • If paused: explain why and wait for guidance

Output During Implementation

text
1## Implementing: <change-name> (schema: <schema-name>) 2 3Working on task 3/7: <task description> 4[...implementation happening...] 5✓ Task complete 6 7Working on task 4/7: <task description> 8[...implementation happening...] 9✓ Task complete

Output On Completion

text
1## Implementation Complete 2 3**Change:** <change-name> 4**Schema:** <schema-name> 5**Progress:** 7/7 tasks complete ✓ 6 7### Completed This Session 8- [x] Task 1 9- [x] Task 2 10... 11 12All tasks complete! Ready to archive this change.

Output On Pause (Issue Encountered)

text
1## Implementation Paused 2 3**Change:** <change-name> 4**Schema:** <schema-name> 5**Progress:** 4/7 tasks complete 6 7### Issue Encountered 8<description of the issue> 9 10**Options:** 111. <option 1> 122. <option 2> 133. Other approach 14 15What would you like to do?

Guardrails

  • Keep going through tasks until done or blocked
  • Always read context files before starting (from the apply instructions output)
  • If task is ambiguous, pause and ask before implementing
  • If implementation reveals issues, pause and suggest artifact updates
  • Keep code changes minimal and scoped to each task
  • Update task checkbox immediately after completing each task
  • Pause on errors, blockers, or unclear requirements - don't guess
  • Use contextFiles from CLI output, don't assume specific file names

Fluid Workflow Integration

This skill supports the "actions on a change" model:

  • Can be invoked anytime: Before all artifacts are done (if tasks exist), after partial implementation, interleaved with other actions
  • Allows artifact updates: If implementation reveals design issues, suggest updating artifacts - not phase-locked, work fluidly

Compétences associées

Looking for an alternative to openspec-apply-change or another community skill for your workflow? Explore these related open-source skills.

Voir tout

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

widget-generator

Logo of f
f

Générez des plugins de widgets personnalisables pour le système de flux prompts.chat

flags

Logo of vercel
vercel

Le Cadre de Réaction

138.4k
0
Navigateur

pr-review

Logo of pytorch
pytorch

Tenseurs et réseaux neuronaux dynamiques en Python avec une forte accélération GPU

98.6k
0
Développeur