catalyst-os 0.2.2 → 0.2.4

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.
@@ -131,7 +131,6 @@ function install() {
131
131
  // Install config files
132
132
  const configs = [
133
133
  ['.catalyst/spec-structure.yaml', '.catalyst/spec-structure.yaml'],
134
- ['.catalyst/specs/spec-config.yaml', '.catalyst/specs/spec-config.yaml'],
135
134
  ['.catalyst/main/project-config.yaml', '.catalyst/main/project-config.yaml']
136
135
  ];
137
136
 
@@ -239,3 +239,81 @@ context_assembly:
239
239
  on_resume:
240
240
  - Read tasks.md "## Current Session" section
241
241
  - Continue from recorded position
242
+
243
+ # =============================================================================
244
+ # BUILD DAG STRUCTURE
245
+ # Used by Forger to create task breakdown
246
+ # =============================================================================
247
+
248
+ build_dag:
249
+ phases:
250
+ foundation:
251
+ agent: alchemist
252
+ sequential: true
253
+ description: "Database schema, core setup"
254
+
255
+ contracts:
256
+ agent: smith
257
+ sequential: true
258
+ description: "Shared types/interfaces before parallel work"
259
+
260
+ parallel:
261
+ agents: [smith, shaper]
262
+ multi_instance: true
263
+ description: "Scope-isolated parallel implementation"
264
+ rules:
265
+ - "Each agent has exclusive write scope"
266
+ - "Agents can read but not modify shared files"
267
+ - "No overlapping scopes between parallel tasks"
268
+
269
+ integration:
270
+ agent: enforcer
271
+ sequential: true
272
+ description: "Cross-boundary testing"
273
+
274
+ task_fields:
275
+ - id # Unique identifier
276
+ - agent # Which agent type (with instance: smith-1, shaper-2)
277
+ - scope # Files with exclusive write access
278
+ - reads # Files with read-only access
279
+ - depends_on # Task IDs that must complete first
280
+ - blocks # Task patterns this blocks (e.g., api-*, ui-*)
281
+ - acceptance # How to verify completion
282
+ - estimate # Time estimate (< 2 hours)
283
+
284
+ # =============================================================================
285
+ # PATTERN LIBRARY
286
+ # Reusable patterns extracted from completed specs
287
+ # =============================================================================
288
+
289
+ library:
290
+ root: "library/"
291
+ description: "Reusable patterns extracted from completed specs"
292
+ created_by: "/approve-spec (optional)"
293
+
294
+ # Auto-detect patterns by keywords
295
+ pattern_detection:
296
+ payment-integration.md:
297
+ keywords: [stripe, payment, billing, subscription, checkout]
298
+ authentication.md:
299
+ keywords: [auth, oauth, login, sso, jwt, session]
300
+ file-storage.md:
301
+ keywords: [upload, s3, storage, file, media, image]
302
+ real-time-communication.md:
303
+ keywords: [websocket, realtime, socket, live, push]
304
+ notifications.md:
305
+ keywords: [email, notification, smtp, push, alert]
306
+ search-implementation.md:
307
+ keywords: [search, elasticsearch, algolia, fulltext]
308
+ caching-strategy.md:
309
+ keywords: [cache, redis, memcached, performance]
310
+ background-jobs.md:
311
+ keywords: [queue, job, worker, bull, async, cron]
312
+
313
+ # =============================================================================
314
+ # COMPLETED SPECS
315
+ # =============================================================================
316
+
317
+ completed:
318
+ location: "completed/"
319
+ description: "Specs moved here after /approve-spec"
@@ -249,9 +249,7 @@ Action: Run /build-spec @2025-11-29-stripe-integration
249
249
 
250
250
  ### Validation Failure
251
251
  ```
252
- Validation failed!
253
-
254
- Spec: 2025-11-29-stripe-integrationFailed Checks:
252
+ Validation failed!Spec: 2025-11-29-stripe-integrationFailed Checks:
255
253
  - E2E Tests: 2 failures
256
254
  - Security: 1 vulnerability foundCreated: .catalyst/specs/{slug}/validation.md (with details)Action: Fix issues and re-run /validate-spec
257
255
  ```
@@ -12,7 +12,7 @@ Coordinate the spec shaping workflow from feature request to documented specific
12
12
 
13
13
  ## Process
14
14
 
15
- 1. **Initialize spec folder** (structure defined in `.catalyst/specs/spec-config.yaml`)
15
+ 1. **Initialize spec folder** (structure defined in `.catalyst/spec-structure.yaml`)
16
16
  ```
17
17
  .catalyst/specs/YYYY-MM-DD-{slug}/
18
18
  ├── spec.md # Main specification (Scribe)
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "catalyst-os",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
4
+ "scripts": {
5
+ "postinstall": "node .catalyst/bin/install.js"
6
+ },
4
7
  "description": "AI-native spec-driven development framework for Claude Code",
5
8
  "bin": {
6
- "catalyst-os": "bin/install.js"
9
+ "catalyst-os": ".catalyst/bin/install.js"
7
10
  },
8
11
  "files": [
9
- "bin",
10
12
  "AGENTS.md",
11
13
  ".claude",
12
- ".claude-plugin",
13
14
  ".catalyst/standards",
14
15
  ".catalyst/spec-structure.yaml",
15
- ".catalyst/specs/spec-config.yaml",
16
16
  ".catalyst/main/project-config.yaml"
17
17
  ],
18
18
  "keywords": [
@@ -1,114 +0,0 @@
1
- # Specifications Configuration
2
-
3
- # Command to create a new spec
4
- command: "/catalyze-spec \"description\""
5
-
6
- # Spec folder structure
7
- structure:
8
- root: "specs/"
9
- pattern: "YYYY-MM-DD-{slug}"
10
-
11
- # Files in each spec folder
12
- files:
13
- spec.md:
14
- owner: scribe
15
- description: "Main specification document"
16
- created_by: "/catalyze-spec"
17
-
18
- research.md:
19
- owner: scribe
20
- description: "Compiled research findings"
21
- created_by: "/catalyze-spec"
22
-
23
- tasks.md:
24
- owner: forger
25
- description: "Build DAG with task breakdown"
26
- created_by: "/build-spec"
27
- structure:
28
- - "Build DAG (phases, scope, dependencies)"
29
- - "Task details"
30
- - "Progress tracking"
31
-
32
- validation.md:
33
- owner: arbiter
34
- description: "Quality validation results"
35
- created_by: "/validate-spec"
36
-
37
- handoff.md:
38
- owner: arbiter
39
- description: "Living document, completion summary"
40
- created_by: "/validate-spec"
41
-
42
- assets/:
43
- owner: any
44
- description: "Images, diagrams, visual references"
45
-
46
- references/:
47
- owner: any
48
- optional: true
49
- description: "Screenshots, evidence, proof of issues (user-created)"
50
-
51
- # Completed specs location
52
- completed: "completed/"
53
-
54
- # Pattern library for reusable implementations
55
- library:
56
- root: "library/"
57
- description: "Reusable patterns extracted from completed specs"
58
- created_by: "/approve-spec (optional)"
59
-
60
- # Auto-detect patterns by keywords
61
- pattern_detection:
62
- payment-integration.md:
63
- keywords: [stripe, payment, billing, subscription, checkout]
64
- authentication.md:
65
- keywords: [auth, oauth, login, sso, jwt, session]
66
- file-storage.md:
67
- keywords: [upload, s3, storage, file, media, image]
68
- real-time-communication.md:
69
- keywords: [websocket, realtime, socket, live, push]
70
- notifications.md:
71
- keywords: [email, notification, smtp, push, alert]
72
- search-implementation.md:
73
- keywords: [search, elasticsearch, algolia, fulltext]
74
- caching-strategy.md:
75
- keywords: [cache, redis, memcached, performance]
76
- background-jobs.md:
77
- keywords: [queue, job, worker, bull, async, cron]
78
-
79
- # Build DAG structure (used by Forger)
80
- build_dag:
81
- phases:
82
- foundation:
83
- agent: alchemist
84
- sequential: true
85
- description: "Database schema, core setup"
86
-
87
- contracts:
88
- agent: smith
89
- sequential: true
90
- description: "Shared types/interfaces before parallel work"
91
-
92
- parallel:
93
- agents: [smith, shaper]
94
- multi_instance: true
95
- description: "Scope-isolated parallel implementation"
96
- rules:
97
- - "Each agent has exclusive write scope"
98
- - "Agents can read but not modify shared files"
99
- - "No overlapping scopes between parallel tasks"
100
-
101
- integration:
102
- agent: enforcer
103
- sequential: true
104
- description: "Cross-boundary testing"
105
-
106
- task_fields:
107
- - id # Unique identifier
108
- - agent # Which agent type (with instance: smith-1, shaper-2)
109
- - scope # Files with exclusive write access
110
- - reads # Files with read-only access
111
- - depends_on # Task IDs that must complete first
112
- - blocks # Task patterns this blocks (e.g., api-*, ui-*)
113
- - acceptance # How to verify completion
114
- - estimate # Time estimate (< 2 hours)
@@ -1,43 +0,0 @@
1
- {
2
- "name": "catalyst-os",
3
- "version": "0.1.0",
4
- "description": "AI-native spec-driven development framework for Claude Code",
5
- "author": {
6
- "name": "ealikadioglu"
7
- },
8
- "license": "MIT",
9
- "repository": "https://github.com/Ealikadioglu/catalyst-os",
10
- "commands": [
11
- ".claude/commands/catalyze-project.md",
12
- ".claude/commands/catalyze-spec.md",
13
- ".claude/commands/build-spec.md",
14
- ".claude/commands/build-task.md",
15
- ".claude/commands/validate-spec.md",
16
- ".claude/commands/approve-spec.md",
17
- ".claude/commands/reject-spec.md",
18
- ".claude/commands/update-spec.md",
19
- ".claude/commands/status-spec.md",
20
- ".claude/commands/mission.md",
21
- ".claude/commands/roadmap.md",
22
- ".claude/commands/tech-stack.md"
23
- ],
24
- "agents": [
25
- ".claude/agents/catalyst.md",
26
- ".claude/agents/forge-master.md",
27
- ".claude/agents/arbiter.md",
28
- ".claude/agents/oracle.md",
29
- ".claude/agents/seer.md",
30
- ".claude/agents/scout.md",
31
- ".claude/agents/surveyor.md",
32
- ".claude/agents/scribe.md",
33
- ".claude/agents/forger.md",
34
- ".claude/agents/enforcer.md",
35
- ".claude/agents/smith.md",
36
- ".claude/agents/shaper.md",
37
- ".claude/agents/alchemist.md",
38
- ".claude/agents/necromancer.md",
39
- ".claude/agents/inquisitor.md",
40
- ".claude/agents/sentinel.md",
41
- ".claude/agents/watcher.md"
42
- ]
43
- }