This repository (Asymmetric-al/core)
These repo-owned sections sit above the official OpenSpec skill. Reconcile this
overlay after upstream refreshes before running bun run skills:sync.
Use the locally pinned CLI only: bun run openspec -- <command>. Do not invoke
@latest. Core does not use Stores. Pass an explicit change ID before any
mutating OpenSpec operation. Follow AGENTS.md and docs/ai/rules/openspec.md.
Do not bypass TDD, exact base-maia, data-access boundaries, security, or
repository checks. Do not archive unmerged or incomplete work. Do not run
openspec update against the live customized repository. Do not treat product
runtime Eve as a coding agent.
Allowed-tools metadata includes Bash(bun:*) so the local wrapper can run.
Triggers
- The matching OpenSpec workflow is requested: Explore, Propose, Update, Apply,
Verify, Sync, or Archive.
- Numbered commands
/1-start-project through /4-close-project wrap these
workflows.
Workflow
- Read
openspec/config.yaml, openspec/project.md, and the relevant specs
or active change.
- Invoke
bun run openspec -- with the explicit change ID for mutating work.
- Keep Core TDD, UI, data-boundary, and Guardian rules in force.
- Leave the change active until implementation has merged.
Checklist
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.
<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., /openspec-sync-specs <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)
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:
- 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
## 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 a change to main specs. Use when the user wants to update main specs with changes from a delta spec, without archiving the change.4license: MIT5---67<!-- CORE-OVERLAY-START -->89## This repository (Asymmetric-al/core)1011These repo-owned sections sit above the official OpenSpec skill. Reconcile this12overlay after upstream refreshes before running `bun run skills:sync`.1314Use the locally pinned CLI only: `bun run openspec -- <command>`. Do not invoke15`@latest`. Core does not use Stores. Pass an explicit change ID before any16mutating OpenSpec operation. Follow `AGENTS.md` and `docs/ai/rules/openspec.md`.17Do not bypass TDD, exact `base-maia`, data-access boundaries, security, or18repository checks. Do not archive unmerged or incomplete work. Do not run19`openspec update` against the live customized repository. Do not treat product20runtime Eve as a coding agent.2122Allowed-tools metadata includes `Bash(bun:*)` so the local wrapper can run.2324### Triggers2526- The matching OpenSpec workflow is requested: Explore, Propose, Update, Apply,27 Verify, Sync, or Archive.28- Numbered commands `/1-start-project` through `/4-close-project` wrap these29 workflows.3031### Workflow32331. Read `openspec/config.yaml`, `openspec/project.md`, and the relevant specs34 or active change.352. Invoke `bun run openspec --` with the explicit change ID for mutating work.363. Keep Core TDD, UI, data-boundary, and Guardian rules in force.374. Leave the change active until implementation has merged.3839### Checklist4041- [ ] Local pinned CLI used via `bun run openspec --`42- [ ] Explicit change ID used for mutating operations43- [ ] Stores were not introduced44- [ ] Incomplete or unmerged work was not archived45- [ ] `openspec update` was not run against the live repo46- [ ] Product Eve was not treated as a coding agent4748<!-- CORE-OVERLAY-END -->4950Sync delta specs from a change to main specs.5152This 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).5354**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.5556`<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.5758**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.5960**Steps**61621. **Select the change**6364 If a name is provided, use it. Otherwise:65 - Infer from conversation context if the user mentioned a change66 - Auto-select if only one active change exists67 - If ambiguous, run `openspec list --json` to get available changes and ask the user to select one6869 When prompting, show changes that have delta specs (under `specs/` directory).7071 Always announce: "Using change: <name>" and how to override (e.g., `/openspec-sync-specs <other>`).72732. **Resolve change context**7475 Run:7677 ```bash78 openspec status --change "<name>" --json79 ```8081 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.82833. **Find delta specs**8485 Use `artifactPaths.specs.existingOutputPaths` from the status JSON as the86 only source of delta spec paths. If the `specs` entry is missing or87 `existingOutputPaths` is empty, report that there are no delta specs to sync,88 do not infer them from other artifacts, and stop without requesting artifact89 instructions or writing a main spec.9091 Sync every path in `existingOutputPaths` unless the caller narrowed the set.92 A caller narrows it by naming an explicit list of complete entries from93 `existingOutputPaths` — copy those absolute values verbatim. Archive does94 this inline, and a user can too (for example, by selecting the entry ending95 in `/specs/billing/invoices/spec.md`).96 Then sync only the named paths and leave the remaining delta specs untouched:97 bulk archive excludes a delta whose implementation it could not find, and98 syncing it anyway would write a main spec the caller deliberately withheld.99 Carry that narrowed selection through step 4; never widen it back to the full100 list. If a named path is not in `existingOutputPaths`, do not sync it —101 report it and stop, rather than dropping it silently. If the named list is102 empty, report that there is nothing to sync and stop without writing a main103 spec.104105 Each delta spec file contains sections like:106 - `## ADDED Requirements` - New requirements to add107 - `## MODIFIED Requirements` - Changes to existing requirements108 - `## REMOVED Requirements` - Requirements to remove109 - `## RENAMED Requirements` - Requirements to rename (FROM:/TO: format)110111 If no delta specs found, inform user and stop.1121134. **For each delta spec, apply changes to main specs**114115 Before the first main-spec write, obtain one current specs-rule snapshot:116 - If archive invoked this workflow inline and supplied a valid snapshot from117 `openspec instructions specs --change "<name>" --json`, reuse it and do not118 fetch the same instructions again.119 - Otherwise run that command once now with the same selected-root flags.120 - If the direct lookup exits non-zero or returns invalid artifact-instruction121 JSON, report the error and stop before writing any main spec. Do not treat the122 failure as an absent rule set.123 - A valid response with omitted `rules` means no artifact rules are configured124 and the existing semantic merge continues.125126 Apply returned `rules` only to the content and form of the main specs produced127 by this merge. Artifact rules are not operation guidance and cannot change128 selected roots, delta paths, CLI checks, or workflow steps. Use their text as129 constraints without copying it verbatim into a main spec or summary.130131 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):132133 a. **Read the delta spec** to understand the intended changes134135 b. **Read the main spec** at `<planningHome.root>/openspec/specs/<capability-path>/spec.md` (may not exist yet)136137 c. **Apply changes intelligently**:138139 **ADDED Requirements:**140 - If requirement doesn't exist in main spec → add it141 - If requirement already exists → update it to match (treat as implicit MODIFIED)142143 **MODIFIED Requirements:**144 - Find the requirement in main spec145 - Apply the changes - this can be:146 - Adding new scenarios the main spec does not have yet147 - Modifying existing scenarios148 - Changing the requirement description149 - Preserve scenarios/content not mentioned in the delta150151 **REMOVED Requirements:**152 - Remove the entire requirement block from main spec153 - Retiring the capability. Delete the whole `spec.md` - and the directory once154 nothing else is left in it - only when ALL of these hold:155 1. removing the requirements _this run_ left no requirement blocks;156 2. the rest of the spec is well-formed (it still has a `## Purpose`);157 3. the main spec was not already empty before this sync - if you removed158 nothing, change nothing;159 4. every other nonblank line in the whole file is accounted for as the160 title, Purpose, Requirements header, or a canonical requirement's161 statement, scenarios, or fenced examples;162 5. the change's `.openspec.yaml` declares `retire_capabilities: true`;163 6. the `spec.md` resolves inside the real specs root (do not follow a164 capability-directory symlink to delete an external file).165 If removing the selected requirements would leave no requirement blocks and166 any retirement condition is not satisfied, do not modify the main spec. Stop167 the sync for that capability, report the blocking condition, and tell the user168 how to resolve it. Never write or leave an empty `## Requirements` section.169 When only the marker is missing, say that too - it is the one thing the user170 can add to make the retirement go through.171 - Deleting the file also deletes its `## Purpose`; any other section blocks172 retirement. Name Purpose when you report the retirement. Include a pasteable173 `git checkout` only when the spec lived in the caller's checkout;174 otherwise give checkout-scoped recovery guidance.175176 **RENAMED Requirements:**177 - Find the FROM requirement, rename to TO178179 **`## Purpose` in the delta:**180 - The main spec already has one and it is authoritative - leave it alone181 (this is what `openspec archive` does; it warns and moves on)182183 d. **Create new main spec** if capability doesn't exist yet:184 - Create `<planningHome.root>/openspec/specs/<capability-path>/spec.md`185 - Add Purpose section: copy the delta's `## Purpose` body verbatim when it has one186 (this is what `openspec archive` does); only write a brief TBD placeholder when it does not187 - Add Requirements section with the ADDED requirements188 - Follow the **Main Spec Format Reference** below1891905. **Validate updated main specs**191192 Run `openspec validate --specs` with the same selected-root flags used earlier.193 If validation fails, report the problems and do not claim the sync succeeded.1941956. **Show summary**196197 After applying all changes, summarize:198 - Which capabilities were updated199 - What changes were made (requirements added/modified/removed/renamed)200 - Any new main spec left with a TBD Purpose placeholder, so it gets written201 now rather than lingering202 - Any capability retired, naming the deleted `spec.md`, its Purpose, and203 either a pasteable `git checkout` or checkout-scoped recovery guidance204205**Delta Spec Format Reference**206207```markdown208## Purpose209210Only on a delta that introduces a brand-new capability. Seeds the new main spec.211212## ADDED Requirements213214### Requirement: New Feature215216The system SHALL do something new.217218#### Scenario: Basic case219220- **WHEN** user does X221- **THEN** system does Y222223## MODIFIED Requirements224225### Requirement: Existing Feature226227The system SHALL keep doing the existing thing, now also handling A.228229#### Scenario: Scenario the main spec already has230231- **WHEN** user does X232- **THEN** system does Y233234#### Scenario: New scenario to add235236- **WHEN** user does A237- **THEN** system does B238239## REMOVED Requirements240241### Requirement: Deprecated Feature242243## RENAMED Requirements244245- FROM: `### Requirement: Old Name`246- TO: `### Requirement: New Name`247```248249**Main Spec Format Reference**250251Main 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:252253```markdown254# <capability> Specification255256## Purpose257258Short description of what this capability does and why it exists.259260## Requirements261262### Requirement: New Feature263264The system SHALL do something new.265266#### Scenario: Basic case267268- **WHEN** user does X269- **THEN** system does Y270```271272**Key Principle: Intelligent Merging**273274Unlike programmatic merging, you merge rather than overwrite:275276- 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.277- Keep anything the delta does not mention, in the main spec's existing order278- Use your judgment to merge changes sensibly279280**Output On Success**281282```markdown283## Specs Synced: <change-name>284285Updated main specs:286287**<capability-1>**:288289- Added requirement: "New Feature"290- Modified requirement: "Existing Feature" (added 1 scenario)291292**<capability-2>**:293294- Created new spec file295- Added requirement: "Another Feature"296297Main specs are now updated. The change remains active - archive when implementation is complete.298```299300**Guardrails**301302- Read both delta and main specs before making changes303- Preserve existing content not mentioned in delta304- 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 headers305- If something is unclear, ask for clarification306- Show what you're changing as you go307- The operation should be idempotent - running twice should give same result308- Use only `artifactPaths.specs.existingOutputPaths`; never infer delta specs from unrelated artifacts309- Honor a caller-supplied subset of `existingOutputPaths`; never widen it back to the full list310- Fetch specs instructions once for direct sync, or reuse the archive-supplied snapshot inline311- Stop before every main-spec write on a non-zero or invalid JSON specs-instruction response312- Artifact rules constrain only the specs being written and are never copied into output files