Sync delta specs from a change to main specs.
This is an agent-driven operation - you will read delta specs and directly edit main specs to apply the changes. This allows intelligent merging (e.g., adding a scenario without copying the entire requirement).
Store selection: If the user names a store (a store is a standalone OpenSpec repo registered on this machine) or the work lives in one, run openspec store list --json to discover registered store ids, then pass --store <id> on the commands that read or write specs and changes (new change, status, instructions, list, show, validate, archive, doctor, context, schemas, view). Once selected, treat --store <id> as sticky for the rest of the workflow. Every unscoped example of those commands below is shorthand: before running it, append the flag. For example, run openspec status --change "<name>" --json --store "<id>", not the unscoped form shown below. Other commands do not take the flag. Hints printed by commands already carry the flag; keep it on follow-ups. Without a store, commands act on the nearest local openspec/ root.
Project check: These steps expect a project that already uses OpenSpec. Before the first step that writes anything (new change, archive, sync specs, or authoring an artifact file), confirm the project has a root: run openspec list --json (with --store <id> when a store is selected, since the store is then the root) and read root. A root object means the project is set up. "root": null means it is not - there is no openspec/ directory here, and a write such as openspec new change would create one as a side effect. The command also exits non-zero, which is that answer rather than a broken CLI, so read the JSON instead of retrying or working around it.
One "root": null is not about setup: when a status error message starts with Declared in or Invalid store declaration in and names this project's openspec/config.yaml (or config.yml), the project does use OpenSpec through a store it declares, which this machine cannot resolve (the store is not registered, or the store: line is malformed). Do not treat it as uninitialized and skip the branches below: stop before writing and show the user that error's message and fix.
Otherwise, with no root, what happens next depends on how this workflow was reached:
- Auto-selected: you chose this workflow yourself, without the user naming OpenSpec, naming this skill, or running its slash command. Stop using OpenSpec and answer the request normally, as you would with no OpenSpec installed. Do not ask them to set anything up and do not mention OpenSpec setup.
- Explicit OpenSpec request: the user named OpenSpec, named this skill, or ran its slash command. Stop before writing and ask how to proceed: set this project up (
openspec init), target a store they already have (--store <id>), or continue without OpenSpec for this request. Wait for their answer.
In both branches, never create the root as a side effect: do not run openspec init until the user asks for it, do not hand-create openspec/ files, and do not let a command create it.
<capability-path> is the spec directory relative to specs/ (for example, user-auth or identity/user-auth). Preserve the full path from each delta spec when resolving its main spec.
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
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 ask the user to select one
When prompting, show changes that have delta specs (under specs/ directory).
Always announce: "Using change: " and how to override (e.g., /opsx:sync <other>).
Resolve change context
Run:
openspec status --change "<name>" --json
The JSON includes planningHome.root. Main specs live under <planningHome.root>/openspec/specs/ — use that (store-aware) root for every main-spec path below, not a hardcoded repo path. When a store is selected it points at the store, not the current repository.
Find delta specs
Use artifactPaths.specs.existingOutputPaths from the status JSON as the
only source of delta spec paths. If the specs entry is missing or
existingOutputPaths is empty, report that there are no delta specs to sync,
do not infer them from other artifacts, and stop without requesting artifact
instructions or writing a main spec.
Sync every path in existingOutputPaths unless the caller narrowed the set.
A caller narrows it by naming an explicit list of complete entries from
existingOutputPaths — copy those absolute values verbatim. Archive does
this inline, and a user can too (for example, by selecting the entry ending
in /specs/billing/invoices/spec.md).
Then sync only the named paths and leave the remaining delta specs untouched:
bulk archive excludes a delta whose implementation it could not find, and
syncing it anyway would write a main spec the caller deliberately withheld.
Carry that narrowed selection through step 4; never widen it back to the full
list. If a named path is not in existingOutputPaths, do not sync it —
report it and stop, rather than dropping it silently. If the named list is
empty, report that there is nothing to sync and stop without writing a main
spec.
Each delta spec file contains sections like:
## ADDED Requirements - New requirements to add
## MODIFIED Requirements - Changes to existing requirements
## REMOVED Requirements - Requirements to remove
## RENAMED Requirements - Requirements to rename (FROM:/TO: format)
If no delta specs found, inform user and stop.
For each delta spec, apply changes to main specs
Before the first main-spec write, obtain one current specs-rule snapshot:
- If archive invoked this workflow inline and supplied a valid snapshot from
openspec instructions specs --change "<name>" --json, reuse it and do not
fetch the same instructions again.
- Otherwise run that command once now with the same selected-root flags.
- If the direct lookup exits non-zero or returns invalid artifact-instruction
JSON, report the error and stop before writing any main spec. Do not treat the
failure as an absent rule set.
- A valid response with omitted
rules means no artifact rules are configured
and the existing semantic merge continues.
Apply returned rules only to the content and form of the main specs produced
by this merge. Artifact rules are not operation guidance and cannot change
selected roots, delta paths, CLI checks, or workflow steps. Use their text as
constraints without copying it verbatim into a main spec or summary.
For each capability delta spec path selected in step 3 — the full existingOutputPaths list, or the narrowed subset when a caller supplied one (these may belong to a selected store, not the repo):
a. Read the delta spec to understand the intended changes
b. Read the main spec at <planningHome.root>/openspec/specs/<capability-path>/spec.md (may not exist yet)
If it does not exist yet (a new capability), match what openspec archive does:
only ADDED requirements may be applied - step d creates the spec from them.
MODIFIED and RENAMED have no requirement to act on, so stop the sync for that
capability and report that its main spec does not exist and only ADDED is allowed
for a new spec; never invent the missing requirement. REMOVED has nothing to
remove - skip it and warn.
c. Apply changes intelligently:
ADDED Requirements:
- If requirement doesn't exist in main spec → add it
- If requirement already exists → update it to match (treat as implicit MODIFIED)
MODIFIED Requirements:
- Find the requirement in main spec
- Apply the changes - this can be:
- Adding new scenarios the main spec does not have yet
- Modifying existing scenarios
- Changing the requirement description
- Preserve scenarios/content not mentioned in the delta
REMOVED Requirements:
- Remove the entire requirement block from main spec
- Retiring the capability. Delete the whole
spec.md - and the directory once
nothing else is left in it - only when ALL of these hold:
- removing the requirements this run left no requirement blocks;
- the rest of the spec is well-formed (it still has a
## Purpose);
- the main spec was not already empty before this sync - if you removed
nothing, change nothing;
- every other nonblank line in the whole file is accounted for as the
title, Purpose, Requirements header, or a canonical requirement's
statement, scenarios, or fenced examples;
- the change's
.openspec.yaml declares retire_capabilities: true;
- the
spec.md resolves inside the real specs root (do not follow a
capability-directory symlink to delete an external file).
If removing the selected requirements would leave no requirement blocks and
any retirement condition is not satisfied, do not modify the main spec. Stop
the sync for that capability, report the blocking condition, and tell the user
how to resolve it. Never write or leave an empty ## Requirements section.
When only the marker is missing, say that too - it is the one thing the user
can add to make the retirement go through.
- Deleting the file also deletes its
## Purpose; any other section blocks
retirement. Name Purpose when you report the retirement. Include a pasteable
git checkout only when the spec lived in the caller's checkout;
otherwise give checkout-scoped recovery guidance.
RENAMED Requirements:
- Find the FROM requirement, rename to TO
## Purpose in the delta:
- The main spec already has one and it is authoritative - leave it alone
(this is what
openspec archive does; it warns and moves on)
d. Create new main spec if capability doesn't exist yet:
- Only when the delta has ADDED requirements to put in it and no MODIFIED or
RENAMED requirements blocked this capability in step b. Otherwise create nothing
and leave the specs directory untouched. For a REMOVED-only delta, if the change's
.openspec.yaml declares retire_capabilities: true, report it as already retired
and continue without recreating the spec. Without that marker, report the sync as blocked:
openspec archive rejects it with Spec must have at least one requirement.
An empty delta has no operations to sync; report it as blocked too.
Never write an empty ## Requirements section.
- Create
<planningHome.root>/openspec/specs/<capability-path>/spec.md
- Add Purpose section: copy the delta's
## Purpose body verbatim when it has one
(this is what openspec archive does); only write a brief TBD placeholder when it does not
- Add Requirements section with the ADDED requirements
- Follow the Main Spec Format Reference below
Validate updated main specs
Run openspec validate --specs with the same selected-root flags used earlier.
If validation fails, report the problems and do not claim the sync succeeded.
Show summary
After applying all changes, summarize:
- Which capabilities were updated
- What changes were made (requirements added/modified/removed/renamed)
- Any new main spec left with a TBD Purpose placeholder, so it gets written
now rather than lingering
- Any capability retired, naming the deleted
spec.md, its Purpose, and
either a pasteable git checkout or checkout-scoped recovery guidance
Delta Spec Format Reference
# Spec Delta
## Purpose
Only on a delta that introduces a brand-new capability. Seeds the new main spec.
## ADDED Requirements
### Requirement: New Feature
The system SHALL do something new.
#### Scenario: Basic case
- **WHEN** user does X
- **THEN** system does Y
## MODIFIED Requirements
### Requirement: Existing Feature
The system SHALL keep doing the existing thing, now also handling A.
#### Scenario: Scenario the main spec already has
- **WHEN** user does X
- **THEN** system does Y
#### Scenario: New scenario to add
- **WHEN** user does A
- **THEN** system does B
## REMOVED Requirements
### Requirement: Deprecated Feature
## RENAMED Requirements
- FROM: `### Requirement: Old Name`
- TO: `### Requirement: New Name`
Main Spec Format Reference
Main specs are what the delta merges INTO. They must never contain delta operation headers (## ADDED/MODIFIED/REMOVED/RENAMED Requirements) - after syncing, every requirement lives under a single ## Requirements section:
# <capability> Specification
## Purpose
Short description of what this capability does and why it exists.
## Requirements
### Requirement: New Feature
The system SHALL do something new.
#### Scenario: Basic case
- **WHEN** user does X
- **THEN** system does Y
Key Principle: Intelligent Merging
Unlike programmatic merging, you merge rather than overwrite:
- A MODIFIED block carries the whole requirement - body plus every scenario that survives the change.
openspec validate and openspec archive both reject one that drops a scenario the main spec still has.
- Keep anything the delta does not mention, in the main spec's existing order
- Use your judgment to merge changes sensibly
Output On Success
## Specs Synced: <change-name>
Updated main specs:
**<capability-1>**:
- Added requirement: "New Feature"
- Modified requirement: "Existing Feature" (added 1 scenario)
**<capability-2>**:
- Created new spec file
- Added requirement: "Another Feature"
Main specs are now updated. The change remains active - archive when implementation is complete.
Guardrails
- Read both delta and main specs before making changes
- Preserve existing content not mentioned in delta
- Never copy a delta file into a main spec as-is - merge its content so the main spec keeps the Main Spec Format Reference structure, with no delta operation headers
- If something is unclear, ask for clarification
- Show what you're changing as you go
- The operation should be idempotent - running twice should give same result
- Use only
artifactPaths.specs.existingOutputPaths; never infer delta specs from unrelated artifacts
- Honor a caller-supplied subset of
existingOutputPaths; never widen it back to the full list
- Fetch specs instructions once for direct sync, or reuse the archive-supplied snapshot inline
- Stop before every main-spec write on a non-zero or invalid JSON specs-instruction response
- Artifact rules constrain only the specs being written and are never copied into output files
1---2name: openspec-sync-specs3description: Sync delta specs from an OpenSpec change to main specs. Use when the user wants to update main specs with changes from a delta spec, without archiving the change. Also use when the user says "openspec sync" or "opsx sync".4license: MIT5---67Sync delta specs from a change to main specs.89This is an **agent-driven** operation - you will read delta specs and directly edit main specs to apply the changes. This allows intelligent merging (e.g., adding a scenario without copying the entire requirement).1011**Store selection:** If the user names a store (a store is a standalone OpenSpec repo registered on this machine) or the work lives in one, run `openspec store list --json` to discover registered store ids, then pass `--store <id>` on the commands that read or write specs and changes (`new change`, `status`, `instructions`, `list`, `show`, `validate`, `archive`, `doctor`, `context`, `schemas`, `view`). Once selected, treat `--store <id>` as sticky for the rest of the workflow. Every unscoped example of those commands below is shorthand: before running it, append the flag. For example, run `openspec status --change "<name>" --json --store "<id>"`, not the unscoped form shown below. Other commands do not take the flag. Hints printed by commands already carry the flag; keep it on follow-ups. Without a store, commands act on the nearest local `openspec/` root.1213**Project check:** These steps expect a project that already uses OpenSpec. Before the first step that writes anything (`new change`, `archive`, `sync specs`, or authoring an artifact file), confirm the project has a root: run `openspec list --json` (with `--store <id>` when a store is selected, since the store is then the root) and read `root`. A root object means the project is set up. `"root": null` means it is not - there is no `openspec/` directory here, and a write such as `openspec new change` would create one as a side effect. The command also exits non-zero, which is that answer rather than a broken CLI, so read the JSON instead of retrying or working around it.1415One `"root": null` is not about setup: when a `status` error message starts with `Declared in` or `Invalid store declaration in` and names this project's `openspec/config.yaml` (or `config.yml`), the project does use OpenSpec through a store it declares, which this machine cannot resolve (the store is not registered, or the `store:` line is malformed). Do not treat it as uninitialized and skip the branches below: stop before writing and show the user that error's `message` and `fix`.1617Otherwise, with no root, what happens next depends on how this workflow was reached:1819- **Auto-selected**: you chose this workflow yourself, without the user naming OpenSpec, naming this skill, or running its slash command. Stop using OpenSpec and answer the request normally, as you would with no OpenSpec installed. Do not ask them to set anything up and do not mention OpenSpec setup.20- **Explicit OpenSpec request**: the user named OpenSpec, named this skill, or ran its slash command. Stop before writing and ask how to proceed: set this project up (`openspec init`), target a store they already have (`--store <id>`), or continue without OpenSpec for this request. Wait for their answer.2122In both branches, never create the root as a side effect: do not run `openspec init` until the user asks for it, do not hand-create `openspec/` files, and do not let a command create it.2324`<capability-path>` is the spec directory relative to `specs/` (for example, `user-auth` or `identity/user-auth`). Preserve the full path from each delta spec when resolving its main spec.2526**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.2728**Steps**29301. **Select the change**3132 If a name is provided, use it. Otherwise:33 - Infer from conversation context if the user mentioned a change34 - Auto-select if only one active change exists35 - If ambiguous, run `openspec list --json` to get available changes and ask the user to select one3637 When prompting, show changes that have delta specs (under `specs/` directory).3839 Always announce: "Using change: <name>" and how to override (e.g., `/opsx:sync <other>`).40412. **Resolve change context**4243 Run:44 ```bash45 openspec status --change "<name>" --json46 ```4748 The JSON includes `planningHome.root`. Main specs live under `<planningHome.root>/openspec/specs/` — use that (store-aware) root for every main-spec path below, not a hardcoded repo path. When a store is selected it points at the store, not the current repository.49503. **Find delta specs**5152 Use `artifactPaths.specs.existingOutputPaths` from the status JSON as the53 only source of delta spec paths. If the `specs` entry is missing or54 `existingOutputPaths` is empty, report that there are no delta specs to sync,55 do not infer them from other artifacts, and stop without requesting artifact56 instructions or writing a main spec.5758 Sync every path in `existingOutputPaths` unless the caller narrowed the set.59 A caller narrows it by naming an explicit list of complete entries from60 `existingOutputPaths` — copy those absolute values verbatim. Archive does61 this inline, and a user can too (for example, by selecting the entry ending62 in `/specs/billing/invoices/spec.md`).63 Then sync only the named paths and leave the remaining delta specs untouched:64 bulk archive excludes a delta whose implementation it could not find, and65 syncing it anyway would write a main spec the caller deliberately withheld.66 Carry that narrowed selection through step 4; never widen it back to the full67 list. If a named path is not in `existingOutputPaths`, do not sync it —68 report it and stop, rather than dropping it silently. If the named list is69 empty, report that there is nothing to sync and stop without writing a main70 spec.7172 Each delta spec file contains sections like:73 - `## ADDED Requirements` - New requirements to add74 - `## MODIFIED Requirements` - Changes to existing requirements75 - `## REMOVED Requirements` - Requirements to remove76 - `## RENAMED Requirements` - Requirements to rename (FROM:/TO: format)7778 If no delta specs found, inform user and stop.79804. **For each delta spec, apply changes to main specs**8182 Before the first main-spec write, obtain one current specs-rule snapshot:83 - If archive invoked this workflow inline and supplied a valid snapshot from84 `openspec instructions specs --change "<name>" --json`, reuse it and do not85 fetch the same instructions again.86 - Otherwise run that command once now with the same selected-root flags.87 - If the direct lookup exits non-zero or returns invalid artifact-instruction88 JSON, report the error and stop before writing any main spec. Do not treat the89 failure as an absent rule set.90 - A valid response with omitted `rules` means no artifact rules are configured91 and the existing semantic merge continues.9293 Apply returned `rules` only to the content and form of the main specs produced94 by this merge. Artifact rules are not operation guidance and cannot change95 selected roots, delta paths, CLI checks, or workflow steps. Use their text as96 constraints without copying it verbatim into a main spec or summary.9798 For each capability delta spec path selected in step 3 — the full `existingOutputPaths` list, or the narrowed subset when a caller supplied one (these may belong to a selected store, not the repo):99100 a. **Read the delta spec** to understand the intended changes101102 b. **Read the main spec** at `<planningHome.root>/openspec/specs/<capability-path>/spec.md` (may not exist yet)103104 **If it does not exist yet** (a new capability), match what `openspec archive` does:105 only ADDED requirements may be applied - step d creates the spec from them.106 MODIFIED and RENAMED have no requirement to act on, so stop the sync for that107 capability and report that its main spec does not exist and only ADDED is allowed108 for a new spec; never invent the missing requirement. REMOVED has nothing to109 remove - skip it and warn.110111 c. **Apply changes intelligently**:112113 **ADDED Requirements:**114 - If requirement doesn't exist in main spec → add it115 - If requirement already exists → update it to match (treat as implicit MODIFIED)116117 **MODIFIED Requirements:**118 - Find the requirement in main spec119 - Apply the changes - this can be:120 - Adding new scenarios the main spec does not have yet121 - Modifying existing scenarios122 - Changing the requirement description123 - Preserve scenarios/content not mentioned in the delta124125 **REMOVED Requirements:**126 - Remove the entire requirement block from main spec127 - Retiring the capability. Delete the whole `spec.md` - and the directory once128 nothing else is left in it - only when ALL of these hold:129 1. removing the requirements *this run* left no requirement blocks;130 2. the rest of the spec is well-formed (it still has a `## Purpose`);131 3. the main spec was not already empty before this sync - if you removed132 nothing, change nothing;133 4. every other nonblank line in the whole file is accounted for as the134 title, Purpose, Requirements header, or a canonical requirement's135 statement, scenarios, or fenced examples;136 5. the change's `.openspec.yaml` declares `retire_capabilities: true`;137 6. the `spec.md` resolves inside the real specs root (do not follow a138 capability-directory symlink to delete an external file).139 If removing the selected requirements would leave no requirement blocks and140 any retirement condition is not satisfied, do not modify the main spec. Stop141 the sync for that capability, report the blocking condition, and tell the user142 how to resolve it. Never write or leave an empty `## Requirements` section.143 When only the marker is missing, say that too - it is the one thing the user144 can add to make the retirement go through.145 - Deleting the file also deletes its `## Purpose`; any other section blocks146 retirement. Name Purpose when you report the retirement. Include a pasteable147 `git checkout` only when the spec lived in the caller's checkout;148 otherwise give checkout-scoped recovery guidance.149150 **RENAMED Requirements:**151 - Find the FROM requirement, rename to TO152153 **`## Purpose` in the delta:**154 - The main spec already has one and it is authoritative - leave it alone155 (this is what `openspec archive` does; it warns and moves on)156157 d. **Create new main spec** if capability doesn't exist yet:158 - Only when the delta has ADDED requirements to put in it and no MODIFIED or159 RENAMED requirements blocked this capability in step b. Otherwise create nothing160 and leave the specs directory untouched. For a REMOVED-only delta, if the change's161 `.openspec.yaml` declares `retire_capabilities: true`, report it as already retired162 and continue without recreating the spec. Without that marker, report the sync as blocked:163 `openspec archive` rejects it with `Spec must have at least one requirement`.164 An empty delta has no operations to sync; report it as blocked too.165 Never write an empty `## Requirements` section.166 - Create `<planningHome.root>/openspec/specs/<capability-path>/spec.md`167 - Add Purpose section: copy the delta's `## Purpose` body verbatim when it has one168 (this is what `openspec archive` does); only write a brief TBD placeholder when it does not169 - Add Requirements section with the ADDED requirements170 - Follow the **Main Spec Format Reference** below1711725. **Validate updated main specs**173174 Run `openspec validate --specs` with the same selected-root flags used earlier.175 If validation fails, report the problems and do not claim the sync succeeded.1761776. **Show summary**178179 After applying all changes, summarize:180 - Which capabilities were updated181 - What changes were made (requirements added/modified/removed/renamed)182 - Any new main spec left with a TBD Purpose placeholder, so it gets written183 now rather than lingering184 - Any capability retired, naming the deleted `spec.md`, its Purpose, and185 either a pasteable `git checkout` or checkout-scoped recovery guidance186187**Delta Spec Format Reference**188189```markdown190# Spec Delta191192## Purpose193194Only on a delta that introduces a brand-new capability. Seeds the new main spec.195196## ADDED Requirements197198### Requirement: New Feature199The system SHALL do something new.200201#### Scenario: Basic case202- **WHEN** user does X203- **THEN** system does Y204205## MODIFIED Requirements206207### Requirement: Existing Feature208The system SHALL keep doing the existing thing, now also handling A.209210#### Scenario: Scenario the main spec already has211- **WHEN** user does X212- **THEN** system does Y213214#### Scenario: New scenario to add215- **WHEN** user does A216- **THEN** system does B217218## REMOVED Requirements219220### Requirement: Deprecated Feature221222## RENAMED Requirements223224- FROM: `### Requirement: Old Name`225- TO: `### Requirement: New Name`226```227228**Main Spec Format Reference**229230Main specs are what the delta merges INTO. They must never contain delta operation headers (`## ADDED/MODIFIED/REMOVED/RENAMED Requirements`) - after syncing, every requirement lives under a single `## Requirements` section:231232```markdown233# <capability> Specification234235## Purpose236Short description of what this capability does and why it exists.237238## Requirements239240### Requirement: New Feature241The system SHALL do something new.242243#### Scenario: Basic case244- **WHEN** user does X245- **THEN** system does Y246```247248**Key Principle: Intelligent Merging**249250Unlike programmatic merging, you merge rather than overwrite:251- A MODIFIED block carries the whole requirement - body plus every scenario that survives the change. `openspec validate` and `openspec archive` both reject one that drops a scenario the main spec still has.252- Keep anything the delta does not mention, in the main spec's existing order253- Use your judgment to merge changes sensibly254255**Output On Success**256257```markdown258## Specs Synced: <change-name>259260Updated main specs:261262**<capability-1>**:263- Added requirement: "New Feature"264- Modified requirement: "Existing Feature" (added 1 scenario)265266**<capability-2>**:267- Created new spec file268- Added requirement: "Another Feature"269270Main specs are now updated. The change remains active - archive when implementation is complete.271```272273**Guardrails**274- Read both delta and main specs before making changes275- Preserve existing content not mentioned in delta276- Never copy a delta file into a main spec as-is - merge its content so the main spec keeps the Main Spec Format Reference structure, with no delta operation headers277- If something is unclear, ask for clarification278- Show what you're changing as you go279- The operation should be idempotent - running twice should give same result280- Use only `artifactPaths.specs.existingOutputPaths`; never infer delta specs from unrelated artifacts281- Honor a caller-supplied subset of `existingOutputPaths`; never widen it back to the full list282- Fetch specs instructions once for direct sync, or reuse the archive-supplied snapshot inline283- Stop before every main-spec write on a non-zero or invalid JSON specs-instruction response284- Artifact rules constrain only the specs being written and are never copied into output files