agile-context-engineering 0.3.0 → 0.5.1
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-plugin/marketplace.json +18 -0
- package/.claude-plugin/plugin.json +10 -0
- package/CHANGELOG.md +7 -1
- package/LICENSE +51 -51
- package/README.md +330 -318
- package/agents/ace-code-discovery-analyst.md +245 -245
- package/agents/ace-code-integration-analyst.md +248 -248
- package/agents/ace-code-reviewer.md +375 -375
- package/agents/ace-product-owner.md +365 -361
- package/agents/ace-project-researcher.md +606 -606
- package/agents/ace-research-synthesizer.md +228 -228
- package/agents/ace-technical-application-architect.md +315 -315
- package/agents/ace-wiki-mapper.md +449 -445
- package/bin/install.js +605 -195
- package/hooks/ace-check-update.js +71 -62
- package/hooks/ace-statusline.js +107 -89
- package/hooks/hooks.json +14 -0
- package/package.json +7 -5
- package/shared/lib/ace-core.js +361 -0
- package/shared/lib/ace-core.test.js +308 -0
- package/shared/lib/ace-github.js +753 -0
- package/shared/lib/ace-story.js +400 -0
- package/shared/lib/ace-story.test.js +250 -0
- package/{agile-context-engineering → shared}/utils/questioning.xml +110 -110
- package/{agile-context-engineering → shared}/utils/ui-formatting.md +299 -299
- package/{commands/ace/execute-story.md → skills/execute-story/SKILL.md} +116 -138
- package/skills/execute-story/script.js +291 -0
- package/skills/execute-story/script.test.js +261 -0
- package/{agile-context-engineering/templates/product/story.xml → skills/execute-story/story-template.xml} +451 -451
- package/skills/execute-story/walkthrough-template.xml +255 -0
- package/{agile-context-engineering/workflows/execute-story.xml → skills/execute-story/workflow.xml} +1221 -1219
- package/skills/help/SKILL.md +71 -0
- package/skills/help/script.js +315 -0
- package/skills/help/script.test.js +183 -0
- package/{agile-context-engineering/workflows/help.xml → skills/help/workflow.xml} +544 -533
- package/{commands/ace/init-coding-standards.md → skills/init-coding-standards/SKILL.md} +91 -83
- package/{agile-context-engineering/templates/wiki/coding-standards.xml → skills/init-coding-standards/coding-standards-template.xml} +531 -531
- package/skills/init-coding-standards/script.js +50 -0
- package/skills/init-coding-standards/script.test.js +70 -0
- package/{agile-context-engineering/workflows/init-coding-standards.xml → skills/init-coding-standards/workflow.xml} +381 -386
- package/skills/map-cross-cutting/SKILL.md +126 -0
- package/{agile-context-engineering/templates/wiki → skills/map-cross-cutting}/system-cross-cutting.xml +197 -197
- package/skills/map-cross-cutting/workflow.xml +330 -0
- package/skills/map-guide/SKILL.md +126 -0
- package/{agile-context-engineering/templates/wiki → skills/map-guide}/guide.xml +137 -137
- package/skills/map-guide/workflow.xml +320 -0
- package/skills/map-pattern/SKILL.md +125 -0
- package/{agile-context-engineering/templates/wiki → skills/map-pattern}/pattern.xml +159 -159
- package/skills/map-pattern/workflow.xml +331 -0
- package/{commands/ace/map-story.md → skills/map-story/SKILL.md} +180 -165
- package/{agile-context-engineering/templates/wiki → skills/map-story/templates}/decizions.xml +115 -115
- package/skills/map-story/templates/guide.xml +137 -0
- package/skills/map-story/templates/pattern.xml +159 -0
- package/skills/map-story/templates/system-cross-cutting.xml +197 -0
- package/{agile-context-engineering/templates/wiki → skills/map-story/templates}/system.xml +381 -381
- package/{agile-context-engineering/templates/wiki → skills/map-story/templates}/tech-debt-index.xml +125 -125
- package/{agile-context-engineering/templates/wiki → skills/map-story/templates}/walkthrough.xml +255 -255
- package/{agile-context-engineering/workflows/map-story.xml → skills/map-story/workflow.xml} +1046 -1046
- package/{commands/ace/map-subsystem.md → skills/map-subsystem/SKILL.md} +155 -140
- package/skills/map-subsystem/script.js +51 -0
- package/skills/map-subsystem/script.test.js +68 -0
- package/skills/map-subsystem/templates/decizions.xml +115 -0
- package/skills/map-subsystem/templates/guide.xml +137 -0
- package/{agile-context-engineering/templates/wiki → skills/map-subsystem/templates}/module-discovery.xml +174 -174
- package/skills/map-subsystem/templates/pattern.xml +159 -0
- package/{agile-context-engineering/templates/wiki → skills/map-subsystem/templates}/subsystem-architecture.xml +343 -343
- package/{agile-context-engineering/templates/wiki → skills/map-subsystem/templates}/subsystem-structure.xml +234 -234
- package/skills/map-subsystem/templates/system-cross-cutting.xml +197 -0
- package/skills/map-subsystem/templates/system.xml +381 -0
- package/skills/map-subsystem/templates/walkthrough.xml +255 -0
- package/{agile-context-engineering/workflows/map-subsystem.xml → skills/map-subsystem/workflow.xml} +1173 -1178
- package/skills/map-sys-doc/SKILL.md +125 -0
- package/skills/map-sys-doc/system.xml +381 -0
- package/skills/map-sys-doc/workflow.xml +336 -0
- package/{commands/ace/map-system.md → skills/map-system/SKILL.md} +103 -92
- package/skills/map-system/script.js +75 -0
- package/skills/map-system/script.test.js +73 -0
- package/{agile-context-engineering/templates/wiki → skills/map-system/templates}/system-architecture.xml +254 -254
- package/{agile-context-engineering/templates/wiki → skills/map-system/templates}/system-structure.xml +177 -177
- package/{agile-context-engineering/templates/wiki → skills/map-system/templates}/testing-framework.xml +283 -283
- package/{agile-context-engineering/templates/wiki → skills/map-system/templates}/wiki-readme.xml +296 -296
- package/{agile-context-engineering/workflows/map-system.xml → skills/map-system/workflow.xml} +667 -672
- package/{commands/ace/map-walkthrough.md → skills/map-walkthrough/SKILL.md} +140 -127
- package/skills/map-walkthrough/walkthrough.xml +255 -0
- package/{agile-context-engineering/workflows/map-walkthrough.xml → skills/map-walkthrough/workflow.xml} +457 -457
- package/{commands/ace/plan-backlog.md → skills/plan-backlog/SKILL.md} +93 -83
- package/{agile-context-engineering/templates/product/product-backlog.xml → skills/plan-backlog/product-backlog-template.xml} +231 -231
- package/skills/plan-backlog/script.js +121 -0
- package/skills/plan-backlog/script.test.js +83 -0
- package/{agile-context-engineering/workflows/plan-backlog.xml → skills/plan-backlog/workflow.xml} +1348 -1356
- package/{commands/ace/plan-feature.md → skills/plan-feature/SKILL.md} +99 -89
- package/{agile-context-engineering/templates/product/feature.xml → skills/plan-feature/feature-template.xml} +361 -361
- package/skills/plan-feature/script.js +131 -0
- package/skills/plan-feature/script.test.js +80 -0
- package/{agile-context-engineering/workflows/plan-feature.xml → skills/plan-feature/workflow.xml} +1487 -1495
- package/{commands/ace/plan-product-vision.md → skills/plan-product-vision/SKILL.md} +91 -81
- package/{agile-context-engineering/templates/product/product-vision.xml → skills/plan-product-vision/product-vision-template.xml} +227 -227
- package/skills/plan-product-vision/script.js +51 -0
- package/skills/plan-product-vision/script.test.js +69 -0
- package/{agile-context-engineering/workflows/plan-product-vision.xml → skills/plan-product-vision/workflow.xml} +337 -342
- package/{commands/ace/plan-story.md → skills/plan-story/SKILL.md} +139 -159
- package/skills/plan-story/script.js +295 -0
- package/skills/plan-story/script.test.js +240 -0
- package/skills/plan-story/story-template.xml +458 -0
- package/{agile-context-engineering/workflows/plan-story.xml → skills/plan-story/workflow.xml} +1301 -944
- package/{commands/ace/research-external-solution.md → skills/research-external-solution/SKILL.md} +120 -138
- package/{agile-context-engineering/templates/product/external-solution.xml → skills/research-external-solution/external-solution-template.xml} +832 -832
- package/skills/research-external-solution/script.js +229 -0
- package/skills/research-external-solution/script.test.js +134 -0
- package/{agile-context-engineering/workflows/research-external-solution.xml → skills/research-external-solution/workflow.xml} +657 -659
- package/{commands/ace/research-integration-solution.md → skills/research-integration-solution/SKILL.md} +121 -135
- package/{agile-context-engineering/templates/product/story-integration-solution.xml → skills/research-integration-solution/integration-solution-template.xml} +1015 -1015
- package/skills/research-integration-solution/script.js +223 -0
- package/skills/research-integration-solution/script.test.js +134 -0
- package/{agile-context-engineering/workflows/research-integration-solution.xml → skills/research-integration-solution/workflow.xml} +711 -713
- package/{commands/ace/research-story-wiki.md → skills/research-story-wiki/SKILL.md} +101 -116
- package/skills/research-story-wiki/script.js +223 -0
- package/skills/research-story-wiki/script.test.js +138 -0
- package/{agile-context-engineering/templates/product/story-wiki.xml → skills/research-story-wiki/story-wiki-template.xml} +194 -194
- package/{agile-context-engineering/workflows/research-story-wiki.xml → skills/research-story-wiki/workflow.xml} +473 -475
- package/{commands/ace/research-technical-solution.md → skills/research-technical-solution/SKILL.md} +131 -147
- package/skills/research-technical-solution/script.js +223 -0
- package/skills/research-technical-solution/script.test.js +134 -0
- package/{agile-context-engineering/templates/product/story-technical-solution.xml → skills/research-technical-solution/technical-solution-template.xml} +1025 -1025
- package/{agile-context-engineering/workflows/research-technical-solution.xml → skills/research-technical-solution/workflow.xml} +761 -763
- package/{commands/ace/review-story.md → skills/review-story/SKILL.md} +99 -109
- package/skills/review-story/script.js +249 -0
- package/skills/review-story/script.test.js +169 -0
- package/skills/review-story/story-template.xml +451 -0
- package/{agile-context-engineering/workflows/review-story.xml → skills/review-story/workflow.xml} +279 -281
- package/{commands/ace/update.md → skills/update/SKILL.md} +65 -56
- package/{agile-context-engineering/workflows/update.xml → skills/update/workflow.xml} +33 -18
- package/agile-context-engineering/src/ace-tools.js +0 -2881
- package/agile-context-engineering/src/ace-tools.test.js +0 -1089
- package/agile-context-engineering/templates/_command.md +0 -54
- package/agile-context-engineering/templates/_workflow.xml +0 -17
- package/agile-context-engineering/templates/config.json +0 -0
- package/agile-context-engineering/templates/product/integration-solution.xml +0 -0
- package/commands/ace/help.md +0 -93
package/README.md
CHANGED
|
@@ -1,324 +1,336 @@
|
|
|
1
|
-
# ACE — Agile Context Engineering
|
|
2
|
-
|
|
3
|
-
[](https://www.npmjs.com/package/agile-context-engineering)
|
|
4
|
-
[](LICENSE)
|
|
5
|
-
[](https://nodejs.org)
|
|
6
|
-
|
|
7
|
-
**Spec-driven development for AI coding assistants.**
|
|
8
|
-
|
|
9
|
-
ACE turns your AI coding assistant into a full agile team — product owner, architect, code reviewer, and more — working from crystal-clear specs instead of vague prompts. Every story gets deep research, multi-agent execution, automated code review, and living documentation that grows with your project.
|
|
10
|
-
|
|
11
|
-
---
|
|
12
|
-
|
|
13
|
-
## Why ACE?
|
|
14
|
-
|
|
15
|
-
If you've been part of software development in any capacity in the last 10-15 years, you've probably heard of Agile. If so — ACE is for you. It brings the full agile workflow to AI-assisted development: structured planning, incremental delivery, and living documentation, all managed by specialized AI agents.
|
|
16
|
-
|
|
17
|
-
If not, here's the TLDR — Agile breaks work down into manageable pieces:
|
|
18
|
-
|
|
19
|
-
```
|
|
20
|
-
Product Vision The north star — what you're building and why
|
|
21
|
-
└── Backlog Epics and features organized by priority
|
|
22
|
-
└── Feature A deliverable capability (1-2 sprints)
|
|
23
|
-
└── Story A user-facing work item with clear acceptance criteria (1-3 days)
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
You start with a vision, break it into a backlog of epics and features, decompose features into stories, then execute stories one by one. Each story is small enough to reason about clearly, but connected to the bigger picture through the hierarchy above it.
|
|
27
|
-
|
|
28
|
-
**What makes ACE different:**
|
|
29
|
-
- **Spec-driven** — Stories have crystal-clear acceptance criteria with zero assumptions. Every story goes through 5 research passes before a single line of code is written
|
|
30
|
-
- **Multi-agent** — 8 specialized agents (Product Owner, Architect, Code Reviewer, Wiki Mapper, etc.) work in parallel. For larger stories, ACE leverages Claude Code's [Agent Teams](https://code.claude.com/docs/en/agent-teams) — unlike regular subagents that silently do work and report back, Agent Teams are fully independent Claude Code sessions that share a task list, message each other directly, coordinate on shared interfaces, and self-organize. ACE decomposes the technical solution into independent work streams, assigns each to a teammate with owned files, and adds a dedicated reviewer teammate that monitors code quality in real-time. The lead coordinates, approves each teammate's plan before they start implementing, and integrates the results
|
|
31
|
-
- **GitHub Project management** — On top of generating local artifacts, ACE can optionally sync with GitHub — creating issues for epics, features, and stories, tracking status on project boards, and updating labels as work progresses through the pipeline
|
|
32
|
-
- **Living wiki** — ACE maps all your code into a project wiki and updates it after every story, so the AI always has architectural overview context when planning new work
|
|
33
|
-
- **Purpose-built CLI tooling** —
|
|
34
|
-
|
|
35
|
-
---
|
|
36
|
-
|
|
37
|
-
## How It Works
|
|
38
|
-
|
|
39
|
-
### Getting Started — `/ace:help`
|
|
40
|
-
|
|
41
|
-
Run `/ace:help` at any point to see what's set up and what to do next. It checks for six foundation documents: **product vision**, **system architecture**, **system structure**, **coding standards**, **testing framework**, and **settings**. These documents are generated by the foundation
|
|
42
|
-
|
|
43
|
-
```mermaid
|
|
44
|
-
flowchart LR
|
|
45
|
-
H["ace:help"] --> checks{{"checks for"}}
|
|
46
|
-
checks --> files["vision · architecture<br/>structure · standards<br/>testing · settings"]
|
|
47
|
-
files --> D["Dashboard +<br/>Next Command"]
|
|
48
|
-
|
|
49
|
-
style H fill:#4A90D9,color:#fff,font-size:12px
|
|
50
|
-
style checks fill:none,stroke:none,color:#888,font-size:11px
|
|
51
|
-
style files fill:#f5f5f5,stroke:#ccc,font-size:11px
|
|
52
|
-
style D fill:#2ECC71,color:#fff,font-size:12px
|
|
53
|
-
```
|
|
54
|
-
|
|
55
|
-
### Full Lifecycle
|
|
56
|
-
|
|
57
|
-
```mermaid
|
|
58
|
-
flowchart TD
|
|
59
|
-
V["Vision"] -->|"produces<br/>product-vision.md"| B["Backlog"]
|
|
60
|
-
B -->|"produces<br/>backlog + GitHub Issues"| F["Feature"]
|
|
61
|
-
F -->|"produces<br/>feature spec + stories"| S["Story"]
|
|
62
|
-
S -->|"dispatches 4 parallel agents"| R1
|
|
63
|
-
|
|
64
|
-
subgraph Research["Story Research — 5 passes"]
|
|
65
|
-
direction LR
|
|
66
|
-
R1["1. Deep<br/>Questioning"] --> R2["2. Wiki<br/>Research"]
|
|
67
|
-
R2 --> R3["3. External<br/>Analysis"]
|
|
68
|
-
R3 --> R4["4. Integration<br/>Analysis"]
|
|
69
|
-
R4 --> R5["5. Technical<br/>Solution"]
|
|
70
|
-
end
|
|
71
|
-
|
|
72
|
-
R5 -->|"produces<br/>AC + technical solution"| E["Execute"]
|
|
73
|
-
E -->|"produces<br/>source code + state"| RV["Review"]
|
|
74
|
-
RV -->|"produces<br/>review report"| W["Wiki"]
|
|
75
|
-
|
|
76
|
-
V -.- c1["plan-product-vision<br/>+ optional context docs"]
|
|
77
|
-
B -.- c2["plan-backlog<br/>+ reads product-vision.md"]
|
|
78
|
-
F -.- c3["plan-feature<br/>+ reads backlog"]
|
|
79
|
-
S -.- c4["plan-story<br/>+ reads feature + wiki"]
|
|
80
|
-
E -.- c5["execute-story<br/>+ reads AC + solution + standards"]
|
|
81
|
-
RV -.- c6["review-story<br/>+ reads standards"]
|
|
82
|
-
W -.- c7["map-story<br/>+ reads git diff"]
|
|
83
|
-
|
|
84
|
-
style V fill:#4A90D9,color:#fff
|
|
85
|
-
style B fill:#4A90D9,color:#fff
|
|
86
|
-
style F fill:#4A90D9,color:#fff
|
|
87
|
-
style S fill:#7B68EE,color:#fff
|
|
88
|
-
style R1 fill:#9B85FF,color:#fff
|
|
89
|
-
style R2 fill:#9B85FF,color:#fff
|
|
90
|
-
style R3 fill:#9B85FF,color:#fff
|
|
91
|
-
style R4 fill:#9B85FF,color:#fff
|
|
92
|
-
style R5 fill:#9B85FF,color:#fff
|
|
93
|
-
style Research fill:#f0ecff,stroke:#9B85FF
|
|
94
|
-
style E fill:#2ECC71,color:#fff
|
|
95
|
-
style RV fill:#E67E22,color:#fff
|
|
96
|
-
style W fill:#1ABC9C,color:#fff
|
|
97
|
-
style c1 fill:none,stroke:none,color:#666
|
|
98
|
-
style c2 fill:none,stroke:none,color:#666
|
|
99
|
-
style c3 fill:none,stroke:none,color:#666
|
|
100
|
-
style c4 fill:none,stroke:none,color:#666
|
|
101
|
-
style c5 fill:none,stroke:none,color:#666
|
|
102
|
-
style c6 fill:none,stroke:none,color:#666
|
|
103
|
-
style c7 fill:none,stroke:none,color:#666
|
|
104
|
-
```
|
|
105
|
-
|
|
106
|
-
---
|
|
107
|
-
|
|
108
|
-
## Installation
|
|
109
|
-
|
|
110
|
-
ACE supports [Claude Code](https://docs.anthropic.com/en/docs/claude-code) and [Crush](https://github.com/crushai/crush) (formerly [OpenCode](https://github.com/opencode-ai/opencode)) as runtimes.
|
|
111
|
-
|
|
112
|
-
> **Note:** ACE has been primarily developed and tested with Claude Code. Crush support
|
|
113
|
-
|
|
114
|
-
```bash
|
|
115
|
-
npx agile-context-engineering
|
|
116
|
-
```
|
|
117
|
-
|
|
118
|
-
This launches an interactive installer. You can also use flags for non-interactive install:
|
|
119
|
-
|
|
120
|
-
```bash
|
|
1
|
+
# ACE — Agile Context Engineering
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/agile-context-engineering)
|
|
4
|
+
[](LICENSE)
|
|
5
|
+
[](https://nodejs.org)
|
|
6
|
+
|
|
7
|
+
**Spec-driven development for AI coding assistants.**
|
|
8
|
+
|
|
9
|
+
ACE turns your AI coding assistant into a full agile team — product owner, architect, code reviewer, and more — working from crystal-clear specs instead of vague prompts. Every story gets deep research, multi-agent execution, automated code review, and living documentation that grows with your project.
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## Why ACE?
|
|
14
|
+
|
|
15
|
+
If you've been part of software development in any capacity in the last 10-15 years, you've probably heard of Agile. If so — ACE is for you. It brings the full agile workflow to AI-assisted development: structured planning, incremental delivery, and living documentation, all managed by specialized AI agents.
|
|
16
|
+
|
|
17
|
+
If not, here's the TLDR — Agile breaks work down into manageable pieces:
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
Product Vision The north star — what you're building and why
|
|
21
|
+
└── Backlog Epics and features organized by priority
|
|
22
|
+
└── Feature A deliverable capability (1-2 sprints)
|
|
23
|
+
└── Story A user-facing work item with clear acceptance criteria (1-3 days)
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
You start with a vision, break it into a backlog of epics and features, decompose features into stories, then execute stories one by one. Each story is small enough to reason about clearly, but connected to the bigger picture through the hierarchy above it.
|
|
27
|
+
|
|
28
|
+
**What makes ACE different:**
|
|
29
|
+
- **Spec-driven** — Stories have crystal-clear acceptance criteria with zero assumptions. Every story goes through 5 research passes before a single line of code is written
|
|
30
|
+
- **Multi-agent** — 8 specialized agents (Product Owner, Architect, Code Reviewer, Wiki Mapper, etc.) work in parallel. For larger stories, ACE leverages Claude Code's [Agent Teams](https://code.claude.com/docs/en/agent-teams) — unlike regular subagents that silently do work and report back, Agent Teams are fully independent Claude Code sessions that share a task list, message each other directly, coordinate on shared interfaces, and self-organize. ACE decomposes the technical solution into independent work streams, assigns each to a teammate with owned files, and adds a dedicated reviewer teammate that monitors code quality in real-time. The lead coordinates, approves each teammate's plan before they start implementing, and integrates the results
|
|
31
|
+
- **GitHub Project management** — On top of generating local artifacts, ACE can optionally sync with GitHub — creating issues for epics, features, and stories, tracking status on project boards, and updating labels as work progresses through the pipeline
|
|
32
|
+
- **Living wiki** — ACE maps all your code into a project wiki and updates it after every story, so the AI always has architectural overview context when planning new work
|
|
33
|
+
- **Purpose-built CLI tooling** — Each skill has a dedicated `script.js` that offloads infrastructure work outside the AI's context window — environment detection, markdown parsing, path computation, state updates, and GitHub GraphQL operations all return structured JSON in a single call, saving tokens and avoiding shell escaping issues
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## How It Works
|
|
38
|
+
|
|
39
|
+
### Getting Started — `/ace:help`
|
|
40
|
+
|
|
41
|
+
Run `/ace:help` at any point to see what's set up and what to do next. It checks for six foundation documents: **product vision**, **system architecture**, **system structure**, **coding standards**, **testing framework**, and **settings**. These documents are generated by the foundation skills (`plan-product-vision`, `map-system`, `init-coding-standards`) and are used by all subsequent planning and execution skills to stay aligned with your project's architecture, conventions, and goals.
|
|
42
|
+
|
|
43
|
+
```mermaid
|
|
44
|
+
flowchart LR
|
|
45
|
+
H["ace:help"] --> checks{{"checks for"}}
|
|
46
|
+
checks --> files["vision · architecture<br/>structure · standards<br/>testing · settings"]
|
|
47
|
+
files --> D["Dashboard +<br/>Next Command"]
|
|
48
|
+
|
|
49
|
+
style H fill:#4A90D9,color:#fff,font-size:12px
|
|
50
|
+
style checks fill:none,stroke:none,color:#888,font-size:11px
|
|
51
|
+
style files fill:#f5f5f5,stroke:#ccc,font-size:11px
|
|
52
|
+
style D fill:#2ECC71,color:#fff,font-size:12px
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### Full Lifecycle
|
|
56
|
+
|
|
57
|
+
```mermaid
|
|
58
|
+
flowchart TD
|
|
59
|
+
V["Vision"] -->|"produces<br/>product-vision.md"| B["Backlog"]
|
|
60
|
+
B -->|"produces<br/>backlog + GitHub Issues"| F["Feature"]
|
|
61
|
+
F -->|"produces<br/>feature spec + stories"| S["Story"]
|
|
62
|
+
S -->|"dispatches 4 parallel agents"| R1
|
|
63
|
+
|
|
64
|
+
subgraph Research["Story Research — 5 passes"]
|
|
65
|
+
direction LR
|
|
66
|
+
R1["1. Deep<br/>Questioning"] --> R2["2. Wiki<br/>Research"]
|
|
67
|
+
R2 --> R3["3. External<br/>Analysis"]
|
|
68
|
+
R3 --> R4["4. Integration<br/>Analysis"]
|
|
69
|
+
R4 --> R5["5. Technical<br/>Solution"]
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
R5 -->|"produces<br/>AC + technical solution"| E["Execute"]
|
|
73
|
+
E -->|"produces<br/>source code + state"| RV["Review"]
|
|
74
|
+
RV -->|"produces<br/>review report"| W["Wiki"]
|
|
75
|
+
|
|
76
|
+
V -.- c1["plan-product-vision<br/>+ optional context docs"]
|
|
77
|
+
B -.- c2["plan-backlog<br/>+ reads product-vision.md"]
|
|
78
|
+
F -.- c3["plan-feature<br/>+ reads backlog"]
|
|
79
|
+
S -.- c4["plan-story<br/>+ reads feature + wiki"]
|
|
80
|
+
E -.- c5["execute-story<br/>+ reads AC + solution + standards"]
|
|
81
|
+
RV -.- c6["review-story<br/>+ reads standards"]
|
|
82
|
+
W -.- c7["map-story<br/>+ reads git diff"]
|
|
83
|
+
|
|
84
|
+
style V fill:#4A90D9,color:#fff
|
|
85
|
+
style B fill:#4A90D9,color:#fff
|
|
86
|
+
style F fill:#4A90D9,color:#fff
|
|
87
|
+
style S fill:#7B68EE,color:#fff
|
|
88
|
+
style R1 fill:#9B85FF,color:#fff
|
|
89
|
+
style R2 fill:#9B85FF,color:#fff
|
|
90
|
+
style R3 fill:#9B85FF,color:#fff
|
|
91
|
+
style R4 fill:#9B85FF,color:#fff
|
|
92
|
+
style R5 fill:#9B85FF,color:#fff
|
|
93
|
+
style Research fill:#f0ecff,stroke:#9B85FF
|
|
94
|
+
style E fill:#2ECC71,color:#fff
|
|
95
|
+
style RV fill:#E67E22,color:#fff
|
|
96
|
+
style W fill:#1ABC9C,color:#fff
|
|
97
|
+
style c1 fill:none,stroke:none,color:#666
|
|
98
|
+
style c2 fill:none,stroke:none,color:#666
|
|
99
|
+
style c3 fill:none,stroke:none,color:#666
|
|
100
|
+
style c4 fill:none,stroke:none,color:#666
|
|
101
|
+
style c5 fill:none,stroke:none,color:#666
|
|
102
|
+
style c6 fill:none,stroke:none,color:#666
|
|
103
|
+
style c7 fill:none,stroke:none,color:#666
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
## Installation
|
|
109
|
+
|
|
110
|
+
ACE supports [Claude Code](https://docs.anthropic.com/en/docs/claude-code), [Codex](https://github.com/openai/codex), and [Crush](https://github.com/crushai/crush) (formerly [OpenCode](https://github.com/opencode-ai/opencode)) as runtimes.
|
|
111
|
+
|
|
112
|
+
> **Note:** ACE has been primarily developed and tested with Claude Code. Codex and Crush support are functional (the installer transforms paths and runtime-specific skill wiring automatically), but have not been thoroughly tested end-to-end. If you encounter issues in Codex or Crush, please [open an issue](https://github.com/agile-context-engineering/ace/issues).
|
|
113
|
+
|
|
114
|
+
```bash
|
|
115
|
+
npx agile-context-engineering
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
This launches an interactive installer. You can also use flags for non-interactive install:
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
121
|
npx agile-context-engineering --claude --global # Claude Code, global install
|
|
122
122
|
npx agile-context-engineering --claude --local # Claude Code, local (project-only)
|
|
123
|
+
npx agile-context-engineering --codex --global # Codex, global install
|
|
124
|
+
npx agile-context-engineering --codex --local # Codex, local (project-only)
|
|
123
125
|
npx agile-context-engineering --opencode --global # Crush (formerly OpenCode), global install
|
|
124
126
|
npx agile-context-engineering --all --global # All runtimes, global install
|
|
125
127
|
```
|
|
126
128
|
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
|
136
|
-
|
|
137
|
-
| [
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
/ace:plan-
|
|
151
|
-
/ace:
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
-
|
|
164
|
-
|
|
165
|
-
- **
|
|
166
|
-
- **
|
|
167
|
-
- **
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
|
176
|
-
|
|
177
|
-
| **
|
|
178
|
-
| **
|
|
179
|
-
| **Code
|
|
180
|
-
| **
|
|
181
|
-
| **
|
|
182
|
-
| **
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
- **
|
|
191
|
-
- **
|
|
192
|
-
- **
|
|
193
|
-
- **
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
**`.
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
│
|
|
217
|
-
└──
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
├──
|
|
224
|
-
└──
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
|
236
|
-
|
|
237
|
-
| **
|
|
238
|
-
| **
|
|
239
|
-
| **
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
|
246
|
-
|
|
247
|
-
| **
|
|
248
|
-
| **
|
|
249
|
-
| **
|
|
250
|
-
| **
|
|
251
|
-
| **
|
|
252
|
-
| **
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
129
|
+
Codex installs ACE as native skills with an `ace-` prefix. Use `$ace-help`, `$ace-plan-story`, `$ace-execute-story`, and so on.
|
|
130
|
+
|
|
131
|
+
### Updating
|
|
132
|
+
|
|
133
|
+
When a new version is available, Claude Code's status bar will show a yellow `/ace:update` indicator. Run `/ace:update` in Claude/Crush or `$ace-update` in Codex to update — it detects your install type (global/local, Claude/Codex/Crush) automatically and runs the correct installer.
|
|
134
|
+
|
|
135
|
+
### Prerequisites
|
|
136
|
+
|
|
137
|
+
| Requirement | Purpose |
|
|
138
|
+
|---|---|
|
|
139
|
+
| [Node.js](https://nodejs.org) >= 16.7.0 | Runs the installer and CLI tools |
|
|
140
|
+
| [Claude Code](https://docs.anthropic.com/en/docs/claude-code), [Codex](https://github.com/openai/codex), or [Crush](https://github.com/crushai/crush) / [OpenCode](https://github.com/opencode-ai/opencode) | AI coding assistant runtime |
|
|
141
|
+
| [GitHub CLI (`gh`)](https://cli.github.com/) | Required for GitHub issue tracking and project board integration |
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
## Quick Start
|
|
146
|
+
|
|
147
|
+
Run `/ace:help` first in Claude/Crush, or `$ace-help` in Codex. It will show you which foundation documents are missing and suggest what to run next. Follow its suggestions until the dashboard shows everything complete.
|
|
148
|
+
|
|
149
|
+
Once the dashboard is fully green, you're ready to build:
|
|
150
|
+
|
|
151
|
+
```
|
|
152
|
+
/ace:plan-backlog # Create epics and features from your vision
|
|
153
|
+
/ace:plan-feature # Break a feature into stories
|
|
154
|
+
/ace:plan-story # Deep-plan a story (triggers 5 research passes)
|
|
155
|
+
/ace:execute-story # Execute with multi-agent teams
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
---
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
## Key Features
|
|
162
|
+
|
|
163
|
+
### Agent Teams
|
|
164
|
+
|
|
165
|
+
ACE can leverage Claude Code's [Agent Teams](https://code.claude.com/docs/en/agent-teams) for story execution. As opposed to regular subagents — which silently do work in isolation and report results back — Agent Teams are fully independent Claude Code sessions that:
|
|
166
|
+
|
|
167
|
+
- **Share a task list** — teammates claim tasks, mark them complete, and blocked tasks auto-unblock when dependencies resolve
|
|
168
|
+
- **Message each other directly** — teammates coordinate on shared interfaces, ask questions, and challenge each other's approaches without going through the lead
|
|
169
|
+
- **Each have their own context window** — no shared context limit; each teammate gets a fresh 200k window
|
|
170
|
+
- **Require plan approval** — the lead reviews and approves each teammate's implementation plan before they start writing code
|
|
171
|
+
- **Self-organize** — after finishing a task, teammates pick up the next available one on their own
|
|
172
|
+
|
|
173
|
+
ACE orchestrates this by decomposing the technical solution into independent work streams (e.g., "state-layer", "ui-layer", "integration", "tests"), assigning each to a teammate with explicitly owned files (no overlap), and spawning a dedicated reviewer teammate that watches for anti-patterns, coding standards violations, and dead code as other teammates work.
|
|
174
|
+
|
|
175
|
+
### 8 Specialized Agents
|
|
176
|
+
|
|
177
|
+
| Agent | Role |
|
|
178
|
+
|---|---|
|
|
179
|
+
| **Product Owner** | Requirements gathering, decomposition, prioritization, estimation, backlog management |
|
|
180
|
+
| **Technical Architect** | Solution design, architecture decisions, Clean Architecture and SOLID enforcement |
|
|
181
|
+
| **Code Discovery Analyst** | Deep repository analysis — extracts patterns, algorithms, data models, architectural decisions |
|
|
182
|
+
| **Code Integration Analyst** | Analyzes how new features integrate while maintaining architecture and extensibility |
|
|
183
|
+
| **Code Reviewer** | Completeness, correctness, code quality, anti-pattern detection, tech debt discovery |
|
|
184
|
+
| **Wiki Mapper** | Writes structured wiki documents for the engineering knowledge base |
|
|
185
|
+
| **Project Researcher** | Researches domain ecosystem to inform planning phases |
|
|
186
|
+
| **Research Synthesizer** | Synthesizes outputs from parallel research agents into coherent summaries |
|
|
187
|
+
|
|
188
|
+
### Per-Skill CLI Tooling
|
|
189
|
+
|
|
190
|
+
The AI doesn't do everything itself. Each skill has a dedicated `script.js` that offloads infrastructure-heavy operations to Node.js, keeping workflows fast and token-efficient. Shared logic lives in three libraries (`ace-core`, `ace-story`, `ace-github`):
|
|
191
|
+
|
|
192
|
+
- **Preprocessed init** — Each skill automatically runs its init before Claude sees the prompt, embedding 15-20 environment facts (brownfield detection, model resolution, story parsing, metadata extraction, path computation, file existence checks) as structured JSON directly into the context
|
|
193
|
+
- **Atomic state updates** — One call updates the story file, feature file, and product backlog together, with cascading logic that auto-promotes feature status when all stories complete
|
|
194
|
+
- **GitHub operations** — Issue creation, type assignment, project board placement, field updates, and parent linking happen in one call. Markdown bodies use `--body-file` to avoid shell escaping issues with code blocks and backticks
|
|
195
|
+
- **Bulk sync** — Pushes local story/feature content to GitHub issues and syncs project board status in a single call
|
|
196
|
+
- **Markdown parsing** — Story headers, metadata fields, acceptance criteria, requirements sections, and wiki references are extracted and categorized outside the context window
|
|
197
|
+
- **Environment detection** — Brownfield detection walks the directory tree checking 10+ code file extensions and package files, reused across every skill
|
|
198
|
+
|
|
199
|
+
### GitHub Integration
|
|
200
|
+
|
|
201
|
+
ACE works fully offline with local artifacts. Optionally, you can enable GitHub integration to sync epics, features, and stories as GitHub issues — with automatic status tracking, labels, and project board updates as work progresses through the pipeline.
|
|
202
|
+
|
|
203
|
+
Requires the [GitHub CLI (`gh`)](https://cli.github.com/) to be installed and authenticated.
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
## Project Structure
|
|
207
|
+
|
|
208
|
+
ACE creates two directories in your project:
|
|
209
|
+
|
|
210
|
+
**`.ace/`** — Internal artifacts that ACE needs to operate: configuration, feature specs, story specs, research outputs, and supporting documents. This is ACE's working directory and can be safely `.gitignore`d if you prefer to keep your repo clean.
|
|
211
|
+
|
|
212
|
+
**`.docs/`** — Project-facing documents: the living wiki, product vision, and coding standards. These are meant to be committed — they provide valuable context for your team and for the AI across sessions.
|
|
213
|
+
|
|
214
|
+
```
|
|
215
|
+
.ace/
|
|
216
|
+
├── config.json # ACE configuration (GitHub org, project, settings)
|
|
217
|
+
├── backlog/ # Epics and features
|
|
218
|
+
│ ├── E1-epic-name.md
|
|
219
|
+
│ └── E1/
|
|
220
|
+
│ └── F1-feature-name.md
|
|
221
|
+
└── stories/ # Story specs and research artifacts
|
|
222
|
+
|
|
223
|
+
.docs/
|
|
224
|
+
├── wiki/ # Living engineering knowledge base
|
|
225
|
+
│ ├── system-wide/ # System-level architecture docs
|
|
226
|
+
│ └── subsystems/ # Per-subsystem documentation
|
|
227
|
+
├── product-vision.md # Product vision document
|
|
228
|
+
└── coding-standards.md # Project coding standards
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
## Living Wiki
|
|
232
|
+
|
|
233
|
+
Every completed story triggers a wiki update. The wiki is the AI's institutional memory of your codebase — it's what allows agents to make informed decisions about where to put code, which patterns to follow, and how to wire new components into existing infrastructure.
|
|
234
|
+
|
|
235
|
+
**System-wide docs** (`.docs/wiki/system-wide/`) provide the 30,000-foot view:
|
|
236
|
+
|
|
237
|
+
| Document | What it captures |
|
|
238
|
+
|---|---|
|
|
239
|
+
| **system-structure.md** | Physical directory layout, every subsystem and its purpose, where each code file lives and what it does |
|
|
240
|
+
| **system-architecture.md** | C4 diagrams, subsystem responsibility matrix, core data flows, tech stack |
|
|
241
|
+
| **testing-framework.md** | Test frameworks, patterns, mocking strategies, coverage approach |
|
|
242
|
+
| **coding-standards.md** | Language and framework conventions |
|
|
243
|
+
| **tech-debt-index.md** | All known tech debt across subsystems, tracked by severity |
|
|
244
|
+
|
|
245
|
+
**Subsystem docs** (`.docs/wiki/subsystems/[name]/`) go deep into each subsystem:
|
|
246
|
+
|
|
247
|
+
| Folder | What it documents | How the AI uses it |
|
|
248
|
+
|---|---|---|
|
|
249
|
+
| **structure.md** | File tree, directory purposes, key file locations, where to add new code | Knows exactly where every file is and what it does |
|
|
250
|
+
| **architecture.md** | Architectural pattern (Clean/N-Tier/CQRS), C4 L3 components, internal flows, dependency inventory | Understands the subsystem's internal design before making changes |
|
|
251
|
+
| **systems/** | Domain components — file trees, entry points, data flows, sequence diagrams, state management, error propagation | Understands what exists before adding new code |
|
|
252
|
+
| **patterns/** | Reusable structural templates — structure diagrams, current implementations, how to apply | Follows existing patterns instead of inventing new ones |
|
|
253
|
+
| **cross-cutting/** | Shared infrastructure — DI containers, event systems, factories, registrations | Knows exactly where to register new components |
|
|
254
|
+
| **guides/** | Step-by-step recipes for common tasks (e.g., "add a new API endpoint") | Follows proven procedures instead of guessing |
|
|
255
|
+
| **walkthroughs/** | Deep tutorial-style flow explanations with actual code snippets | Understands complex multi-class flows before modifying them |
|
|
256
|
+
| **decisions/** | Architecture Decision Records — why choices were made, alternatives rejected | Respects past decisions, doesn't re-litigate them |
|
|
257
|
+
|
|
258
|
+
When planning a new story, the wiki research pass scans all relevant docs and attaches them to the story. When executing, the agent loads those references as context. After implementation, `map-story` updates the wiki with what changed — so the next story benefits from everything learned.
|
|
259
|
+
|
|
260
|
+
## Skills
|
|
261
|
+
|
|
262
|
+
ACE is built as a multi-runtime plugin/skill package with 21 specialized skills, each with its own workflow, templates, and CLI tooling. Claude Code uses `/ace:*` commands; Codex uses `$ace-*` skills.
|
|
263
|
+
|
|
264
|
+
### Getting Started
|
|
265
|
+
|
|
266
|
+
| Skill | Description |
|
|
267
|
+
|---|---|
|
|
268
|
+
| `/ace:help` | Check project initialization status and suggest next steps |
|
|
269
|
+
|
|
270
|
+
### Foundation (one-time setup)
|
|
271
|
+
|
|
272
|
+
| Skill | Description |
|
|
273
|
+
|---|---|
|
|
274
|
+
| `/ace:plan-product-vision` | Create or update the product vision through architecture-aware questioning |
|
|
275
|
+
| `/ace:init-coding-standards` | Generate a tailored `coding-standards.md` through codebase detection and user interview |
|
|
276
|
+
| `/ace:map-system` | Map system-wide structure, architecture, and testing framework into `.docs/wiki/system-wide/` |
|
|
277
|
+
| `/ace:map-subsystem` | Map a subsystem's structure, architecture, and knowledge docs into `.docs/wiki/subsystems/[name]/` |
|
|
278
|
+
|
|
279
|
+
### Planning
|
|
280
|
+
|
|
281
|
+
| Skill | Description |
|
|
282
|
+
|---|---|
|
|
283
|
+
| `/ace:plan-backlog` | Create or refine the product backlog through vision-aware questioning and guided epic/feature planning |
|
|
284
|
+
| `/ace:plan-feature` | Plan a feature through backlog-aware questioning, story decomposition, and guided specification |
|
|
285
|
+
|
|
286
|
+
### Story Refinement
|
|
287
|
+
|
|
288
|
+
| Skill | Description |
|
|
289
|
+
|---|---|
|
|
290
|
+
| `/ace:plan-story` | Plan a story with crystal-clear acceptance criteria, then auto-dispatch 5 research passes |
|
|
291
|
+
|
|
292
|
+
`/ace:plan-story` is where ACE really shines. After establishing acceptance criteria through deep questioning, it automatically dispatches up to 4 parallel research agents:
|
|
293
|
+
|
|
294
|
+
1. **Deep questioning** — Collaborative refinement to eliminate all assumptions from acceptance criteria
|
|
295
|
+
2. **Wiki research** — Searches the living wiki for relevant architectural context *(auto-dispatched)*
|
|
296
|
+
3. **External analysis** — Studies similar implementations in reference repositories *(optional, auto-dispatched)*
|
|
297
|
+
4. **Integration analysis** — Analyzes how the story integrates into the existing codebase *(auto-dispatched)*
|
|
298
|
+
5. **Technical solution** — Designs the architecture, patterns, algorithms, and implementation plan *(auto-dispatched)*
|
|
299
|
+
|
|
300
|
+
Each research pass can also be run standalone:
|
|
301
|
+
|
|
302
|
+
| Skill | Description |
|
|
303
|
+
|---|---|
|
|
304
|
+
| `/ace:research-story-wiki` | Research and curate wiki references relevant to a story |
|
|
305
|
+
| `/ace:research-external-solution` | Code-level analysis of similar implementations in external repositories |
|
|
306
|
+
| `/ace:research-integration-solution` | System integration analysis for fitting a story into the existing codebase |
|
|
307
|
+
| `/ace:research-technical-solution` | Technical solution design — architecture, patterns, sequence diagrams, implementation plan |
|
|
308
|
+
|
|
309
|
+
### Execution & Review
|
|
310
|
+
|
|
311
|
+
| Skill | Description |
|
|
312
|
+
|---|---|
|
|
313
|
+
| `/ace:execute-story` | Execute a fully-planned story — implements via solo or agent teams, runs code review, updates state, triggers wiki mapping |
|
|
314
|
+
| `/ace:review-story` | Standalone code review — artifact verification, anti-pattern detection, coding standards enforcement, tech debt discovery |
|
|
315
|
+
|
|
316
|
+
### Documentation
|
|
317
|
+
|
|
318
|
+
| Skill | Description |
|
|
319
|
+
|---|---|
|
|
320
|
+
| `/ace:map-story` | Update living knowledge docs after story implementation or for existing undocumented code |
|
|
321
|
+
| `/ace:map-walkthrough` | Create deep tutorial-style flow walkthroughs |
|
|
322
|
+
| `/ace:map-sys-doc` | Create or update a system document for a domain system |
|
|
323
|
+
| `/ace:map-pattern` | Create or update a pattern document for reusable implementation patterns |
|
|
324
|
+
| `/ace:map-cross-cutting` | Create or update a cross-cutting concern document |
|
|
325
|
+
| `/ace:map-guide` | Create or update a step-by-step guide for common tasks |
|
|
326
|
+
| `/ace:update` | Update ACE to the latest version with changelog display |
|
|
327
|
+
|
|
328
|
+
---
|
|
329
|
+
|
|
330
|
+
## Acknowledgements
|
|
331
|
+
|
|
332
|
+
Portions of this project were adapted from [GSD (Get Shit Done)](https://github.com/coleam00/get-shit-done) by Lex Christopherson, licensed under the MIT License.
|
|
333
|
+
|
|
334
|
+
## License
|
|
335
|
+
|
|
336
|
+
[MIT](LICENSE)
|