@liangxie/qf 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/commands/opsx/apply.md +155 -0
- package/.claude/commands/opsx/archive.md +160 -0
- package/.claude/commands/opsx/explore.md +174 -0
- package/.claude/commands/opsx/propose.md +109 -0
- package/.claude/commands/opsx/sync.md +143 -0
- package/.claude/skills/openspec-apply-change/SKILL.md +159 -0
- package/.claude/skills/openspec-archive-change/SKILL.md +117 -0
- package/.claude/skills/openspec-explore/SKILL.md +289 -0
- package/.claude/skills/openspec-propose/SKILL.md +113 -0
- package/.claude/skills/openspec-sync-specs/SKILL.md +147 -0
- package/.codex/skills/openspec-apply-change/SKILL.md +159 -0
- package/.codex/skills/openspec-archive-change/SKILL.md +117 -0
- package/.codex/skills/openspec-explore/SKILL.md +289 -0
- package/.codex/skills/openspec-propose/SKILL.md +113 -0
- package/.codex/skills/openspec-sync-specs/SKILL.md +147 -0
- package/.cursor/commands/opsx-apply.md +155 -0
- package/.cursor/commands/opsx-archive.md +160 -0
- package/.cursor/commands/opsx-explore.md +174 -0
- package/.cursor/commands/opsx-propose.md +109 -0
- package/.cursor/commands/opsx-sync.md +143 -0
- package/.cursor/skills/openspec-apply-change/SKILL.md +159 -0
- package/.cursor/skills/openspec-archive-change/SKILL.md +117 -0
- package/.cursor/skills/openspec-explore/SKILL.md +289 -0
- package/.cursor/skills/openspec-propose/SKILL.md +113 -0
- package/.cursor/skills/openspec-sync-specs/SKILL.md +147 -0
- package/.github/prompts/opsx-apply.prompt.md +152 -0
- package/.github/prompts/opsx-archive.prompt.md +157 -0
- package/.github/prompts/opsx-explore.prompt.md +171 -0
- package/.github/prompts/opsx-propose.prompt.md +106 -0
- package/.github/prompts/opsx-sync.prompt.md +140 -0
- package/.github/skills/openspec-apply-change/SKILL.md +159 -0
- package/.github/skills/openspec-archive-change/SKILL.md +117 -0
- package/.github/skills/openspec-explore/SKILL.md +289 -0
- package/.github/skills/openspec-propose/SKILL.md +113 -0
- package/.github/skills/openspec-sync-specs/SKILL.md +147 -0
- package/.omo/run-continuation/ses_0d9f5cba6ffeW2r1NWuthiPI0F.json +10 -0
- package/.opencode/commands/opsx-apply.md +152 -0
- package/.opencode/commands/opsx-archive.md +157 -0
- package/.opencode/commands/opsx-explore.md +171 -0
- package/.opencode/commands/opsx-propose.md +106 -0
- package/.opencode/commands/opsx-sync.md +140 -0
- package/.opencode/skills/openspec-apply-change/SKILL.md +159 -0
- package/.opencode/skills/openspec-archive-change/SKILL.md +117 -0
- package/.opencode/skills/openspec-explore/SKILL.md +289 -0
- package/.opencode/skills/openspec-propose/SKILL.md +113 -0
- package/.opencode/skills/openspec-sync-specs/SKILL.md +147 -0
- package/LICENSE +21 -0
- package/index.js +17 -0
- package/openspec/changes/archive/2026-07-03-add-say-command/.openspec.yaml +2 -0
- package/openspec/changes/archive/2026-07-03-add-say-command/design.md +73 -0
- package/openspec/changes/archive/2026-07-03-add-say-command/proposal.md +28 -0
- package/openspec/changes/archive/2026-07-03-add-say-command/specs/cli-framework/spec.md +22 -0
- package/openspec/changes/archive/2026-07-03-add-say-command/specs/say-command/spec.md +22 -0
- package/openspec/changes/archive/2026-07-03-add-say-command/tasks.md +17 -0
- package/openspec/config.yaml +20 -0
- package/package.json +25 -0
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Sync delta specs from a change to main specs
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
Sync delta specs from a change to main specs.
|
|
6
|
+
|
|
7
|
+
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).
|
|
8
|
+
|
|
9
|
+
**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`). 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.
|
|
10
|
+
|
|
11
|
+
**Input**: Optionally specify a change name after `/opsx:sync` (e.g., `/opsx:sync add-auth`). If omitted, check if it can be inferred from conversation context. If vague or ambiguous you MUST prompt for available changes.
|
|
12
|
+
|
|
13
|
+
**Steps**
|
|
14
|
+
|
|
15
|
+
1. **If no change name provided, prompt for selection**
|
|
16
|
+
|
|
17
|
+
Run `openspec list --json` to get available changes. Use the **AskUserQuestion tool** to let the user select.
|
|
18
|
+
|
|
19
|
+
Show changes that have delta specs (under `specs/` directory).
|
|
20
|
+
|
|
21
|
+
**IMPORTANT**: Do NOT guess or auto-select a change. Always let the user choose.
|
|
22
|
+
|
|
23
|
+
2. **Resolve change context**
|
|
24
|
+
|
|
25
|
+
Run:
|
|
26
|
+
```bash
|
|
27
|
+
openspec status --change "<name>" --json
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
3. **Find delta specs**
|
|
31
|
+
|
|
32
|
+
Use `artifactPaths.specs.existingOutputPaths` from the status JSON as the list of delta spec files.
|
|
33
|
+
|
|
34
|
+
Each delta spec file contains sections like:
|
|
35
|
+
- `## ADDED Requirements` - New requirements to add
|
|
36
|
+
- `## MODIFIED Requirements` - Changes to existing requirements
|
|
37
|
+
- `## REMOVED Requirements` - Requirements to remove
|
|
38
|
+
- `## RENAMED Requirements` - Requirements to rename (FROM:/TO: format)
|
|
39
|
+
|
|
40
|
+
If no delta specs found, inform user and stop.
|
|
41
|
+
|
|
42
|
+
4. **For each delta spec, apply changes to main specs**
|
|
43
|
+
|
|
44
|
+
For each repo-local capability delta spec path returned by the CLI:
|
|
45
|
+
|
|
46
|
+
a. **Read the delta spec** to understand the intended changes
|
|
47
|
+
|
|
48
|
+
b. **Read the main spec** at `openspec/specs/<capability>/spec.md` (may not exist yet)
|
|
49
|
+
|
|
50
|
+
c. **Apply changes intelligently**:
|
|
51
|
+
|
|
52
|
+
**ADDED Requirements:**
|
|
53
|
+
- If requirement doesn't exist in main spec → add it
|
|
54
|
+
- If requirement already exists → update it to match (treat as implicit MODIFIED)
|
|
55
|
+
|
|
56
|
+
**MODIFIED Requirements:**
|
|
57
|
+
- Find the requirement in main spec
|
|
58
|
+
- Apply the changes - this can be:
|
|
59
|
+
- Adding new scenarios (don't need to copy existing ones)
|
|
60
|
+
- Modifying existing scenarios
|
|
61
|
+
- Changing the requirement description
|
|
62
|
+
- Preserve scenarios/content not mentioned in the delta
|
|
63
|
+
|
|
64
|
+
**REMOVED Requirements:**
|
|
65
|
+
- Remove the entire requirement block from main spec
|
|
66
|
+
|
|
67
|
+
**RENAMED Requirements:**
|
|
68
|
+
- Find the FROM requirement, rename to TO
|
|
69
|
+
|
|
70
|
+
d. **Create new main spec** if capability doesn't exist yet:
|
|
71
|
+
- Create `openspec/specs/<capability>/spec.md`
|
|
72
|
+
- Add Purpose section (can be brief, mark as TBD)
|
|
73
|
+
- Add Requirements section with the ADDED requirements
|
|
74
|
+
|
|
75
|
+
5. **Show summary**
|
|
76
|
+
|
|
77
|
+
After applying all changes, summarize:
|
|
78
|
+
- Which capabilities were updated
|
|
79
|
+
- What changes were made (requirements added/modified/removed/renamed)
|
|
80
|
+
|
|
81
|
+
**Delta Spec Format Reference**
|
|
82
|
+
|
|
83
|
+
```markdown
|
|
84
|
+
## ADDED Requirements
|
|
85
|
+
|
|
86
|
+
### Requirement: New Feature
|
|
87
|
+
The system SHALL do something new.
|
|
88
|
+
|
|
89
|
+
#### Scenario: Basic case
|
|
90
|
+
- **WHEN** user does X
|
|
91
|
+
- **THEN** system does Y
|
|
92
|
+
|
|
93
|
+
## MODIFIED Requirements
|
|
94
|
+
|
|
95
|
+
### Requirement: Existing Feature
|
|
96
|
+
#### Scenario: New scenario to add
|
|
97
|
+
- **WHEN** user does A
|
|
98
|
+
- **THEN** system does B
|
|
99
|
+
|
|
100
|
+
## REMOVED Requirements
|
|
101
|
+
|
|
102
|
+
### Requirement: Deprecated Feature
|
|
103
|
+
|
|
104
|
+
## RENAMED Requirements
|
|
105
|
+
|
|
106
|
+
- FROM: `### Requirement: Old Name`
|
|
107
|
+
- TO: `### Requirement: New Name`
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
**Key Principle: Intelligent Merging**
|
|
111
|
+
|
|
112
|
+
Unlike programmatic merging, you can apply **partial updates**:
|
|
113
|
+
- To add a scenario, just include that scenario under MODIFIED - don't copy existing scenarios
|
|
114
|
+
- The delta represents *intent*, not a wholesale replacement
|
|
115
|
+
- Use your judgment to merge changes sensibly
|
|
116
|
+
|
|
117
|
+
**Output On Success**
|
|
118
|
+
|
|
119
|
+
```
|
|
120
|
+
## Specs Synced: <change-name>
|
|
121
|
+
|
|
122
|
+
Updated main specs:
|
|
123
|
+
|
|
124
|
+
**<capability-1>**:
|
|
125
|
+
- Added requirement: "New Feature"
|
|
126
|
+
- Modified requirement: "Existing Feature" (added 1 scenario)
|
|
127
|
+
|
|
128
|
+
**<capability-2>**:
|
|
129
|
+
- Created new spec file
|
|
130
|
+
- Added requirement: "Another Feature"
|
|
131
|
+
|
|
132
|
+
Main specs are now updated. The change remains active - archive when implementation is complete.
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
**Guardrails**
|
|
136
|
+
- Read both delta and main specs before making changes
|
|
137
|
+
- Preserve existing content not mentioned in delta
|
|
138
|
+
- If something is unclear, ask for clarification
|
|
139
|
+
- Show what you're changing as you go
|
|
140
|
+
- The operation should be idempotent - running twice should give same result
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: openspec-apply-change
|
|
3
|
+
description: Implement tasks from an OpenSpec change. Use when the user wants to start implementing, continue implementation, or work through tasks.
|
|
4
|
+
license: MIT
|
|
5
|
+
compatibility: Requires openspec CLI.
|
|
6
|
+
metadata:
|
|
7
|
+
author: openspec
|
|
8
|
+
version: "1.0"
|
|
9
|
+
generatedBy: "1.5.0"
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
Implement tasks from an OpenSpec change.
|
|
13
|
+
|
|
14
|
+
**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`). 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.
|
|
15
|
+
|
|
16
|
+
**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.
|
|
17
|
+
|
|
18
|
+
**Steps**
|
|
19
|
+
|
|
20
|
+
1. **Select the change**
|
|
21
|
+
|
|
22
|
+
If a name is provided, use it. Otherwise:
|
|
23
|
+
- Infer from conversation context if the user mentioned a change
|
|
24
|
+
- Auto-select if only one active change exists
|
|
25
|
+
- If ambiguous, run `openspec list --json` to get available changes and use the **AskUserQuestion tool** to let the user select
|
|
26
|
+
|
|
27
|
+
Always announce: "Using change: <name>" and how to override (e.g., `/opsx:apply <other>`).
|
|
28
|
+
|
|
29
|
+
2. **Check status to understand the schema**
|
|
30
|
+
```bash
|
|
31
|
+
openspec status --change "<name>" --json
|
|
32
|
+
```
|
|
33
|
+
Parse the JSON to understand:
|
|
34
|
+
- `schemaName`: The workflow being used (e.g., "spec-driven")
|
|
35
|
+
- `planningHome`, `changeRoot`, and `actionContext`: planning scope and edit constraints
|
|
36
|
+
- Which artifact contains the tasks (typically "tasks" for spec-driven, check status for others)
|
|
37
|
+
|
|
38
|
+
3. **Get apply instructions**
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
openspec instructions apply --change "<name>" --json
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
This returns:
|
|
45
|
+
- `contextFiles`: artifact ID -> array of concrete file paths (varies by schema - could be proposal/specs/design/tasks or spec/tests/implementation/docs)
|
|
46
|
+
- Progress (total, complete, remaining)
|
|
47
|
+
- Task list with status
|
|
48
|
+
- Dynamic instruction based on current state
|
|
49
|
+
|
|
50
|
+
**Handle states:**
|
|
51
|
+
- If `state: "blocked"` (missing artifacts): show message, suggest using openspec-continue-change
|
|
52
|
+
- If `state: "all_done"`: congratulate, suggest archive
|
|
53
|
+
- Otherwise: proceed to implementation
|
|
54
|
+
|
|
55
|
+
4. **Read context files**
|
|
56
|
+
|
|
57
|
+
Read every file path listed under `contextFiles` from the apply instructions output.
|
|
58
|
+
The files depend on the schema being used:
|
|
59
|
+
- **spec-driven**: proposal, specs, design, tasks
|
|
60
|
+
- Other schemas: follow the contextFiles from CLI output
|
|
61
|
+
|
|
62
|
+
5. **Show current progress**
|
|
63
|
+
|
|
64
|
+
Display:
|
|
65
|
+
- Schema being used
|
|
66
|
+
- Progress: "N/M tasks complete"
|
|
67
|
+
- Remaining tasks overview
|
|
68
|
+
- Dynamic instruction from CLI
|
|
69
|
+
|
|
70
|
+
6. **Implement tasks (loop until done or blocked)**
|
|
71
|
+
|
|
72
|
+
For each pending task:
|
|
73
|
+
- Show which task is being worked on
|
|
74
|
+
- Make the code changes required
|
|
75
|
+
- Keep changes minimal and focused
|
|
76
|
+
- Mark task complete in the tasks file: `- [ ]` → `- [x]`
|
|
77
|
+
- Continue to next task
|
|
78
|
+
|
|
79
|
+
**Pause if:**
|
|
80
|
+
- Task is unclear → ask for clarification
|
|
81
|
+
- Implementation reveals a design issue → suggest updating artifacts
|
|
82
|
+
- Error or blocker encountered → report and wait for guidance
|
|
83
|
+
- User interrupts
|
|
84
|
+
|
|
85
|
+
7. **On completion or pause, show status**
|
|
86
|
+
|
|
87
|
+
Display:
|
|
88
|
+
- Tasks completed this session
|
|
89
|
+
- Overall progress: "N/M tasks complete"
|
|
90
|
+
- If all done: suggest archive
|
|
91
|
+
- If paused: explain why and wait for guidance
|
|
92
|
+
|
|
93
|
+
**Output During Implementation**
|
|
94
|
+
|
|
95
|
+
```
|
|
96
|
+
## Implementing: <change-name> (schema: <schema-name>)
|
|
97
|
+
|
|
98
|
+
Working on task 3/7: <task description>
|
|
99
|
+
[...implementation happening...]
|
|
100
|
+
✓ Task complete
|
|
101
|
+
|
|
102
|
+
Working on task 4/7: <task description>
|
|
103
|
+
[...implementation happening...]
|
|
104
|
+
✓ Task complete
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
**Output On Completion**
|
|
108
|
+
|
|
109
|
+
```
|
|
110
|
+
## Implementation Complete
|
|
111
|
+
|
|
112
|
+
**Change:** <change-name>
|
|
113
|
+
**Schema:** <schema-name>
|
|
114
|
+
**Progress:** 7/7 tasks complete ✓
|
|
115
|
+
|
|
116
|
+
### Completed This Session
|
|
117
|
+
- [x] Task 1
|
|
118
|
+
- [x] Task 2
|
|
119
|
+
...
|
|
120
|
+
|
|
121
|
+
All tasks complete! Ready to archive this change.
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
**Output On Pause (Issue Encountered)**
|
|
125
|
+
|
|
126
|
+
```
|
|
127
|
+
## Implementation Paused
|
|
128
|
+
|
|
129
|
+
**Change:** <change-name>
|
|
130
|
+
**Schema:** <schema-name>
|
|
131
|
+
**Progress:** 4/7 tasks complete
|
|
132
|
+
|
|
133
|
+
### Issue Encountered
|
|
134
|
+
<description of the issue>
|
|
135
|
+
|
|
136
|
+
**Options:**
|
|
137
|
+
1. <option 1>
|
|
138
|
+
2. <option 2>
|
|
139
|
+
3. Other approach
|
|
140
|
+
|
|
141
|
+
What would you like to do?
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
**Guardrails**
|
|
145
|
+
- Keep going through tasks until done or blocked
|
|
146
|
+
- Always read context files before starting (from the apply instructions output)
|
|
147
|
+
- If task is ambiguous, pause and ask before implementing
|
|
148
|
+
- If implementation reveals issues, pause and suggest artifact updates
|
|
149
|
+
- Keep code changes minimal and scoped to each task
|
|
150
|
+
- Update task checkbox immediately after completing each task
|
|
151
|
+
- Pause on errors, blockers, or unclear requirements - don't guess
|
|
152
|
+
- Use contextFiles from CLI output, don't assume specific file names
|
|
153
|
+
|
|
154
|
+
**Fluid Workflow Integration**
|
|
155
|
+
|
|
156
|
+
This skill supports the "actions on a change" model:
|
|
157
|
+
|
|
158
|
+
- **Can be invoked anytime**: Before all artifacts are done (if tasks exist), after partial implementation, interleaved with other actions
|
|
159
|
+
- **Allows artifact updates**: If implementation reveals design issues, suggest updating artifacts - not phase-locked, work fluidly
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: openspec-archive-change
|
|
3
|
+
description: Archive a completed change in the experimental workflow. Use when the user wants to finalize and archive a change after implementation is complete.
|
|
4
|
+
license: MIT
|
|
5
|
+
compatibility: Requires openspec CLI.
|
|
6
|
+
metadata:
|
|
7
|
+
author: openspec
|
|
8
|
+
version: "1.0"
|
|
9
|
+
generatedBy: "1.5.0"
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
Archive a completed change in the experimental workflow.
|
|
13
|
+
|
|
14
|
+
**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`). 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.
|
|
15
|
+
|
|
16
|
+
**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.
|
|
17
|
+
|
|
18
|
+
**Steps**
|
|
19
|
+
|
|
20
|
+
1. **If no change name provided, prompt for selection**
|
|
21
|
+
|
|
22
|
+
Run `openspec list --json` to get available changes. Use the **AskUserQuestion tool** to let the user select.
|
|
23
|
+
|
|
24
|
+
Show only active changes (not already archived).
|
|
25
|
+
Include the schema used for each change if available.
|
|
26
|
+
|
|
27
|
+
**IMPORTANT**: Do NOT guess or auto-select a change. Always let the user choose.
|
|
28
|
+
|
|
29
|
+
2. **Check artifact completion status**
|
|
30
|
+
|
|
31
|
+
Run `openspec status --change "<name>" --json` to check artifact completion.
|
|
32
|
+
|
|
33
|
+
Parse the JSON to understand:
|
|
34
|
+
- `schemaName`: The workflow being used
|
|
35
|
+
- `planningHome`, `changeRoot`, `artifactPaths`, and `actionContext`: path and scope context
|
|
36
|
+
- `artifacts`: List of artifacts with their status (`done` or other)
|
|
37
|
+
|
|
38
|
+
**If any artifacts are not `done`:**
|
|
39
|
+
- Display warning listing incomplete artifacts
|
|
40
|
+
- Use **AskUserQuestion tool** to confirm user wants to proceed
|
|
41
|
+
- Proceed if user confirms
|
|
42
|
+
|
|
43
|
+
3. **Check task completion status**
|
|
44
|
+
|
|
45
|
+
Read the tasks file (typically `tasks.md`) to check for incomplete tasks.
|
|
46
|
+
|
|
47
|
+
Count tasks marked with `- [ ]` (incomplete) vs `- [x]` (complete).
|
|
48
|
+
|
|
49
|
+
**If incomplete tasks found:**
|
|
50
|
+
- Display warning showing count of incomplete tasks
|
|
51
|
+
- Use **AskUserQuestion tool** to confirm user wants to proceed
|
|
52
|
+
- Proceed if user confirms
|
|
53
|
+
|
|
54
|
+
**If no tasks file exists:** Proceed without task-related warning.
|
|
55
|
+
|
|
56
|
+
4. **Assess delta spec sync state**
|
|
57
|
+
|
|
58
|
+
Use `artifactPaths.specs.existingOutputPaths` from status JSON to check for delta specs. If none exist, proceed without sync prompt.
|
|
59
|
+
|
|
60
|
+
**If delta specs exist:**
|
|
61
|
+
- Compare each delta spec with its corresponding main spec at `openspec/specs/<capability>/spec.md`
|
|
62
|
+
- Determine what changes would be applied (adds, modifications, removals, renames)
|
|
63
|
+
- Show a combined summary before prompting
|
|
64
|
+
|
|
65
|
+
**Prompt options:**
|
|
66
|
+
- If changes needed: "Sync now (recommended)", "Archive without syncing"
|
|
67
|
+
- If already synced: "Archive now", "Sync anyway", "Cancel"
|
|
68
|
+
|
|
69
|
+
If user chooses sync, use Task tool (subagent_type: "general-purpose", prompt: "Use Skill tool to invoke openspec-sync-specs for change '<name>'. Delta spec analysis: <include the analyzed delta spec summary>"). Proceed to archive regardless of choice.
|
|
70
|
+
|
|
71
|
+
5. **Perform the archive**
|
|
72
|
+
|
|
73
|
+
Create an `archive` directory under `planningHome.changesDir` if it doesn't exist:
|
|
74
|
+
```bash
|
|
75
|
+
mkdir -p "<planningHome.changesDir>/archive"
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
Generate target name using current date: `YYYY-MM-DD-<change-name>`
|
|
79
|
+
|
|
80
|
+
**Check if target already exists:**
|
|
81
|
+
- If yes: Fail with error, suggest renaming existing archive or using different date
|
|
82
|
+
- If no: Move `changeRoot` to the archive directory
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
mv "<changeRoot>" "<planningHome.changesDir>/archive/YYYY-MM-DD-<name>"
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
6. **Display summary**
|
|
89
|
+
|
|
90
|
+
Show archive completion summary including:
|
|
91
|
+
- Change name
|
|
92
|
+
- Schema that was used
|
|
93
|
+
- Archive location
|
|
94
|
+
- Whether specs were synced (if applicable)
|
|
95
|
+
- Note about any warnings (incomplete artifacts/tasks)
|
|
96
|
+
|
|
97
|
+
**Output On Success**
|
|
98
|
+
|
|
99
|
+
```
|
|
100
|
+
## Archive Complete
|
|
101
|
+
|
|
102
|
+
**Change:** <change-name>
|
|
103
|
+
**Schema:** <schema-name>
|
|
104
|
+
**Archived to:** the archive path derived from `planningHome.changesDir`/YYYY-MM-DD-<name>/
|
|
105
|
+
**Specs:** ✓ Synced to main specs (or "No delta specs" or "Sync skipped")
|
|
106
|
+
|
|
107
|
+
All artifacts complete. All tasks complete.
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
**Guardrails**
|
|
111
|
+
- Always prompt for change selection if not provided
|
|
112
|
+
- Use artifact graph (openspec status --json) for completion checking
|
|
113
|
+
- Don't block archive on warnings - just inform and confirm
|
|
114
|
+
- Preserve .openspec.yaml when moving to archive (it moves with the directory)
|
|
115
|
+
- Show clear summary of what happened
|
|
116
|
+
- If sync is requested, use openspec-sync-specs approach (agent-driven)
|
|
117
|
+
- If delta specs exist, always run the sync assessment and show the combined summary before prompting
|