specsmd 0.0.0-dev.40 → 0.0.0-dev.42
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/flows/aidlc/skills/construction/prototype-apply.md +305 -0
- package/flows/aidlc/skills/inception/vibe-to-spec.md +406 -0
- package/flows/fire/README.md +130 -0
- package/flows/fire/agents/builder/agent.md +192 -0
- package/flows/fire/agents/builder/skills/run-execute/SKILL.md +196 -0
- package/flows/fire/agents/builder/skills/run-execute/scripts/complete-run.ts +806 -0
- package/flows/fire/agents/builder/skills/run-execute/scripts/init-run.ts +575 -0
- package/flows/fire/agents/builder/skills/run-status/SKILL.md +94 -0
- package/flows/fire/agents/builder/skills/walkthrough-generate/SKILL.md +140 -0
- package/flows/fire/agents/builder/skills/walkthrough-generate/scripts/render-walkthrough.ts +755 -0
- package/flows/fire/agents/orchestrator/agent.md +113 -0
- package/flows/fire/agents/orchestrator/skills/project-init/SKILL.md +124 -0
- package/flows/fire/agents/orchestrator/skills/route/SKILL.md +126 -0
- package/flows/fire/agents/orchestrator/skills/status/SKILL.md +99 -0
- package/flows/fire/agents/planner/agent.md +122 -0
- package/flows/fire/agents/planner/skills/design-doc-generate/SKILL.md +211 -0
- package/flows/fire/agents/planner/skills/intent-capture/SKILL.md +142 -0
- package/flows/fire/agents/planner/skills/work-item-decompose/SKILL.md +174 -0
- package/flows/fire/commands/fire-builder.md +56 -0
- package/flows/fire/commands/fire-planner.md +48 -0
- package/flows/fire/commands/fire.md +46 -0
- package/flows/fire/fire-config.yaml +109 -0
- package/package.json +1 -1
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
# FIRE Flow Configuration
|
|
2
|
+
# Fast Intent-Run Engineering - Simplified AI-native development
|
|
3
|
+
|
|
4
|
+
# Artifact folder (created at project initialization)
|
|
5
|
+
artifact_root: ".specs-fire"
|
|
6
|
+
|
|
7
|
+
# Structure created at project initialization
|
|
8
|
+
structure:
|
|
9
|
+
- path: intents/
|
|
10
|
+
description: "High-level objectives that deliver user value"
|
|
11
|
+
- path: runs/
|
|
12
|
+
description: "Execution logs and walkthroughs per run"
|
|
13
|
+
- path: standards/
|
|
14
|
+
description: "Project standards (tech-stack, coding-standards)"
|
|
15
|
+
|
|
16
|
+
# Central state file (FIRE's source of truth)
|
|
17
|
+
state:
|
|
18
|
+
path: ".specs-fire/state.yaml"
|
|
19
|
+
description: "Central state tracking for all FIRE operations"
|
|
20
|
+
sections:
|
|
21
|
+
project:
|
|
22
|
+
- name: "Project name"
|
|
23
|
+
- description: "Project description"
|
|
24
|
+
- created: "ISO 8601 timestamp"
|
|
25
|
+
- framework: "fire-v1"
|
|
26
|
+
workspace:
|
|
27
|
+
- type: "greenfield | brownfield"
|
|
28
|
+
- structure: "monolith | monorepo | multi-part"
|
|
29
|
+
- default_mode: "autopilot | confirm | validate"
|
|
30
|
+
- scanned_at: "ISO 8601 timestamp (brownfield)"
|
|
31
|
+
- parts: "List of project parts (monorepo)"
|
|
32
|
+
intents:
|
|
33
|
+
- id: "Intent identifier"
|
|
34
|
+
- title: "Intent title"
|
|
35
|
+
- status: "pending | in_progress | completed"
|
|
36
|
+
- work_items: "List of work items"
|
|
37
|
+
active_run:
|
|
38
|
+
- id: "Current run ID"
|
|
39
|
+
- work_item: "Work item being executed"
|
|
40
|
+
- started: "ISO 8601 timestamp"
|
|
41
|
+
|
|
42
|
+
# Data Conventions
|
|
43
|
+
conventions:
|
|
44
|
+
timestamps:
|
|
45
|
+
format: "ISO 8601 with time and timezone"
|
|
46
|
+
pattern: "YYYY-MM-DDTHH:MM:SSZ"
|
|
47
|
+
example: "2026-01-19T10:30:00Z"
|
|
48
|
+
|
|
49
|
+
# Naming Conventions
|
|
50
|
+
naming:
|
|
51
|
+
intents:
|
|
52
|
+
format: "{id}"
|
|
53
|
+
example: "user-authentication"
|
|
54
|
+
note: "Kebab-case, descriptive name"
|
|
55
|
+
|
|
56
|
+
work_items:
|
|
57
|
+
format: "{id}"
|
|
58
|
+
example: "login-endpoint"
|
|
59
|
+
note: "Kebab-case, action-oriented name"
|
|
60
|
+
|
|
61
|
+
runs:
|
|
62
|
+
format: "run-{NNN}/"
|
|
63
|
+
example: "run-001/"
|
|
64
|
+
note: "Sequential 3-digit number, folder per run"
|
|
65
|
+
contents:
|
|
66
|
+
- "run.md" # Run log
|
|
67
|
+
- "walkthrough.md" # Implementation walkthrough
|
|
68
|
+
|
|
69
|
+
# Schema Definition (Source of Truth for Agents)
|
|
70
|
+
schema:
|
|
71
|
+
state: ".specs-fire/state.yaml"
|
|
72
|
+
intents: ".specs-fire/intents/{intent-id}/"
|
|
73
|
+
intent-brief: ".specs-fire/intents/{intent-id}/brief.md"
|
|
74
|
+
work-items: ".specs-fire/intents/{intent-id}/work-items/"
|
|
75
|
+
work-item: ".specs-fire/intents/{intent-id}/work-items/{work-item-id}.md"
|
|
76
|
+
runs: ".specs-fire/runs/"
|
|
77
|
+
run-folder: ".specs-fire/runs/{run-id}/"
|
|
78
|
+
run-log: ".specs-fire/runs/{run-id}/run.md"
|
|
79
|
+
walkthrough: ".specs-fire/runs/{run-id}/walkthrough.md"
|
|
80
|
+
standards: ".specs-fire/standards/"
|
|
81
|
+
|
|
82
|
+
# Agent Ownership
|
|
83
|
+
ownership:
|
|
84
|
+
orchestrator: [state]
|
|
85
|
+
planner: [intents, work-items, state]
|
|
86
|
+
builder: [runs, state]
|
|
87
|
+
|
|
88
|
+
# Execution Modes
|
|
89
|
+
execution_modes:
|
|
90
|
+
autopilot:
|
|
91
|
+
checkpoints: 0
|
|
92
|
+
complexity: low
|
|
93
|
+
description: "Direct execution, walkthrough generated after"
|
|
94
|
+
|
|
95
|
+
confirm:
|
|
96
|
+
checkpoints: 1
|
|
97
|
+
complexity: medium
|
|
98
|
+
description: "Plan shown, user confirms, then execution"
|
|
99
|
+
|
|
100
|
+
validate:
|
|
101
|
+
checkpoints: 2
|
|
102
|
+
complexity: high
|
|
103
|
+
description: "Design doc review, then plan confirmation, then execution"
|
|
104
|
+
|
|
105
|
+
# Work Item Complexity Mapping
|
|
106
|
+
complexity_modes:
|
|
107
|
+
low: autopilot
|
|
108
|
+
medium: confirm
|
|
109
|
+
high: validate
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "specsmd",
|
|
3
|
-
"version": "0.0.0-dev.
|
|
3
|
+
"version": "0.0.0-dev.42",
|
|
4
4
|
"description": "Multi-agent orchestration system for AI-native software development. Delivers AI-DLC, Agile, and custom SDLC flows as markdown-based agent systems.",
|
|
5
5
|
"main": "lib/installer.js",
|
|
6
6
|
"bin": {
|