project-iris 0.0.8 → 0.0.11

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.
Files changed (125) hide show
  1. package/README.md +294 -264
  2. package/dist/bridge/agent-runner.js +190 -0
  3. package/dist/bridge/connector-factory.js +4 -0
  4. package/dist/bridge/connectors/in-process-connector.js +29 -0
  5. package/dist/bridge/filesystem-connector.js +5 -0
  6. package/dist/cli.js +10 -2
  7. package/dist/commands/ask.js +150 -23
  8. package/dist/commands/bridge.js +8 -0
  9. package/dist/commands/flow.js +301 -0
  10. package/dist/commands/framework.js +273 -0
  11. package/dist/commands/generate.js +59 -0
  12. package/dist/commands/install.js +72 -29
  13. package/dist/commands/pack.js +7 -1
  14. package/dist/commands/run.js +195 -13
  15. package/dist/commands/status.js +9 -0
  16. package/dist/commands/uninstall.js +3 -1
  17. package/dist/commands/use.js +20 -0
  18. package/dist/commands/validate.js +80 -65
  19. package/dist/framework/framework-loader.js +97 -0
  20. package/dist/framework/framework-paths.js +48 -0
  21. package/dist/framework/framework-types.js +15 -0
  22. package/dist/iris/artifacts/config.js +68 -0
  23. package/dist/iris/artifacts/generator.js +88 -0
  24. package/dist/iris/artifacts/types.js +1 -0
  25. package/dist/iris/bundle.js +44 -0
  26. package/dist/iris/doctrine/collector.js +124 -0
  27. package/dist/iris/fixer.js +28 -22
  28. package/dist/iris/flows/manifest.js +124 -0
  29. package/dist/iris/framework-context.js +49 -0
  30. package/dist/iris/framework-manager.js +215 -0
  31. package/dist/iris/fs/atomic.js +22 -0
  32. package/dist/iris/importers/index.js +9 -0
  33. package/dist/iris/importers/types.js +8 -0
  34. package/dist/iris/importers/writer.js +139 -0
  35. package/dist/iris/installer.js +105 -40
  36. package/dist/iris/interactive/env.js +21 -0
  37. package/dist/iris/interactive/intent-interview.js +345 -0
  38. package/dist/iris/interactive/intent-schema.js +28 -0
  39. package/dist/iris/interactive/interview-io.js +22 -0
  40. package/dist/iris/interview/config.js +71 -0
  41. package/dist/iris/interview/types.js +16 -0
  42. package/dist/iris/interview/utils.js +38 -0
  43. package/dist/iris/packer.js +69 -47
  44. package/dist/iris/parsers/unit-parser.js +43 -0
  45. package/dist/iris/paths.js +18 -0
  46. package/dist/iris/policy.js +122 -17
  47. package/dist/iris/proc.js +56 -0
  48. package/dist/iris/resolver.js +3 -0
  49. package/dist/iris/routes.js +180 -11
  50. package/dist/iris/run-state.js +3 -0
  51. package/dist/iris/state.js +37 -9
  52. package/dist/iris/templates.js +70 -0
  53. package/dist/iris/tmp.js +24 -0
  54. package/dist/iris/uninstaller.js +24 -9
  55. package/dist/iris/utils/interpolate.js +42 -0
  56. package/dist/iris/validator.js +72 -10
  57. package/dist/iris/workflow/config.js +51 -0
  58. package/dist/iris/workflow/engine.js +129 -0
  59. package/dist/iris/workflow/steps.js +448 -0
  60. package/dist/iris/workflow/types.js +1 -0
  61. package/dist/utils/logo.js +17 -0
  62. package/dist/workflows/intent-inception.js +87 -65
  63. package/package.json +8 -6
  64. package/src/iris_bundle/.iris/aidlc/README.md +0 -16
  65. package/src/iris_bundle/.iris/aidlc/agents/iris-construction-agent.md +0 -35
  66. package/src/iris_bundle/.iris/aidlc/agents/iris-inception-agent.md +0 -30
  67. package/src/iris_bundle/.iris/aidlc/agents/iris-master-agent.md +0 -35
  68. package/src/iris_bundle/.iris/aidlc/agents/iris-operations-agent.md +0 -29
  69. package/src/iris_bundle/.iris/aidlc/commands/iris-construction-agent.md +0 -18
  70. package/src/iris_bundle/.iris/aidlc/commands/iris-inception-agent.md +0 -18
  71. package/src/iris_bundle/.iris/aidlc/commands/iris-master-agent.md +0 -18
  72. package/src/iris_bundle/.iris/aidlc/commands/iris-operations-agent.md +0 -18
  73. package/src/iris_bundle/.iris/aidlc/context/context-map.md +0 -25
  74. package/src/iris_bundle/.iris/aidlc/context/exclusion-rules.md +0 -13
  75. package/src/iris_bundle/.iris/aidlc/context/load-order.md +0 -25
  76. package/src/iris_bundle/.iris/aidlc/memory/intent-rules.md +0 -9
  77. package/src/iris_bundle/.iris/aidlc/memory/log-rules.md +0 -5
  78. package/src/iris_bundle/.iris/aidlc/memory/memory-bank.yaml +0 -39
  79. package/src/iris_bundle/.iris/aidlc/memory/unit-rules.md +0 -9
  80. package/src/iris_bundle/.iris/aidlc/quick-start.md +0 -24
  81. package/src/iris_bundle/.iris/aidlc/skills/execution/implementation.md +0 -14
  82. package/src/iris_bundle/.iris/aidlc/skills/execution/refactoring.md +0 -13
  83. package/src/iris_bundle/.iris/aidlc/skills/execution/scaffold-generation.md +0 -15
  84. package/src/iris_bundle/.iris/aidlc/skills/governance/escalation.md +0 -13
  85. package/src/iris_bundle/.iris/aidlc/skills/governance/quality-gates.md +0 -14
  86. package/src/iris_bundle/.iris/aidlc/skills/governance/stop-conditions.md +0 -11
  87. package/src/iris_bundle/.iris/aidlc/skills/reasoning/decomposition.md +0 -23
  88. package/src/iris_bundle/.iris/aidlc/skills/reasoning/risk-analysis.md +0 -14
  89. package/src/iris_bundle/.iris/aidlc/skills/reasoning/verification.md +0 -21
  90. package/src/iris_bundle/.iris/aidlc/standards/artifacts-registry.md +0 -38
  91. package/src/iris_bundle/.iris/aidlc/standards/decision-logging.md +0 -16
  92. package/src/iris_bundle/.iris/aidlc/standards/doctrine-structure.md +0 -31
  93. package/src/iris_bundle/.iris/aidlc/standards/documentation-rules.md +0 -15
  94. package/src/iris_bundle/.iris/aidlc/standards/file-structure.md +0 -21
  95. package/src/iris_bundle/.iris/aidlc/standards/naming-conventions.md +0 -18
  96. package/src/iris_bundle/.iris/aidlc/standards/phases-and-gates.md +0 -25
  97. package/src/iris_bundle/.iris/aidlc/standards/routes-and-routing.md +0 -35
  98. package/src/iris_bundle/.iris/aidlc/standards/tool-wrappers.md +0 -32
  99. package/src/iris_bundle/.iris/aidlc/templates/bolt.md +0 -23
  100. package/src/iris_bundle/.iris/aidlc/templates/doctrine-doc-template.md +0 -33
  101. package/src/iris_bundle/.iris/aidlc/templates/intent.md +0 -23
  102. package/src/iris_bundle/.iris/aidlc/templates/log.md +0 -24
  103. package/src/iris_bundle/.iris/aidlc/templates/review.md +0 -21
  104. package/src/iris_bundle/.iris/aidlc/templates/unit.md +0 -31
  105. package/src/iris_bundle/.iris/aidlc/validation/failure-modes.md +0 -16
  106. package/src/iris_bundle/.iris/aidlc/validation/phase-preconditions.md +0 -21
  107. package/src/iris_bundle/.iris/aidlc/validation/quality-checklist.md +0 -20
  108. package/src/iris_bundle/.iris/policy.yaml +0 -27
  109. package/src/iris_bundle/.iris/routes.yaml +0 -98
  110. package/src/iris_bundle/.iris/state.yaml +0 -7
  111. package/src/iris_bundle/.iris/tools/claude/.claude/claude.md +0 -9
  112. package/src/iris_bundle/.iris/tools/claude/.claude/commands/compare-specs.md +0 -203
  113. package/src/iris_bundle/.iris/tools/claude/.claude/commands/iris-construction-agent.md +0 -25
  114. package/src/iris_bundle/.iris/tools/claude/.claude/commands/iris-inception-agent.md +0 -25
  115. package/src/iris_bundle/.iris/tools/claude/.claude/commands/iris-master-agent.md +0 -25
  116. package/src/iris_bundle/.iris/tools/claude/.claude/commands/iris-operations-agent.md +0 -25
  117. package/src/iris_bundle/.iris/tools/codex/AGENTS.md +0 -15
  118. package/src/iris_bundle/.iris/tools/cursor/.cursor/commands/iris-construction-agent.md +0 -25
  119. package/src/iris_bundle/.iris/tools/cursor/.cursor/commands/iris-inception-agent.md +0 -25
  120. package/src/iris_bundle/.iris/tools/cursor/.cursor/commands/iris-master-agent.md +0 -25
  121. package/src/iris_bundle/.iris/tools/cursor/.cursor/commands/iris-operations-agent.md +0 -25
  122. package/src/iris_bundle/.iris/tools/gemini/.gemini/commands/iris-construction-agent.toml +0 -29
  123. package/src/iris_bundle/.iris/tools/gemini/.gemini/commands/iris-inception-agent.toml +0 -29
  124. package/src/iris_bundle/.iris/tools/gemini/.gemini/commands/iris-master-agent.toml +0 -29
  125. package/src/iris_bundle/.iris/tools/gemini/.gemini/commands/iris-operations-agent.toml +0 -29
@@ -1,203 +0,0 @@
1
- # Compare Specs and Implementation
2
-
3
- **Command**: `/compare-specs`
4
-
5
- Compare specifications in `memory-bank/` with their corresponding implementations in `src/` to identify gaps, inconsistencies, and missing items.
6
-
7
- ---
8
-
9
- ## Comparison Modes
10
-
11
- Choose a comparison mode based on what you want to analyze:
12
-
13
- ### Mode 1: Spec → Implementation (Default)
14
- Find what's documented in specs but missing or inconsistent in implementation.
15
- - Identifies incomplete implementations
16
- - Finds mismatches between spec requirements and actual code
17
-
18
- ### Mode 2: Implementation → Spec
19
- Find what's implemented but not documented in specs.
20
- - Identifies undocumented features
21
- - Finds implementation details that should be in specs
22
-
23
- ---
24
-
25
- ## Process
26
-
27
- ### Step 1: Identify Scope
28
-
29
- Ask the user:
30
-
31
- > **What would you like to compare?**
32
- >
33
- > 1. **Specific agent** (e.g., inception-agent, construction-agent, master-agent)
34
- > 2. **Specific feature** (e.g., bolt planning, story creation, estimation)
35
- > 3. **Full system** (compare all specs vs all implementations)
36
- >
37
- > **Direction:**
38
- > - A) Spec → Implementation (find missing implementations)
39
- > - B) Implementation → Spec (find missing documentation)
40
- > - C) Both directions
41
-
42
- ### Step 2: Locate Files
43
-
44
- **Spec locations** (`memory-bank/`):
45
- ```
46
- memory-bank/
47
- ├── intents/
48
- │ ├── 001-multi-agent-orchestration/
49
- │ │ └── units/
50
- │ │ ├── master-agent/unit-brief.md
51
- │ │ ├── inception-agent/unit-brief.md
52
- │ │ ├── construction-agent/unit-brief.md
53
- │ │ └── operations-agent/unit-brief.md
54
- │ ├── 002-agentic-coding-tool-integration/
55
- │ └── 003-memory-bank-system/
56
- ├── standards/
57
- │ ├── coding-standards.md
58
- │ ├── tech-stack.md
59
- │ └── system-architecture.md
60
- ├── research/
61
- │ └── (research documentation)
62
- ├── glossary.md
63
- └── term-mappings.md
64
- ```
65
-
66
- **Implementation locations** (`src/flows/aidlc/`):
67
- ```
68
- src/flows/aidlc/
69
- ├── agents/
70
- │ ├── master-agent.md
71
- │ ├── inception-agent.md
72
- │ ├── construction-agent.md
73
- │ └── operations-agent.md
74
- ├── commands/
75
- ├── .iris/
76
- │ ├── skills/
77
- │ │ ├── master/
78
- │ │ ├── inception/
79
- │ │ └── construction/
80
- │ ├── templates/
81
- │ └── memory-bank.yaml
82
- ```
83
-
84
- ### Step 3: Compare Content
85
-
86
- For each file pair, analyze:
87
-
88
- | Aspect | Check |
89
- |--------|-------|
90
- | **Terminology** | Same terms used consistently? |
91
- | **Features** | All spec features implemented? |
92
- | **Naming conventions** | Match between spec and implementation? |
93
- | **Estimation guidance** | Consistent across both? |
94
- | **Dependencies** | All documented dependencies implemented? |
95
- | **Commands** | All spec commands exist in implementation? |
96
- | **Skills** | All spec skills have implementations? |
97
-
98
- ### Step 4: Report Findings
99
-
100
- Generate a gap analysis report:
101
-
102
- ```markdown
103
- ## Gap Analysis Report
104
-
105
- ### Comparison: {scope}
106
- - Direction: {Spec → Impl | Impl → Spec | Both}
107
- - Files analyzed: {count}
108
-
109
- ---
110
-
111
- ### Gaps Found
112
-
113
- #### Missing in Implementation (Spec → Impl)
114
- | Spec | Item | Status |
115
- |------|------|--------|
116
- | inception-agent/unit-brief.md | Global story index | Not implemented |
117
- | ... | ... | ... |
118
-
119
- #### Missing in Specs (Impl → Spec)
120
- | Implementation | Item | Status |
121
- |----------------|------|--------|
122
- | inception-agent.md | Naming conventions section | Not documented |
123
- | ... | ... | ... |
124
-
125
- #### Inconsistencies
126
- | Location | Spec Says | Implementation Says |
127
- |----------|-----------|---------------------|
128
- | Bolt estimation | Hours only | Uses "1-2 days" |
129
- | ... | ... | ... |
130
-
131
- ---
132
-
133
- ### Recommended Actions
134
-
135
- 1. **High Priority** (blocking or incorrect):
136
- - { action }
137
-
138
- 2. **Medium Priority** (missing features):
139
- - { action }
140
-
141
- 3. **Low Priority** (documentation polish):
142
- - { action }
143
-
144
- ---
145
-
146
- ### Update Plan
147
-
148
- Based on chosen direction:
149
-
150
- **If updating specs:**
151
- 1. { step }
152
- 2. { step }
153
-
154
- **If updating implementation:**
155
- 1. { step }
156
- 2. { step }
157
- ```
158
-
159
- ---
160
-
161
- ## Example Usage
162
-
163
- **User**: `/compare-specs`
164
-
165
- **Assistant**:
166
- > What would you like to compare?
167
- > 1. Specific agent
168
- > 2. Specific feature
169
- > 3. Full system
170
- >
171
- > And in which direction?
172
- > A) Spec → Implementation
173
- > B) Implementation → Spec
174
- > C) Both
175
-
176
- **User**: `1 - inception-agent, C - both`
177
-
178
- **Assistant**: *Reads spec and implementation files, generates gap analysis*
179
-
180
- ---
181
-
182
- ## Quick Comparisons
183
-
184
- For common comparisons, use these shortcuts:
185
-
186
- | Shortcut | Scope |
187
- |----------|-------|
188
- | `/compare-specs agents` | All agent specs vs implementations |
189
- | `/compare-specs skills` | All skill specs vs implementations |
190
- | `/compare-specs memory-bank` | Memory bank spec vs implementation |
191
- | `/compare-specs naming` | Naming conventions consistency |
192
- | `/compare-specs estimation` | Estimation guidance consistency |
193
-
194
- ---
195
-
196
- ## Output
197
-
198
- After analysis, provide:
199
-
200
- 1. **Summary**: X gaps found (Y in implementation, Z in specs)
201
- 2. **Gap table**: Detailed list of discrepancies
202
- 3. **Recommended plan**: Steps to resolve gaps
203
- 4. **User choice**: Ask if they want to fix specs, implementation, or both
@@ -1,25 +0,0 @@
1
- # Iris Construction Agent
2
-
3
- ## What this does
4
- Runs the IRIS **Construction** agent using the canonical IRIS doctrine in `.iris/aidlc/`.
5
-
6
- ## REQUIRED context (load in this order)
7
- 1. `.iris/aidlc/context/load-order.md`
8
- 2. `.iris/aidlc/standards/phases-and-gates.md`
9
- 3. `.iris/aidlc/standards/artifacts-registry.md`
10
- 4. `.iris/aidlc/validation/phase-preconditions.md`
11
- 5. `.iris/aidlc/commands/iris-construction-agent.md`
12
- 6. Repo project signals (if present): `specs.md`, `README.md`, `package.json`, `tsconfig.json`, relevant `src/**`
13
- 7. Phase memory-bank artifacts:
14
- - Inception: `memory-bank/intents/**`
15
- - Construction: `memory-bank/units/**`, `memory-bank/bolts/**`
16
- - Operations: `memory-bank/logs/**`, `memory-bank/standards/**`
17
-
18
- ## Hard rules
19
- - MUST create/update artifacts in `memory-bank/` using templates in `.iris/aidlc/templates/`.
20
- - MUST stop if required artifacts for the phase are missing and ask to create them.
21
- - MUST keep outputs deterministic: numbered steps, explicit file paths, and acceptance criteria.
22
- - MUST NOT delete files unless the user explicitly requests it.
23
-
24
- ## Start
25
- Execute `.iris/aidlc/commands/iris-construction-agent.md`.
@@ -1,25 +0,0 @@
1
- # Iris Inception Agent
2
-
3
- ## What this does
4
- Runs the IRIS **Inception** agent using the canonical IRIS doctrine in `.iris/aidlc/`.
5
-
6
- ## REQUIRED context (load in this order)
7
- 1. `.iris/aidlc/context/load-order.md`
8
- 2. `.iris/aidlc/standards/phases-and-gates.md`
9
- 3. `.iris/aidlc/standards/artifacts-registry.md`
10
- 4. `.iris/aidlc/validation/phase-preconditions.md`
11
- 5. `.iris/aidlc/commands/iris-inception-agent.md`
12
- 6. Repo project signals (if present): `specs.md`, `README.md`, `package.json`, `tsconfig.json`, relevant `src/**`
13
- 7. Phase memory-bank artifacts:
14
- - Inception: `memory-bank/intents/**`
15
- - Construction: `memory-bank/units/**`, `memory-bank/bolts/**`
16
- - Operations: `memory-bank/logs/**`, `memory-bank/standards/**`
17
-
18
- ## Hard rules
19
- - MUST create/update artifacts in `memory-bank/` using templates in `.iris/aidlc/templates/`.
20
- - MUST stop if required artifacts for the phase are missing and ask to create them.
21
- - MUST keep outputs deterministic: numbered steps, explicit file paths, and acceptance criteria.
22
- - MUST NOT delete files unless the user explicitly requests it.
23
-
24
- ## Start
25
- Execute `.iris/aidlc/commands/iris-inception-agent.md`.
@@ -1,25 +0,0 @@
1
- # Iris Master Agent
2
-
3
- ## What this does
4
- Runs the IRIS **Master** agent using the canonical IRIS doctrine in `.iris/aidlc/`.
5
-
6
- ## REQUIRED context (load in this order)
7
- 1. `.iris/aidlc/context/load-order.md`
8
- 2. `.iris/aidlc/standards/phases-and-gates.md`
9
- 3. `.iris/aidlc/standards/artifacts-registry.md`
10
- 4. `.iris/aidlc/validation/phase-preconditions.md`
11
- 5. `.iris/aidlc/commands/iris-master-agent.md`
12
- 6. Repo project signals (if present): `specs.md`, `README.md`, `package.json`, `tsconfig.json`, relevant `src/**`
13
- 7. Phase memory-bank artifacts:
14
- - Inception: `memory-bank/intents/**`
15
- - Construction: `memory-bank/units/**`, `memory-bank/bolts/**`
16
- - Operations: `memory-bank/logs/**`, `memory-bank/standards/**`
17
-
18
- ## Hard rules
19
- - MUST create/update artifacts in `memory-bank/` using templates in `.iris/aidlc/templates/`.
20
- - MUST stop if required artifacts for the phase are missing and ask to create them.
21
- - MUST keep outputs deterministic: numbered steps, explicit file paths, and acceptance criteria.
22
- - MUST NOT delete files unless the user explicitly requests it.
23
-
24
- ## Start
25
- Execute `.iris/aidlc/commands/iris-master-agent.md`.
@@ -1,25 +0,0 @@
1
- # Iris Operations Agent
2
-
3
- ## What this does
4
- Runs the IRIS **Operations** agent using the canonical IRIS doctrine in `.iris/aidlc/`.
5
-
6
- ## REQUIRED context (load in this order)
7
- 1. `.iris/aidlc/context/load-order.md`
8
- 2. `.iris/aidlc/standards/phases-and-gates.md`
9
- 3. `.iris/aidlc/standards/artifacts-registry.md`
10
- 4. `.iris/aidlc/validation/phase-preconditions.md`
11
- 5. `.iris/aidlc/commands/iris-operations-agent.md`
12
- 6. Repo project signals (if present): `specs.md`, `README.md`, `package.json`, `tsconfig.json`, relevant `src/**`
13
- 7. Phase memory-bank artifacts:
14
- - Inception: `memory-bank/intents/**`
15
- - Construction: `memory-bank/units/**`, `memory-bank/bolts/**`
16
- - Operations: `memory-bank/logs/**`, `memory-bank/standards/**`
17
-
18
- ## Hard rules
19
- - MUST create/update artifacts in `memory-bank/` using templates in `.iris/aidlc/templates/`.
20
- - MUST stop if required artifacts for the phase are missing and ask to create them.
21
- - MUST keep outputs deterministic: numbered steps, explicit file paths, and acceptance criteria.
22
- - MUST NOT delete files unless the user explicitly requests it.
23
-
24
- ## Start
25
- Execute `.iris/aidlc/commands/iris-operations-agent.md`.
@@ -1,15 +0,0 @@
1
- # IRIS Agents (Codex)
2
-
3
- This repository uses IRIS doctrine in `.iris/aidlc/`.
4
-
5
- ## How to run
6
- Use one of these entrypoints (read and follow):
7
- - `.iris/aidlc/commands/iris-master-agent.md`
8
- - `.iris/aidlc/commands/iris-inception-agent.md`
9
- - `.iris/aidlc/commands/iris-construction-agent.md`
10
- - `.iris/aidlc/commands/iris-operations-agent.md`
11
-
12
- ## Mandatory rules
13
- - Write SDLC artifacts into `memory-bank/` using `.iris/aidlc/templates/`.
14
- - Do not skip phases; follow `.iris/aidlc/standards/phases-and-gates.md`.
15
- - Stop and request missing required artifacts rather than guessing.
@@ -1,25 +0,0 @@
1
- # Iris Construction Agent
2
-
3
- ## What this does
4
- Runs the IRIS **Construction** agent using the canonical IRIS doctrine in `.iris/aidlc/`.
5
-
6
- ## REQUIRED context (load in this order)
7
- 1. `.iris/aidlc/context/load-order.md`
8
- 2. `.iris/aidlc/standards/phases-and-gates.md`
9
- 3. `.iris/aidlc/standards/artifacts-registry.md`
10
- 4. `.iris/aidlc/validation/phase-preconditions.md`
11
- 5. `.iris/aidlc/commands/iris-construction-agent.md`
12
- 6. Repo project signals (if present): `specs.md`, `README.md`, `package.json`, `tsconfig.json`, relevant `src/**`
13
- 7. Phase memory-bank artifacts:
14
- - Inception: `memory-bank/intents/**`
15
- - Construction: `memory-bank/units/**`, `memory-bank/bolts/**`
16
- - Operations: `memory-bank/logs/**`, `memory-bank/standards/**`
17
-
18
- ## Hard rules
19
- - MUST create/update artifacts in `memory-bank/` using templates in `.iris/aidlc/templates/`.
20
- - MUST stop if required artifacts for the phase are missing and ask to create them.
21
- - MUST keep outputs deterministic: numbered steps, explicit file paths, and acceptance criteria.
22
- - MUST NOT delete files unless the user explicitly requests it.
23
-
24
- ## Start
25
- Execute `.iris/aidlc/commands/iris-construction-agent.md`.
@@ -1,25 +0,0 @@
1
- # Iris Inception Agent
2
-
3
- ## What this does
4
- Runs the IRIS **Inception** agent using the canonical IRIS doctrine in `.iris/aidlc/`.
5
-
6
- ## REQUIRED context (load in this order)
7
- 1. `.iris/aidlc/context/load-order.md`
8
- 2. `.iris/aidlc/standards/phases-and-gates.md`
9
- 3. `.iris/aidlc/standards/artifacts-registry.md`
10
- 4. `.iris/aidlc/validation/phase-preconditions.md`
11
- 5. `.iris/aidlc/commands/iris-inception-agent.md`
12
- 6. Repo project signals (if present): `specs.md`, `README.md`, `package.json`, `tsconfig.json`, relevant `src/**`
13
- 7. Phase memory-bank artifacts:
14
- - Inception: `memory-bank/intents/**`
15
- - Construction: `memory-bank/units/**`, `memory-bank/bolts/**`
16
- - Operations: `memory-bank/logs/**`, `memory-bank/standards/**`
17
-
18
- ## Hard rules
19
- - MUST create/update artifacts in `memory-bank/` using templates in `.iris/aidlc/templates/`.
20
- - MUST stop if required artifacts for the phase are missing and ask to create them.
21
- - MUST keep outputs deterministic: numbered steps, explicit file paths, and acceptance criteria.
22
- - MUST NOT delete files unless the user explicitly requests it.
23
-
24
- ## Start
25
- Execute `.iris/aidlc/commands/iris-inception-agent.md`.
@@ -1,25 +0,0 @@
1
- # Iris Master Agent
2
-
3
- ## What this does
4
- Runs the IRIS **Master** agent using the canonical IRIS doctrine in `.iris/aidlc/`.
5
-
6
- ## REQUIRED context (load in this order)
7
- 1. `.iris/aidlc/context/load-order.md`
8
- 2. `.iris/aidlc/standards/phases-and-gates.md`
9
- 3. `.iris/aidlc/standards/artifacts-registry.md`
10
- 4. `.iris/aidlc/validation/phase-preconditions.md`
11
- 5. `.iris/aidlc/commands/iris-master-agent.md`
12
- 6. Repo project signals (if present): `specs.md`, `README.md`, `package.json`, `tsconfig.json`, relevant `src/**`
13
- 7. Phase memory-bank artifacts:
14
- - Inception: `memory-bank/intents/**`
15
- - Construction: `memory-bank/units/**`, `memory-bank/bolts/**`
16
- - Operations: `memory-bank/logs/**`, `memory-bank/standards/**`
17
-
18
- ## Hard rules
19
- - MUST create/update artifacts in `memory-bank/` using templates in `.iris/aidlc/templates/`.
20
- - MUST stop if required artifacts for the phase are missing and ask to create them.
21
- - MUST keep outputs deterministic: numbered steps, explicit file paths, and acceptance criteria.
22
- - MUST NOT delete files unless the user explicitly requests it.
23
-
24
- ## Start
25
- Execute `.iris/aidlc/commands/iris-master-agent.md`.
@@ -1,25 +0,0 @@
1
- # Iris Operations Agent
2
-
3
- ## What this does
4
- Runs the IRIS **Operations** agent using the canonical IRIS doctrine in `.iris/aidlc/`.
5
-
6
- ## REQUIRED context (load in this order)
7
- 1. `.iris/aidlc/context/load-order.md`
8
- 2. `.iris/aidlc/standards/phases-and-gates.md`
9
- 3. `.iris/aidlc/standards/artifacts-registry.md`
10
- 4. `.iris/aidlc/validation/phase-preconditions.md`
11
- 5. `.iris/aidlc/commands/iris-operations-agent.md`
12
- 6. Repo project signals (if present): `specs.md`, `README.md`, `package.json`, `tsconfig.json`, relevant `src/**`
13
- 7. Phase memory-bank artifacts:
14
- - Inception: `memory-bank/intents/**`
15
- - Construction: `memory-bank/units/**`, `memory-bank/bolts/**`
16
- - Operations: `memory-bank/logs/**`, `memory-bank/standards/**`
17
-
18
- ## Hard rules
19
- - MUST create/update artifacts in `memory-bank/` using templates in `.iris/aidlc/templates/`.
20
- - MUST stop if required artifacts for the phase are missing and ask to create them.
21
- - MUST keep outputs deterministic: numbered steps, explicit file paths, and acceptance criteria.
22
- - MUST NOT delete files unless the user explicitly requests it.
23
-
24
- ## Start
25
- Execute `.iris/aidlc/commands/iris-operations-agent.md`.
@@ -1,29 +0,0 @@
1
- name = "iris-construction-agent"
2
- description = "Run IRIS Construction agent using .iris/aidlc doctrine"
3
- prompt = """
4
- # Iris Construction Agent
5
-
6
- ## What this does
7
- Runs the IRIS **Construction** agent using the canonical IRIS doctrine in `.iris/aidlc/`.
8
-
9
- ## REQUIRED context (load in this order)
10
- 1. `.iris/aidlc/context/load-order.md`
11
- 2. `.iris/aidlc/standards/phases-and-gates.md`
12
- 3. `.iris/aidlc/standards/artifacts-registry.md`
13
- 4. `.iris/aidlc/validation/phase-preconditions.md`
14
- 5. `.iris/aidlc/commands/iris-construction-agent.md`
15
- 6. Repo project signals (if present): `specs.md`, `README.md`, `package.json`, `tsconfig.json`, relevant `src/**`
16
- 7. Phase memory-bank artifacts:
17
- - Inception: `memory-bank/intents/**`
18
- - Construction: `memory-bank/units/**`, `memory-bank/bolts/**`
19
- - Operations: `memory-bank/logs/**`, `memory-bank/standards/**`
20
-
21
- ## Hard rules
22
- - MUST create/update artifacts in `memory-bank/` using templates in `.iris/aidlc/templates/`.
23
- - MUST stop if required artifacts for the phase are missing and ask to create them.
24
- - MUST keep outputs deterministic: numbered steps, explicit file paths, and acceptance criteria.
25
- - MUST NOT delete files unless the user explicitly requests it.
26
-
27
- ## Start
28
- Execute `.iris/aidlc/commands/iris-construction-agent.md`.
29
- """
@@ -1,29 +0,0 @@
1
- name = "iris-inception-agent"
2
- description = "Run IRIS Inception agent using .iris/aidlc doctrine"
3
- prompt = """
4
- # Iris Inception Agent
5
-
6
- ## What this does
7
- Runs the IRIS **Inception** agent using the canonical IRIS doctrine in `.iris/aidlc/`.
8
-
9
- ## REQUIRED context (load in this order)
10
- 1. `.iris/aidlc/context/load-order.md`
11
- 2. `.iris/aidlc/standards/phases-and-gates.md`
12
- 3. `.iris/aidlc/standards/artifacts-registry.md`
13
- 4. `.iris/aidlc/validation/phase-preconditions.md`
14
- 5. `.iris/aidlc/commands/iris-inception-agent.md`
15
- 6. Repo project signals (if present): `specs.md`, `README.md`, `package.json`, `tsconfig.json`, relevant `src/**`
16
- 7. Phase memory-bank artifacts:
17
- - Inception: `memory-bank/intents/**`
18
- - Construction: `memory-bank/units/**`, `memory-bank/bolts/**`
19
- - Operations: `memory-bank/logs/**`, `memory-bank/standards/**`
20
-
21
- ## Hard rules
22
- - MUST create/update artifacts in `memory-bank/` using templates in `.iris/aidlc/templates/`.
23
- - MUST stop if required artifacts for the phase are missing and ask to create them.
24
- - MUST keep outputs deterministic: numbered steps, explicit file paths, and acceptance criteria.
25
- - MUST NOT delete files unless the user explicitly requests it.
26
-
27
- ## Start
28
- Execute `.iris/aidlc/commands/iris-inception-agent.md`.
29
- """
@@ -1,29 +0,0 @@
1
- name = "iris-master-agent"
2
- description = "Run IRIS Master agent using .iris/aidlc doctrine"
3
- prompt = """
4
- # Iris Master Agent
5
-
6
- ## What this does
7
- Runs the IRIS **Master** agent using the canonical IRIS doctrine in `.iris/aidlc/`.
8
-
9
- ## REQUIRED context (load in this order)
10
- 1. `.iris/aidlc/context/load-order.md`
11
- 2. `.iris/aidlc/standards/phases-and-gates.md`
12
- 3. `.iris/aidlc/standards/artifacts-registry.md`
13
- 4. `.iris/aidlc/validation/phase-preconditions.md`
14
- 5. `.iris/aidlc/commands/iris-master-agent.md`
15
- 6. Repo project signals (if present): `specs.md`, `README.md`, `package.json`, `tsconfig.json`, relevant `src/**`
16
- 7. Phase memory-bank artifacts:
17
- - Inception: `memory-bank/intents/**`
18
- - Construction: `memory-bank/units/**`, `memory-bank/bolts/**`
19
- - Operations: `memory-bank/logs/**`, `memory-bank/standards/**`
20
-
21
- ## Hard rules
22
- - MUST create/update artifacts in `memory-bank/` using templates in `.iris/aidlc/templates/`.
23
- - MUST stop if required artifacts for the phase are missing and ask to create them.
24
- - MUST keep outputs deterministic: numbered steps, explicit file paths, and acceptance criteria.
25
- - MUST NOT delete files unless the user explicitly requests it.
26
-
27
- ## Start
28
- Execute `.iris/aidlc/commands/iris-master-agent.md`.
29
- """
@@ -1,29 +0,0 @@
1
- name = "iris-operations-agent"
2
- description = "Run IRIS Operations agent using .iris/aidlc doctrine"
3
- prompt = """
4
- # Iris Operations Agent
5
-
6
- ## What this does
7
- Runs the IRIS **Operations** agent using the canonical IRIS doctrine in `.iris/aidlc/`.
8
-
9
- ## REQUIRED context (load in this order)
10
- 1. `.iris/aidlc/context/load-order.md`
11
- 2. `.iris/aidlc/standards/phases-and-gates.md`
12
- 3. `.iris/aidlc/standards/artifacts-registry.md`
13
- 4. `.iris/aidlc/validation/phase-preconditions.md`
14
- 5. `.iris/aidlc/commands/iris-operations-agent.md`
15
- 6. Repo project signals (if present): `specs.md`, `README.md`, `package.json`, `tsconfig.json`, relevant `src/**`
16
- 7. Phase memory-bank artifacts:
17
- - Inception: `memory-bank/intents/**`
18
- - Construction: `memory-bank/units/**`, `memory-bank/bolts/**`
19
- - Operations: `memory-bank/logs/**`, `memory-bank/standards/**`
20
-
21
- ## Hard rules
22
- - MUST create/update artifacts in `memory-bank/` using templates in `.iris/aidlc/templates/`.
23
- - MUST stop if required artifacts for the phase are missing and ask to create them.
24
- - MUST keep outputs deterministic: numbered steps, explicit file paths, and acceptance criteria.
25
- - MUST NOT delete files unless the user explicitly requests it.
26
-
27
- ## Start
28
- Execute `.iris/aidlc/commands/iris-operations-agent.md`.
29
- """