catalyst-os 0.2.8 → 0.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/README.md +80 -55
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
/catalyze-project # Initialize project foundation
|
|
11
11
|
/catalyze-spec "description" # Shape a feature specification
|
|
12
12
|
/build-spec @spec-name # Implement with TDD
|
|
13
|
+
/iterate-spec @spec-name "improvement" # Add improvements mid-build
|
|
13
14
|
/validate-spec @spec-name # Run quality checks
|
|
14
15
|
/approve-spec @spec-name # Accept and archive
|
|
15
16
|
```
|
|
@@ -32,19 +33,14 @@ Your project keeps its own `CLAUDE.md` — Catalyst OS lives entirely within the
|
|
|
32
33
|
|
|
33
34
|
```
|
|
34
35
|
.claude/
|
|
35
|
-
├── commands/ # User-invoked slash commands
|
|
36
|
-
└── skills/ # Model-invoked capabilities (HOW)
|
|
37
|
-
├── catalysts/ # Orchestration skills
|
|
38
|
-
├── seekers/ # Research skills
|
|
39
|
-
├── technologists/ # Builder skills
|
|
40
|
-
└── guardians/ # Quality skills
|
|
41
|
-
|
|
42
|
-
.catalyst/
|
|
43
36
|
├── agents/ # Agent definitions (WHO)
|
|
44
37
|
│ ├── catalysts/ # Orchestrators
|
|
45
38
|
│ ├── seekers/ # Research agents
|
|
46
39
|
│ ├── technologists/ # Builder agents
|
|
47
40
|
│ └── guardians/ # Quality agents
|
|
41
|
+
└── commands/ # User-invoked slash commands
|
|
42
|
+
|
|
43
|
+
.catalyst/
|
|
48
44
|
├── main/ # Mission, roadmap, tech-stack
|
|
49
45
|
├── specs/ # Active specifications
|
|
50
46
|
├── tasks/ # Independent task files
|
|
@@ -62,21 +58,36 @@ Your project keeps its own `CLAUDE.md` — Catalyst OS lives entirely within the
|
|
|
62
58
|
|
|
63
59
|
| Component | Contains | Location |
|
|
64
60
|
|-----------|----------|----------|
|
|
65
|
-
| **Agent** | WHO - Persona, behavior | `.
|
|
66
|
-
| **
|
|
67
|
-
| **Command** | WHEN - User trigger | `.claude/commands/` |
|
|
61
|
+
| **Agent** | WHO - Persona, behavior | `.claude/agents/` |
|
|
62
|
+
| **Command** | WHEN - User trigger, orchestration | `.claude/commands/` |
|
|
68
63
|
|
|
69
|
-
###
|
|
64
|
+
### Agent Specialization
|
|
70
65
|
|
|
71
66
|
```
|
|
72
|
-
|
|
73
|
-
├──
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
├──
|
|
79
|
-
|
|
67
|
+
Catalysts (Orchestrators)
|
|
68
|
+
├── Catalyst → Spec orchestration
|
|
69
|
+
├── Forge-Master → Build orchestration
|
|
70
|
+
└── Arbiter → Validation orchestration
|
|
71
|
+
|
|
72
|
+
Seekers (Research)
|
|
73
|
+
├── Oracle → Requirements gathering
|
|
74
|
+
├── Seer → Codebase analysis
|
|
75
|
+
├── Scout → Web research
|
|
76
|
+
├── Surveyor → UI/UX research
|
|
77
|
+
└── Scribe → Documentation
|
|
78
|
+
|
|
79
|
+
Technologists (Builders)
|
|
80
|
+
├── Forger → Task breakdown
|
|
81
|
+
├── Alchemist → Database
|
|
82
|
+
├── Smith → Backend
|
|
83
|
+
├── Shaper → Frontend
|
|
84
|
+
└── Necromancer → ML/AI
|
|
85
|
+
|
|
86
|
+
Guardians (Quality)
|
|
87
|
+
├── Enforcer → Unit tests
|
|
88
|
+
├── Sentinel → E2E tests
|
|
89
|
+
├── Inquisitor → Code review
|
|
90
|
+
└── Watcher → Security
|
|
80
91
|
```
|
|
81
92
|
|
|
82
93
|
---
|
|
@@ -101,6 +112,21 @@ Scout agent
|
|
|
101
112
|
│ spec.md │ │ tasks.md │ │ validation.md│ │ Commit + │
|
|
102
113
|
│ research.md │ │ (updated) │ │ handoff.md │ │ Archive │
|
|
103
114
|
└──────────────┘ └──────────────┘ └──────────────┘ └──────────────┘
|
|
115
|
+
│
|
|
116
|
+
▼
|
|
117
|
+
┌──────────────┐
|
|
118
|
+
│ 🔄 ITERATE │ ◀─── New idea during build?
|
|
119
|
+
│ │
|
|
120
|
+
│ /iterate- │ Updates spec + tasks
|
|
121
|
+
│ spec │ Continues building
|
|
122
|
+
└──────────────┘
|
|
123
|
+
|
|
124
|
+
┌─────────────────────────────────────────────────────────────────────────────┐
|
|
125
|
+
│ 💡 CONTEXT RECOVERY │
|
|
126
|
+
│ │
|
|
127
|
+
│ Context full? New conversation? │
|
|
128
|
+
│ Run /primer-spec @slug to restore awareness before continuing. │
|
|
129
|
+
└─────────────────────────────────────────────────────────────────────────────┘
|
|
104
130
|
```
|
|
105
131
|
|
|
106
132
|
---
|
|
@@ -171,27 +197,27 @@ Scout agent
|
|
|
171
197
|
└─────────────────────────────────────────────────────────────────────────────┘
|
|
172
198
|
```
|
|
173
199
|
|
|
174
|
-
### Agent
|
|
175
|
-
|
|
176
|
-
| Order | Agent |
|
|
177
|
-
|
|
178
|
-
| **CATALYSTS** | Catalyst |
|
|
179
|
-
| | Forge-Master |
|
|
180
|
-
| | Arbiter |
|
|
181
|
-
| **SEEKERS** | Oracle |
|
|
182
|
-
| | Scribe |
|
|
183
|
-
| | Seer |
|
|
184
|
-
| | Scout |
|
|
185
|
-
| | Surveyor |
|
|
186
|
-
| **TECHNOLOGISTS** | Forger |
|
|
187
|
-
| | Smith |
|
|
188
|
-
| | Shaper |
|
|
189
|
-
| | Alchemist |
|
|
190
|
-
| | Necromancer |
|
|
191
|
-
| **GUARDIANS** | Enforcer |
|
|
192
|
-
| | Sentinel |
|
|
193
|
-
| | Inquisitor |
|
|
194
|
-
| | Watcher |
|
|
200
|
+
### Agent Capabilities
|
|
201
|
+
|
|
202
|
+
| Order | Agent | Responsibility |
|
|
203
|
+
|-------|-------|----------------|
|
|
204
|
+
| **CATALYSTS** | Catalyst | Spec orchestration, spawns Seekers |
|
|
205
|
+
| | Forge-Master | Build orchestration, spawns Technologists |
|
|
206
|
+
| | Arbiter | Validation orchestration, spawns Guardians |
|
|
207
|
+
| **SEEKERS** | Oracle | Gather requirements from user |
|
|
208
|
+
| | Scribe | Write and manage documentation |
|
|
209
|
+
| | Seer | Analyze codebase patterns |
|
|
210
|
+
| | Scout | Research web, GitHub, Reddit |
|
|
211
|
+
| | Surveyor | Research UI/UX patterns |
|
|
212
|
+
| **TECHNOLOGISTS** | Forger | Break down specs into tasks |
|
|
213
|
+
| | Smith | Implement backend/API code |
|
|
214
|
+
| | Shaper | Implement frontend/UI code |
|
|
215
|
+
| | Alchemist | Design schemas, create migrations |
|
|
216
|
+
| | Necromancer | Implement ML/AI features |
|
|
217
|
+
| **GUARDIANS** | Enforcer | Write and run unit tests |
|
|
218
|
+
| | Sentinel | Run E2E tests |
|
|
219
|
+
| | Inquisitor | Code review, linting |
|
|
220
|
+
| | Watcher | Security audit, dependency scan |
|
|
195
221
|
|
|
196
222
|
---
|
|
197
223
|
|
|
@@ -202,12 +228,14 @@ Scout agent
|
|
|
202
228
|
| `/catalyze-project` | Start new project | mission.md, roadmap.md, tech-stack.md |
|
|
203
229
|
| `/catalyze-spec "feature"` | New feature request | spec.md, research.md |
|
|
204
230
|
| `/build-spec @slug` | Implement feature | tasks.md (updated) |
|
|
231
|
+
| `/iterate-spec @slug "idea"` | Add improvements mid-build | Updated spec + tasks, continues building |
|
|
232
|
+
| `/primer-spec @slug` | Restore context (new conversation) | Brief status summary |
|
|
205
233
|
| `/build-task "description"` | Modify existing code | task.md in .catalyst/tasks/ |
|
|
206
234
|
| `/validate-spec @slug` | Quality checks | validation.md, handoff.md |
|
|
207
235
|
| `/approve-spec @slug` | Finalize | Commit + Archive |
|
|
208
236
|
| `/reject-spec @slug "reason"` | Reject implementation | Status: REJECTED |
|
|
209
237
|
| `/status-spec @slug` | Check progress | Current status |
|
|
210
|
-
| `/update-spec @slug` | Modify spec | Updated spec.md |
|
|
238
|
+
| `/update-spec @slug "change"` | Modify spec (planning phase) | Updated spec.md |
|
|
211
239
|
| `/mission` | Create/update mission.md | mission.md |
|
|
212
240
|
| `/roadmap` | Create/update roadmap.md | roadmap.md |
|
|
213
241
|
| `/tech-stack` | Create/update tech-stack.md | tech-stack.md |
|
|
@@ -390,24 +418,21 @@ What this agent does.
|
|
|
390
418
|
- Guidelines
|
|
391
419
|
- Constraints
|
|
392
420
|
|
|
393
|
-
##
|
|
394
|
-
|
|
395
|
-
|-------|---------|
|
|
396
|
-
| `skill-name` | Description |
|
|
421
|
+
## Capabilities
|
|
422
|
+
What this agent can do.
|
|
397
423
|
```
|
|
398
424
|
|
|
399
|
-
###
|
|
425
|
+
### Command File
|
|
400
426
|
|
|
401
|
-
```
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
agent: agent-name
|
|
406
|
-
---
|
|
427
|
+
```markdown
|
|
428
|
+
# /command-name
|
|
429
|
+
|
|
430
|
+
Description of what this command does.
|
|
407
431
|
|
|
408
|
-
|
|
432
|
+
## Usage
|
|
433
|
+
/command-name @spec-slug "optional args"
|
|
409
434
|
|
|
410
|
-
##
|
|
435
|
+
## Workflow
|
|
411
436
|
1. Step one
|
|
412
437
|
2. Step two
|
|
413
438
|
|