원클릭으로
cospec-apply-change
Run the apply gate for a change and implement its tasks, obeying the gate's exit code.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run the apply gate for a change and implement its tasks, obeying the gate's exit code.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Archive a completed change — validate, merge specs, verify, and fan blockers out.
Archive a batch of completed changes in dependency order, one cospec archive call at a time.
Resume a partially-built change and finish its remaining artifacts.
Investigate the codebase or a spec question without writing implementation code.
Author every remaining artifact on an already-scaffolded change in one pass, then validate.
Scaffold a new change and show its typed artifact plan, then stop before authoring anything.
SOC 직업 분류 기준
| name | cospec-apply-change |
| description | Run the apply gate for a change and implement its tasks, obeying the gate's exit code. |
| license | MIT |
| compatibility | Requires the cospec CLI (@aligned-team/cospec). |
| metadata | {"author":"cospec","generatedBy":"cospec@0.5.1","contentHash":"sha256:6bea0576ce5e31709933b7412fe889e6ea8f75ac24c7732a36bf32cfd9cb6983"} |
Run the deterministic apply gate for a change, then implement its tasks. The
gate is a command whose exit code you must obey — never re-derive it by reading
blocking-changes.md yourself.
If the user named one, use it. Otherwise run cospec list --json and pick, or
ask.
cospec apply <slug> --json
Obey the exit code:
apply.contextFiles and apply.tasks.
Work through the pending tasks in order, marking each - [x] in tasks.md as
you complete it. Pair every code task with its test/verification task. The
gate.synced list shows blocker boxes the command auto-checked because their
dependency is already archived — trust it over a manual read of the file.gate.reason is either missing-artifacts or
hard-blockers. Relay each listed item and what it provides. For a hard
blocker, name the blocking change and suggest implementing and archiving it
first. Do not work around the gate.cospec apply <slug> --allow-soft --json. Never skip silently.When every task is checked, tell the user the change is ready to archive — next
step /cospec:archive.