@wangjibins/openspec 1.2.2
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/LICENSE +22 -0
- package/README.md +203 -0
- package/bin/openspec.js +3 -0
- package/dist/cli/index.d.ts +2 -0
- package/dist/cli/index.js +482 -0
- package/dist/commands/change.d.ts +35 -0
- package/dist/commands/change.js +277 -0
- package/dist/commands/completion.d.ts +72 -0
- package/dist/commands/completion.js +257 -0
- package/dist/commands/config.d.ts +36 -0
- package/dist/commands/config.js +552 -0
- package/dist/commands/feedback.d.ts +9 -0
- package/dist/commands/feedback.js +183 -0
- package/dist/commands/schema.d.ts +6 -0
- package/dist/commands/schema.js +869 -0
- package/dist/commands/show.d.ts +14 -0
- package/dist/commands/show.js +132 -0
- package/dist/commands/spec.d.ts +15 -0
- package/dist/commands/spec.js +225 -0
- package/dist/commands/validate.d.ts +24 -0
- package/dist/commands/validate.js +294 -0
- package/dist/commands/workflow/index.d.ts +17 -0
- package/dist/commands/workflow/index.js +12 -0
- package/dist/commands/workflow/instructions.d.ts +29 -0
- package/dist/commands/workflow/instructions.js +381 -0
- package/dist/commands/workflow/new-change.d.ts +11 -0
- package/dist/commands/workflow/new-change.js +44 -0
- package/dist/commands/workflow/schemas.d.ts +10 -0
- package/dist/commands/workflow/schemas.js +34 -0
- package/dist/commands/workflow/shared.d.ts +57 -0
- package/dist/commands/workflow/shared.js +116 -0
- package/dist/commands/workflow/status.d.ts +14 -0
- package/dist/commands/workflow/status.js +75 -0
- package/dist/commands/workflow/templates.d.ts +16 -0
- package/dist/commands/workflow/templates.js +68 -0
- package/dist/core/archive.d.ts +11 -0
- package/dist/core/archive.js +318 -0
- package/dist/core/artifact-graph/graph.d.ts +56 -0
- package/dist/core/artifact-graph/graph.js +141 -0
- package/dist/core/artifact-graph/index.d.ts +7 -0
- package/dist/core/artifact-graph/index.js +13 -0
- package/dist/core/artifact-graph/instruction-loader.d.ts +143 -0
- package/dist/core/artifact-graph/instruction-loader.js +214 -0
- package/dist/core/artifact-graph/resolver.d.ts +81 -0
- package/dist/core/artifact-graph/resolver.js +257 -0
- package/dist/core/artifact-graph/schema.d.ts +13 -0
- package/dist/core/artifact-graph/schema.js +108 -0
- package/dist/core/artifact-graph/state.d.ts +12 -0
- package/dist/core/artifact-graph/state.js +54 -0
- package/dist/core/artifact-graph/types.d.ts +45 -0
- package/dist/core/artifact-graph/types.js +43 -0
- package/dist/core/available-tools.d.ts +16 -0
- package/dist/core/available-tools.js +30 -0
- package/dist/core/command-generation/adapters/amazon-q.d.ts +13 -0
- package/dist/core/command-generation/adapters/amazon-q.js +26 -0
- package/dist/core/command-generation/adapters/antigravity.d.ts +13 -0
- package/dist/core/command-generation/adapters/antigravity.js +26 -0
- package/dist/core/command-generation/adapters/auggie.d.ts +13 -0
- package/dist/core/command-generation/adapters/auggie.js +27 -0
- package/dist/core/command-generation/adapters/claude.d.ts +13 -0
- package/dist/core/command-generation/adapters/claude.js +50 -0
- package/dist/core/command-generation/adapters/cline.d.ts +14 -0
- package/dist/core/command-generation/adapters/cline.js +27 -0
- package/dist/core/command-generation/adapters/codebuddy.d.ts +13 -0
- package/dist/core/command-generation/adapters/codebuddy.js +28 -0
- package/dist/core/command-generation/adapters/codeflicker.d.ts +14 -0
- package/dist/core/command-generation/adapters/codeflicker.js +44 -0
- package/dist/core/command-generation/adapters/codex.d.ts +16 -0
- package/dist/core/command-generation/adapters/codex.js +39 -0
- package/dist/core/command-generation/adapters/continue.d.ts +13 -0
- package/dist/core/command-generation/adapters/continue.js +28 -0
- package/dist/core/command-generation/adapters/costrict.d.ts +13 -0
- package/dist/core/command-generation/adapters/costrict.js +27 -0
- package/dist/core/command-generation/adapters/crush.d.ts +13 -0
- package/dist/core/command-generation/adapters/crush.js +30 -0
- package/dist/core/command-generation/adapters/cursor.d.ts +14 -0
- package/dist/core/command-generation/adapters/cursor.js +44 -0
- package/dist/core/command-generation/adapters/factory.d.ts +13 -0
- package/dist/core/command-generation/adapters/factory.js +27 -0
- package/dist/core/command-generation/adapters/gemini.d.ts +13 -0
- package/dist/core/command-generation/adapters/gemini.js +26 -0
- package/dist/core/command-generation/adapters/github-copilot.d.ts +13 -0
- package/dist/core/command-generation/adapters/github-copilot.js +26 -0
- package/dist/core/command-generation/adapters/iflow.d.ts +13 -0
- package/dist/core/command-generation/adapters/iflow.js +29 -0
- package/dist/core/command-generation/adapters/index.d.ts +30 -0
- package/dist/core/command-generation/adapters/index.js +30 -0
- package/dist/core/command-generation/adapters/kilocode.d.ts +14 -0
- package/dist/core/command-generation/adapters/kilocode.js +23 -0
- package/dist/core/command-generation/adapters/kiro.d.ts +13 -0
- package/dist/core/command-generation/adapters/kiro.js +26 -0
- package/dist/core/command-generation/adapters/opencode.d.ts +13 -0
- package/dist/core/command-generation/adapters/opencode.js +29 -0
- package/dist/core/command-generation/adapters/pi.d.ts +14 -0
- package/dist/core/command-generation/adapters/pi.js +41 -0
- package/dist/core/command-generation/adapters/qoder.d.ts +13 -0
- package/dist/core/command-generation/adapters/qoder.js +30 -0
- package/dist/core/command-generation/adapters/qwen.d.ts +13 -0
- package/dist/core/command-generation/adapters/qwen.js +26 -0
- package/dist/core/command-generation/adapters/roocode.d.ts +14 -0
- package/dist/core/command-generation/adapters/roocode.js +27 -0
- package/dist/core/command-generation/adapters/windsurf.d.ts +14 -0
- package/dist/core/command-generation/adapters/windsurf.js +51 -0
- package/dist/core/command-generation/generator.d.ts +21 -0
- package/dist/core/command-generation/generator.js +27 -0
- package/dist/core/command-generation/index.d.ts +22 -0
- package/dist/core/command-generation/index.js +24 -0
- package/dist/core/command-generation/registry.d.ts +36 -0
- package/dist/core/command-generation/registry.js +94 -0
- package/dist/core/command-generation/types.d.ts +56 -0
- package/dist/core/command-generation/types.js +8 -0
- package/dist/core/completions/command-registry.d.ts +7 -0
- package/dist/core/completions/command-registry.js +461 -0
- package/dist/core/completions/completion-provider.d.ts +60 -0
- package/dist/core/completions/completion-provider.js +102 -0
- package/dist/core/completions/factory.d.ts +64 -0
- package/dist/core/completions/factory.js +75 -0
- package/dist/core/completions/generators/bash-generator.d.ts +32 -0
- package/dist/core/completions/generators/bash-generator.js +174 -0
- package/dist/core/completions/generators/fish-generator.d.ts +32 -0
- package/dist/core/completions/generators/fish-generator.js +157 -0
- package/dist/core/completions/generators/powershell-generator.d.ts +33 -0
- package/dist/core/completions/generators/powershell-generator.js +207 -0
- package/dist/core/completions/generators/zsh-generator.d.ts +44 -0
- package/dist/core/completions/generators/zsh-generator.js +250 -0
- package/dist/core/completions/installers/bash-installer.d.ts +87 -0
- package/dist/core/completions/installers/bash-installer.js +318 -0
- package/dist/core/completions/installers/fish-installer.d.ts +43 -0
- package/dist/core/completions/installers/fish-installer.js +143 -0
- package/dist/core/completions/installers/powershell-installer.d.ts +88 -0
- package/dist/core/completions/installers/powershell-installer.js +327 -0
- package/dist/core/completions/installers/zsh-installer.d.ts +125 -0
- package/dist/core/completions/installers/zsh-installer.js +449 -0
- package/dist/core/completions/templates/bash-templates.d.ts +6 -0
- package/dist/core/completions/templates/bash-templates.js +24 -0
- package/dist/core/completions/templates/fish-templates.d.ts +7 -0
- package/dist/core/completions/templates/fish-templates.js +39 -0
- package/dist/core/completions/templates/powershell-templates.d.ts +6 -0
- package/dist/core/completions/templates/powershell-templates.js +25 -0
- package/dist/core/completions/templates/zsh-templates.d.ts +6 -0
- package/dist/core/completions/templates/zsh-templates.js +36 -0
- package/dist/core/completions/types.d.ts +79 -0
- package/dist/core/completions/types.js +2 -0
- package/dist/core/config-prompts.d.ts +9 -0
- package/dist/core/config-prompts.js +34 -0
- package/dist/core/config-schema.d.ts +86 -0
- package/dist/core/config-schema.js +213 -0
- package/dist/core/config.d.ts +17 -0
- package/dist/core/config.js +34 -0
- package/dist/core/converters/json-converter.d.ts +6 -0
- package/dist/core/converters/json-converter.js +51 -0
- package/dist/core/global-config.d.ts +44 -0
- package/dist/core/global-config.js +125 -0
- package/dist/core/index.d.ts +2 -0
- package/dist/core/index.js +3 -0
- package/dist/core/init.d.ts +37 -0
- package/dist/core/init.js +593 -0
- package/dist/core/legacy-cleanup.d.ts +162 -0
- package/dist/core/legacy-cleanup.js +512 -0
- package/dist/core/list.d.ts +9 -0
- package/dist/core/list.js +171 -0
- package/dist/core/migration.d.ts +23 -0
- package/dist/core/migration.js +108 -0
- package/dist/core/parsers/change-parser.d.ts +13 -0
- package/dist/core/parsers/change-parser.js +193 -0
- package/dist/core/parsers/markdown-parser.d.ts +22 -0
- package/dist/core/parsers/markdown-parser.js +187 -0
- package/dist/core/parsers/requirement-blocks.d.ts +37 -0
- package/dist/core/parsers/requirement-blocks.js +201 -0
- package/dist/core/profile-sync-drift.d.ts +38 -0
- package/dist/core/profile-sync-drift.js +200 -0
- package/dist/core/profiles.d.ts +26 -0
- package/dist/core/profiles.js +40 -0
- package/dist/core/project-config.d.ts +64 -0
- package/dist/core/project-config.js +223 -0
- package/dist/core/schemas/base.schema.d.ts +13 -0
- package/dist/core/schemas/base.schema.js +13 -0
- package/dist/core/schemas/change.schema.d.ts +73 -0
- package/dist/core/schemas/change.schema.js +31 -0
- package/dist/core/schemas/index.d.ts +4 -0
- package/dist/core/schemas/index.js +4 -0
- package/dist/core/schemas/spec.schema.d.ts +18 -0
- package/dist/core/schemas/spec.schema.js +15 -0
- package/dist/core/shared/index.d.ts +8 -0
- package/dist/core/shared/index.js +8 -0
- package/dist/core/shared/skill-generation.d.ts +49 -0
- package/dist/core/shared/skill-generation.js +96 -0
- package/dist/core/shared/tool-detection.d.ts +71 -0
- package/dist/core/shared/tool-detection.js +158 -0
- package/dist/core/specs-apply.d.ts +73 -0
- package/dist/core/specs-apply.js +384 -0
- package/dist/core/styles/palette.d.ts +7 -0
- package/dist/core/styles/palette.js +8 -0
- package/dist/core/templates/index.d.ts +8 -0
- package/dist/core/templates/index.js +9 -0
- package/dist/core/templates/skill-templates.d.ts +19 -0
- package/dist/core/templates/skill-templates.js +18 -0
- package/dist/core/templates/types.d.ts +19 -0
- package/dist/core/templates/types.js +5 -0
- package/dist/core/templates/workflows/apply-change.d.ts +10 -0
- package/dist/core/templates/workflows/apply-change.js +308 -0
- package/dist/core/templates/workflows/archive-change.d.ts +10 -0
- package/dist/core/templates/workflows/archive-change.js +271 -0
- package/dist/core/templates/workflows/bulk-archive-change.d.ts +10 -0
- package/dist/core/templates/workflows/bulk-archive-change.js +488 -0
- package/dist/core/templates/workflows/continue-change.d.ts +10 -0
- package/dist/core/templates/workflows/continue-change.js +232 -0
- package/dist/core/templates/workflows/explore.d.ts +10 -0
- package/dist/core/templates/workflows/explore.js +461 -0
- package/dist/core/templates/workflows/feedback.d.ts +9 -0
- package/dist/core/templates/workflows/feedback.js +108 -0
- package/dist/core/templates/workflows/ff-change.d.ts +10 -0
- package/dist/core/templates/workflows/ff-change.js +198 -0
- package/dist/core/templates/workflows/new-change.d.ts +10 -0
- package/dist/core/templates/workflows/new-change.js +143 -0
- package/dist/core/templates/workflows/onboard.d.ts +10 -0
- package/dist/core/templates/workflows/onboard.js +565 -0
- package/dist/core/templates/workflows/propose.d.ts +10 -0
- package/dist/core/templates/workflows/propose.js +216 -0
- package/dist/core/templates/workflows/sync-specs.d.ts +10 -0
- package/dist/core/templates/workflows/sync-specs.js +272 -0
- package/dist/core/templates/workflows/verify-change.d.ts +10 -0
- package/dist/core/templates/workflows/verify-change.js +332 -0
- package/dist/core/update.d.ts +77 -0
- package/dist/core/update.js +537 -0
- package/dist/core/validation/constants.d.ts +34 -0
- package/dist/core/validation/constants.js +40 -0
- package/dist/core/validation/types.d.ts +18 -0
- package/dist/core/validation/types.js +2 -0
- package/dist/core/validation/validator.d.ts +33 -0
- package/dist/core/validation/validator.js +409 -0
- package/dist/core/view.d.ts +8 -0
- package/dist/core/view.js +168 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/prompts/searchable-multi-select.d.ts +28 -0
- package/dist/prompts/searchable-multi-select.js +159 -0
- package/dist/telemetry/config.d.ts +32 -0
- package/dist/telemetry/config.js +68 -0
- package/dist/telemetry/index.d.ts +31 -0
- package/dist/telemetry/index.js +145 -0
- package/dist/ui/ascii-patterns.d.ts +16 -0
- package/dist/ui/ascii-patterns.js +133 -0
- package/dist/ui/welcome-screen.d.ts +10 -0
- package/dist/ui/welcome-screen.js +146 -0
- package/dist/utils/change-metadata.d.ts +51 -0
- package/dist/utils/change-metadata.js +147 -0
- package/dist/utils/change-utils.d.ts +62 -0
- package/dist/utils/change-utils.js +121 -0
- package/dist/utils/command-references.d.ts +18 -0
- package/dist/utils/command-references.js +20 -0
- package/dist/utils/file-system.d.ts +36 -0
- package/dist/utils/file-system.js +281 -0
- package/dist/utils/index.d.ts +6 -0
- package/dist/utils/index.js +9 -0
- package/dist/utils/interactive.d.ts +18 -0
- package/dist/utils/interactive.js +21 -0
- package/dist/utils/item-discovery.d.ts +4 -0
- package/dist/utils/item-discovery.js +72 -0
- package/dist/utils/match.d.ts +3 -0
- package/dist/utils/match.js +22 -0
- package/dist/utils/shell-detection.d.ts +20 -0
- package/dist/utils/shell-detection.js +41 -0
- package/dist/utils/task-progress.d.ts +8 -0
- package/dist/utils/task-progress.js +36 -0
- package/package.json +83 -0
- package/schemas/spec-driven/schema.yaml +153 -0
- package/schemas/spec-driven/templates/design.md +19 -0
- package/schemas/spec-driven/templates/proposal.md +23 -0
- package/schemas/spec-driven/templates/spec.md +8 -0
- package/schemas/spec-driven/templates/tasks.md +9 -0
- package/scripts/postinstall.js +147 -0
|
@@ -0,0 +1,488 @@
|
|
|
1
|
+
export function getBulkArchiveChangeSkillTemplate() {
|
|
2
|
+
return {
|
|
3
|
+
name: 'openspec-bulk-archive-change',
|
|
4
|
+
description: 'Archive multiple completed changes at once. Use when archiving several parallel changes.',
|
|
5
|
+
instructions: `Archive multiple completed changes in a single operation.
|
|
6
|
+
|
|
7
|
+
This skill allows you to batch-archive changes, handling spec conflicts intelligently by checking the codebase to determine what's actually implemented.
|
|
8
|
+
|
|
9
|
+
**Input**: None required (prompts for selection)
|
|
10
|
+
|
|
11
|
+
**Steps**
|
|
12
|
+
|
|
13
|
+
1. **Get active changes**
|
|
14
|
+
|
|
15
|
+
Run \`openspec list --json\` to get all active changes.
|
|
16
|
+
|
|
17
|
+
If no active changes exist, inform user and stop.
|
|
18
|
+
|
|
19
|
+
2. **Prompt for change selection**
|
|
20
|
+
|
|
21
|
+
Use **AskUserQuestion tool** with multi-select to let user choose changes:
|
|
22
|
+
- Show each change with its schema
|
|
23
|
+
- Include an option for "All changes"
|
|
24
|
+
- Allow any number of selections (1+ works, 2+ is the typical use case)
|
|
25
|
+
|
|
26
|
+
**IMPORTANT**: Do NOT auto-select. Always let the user choose.
|
|
27
|
+
|
|
28
|
+
3. **Batch validation - gather status for all selected changes**
|
|
29
|
+
|
|
30
|
+
For each selected change, collect:
|
|
31
|
+
|
|
32
|
+
a. **Artifact status** - Run \`openspec status --change "<name>" --json\`
|
|
33
|
+
- Parse \`schemaName\` and \`artifacts\` list
|
|
34
|
+
- Note which artifacts are \`done\` vs other states
|
|
35
|
+
|
|
36
|
+
b. **Task completion** - Read \`openspec/changes/<name>/tasks.md\`
|
|
37
|
+
- Count \`- [ ]\` (incomplete) vs \`- [x]\` (complete)
|
|
38
|
+
- If no tasks file exists, note as "No tasks"
|
|
39
|
+
|
|
40
|
+
c. **Delta specs** - Check \`openspec/changes/<name>/specs/\` directory
|
|
41
|
+
- List which capability specs exist
|
|
42
|
+
- For each, extract requirement names (lines matching \`### Requirement: <name>\`)
|
|
43
|
+
|
|
44
|
+
4. **Detect spec conflicts**
|
|
45
|
+
|
|
46
|
+
Build a map of \`capability -> [changes that touch it]\`:
|
|
47
|
+
|
|
48
|
+
\`\`\`
|
|
49
|
+
auth -> [change-a, change-b] <- CONFLICT (2+ changes)
|
|
50
|
+
api -> [change-c] <- OK (only 1 change)
|
|
51
|
+
\`\`\`
|
|
52
|
+
|
|
53
|
+
A conflict exists when 2+ selected changes have delta specs for the same capability.
|
|
54
|
+
|
|
55
|
+
5. **Resolve conflicts agentically**
|
|
56
|
+
|
|
57
|
+
**For each conflict**, investigate the codebase:
|
|
58
|
+
|
|
59
|
+
a. **Read the delta specs** from each conflicting change to understand what each claims to add/modify
|
|
60
|
+
|
|
61
|
+
b. **Search the codebase** for implementation evidence:
|
|
62
|
+
- Look for code implementing requirements from each delta spec
|
|
63
|
+
- Check for related files, functions, or tests
|
|
64
|
+
|
|
65
|
+
c. **Determine resolution**:
|
|
66
|
+
- If only one change is actually implemented -> sync that one's specs
|
|
67
|
+
- If both implemented -> apply in chronological order (older first, newer overwrites)
|
|
68
|
+
- If neither implemented -> skip spec sync, warn user
|
|
69
|
+
|
|
70
|
+
d. **Record resolution** for each conflict:
|
|
71
|
+
- Which change's specs to apply
|
|
72
|
+
- In what order (if both)
|
|
73
|
+
- Rationale (what was found in codebase)
|
|
74
|
+
|
|
75
|
+
6. **Show consolidated status table**
|
|
76
|
+
|
|
77
|
+
Display a table summarizing all changes:
|
|
78
|
+
|
|
79
|
+
\`\`\`
|
|
80
|
+
| Change | Artifacts | Tasks | Specs | Conflicts | Status |
|
|
81
|
+
|---------------------|-----------|-------|---------|-----------|--------|
|
|
82
|
+
| schema-management | Done | 5/5 | 2 delta | None | Ready |
|
|
83
|
+
| project-config | Done | 3/3 | 1 delta | None | Ready |
|
|
84
|
+
| add-oauth | Done | 4/4 | 1 delta | auth (!) | Ready* |
|
|
85
|
+
| add-verify-skill | 1 left | 2/5 | None | None | Warn |
|
|
86
|
+
\`\`\`
|
|
87
|
+
|
|
88
|
+
For conflicts, show the resolution:
|
|
89
|
+
\`\`\`
|
|
90
|
+
* Conflict resolution:
|
|
91
|
+
- auth spec: Will apply add-oauth then add-jwt (both implemented, chronological order)
|
|
92
|
+
\`\`\`
|
|
93
|
+
|
|
94
|
+
For incomplete changes, show warnings:
|
|
95
|
+
\`\`\`
|
|
96
|
+
Warnings:
|
|
97
|
+
- add-verify-skill: 1 incomplete artifact, 3 incomplete tasks
|
|
98
|
+
\`\`\`
|
|
99
|
+
|
|
100
|
+
7. **Confirm batch operation**
|
|
101
|
+
|
|
102
|
+
Use **AskUserQuestion tool** with a single confirmation:
|
|
103
|
+
|
|
104
|
+
- "Archive N changes?" with options based on status
|
|
105
|
+
- Options might include:
|
|
106
|
+
- "Archive all N changes"
|
|
107
|
+
- "Archive only N ready changes (skip incomplete)"
|
|
108
|
+
- "Cancel"
|
|
109
|
+
|
|
110
|
+
If there are incomplete changes, make clear they'll be archived with warnings.
|
|
111
|
+
|
|
112
|
+
8. **Execute archive for each confirmed change**
|
|
113
|
+
|
|
114
|
+
Process changes in the determined order (respecting conflict resolution):
|
|
115
|
+
|
|
116
|
+
a. **Sync specs** if delta specs exist:
|
|
117
|
+
- Use the openspec-sync-specs approach (agent-driven intelligent merge)
|
|
118
|
+
- For conflicts, apply in resolved order
|
|
119
|
+
- Track if sync was done
|
|
120
|
+
|
|
121
|
+
b. **Perform the archive**:
|
|
122
|
+
\`\`\`bash
|
|
123
|
+
mkdir -p openspec/changes/archive
|
|
124
|
+
mv openspec/changes/<name> openspec/changes/archive/YYYY-MM-DD-<name>
|
|
125
|
+
\`\`\`
|
|
126
|
+
|
|
127
|
+
c. **Track outcome** for each change:
|
|
128
|
+
- Success: archived successfully
|
|
129
|
+
- Failed: error during archive (record error)
|
|
130
|
+
- Skipped: user chose not to archive (if applicable)
|
|
131
|
+
|
|
132
|
+
9. **Display summary**
|
|
133
|
+
|
|
134
|
+
Show final results:
|
|
135
|
+
|
|
136
|
+
\`\`\`
|
|
137
|
+
## Bulk Archive Complete
|
|
138
|
+
|
|
139
|
+
Archived 3 changes:
|
|
140
|
+
- schema-management-cli -> archive/2026-01-19-schema-management-cli/
|
|
141
|
+
- project-config -> archive/2026-01-19-project-config/
|
|
142
|
+
- add-oauth -> archive/2026-01-19-add-oauth/
|
|
143
|
+
|
|
144
|
+
Skipped 1 change:
|
|
145
|
+
- add-verify-skill (user chose not to archive incomplete)
|
|
146
|
+
|
|
147
|
+
Spec sync summary:
|
|
148
|
+
- 4 delta specs synced to main specs
|
|
149
|
+
- 1 conflict resolved (auth: applied both in chronological order)
|
|
150
|
+
\`\`\`
|
|
151
|
+
|
|
152
|
+
If any failures:
|
|
153
|
+
\`\`\`
|
|
154
|
+
Failed 1 change:
|
|
155
|
+
- some-change: Archive directory already exists
|
|
156
|
+
\`\`\`
|
|
157
|
+
|
|
158
|
+
**Conflict Resolution Examples**
|
|
159
|
+
|
|
160
|
+
Example 1: Only one implemented
|
|
161
|
+
\`\`\`
|
|
162
|
+
Conflict: specs/auth/spec.md touched by [add-oauth, add-jwt]
|
|
163
|
+
|
|
164
|
+
Checking add-oauth:
|
|
165
|
+
- Delta adds "OAuth Provider Integration" requirement
|
|
166
|
+
- Searching codebase... found src/auth/oauth.ts implementing OAuth flow
|
|
167
|
+
|
|
168
|
+
Checking add-jwt:
|
|
169
|
+
- Delta adds "JWT Token Handling" requirement
|
|
170
|
+
- Searching codebase... no JWT implementation found
|
|
171
|
+
|
|
172
|
+
Resolution: Only add-oauth is implemented. Will sync add-oauth specs only.
|
|
173
|
+
\`\`\`
|
|
174
|
+
|
|
175
|
+
Example 2: Both implemented
|
|
176
|
+
\`\`\`
|
|
177
|
+
Conflict: specs/api/spec.md touched by [add-rest-api, add-graphql]
|
|
178
|
+
|
|
179
|
+
Checking add-rest-api (created 2026-01-10):
|
|
180
|
+
- Delta adds "REST Endpoints" requirement
|
|
181
|
+
- Searching codebase... found src/api/rest.ts
|
|
182
|
+
|
|
183
|
+
Checking add-graphql (created 2026-01-15):
|
|
184
|
+
- Delta adds "GraphQL Schema" requirement
|
|
185
|
+
- Searching codebase... found src/api/graphql.ts
|
|
186
|
+
|
|
187
|
+
Resolution: Both implemented. Will apply add-rest-api specs first,
|
|
188
|
+
then add-graphql specs (chronological order, newer takes precedence).
|
|
189
|
+
\`\`\`
|
|
190
|
+
|
|
191
|
+
**Output On Success**
|
|
192
|
+
|
|
193
|
+
\`\`\`
|
|
194
|
+
## Bulk Archive Complete
|
|
195
|
+
|
|
196
|
+
Archived N changes:
|
|
197
|
+
- <change-1> -> archive/YYYY-MM-DD-<change-1>/
|
|
198
|
+
- <change-2> -> archive/YYYY-MM-DD-<change-2>/
|
|
199
|
+
|
|
200
|
+
Spec sync summary:
|
|
201
|
+
- N delta specs synced to main specs
|
|
202
|
+
- No conflicts (or: M conflicts resolved)
|
|
203
|
+
\`\`\`
|
|
204
|
+
|
|
205
|
+
**Output On Partial Success**
|
|
206
|
+
|
|
207
|
+
\`\`\`
|
|
208
|
+
## Bulk Archive Complete (partial)
|
|
209
|
+
|
|
210
|
+
Archived N changes:
|
|
211
|
+
- <change-1> -> archive/YYYY-MM-DD-<change-1>/
|
|
212
|
+
|
|
213
|
+
Skipped M changes:
|
|
214
|
+
- <change-2> (user chose not to archive incomplete)
|
|
215
|
+
|
|
216
|
+
Failed K changes:
|
|
217
|
+
- <change-3>: Archive directory already exists
|
|
218
|
+
\`\`\`
|
|
219
|
+
|
|
220
|
+
**Output When No Changes**
|
|
221
|
+
|
|
222
|
+
\`\`\`
|
|
223
|
+
## No Changes to Archive
|
|
224
|
+
|
|
225
|
+
No active changes found. Create a new change to get started.
|
|
226
|
+
\`\`\`
|
|
227
|
+
|
|
228
|
+
**Guardrails**
|
|
229
|
+
- Allow any number of changes (1+ is fine, 2+ is the typical use case)
|
|
230
|
+
- Always prompt for selection, never auto-select
|
|
231
|
+
- Detect spec conflicts early and resolve by checking codebase
|
|
232
|
+
- When both changes are implemented, apply specs in chronological order
|
|
233
|
+
- Skip spec sync only when implementation is missing (warn user)
|
|
234
|
+
- Show clear per-change status before confirming
|
|
235
|
+
- Use single confirmation for entire batch
|
|
236
|
+
- Track and report all outcomes (success/skip/fail)
|
|
237
|
+
- Preserve .openspec.yaml when moving to archive
|
|
238
|
+
- Archive directory target uses current date: YYYY-MM-DD-<name>
|
|
239
|
+
- If archive target exists, fail that change but continue with others`,
|
|
240
|
+
license: 'MIT',
|
|
241
|
+
compatibility: 'Requires openspec CLI.',
|
|
242
|
+
metadata: { author: 'openspec', version: '1.0' },
|
|
243
|
+
};
|
|
244
|
+
}
|
|
245
|
+
export function getOpsxBulkArchiveCommandTemplate() {
|
|
246
|
+
return {
|
|
247
|
+
name: 'OPSX: Bulk Archive',
|
|
248
|
+
description: 'Archive multiple completed changes at once',
|
|
249
|
+
category: 'Workflow',
|
|
250
|
+
tags: ['workflow', 'archive', 'experimental', 'bulk'],
|
|
251
|
+
content: `Archive multiple completed changes in a single operation.
|
|
252
|
+
|
|
253
|
+
This skill allows you to batch-archive changes, handling spec conflicts intelligently by checking the codebase to determine what's actually implemented.
|
|
254
|
+
|
|
255
|
+
**Input**: None required (prompts for selection)
|
|
256
|
+
|
|
257
|
+
**Steps**
|
|
258
|
+
|
|
259
|
+
1. **Get active changes**
|
|
260
|
+
|
|
261
|
+
Run \`openspec list --json\` to get all active changes.
|
|
262
|
+
|
|
263
|
+
If no active changes exist, inform user and stop.
|
|
264
|
+
|
|
265
|
+
2. **Prompt for change selection**
|
|
266
|
+
|
|
267
|
+
Use **AskUserQuestion tool** with multi-select to let user choose changes:
|
|
268
|
+
- Show each change with its schema
|
|
269
|
+
- Include an option for "All changes"
|
|
270
|
+
- Allow any number of selections (1+ works, 2+ is the typical use case)
|
|
271
|
+
|
|
272
|
+
**IMPORTANT**: Do NOT auto-select. Always let the user choose.
|
|
273
|
+
|
|
274
|
+
3. **Batch validation - gather status for all selected changes**
|
|
275
|
+
|
|
276
|
+
For each selected change, collect:
|
|
277
|
+
|
|
278
|
+
a. **Artifact status** - Run \`openspec status --change "<name>" --json\`
|
|
279
|
+
- Parse \`schemaName\` and \`artifacts\` list
|
|
280
|
+
- Note which artifacts are \`done\` vs other states
|
|
281
|
+
|
|
282
|
+
b. **Task completion** - Read \`openspec/changes/<name>/tasks.md\`
|
|
283
|
+
- Count \`- [ ]\` (incomplete) vs \`- [x]\` (complete)
|
|
284
|
+
- If no tasks file exists, note as "No tasks"
|
|
285
|
+
|
|
286
|
+
c. **Delta specs** - Check \`openspec/changes/<name>/specs/\` directory
|
|
287
|
+
- List which capability specs exist
|
|
288
|
+
- For each, extract requirement names (lines matching \`### Requirement: <name>\`)
|
|
289
|
+
|
|
290
|
+
4. **Detect spec conflicts**
|
|
291
|
+
|
|
292
|
+
Build a map of \`capability -> [changes that touch it]\`:
|
|
293
|
+
|
|
294
|
+
\`\`\`
|
|
295
|
+
auth -> [change-a, change-b] <- CONFLICT (2+ changes)
|
|
296
|
+
api -> [change-c] <- OK (only 1 change)
|
|
297
|
+
\`\`\`
|
|
298
|
+
|
|
299
|
+
A conflict exists when 2+ selected changes have delta specs for the same capability.
|
|
300
|
+
|
|
301
|
+
5. **Resolve conflicts agentically**
|
|
302
|
+
|
|
303
|
+
**For each conflict**, investigate the codebase:
|
|
304
|
+
|
|
305
|
+
a. **Read the delta specs** from each conflicting change to understand what each claims to add/modify
|
|
306
|
+
|
|
307
|
+
b. **Search the codebase** for implementation evidence:
|
|
308
|
+
- Look for code implementing requirements from each delta spec
|
|
309
|
+
- Check for related files, functions, or tests
|
|
310
|
+
|
|
311
|
+
c. **Determine resolution**:
|
|
312
|
+
- If only one change is actually implemented -> sync that one's specs
|
|
313
|
+
- If both implemented -> apply in chronological order (older first, newer overwrites)
|
|
314
|
+
- If neither implemented -> skip spec sync, warn user
|
|
315
|
+
|
|
316
|
+
d. **Record resolution** for each conflict:
|
|
317
|
+
- Which change's specs to apply
|
|
318
|
+
- In what order (if both)
|
|
319
|
+
- Rationale (what was found in codebase)
|
|
320
|
+
|
|
321
|
+
6. **Show consolidated status table**
|
|
322
|
+
|
|
323
|
+
Display a table summarizing all changes:
|
|
324
|
+
|
|
325
|
+
\`\`\`
|
|
326
|
+
| Change | Artifacts | Tasks | Specs | Conflicts | Status |
|
|
327
|
+
|---------------------|-----------|-------|---------|-----------|--------|
|
|
328
|
+
| schema-management | Done | 5/5 | 2 delta | None | Ready |
|
|
329
|
+
| project-config | Done | 3/3 | 1 delta | None | Ready |
|
|
330
|
+
| add-oauth | Done | 4/4 | 1 delta | auth (!) | Ready* |
|
|
331
|
+
| add-verify-skill | 1 left | 2/5 | None | None | Warn |
|
|
332
|
+
\`\`\`
|
|
333
|
+
|
|
334
|
+
For conflicts, show the resolution:
|
|
335
|
+
\`\`\`
|
|
336
|
+
* Conflict resolution:
|
|
337
|
+
- auth spec: Will apply add-oauth then add-jwt (both implemented, chronological order)
|
|
338
|
+
\`\`\`
|
|
339
|
+
|
|
340
|
+
For incomplete changes, show warnings:
|
|
341
|
+
\`\`\`
|
|
342
|
+
Warnings:
|
|
343
|
+
- add-verify-skill: 1 incomplete artifact, 3 incomplete tasks
|
|
344
|
+
\`\`\`
|
|
345
|
+
|
|
346
|
+
7. **Confirm batch operation**
|
|
347
|
+
|
|
348
|
+
Use **AskUserQuestion tool** with a single confirmation:
|
|
349
|
+
|
|
350
|
+
- "Archive N changes?" with options based on status
|
|
351
|
+
- Options might include:
|
|
352
|
+
- "Archive all N changes"
|
|
353
|
+
- "Archive only N ready changes (skip incomplete)"
|
|
354
|
+
- "Cancel"
|
|
355
|
+
|
|
356
|
+
If there are incomplete changes, make clear they'll be archived with warnings.
|
|
357
|
+
|
|
358
|
+
8. **Execute archive for each confirmed change**
|
|
359
|
+
|
|
360
|
+
Process changes in the determined order (respecting conflict resolution):
|
|
361
|
+
|
|
362
|
+
a. **Sync specs** if delta specs exist:
|
|
363
|
+
- Use the openspec-sync-specs approach (agent-driven intelligent merge)
|
|
364
|
+
- For conflicts, apply in resolved order
|
|
365
|
+
- Track if sync was done
|
|
366
|
+
|
|
367
|
+
b. **Perform the archive**:
|
|
368
|
+
\`\`\`bash
|
|
369
|
+
mkdir -p openspec/changes/archive
|
|
370
|
+
mv openspec/changes/<name> openspec/changes/archive/YYYY-MM-DD-<name>
|
|
371
|
+
\`\`\`
|
|
372
|
+
|
|
373
|
+
c. **Track outcome** for each change:
|
|
374
|
+
- Success: archived successfully
|
|
375
|
+
- Failed: error during archive (record error)
|
|
376
|
+
- Skipped: user chose not to archive (if applicable)
|
|
377
|
+
|
|
378
|
+
9. **Display summary**
|
|
379
|
+
|
|
380
|
+
Show final results:
|
|
381
|
+
|
|
382
|
+
\`\`\`
|
|
383
|
+
## Bulk Archive Complete
|
|
384
|
+
|
|
385
|
+
Archived 3 changes:
|
|
386
|
+
- schema-management-cli -> archive/2026-01-19-schema-management-cli/
|
|
387
|
+
- project-config -> archive/2026-01-19-project-config/
|
|
388
|
+
- add-oauth -> archive/2026-01-19-add-oauth/
|
|
389
|
+
|
|
390
|
+
Skipped 1 change:
|
|
391
|
+
- add-verify-skill (user chose not to archive incomplete)
|
|
392
|
+
|
|
393
|
+
Spec sync summary:
|
|
394
|
+
- 4 delta specs synced to main specs
|
|
395
|
+
- 1 conflict resolved (auth: applied both in chronological order)
|
|
396
|
+
\`\`\`
|
|
397
|
+
|
|
398
|
+
If any failures:
|
|
399
|
+
\`\`\`
|
|
400
|
+
Failed 1 change:
|
|
401
|
+
- some-change: Archive directory already exists
|
|
402
|
+
\`\`\`
|
|
403
|
+
|
|
404
|
+
**Conflict Resolution Examples**
|
|
405
|
+
|
|
406
|
+
Example 1: Only one implemented
|
|
407
|
+
\`\`\`
|
|
408
|
+
Conflict: specs/auth/spec.md touched by [add-oauth, add-jwt]
|
|
409
|
+
|
|
410
|
+
Checking add-oauth:
|
|
411
|
+
- Delta adds "OAuth Provider Integration" requirement
|
|
412
|
+
- Searching codebase... found src/auth/oauth.ts implementing OAuth flow
|
|
413
|
+
|
|
414
|
+
Checking add-jwt:
|
|
415
|
+
- Delta adds "JWT Token Handling" requirement
|
|
416
|
+
- Searching codebase... no JWT implementation found
|
|
417
|
+
|
|
418
|
+
Resolution: Only add-oauth is implemented. Will sync add-oauth specs only.
|
|
419
|
+
\`\`\`
|
|
420
|
+
|
|
421
|
+
Example 2: Both implemented
|
|
422
|
+
\`\`\`
|
|
423
|
+
Conflict: specs/api/spec.md touched by [add-rest-api, add-graphql]
|
|
424
|
+
|
|
425
|
+
Checking add-rest-api (created 2026-01-10):
|
|
426
|
+
- Delta adds "REST Endpoints" requirement
|
|
427
|
+
- Searching codebase... found src/api/rest.ts
|
|
428
|
+
|
|
429
|
+
Checking add-graphql (created 2026-01-15):
|
|
430
|
+
- Delta adds "GraphQL Schema" requirement
|
|
431
|
+
- Searching codebase... found src/api/graphql.ts
|
|
432
|
+
|
|
433
|
+
Resolution: Both implemented. Will apply add-rest-api specs first,
|
|
434
|
+
then add-graphql specs (chronological order, newer takes precedence).
|
|
435
|
+
\`\`\`
|
|
436
|
+
|
|
437
|
+
**Output On Success**
|
|
438
|
+
|
|
439
|
+
\`\`\`
|
|
440
|
+
## Bulk Archive Complete
|
|
441
|
+
|
|
442
|
+
Archived N changes:
|
|
443
|
+
- <change-1> -> archive/YYYY-MM-DD-<change-1>/
|
|
444
|
+
- <change-2> -> archive/YYYY-MM-DD-<change-2>/
|
|
445
|
+
|
|
446
|
+
Spec sync summary:
|
|
447
|
+
- N delta specs synced to main specs
|
|
448
|
+
- No conflicts (or: M conflicts resolved)
|
|
449
|
+
\`\`\`
|
|
450
|
+
|
|
451
|
+
**Output On Partial Success**
|
|
452
|
+
|
|
453
|
+
\`\`\`
|
|
454
|
+
## Bulk Archive Complete (partial)
|
|
455
|
+
|
|
456
|
+
Archived N changes:
|
|
457
|
+
- <change-1> -> archive/YYYY-MM-DD-<change-1>/
|
|
458
|
+
|
|
459
|
+
Skipped M changes:
|
|
460
|
+
- <change-2> (user chose not to archive incomplete)
|
|
461
|
+
|
|
462
|
+
Failed K changes:
|
|
463
|
+
- <change-3>: Archive directory already exists
|
|
464
|
+
\`\`\`
|
|
465
|
+
|
|
466
|
+
**Output When No Changes**
|
|
467
|
+
|
|
468
|
+
\`\`\`
|
|
469
|
+
## No Changes to Archive
|
|
470
|
+
|
|
471
|
+
No active changes found. Create a new change to get started.
|
|
472
|
+
\`\`\`
|
|
473
|
+
|
|
474
|
+
**Guardrails**
|
|
475
|
+
- Allow any number of changes (1+ is fine, 2+ is the typical use case)
|
|
476
|
+
- Always prompt for selection, never auto-select
|
|
477
|
+
- Detect spec conflicts early and resolve by checking codebase
|
|
478
|
+
- When both changes are implemented, apply specs in chronological order
|
|
479
|
+
- Skip spec sync only when implementation is missing (warn user)
|
|
480
|
+
- Show clear per-change status before confirming
|
|
481
|
+
- Use single confirmation for entire batch
|
|
482
|
+
- Track and report all outcomes (success/skip/fail)
|
|
483
|
+
- Preserve .openspec.yaml when moving to archive
|
|
484
|
+
- Archive directory target uses current date: YYYY-MM-DD-<name>
|
|
485
|
+
- If archive target exists, fail that change but continue with others`
|
|
486
|
+
};
|
|
487
|
+
}
|
|
488
|
+
//# sourceMappingURL=bulk-archive-change.js.map
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Skill Template Workflow Modules
|
|
3
|
+
*
|
|
4
|
+
* This file is generated by splitting the legacy monolithic
|
|
5
|
+
* templates file into workflow-focused modules.
|
|
6
|
+
*/
|
|
7
|
+
import type { SkillTemplate, CommandTemplate } from '../types.js';
|
|
8
|
+
export declare function getContinueChangeSkillTemplate(): SkillTemplate;
|
|
9
|
+
export declare function getOpsxContinueCommandTemplate(): CommandTemplate;
|
|
10
|
+
//# sourceMappingURL=continue-change.d.ts.map
|