catalyst-os 0.1.1 → 0.1.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/.claude/commands/validate-spec.md +1 -1
- package/AGENTS.md +60 -5
- package/package.json +1 -1
package/AGENTS.md
CHANGED
|
@@ -161,11 +161,11 @@ Scribe is the gatekeeper. This ensures:
|
|
|
161
161
|
|
|
162
162
|
```
|
|
163
163
|
.catalyst/specs/YYYY-MM-DD-{slug}/
|
|
164
|
-
├── spec.md → Scribe owns
|
|
164
|
+
├── spec.md → Scribe owns (requirements + frontmatter)
|
|
165
165
|
├── research.md → Scribe compiles (researchers hand off findings)
|
|
166
|
-
├── tasks.md → Forger owns
|
|
166
|
+
├── tasks.md → Forger owns (THE living document)
|
|
167
167
|
├── validation.md → Arbiter owns
|
|
168
|
-
├── handoff.md → Scribe owns (
|
|
168
|
+
├── handoff.md → Scribe owns (human-readable summary)
|
|
169
169
|
└── assets/ → Any agent
|
|
170
170
|
```
|
|
171
171
|
|
|
@@ -173,5 +173,60 @@ Scribe is the gatekeeper. This ensures:
|
|
|
173
173
|
|
|
174
174
|
1. **Scribe is gatekeeper** — All .md writes in specs go through Scribe
|
|
175
175
|
2. **Researchers hand off** — Scout/Seer/Oracle give findings to Scribe, don't write directly
|
|
176
|
-
3. **
|
|
177
|
-
4. **
|
|
176
|
+
3. **tasks.md is THE living document** — ONE file to read when resuming work
|
|
177
|
+
4. **handoff.md is colleague summary** — Human-readable walkthrough, finalized at end
|
|
178
|
+
5. **See spec-structure.yaml** — For full structure details
|
|
179
|
+
|
|
180
|
+
---
|
|
181
|
+
|
|
182
|
+
## Context Assembly
|
|
183
|
+
|
|
184
|
+
**spec.md has YAML frontmatter** for cross-spec knowledge transfer:
|
|
185
|
+
|
|
186
|
+
```yaml
|
|
187
|
+
---
|
|
188
|
+
spec: YYYY-MM-DD-slug
|
|
189
|
+
status: draft | in-progress | complete
|
|
190
|
+
domain: auth | payments | etc
|
|
191
|
+
provides: [what this spec creates]
|
|
192
|
+
requires: [specs this depends on]
|
|
193
|
+
affects: [specs this impacts]
|
|
194
|
+
patterns_established: [reusable patterns created]
|
|
195
|
+
key_files: [important files created/modified]
|
|
196
|
+
key_decisions: [major choices made]
|
|
197
|
+
---
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
Catalyst reads frontmatter from all specs to understand project context before shaping new specs.
|
|
201
|
+
|
|
202
|
+
---
|
|
203
|
+
|
|
204
|
+
## Living Document Structure
|
|
205
|
+
|
|
206
|
+
**tasks.md is THE file to read when resuming work.** Contains:
|
|
207
|
+
|
|
208
|
+
```markdown
|
|
209
|
+
# Tasks: {Feature Name}
|
|
210
|
+
|
|
211
|
+
## Build DAG
|
|
212
|
+
[Phase tables with task breakdown]
|
|
213
|
+
|
|
214
|
+
## Progress
|
|
215
|
+
| Task | Status | Tests | Commit | Notes |
|
|
216
|
+
|------|--------|-------|--------|-------|
|
|
217
|
+
| db-schema | ✓ Done | ... | a1b2c3d | |
|
|
218
|
+
| api-auth | ⚡ Active | ... | - | smith-1 working |
|
|
219
|
+
|
|
220
|
+
## Current Session
|
|
221
|
+
**Phase:** 3 - Parallel Backend
|
|
222
|
+
**Active:** api-auth (smith-1), api-posts (smith-2)
|
|
223
|
+
**Working on:** {current focus}
|
|
224
|
+
**File:** {current file:line}
|
|
225
|
+
**Next:** {what comes after this}
|
|
226
|
+
|
|
227
|
+
## Decisions
|
|
228
|
+
- **Decision 1** - Rationale
|
|
229
|
+
- **Decision 2** - Rationale
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
**Forge-Master updates this file throughout the build.**
|