catalyst-os 1.1.1 → 1.3.0
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/.catalyst/bin/validate-artifacts.js +213 -0
- package/.catalyst/main/project-config.yaml +3 -0
- package/.catalyst/spec-structure.yaml +4 -4
- package/.claude/agents/alchemist.md +29 -1
- package/.claude/agents/arbiter.md +1 -1
- package/.claude/agents/enforcer.md +26 -0
- package/.claude/agents/forge-master.md +22 -1
- package/.claude/agents/inquisitor.md +20 -3
- package/.claude/agents/shaper.md +29 -1
- package/.claude/agents/smith.md +29 -1
- package/.claude/commands/build-spec-worktree.md +19 -0
- package/.claude/commands/build-spec.md +12 -0
- package/.claude/commands/commit-spec.md +20 -0
- package/.claude/commands/{reject-spec.md → discard-spec.md} +9 -9
- package/.claude/commands/iterate-spec.md +10 -0
- package/.claude/commands/primer-spec.md +23 -13
- package/.claude/commands/review-spec.md +29 -0
- package/.claude/commands/status-spec.md +20 -12
- package/.claude/hooks/post-edit-format.sh +62 -0
- package/.claude/hooks/pre-compact-save.sh +98 -0
- package/.claude/rules/coding-standards.md +21 -0
- package/.claude/rules/git-workflow.md +25 -0
- package/.claude/rules/security.md +23 -0
- package/.claude/settings.json +15 -0
- package/.claude/settings.local.json +5 -3
- package/.claude/skills/build-orchestration/SKILL.md +39 -8
- package/.claude/skills/spec-approval/SKILL.md +3 -3
- package/.claude/skills/spec-iteration/SKILL.md +6 -4
- package/.claude/skills/spec-shaping/SKILL.md +1 -1
- package/.claude/skills/spec-validation/SKILL.md +10 -6
- package/.claude/skills/using-skills/SKILL.md +2 -2
- package/README.md +9 -9
- package/package.json +3 -2
- package/.claude/commands/approve-spec.md +0 -22
- package/.claude/commands/validate-spec.md +0 -17
package/README.md
CHANGED
|
@@ -12,8 +12,8 @@ npx catalyst-os # Install to your project
|
|
|
12
12
|
/catalyze-spec "description" # Shape a feature specification
|
|
13
13
|
/build-spec @spec-name # Implement with TDD
|
|
14
14
|
/iterate-spec @spec-name "improvement" # Add improvements mid-build
|
|
15
|
-
/
|
|
16
|
-
/
|
|
15
|
+
/review-spec @spec-name # Run quality checks
|
|
16
|
+
/commit-spec @spec-name # Accept and archive
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
---
|
|
@@ -105,8 +105,8 @@ Without this, skills are optional documentation. With it, they're mandatory proc
|
|
|
105
105
|
| `spec-shaping` | `/catalyze-spec` | Shape feature requests into specifications |
|
|
106
106
|
| `build-orchestration` | `/build-spec` | DAG-based TDD implementation |
|
|
107
107
|
| `spec-iteration` | `/iterate-spec` | Update and continue mid-build |
|
|
108
|
-
| `spec-validation` | `/
|
|
109
|
-
| `spec-approval` | `/
|
|
108
|
+
| `spec-validation` | `/review-spec` | Quality checks via Guardian agents |
|
|
109
|
+
| `spec-approval` | `/commit-spec` | Final verification and archival |
|
|
110
110
|
| `project-initialization` | `/catalyze-project` | Workspace detection + foundation docs |
|
|
111
111
|
| `task-building` | `/build-task` | Single task (brownfield) |
|
|
112
112
|
| `spec-update` | `/update-spec` | Modify spec during planning phase |
|
|
@@ -173,7 +173,7 @@ Guardians (Quality)
|
|
|
173
173
|
```
|
|
174
174
|
┌──────────────┐ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐
|
|
175
175
|
│ │ │ │ │ │ │ │
|
|
176
|
-
│ CATALYZE │────>│ BUILD │────>│ VALIDATE │────>│
|
|
176
|
+
│ CATALYZE │────>│ BUILD │────>│ VALIDATE │────>│ COMMIT │
|
|
177
177
|
│ │ │ │ │ │ │ │
|
|
178
178
|
│ /catalyze- │ │ /build-spec │ │ /validate- │ │ /approve- │
|
|
179
179
|
│ spec │ │ │ │ spec │ │ spec │
|
|
@@ -209,9 +209,9 @@ Guardians (Quality)
|
|
|
209
209
|
| `/iterate-spec @slug "idea"` | Add improvements mid-build | Updated spec + tasks, continues building |
|
|
210
210
|
| `/primer-spec @slug` | Restore context (new conversation) | Brief status summary |
|
|
211
211
|
| `/build-task "description"` | Modify existing code | task.md in .catalyst/tasks/ |
|
|
212
|
-
| `/
|
|
213
|
-
| `/
|
|
214
|
-
| `/
|
|
212
|
+
| `/review-spec @slug` | Quality checks | validation.md, handoff.md |
|
|
213
|
+
| `/commit-spec @slug` | Finalize | Commit + Archive |
|
|
214
|
+
| `/discard-spec @slug "reason"` | Discard implementation | Status: REJECTED |
|
|
215
215
|
| `/status-spec @slug` | Check progress | Current status |
|
|
216
216
|
| `/update-spec @slug "change"` | Modify spec (planning phase) | Updated spec.md |
|
|
217
217
|
| `/mission` | Create/update mission.md | mission.md |
|
|
@@ -296,7 +296,7 @@ Enforcer -> Builders │ TDD: tests before code
|
|
|
296
296
|
|
|
297
297
|
## Pattern Library
|
|
298
298
|
|
|
299
|
-
Reusable implementation patterns extracted from completed specs via `/
|
|
299
|
+
Reusable implementation patterns extracted from completed specs via `/commit-spec`.
|
|
300
300
|
|
|
301
301
|
**Location:** `.catalyst/library/`
|
|
302
302
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "catalyst-os",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"scripts": {
|
|
5
|
-
"postinstall": "node .catalyst/bin/install.js"
|
|
5
|
+
"postinstall": "node .catalyst/bin/install.js",
|
|
6
|
+
"validate": "node .catalyst/bin/validate-artifacts.js"
|
|
6
7
|
},
|
|
7
8
|
"description": "AI-native spec-driven development framework for Claude Code",
|
|
8
9
|
"bin": {
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
# /approve-spec
|
|
2
|
-
|
|
3
|
-
Accept a **fully built and validated** implementation — commit, archive, and propagate learnings.
|
|
4
|
-
|
|
5
|
-
> **Lifecycle position:** This is the FINAL step. Only use after `/build-spec` and `/validate-spec` have completed successfully.
|
|
6
|
-
>
|
|
7
|
-
> **Flow:** `/catalyze-spec` → `/build-spec` → `/validate-spec` → **`/approve-spec`**
|
|
8
|
-
>
|
|
9
|
-
> **This is NOT for approving a spec/plan before building.** There is no "approve plan" step — after catalyzing, you go straight to `/build-spec`.
|
|
10
|
-
|
|
11
|
-
## Usage
|
|
12
|
-
|
|
13
|
-
```
|
|
14
|
-
/approve-spec @2025-11-29-stripe-integration
|
|
15
|
-
/approve-spec @2025-11-29-stripe-integration "Great work!"
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
---
|
|
19
|
-
|
|
20
|
-
**Invoke skill:** `spec-approval`
|
|
21
|
-
|
|
22
|
-
**Process skills used:** `verification-before-completion`, `agent-delegation`
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# /validate-spec
|
|
2
|
-
|
|
3
|
-
Run validation checks on a completed implementation.
|
|
4
|
-
|
|
5
|
-
## Usage
|
|
6
|
-
|
|
7
|
-
```
|
|
8
|
-
/validate-spec @2025-11-29-stripe-integration
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
---
|
|
12
|
-
|
|
13
|
-
**Invoke skill:** `spec-validation`
|
|
14
|
-
|
|
15
|
-
**Orchestrator:** Arbiter (delegates to Enforcer, Sentinel, Inquisitor, Watcher)
|
|
16
|
-
|
|
17
|
-
**Process skills used:** `verification-before-completion`, `agent-delegation`, `test-driven-development`
|