agile-context-engineering 0.2.1 → 0.3.0
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/CHANGELOG.md +82 -0
- package/LICENSE +51 -51
- package/README.md +324 -319
- package/agents/ace-research-synthesizer.md +228 -228
- package/agents/ace-technical-application-architect.md +28 -0
- package/agents/ace-wiki-mapper.md +445 -334
- package/agile-context-engineering/src/ace-tools.test.js +1089 -1089
- package/agile-context-engineering/templates/_command.md +53 -53
- package/agile-context-engineering/templates/_workflow.xml +16 -16
- package/agile-context-engineering/templates/product/product-backlog.xml +231 -231
- package/agile-context-engineering/templates/product/story-integration-solution.xml +1 -0
- package/agile-context-engineering/templates/product/story-wiki.xml +4 -0
- package/agile-context-engineering/templates/wiki/coding-standards.xml +38 -0
- package/agile-context-engineering/templates/wiki/decizions.xml +115 -115
- package/agile-context-engineering/templates/wiki/guide.xml +137 -137
- package/agile-context-engineering/templates/wiki/module-discovery.xml +174 -174
- package/agile-context-engineering/templates/wiki/pattern.xml +159 -159
- package/agile-context-engineering/templates/wiki/system-architecture.xml +254 -254
- package/agile-context-engineering/templates/wiki/system-cross-cutting.xml +197 -197
- package/agile-context-engineering/templates/wiki/system.xml +381 -381
- package/agile-context-engineering/templates/wiki/walkthrough.xml +255 -0
- package/agile-context-engineering/templates/wiki/wiki-readme.xml +297 -276
- package/agile-context-engineering/utils/questioning.xml +110 -110
- package/agile-context-engineering/workflows/execute-story.xml +1219 -1145
- package/agile-context-engineering/workflows/help.xml +540 -540
- package/agile-context-engineering/workflows/init-coding-standards.xml +386 -386
- package/agile-context-engineering/workflows/map-story.xml +1046 -797
- package/agile-context-engineering/workflows/map-subsystem.xml +2 -1
- package/agile-context-engineering/workflows/map-walkthrough.xml +457 -0
- package/agile-context-engineering/workflows/plan-feature.xml +1495 -1495
- package/agile-context-engineering/workflows/plan-story.xml +36 -1
- package/agile-context-engineering/workflows/research-integration-solution.xml +1 -0
- package/agile-context-engineering/workflows/research-story-wiki.xml +2 -1
- package/agile-context-engineering/workflows/research-technical-solution.xml +1 -0
- package/agile-context-engineering/workflows/review-story.xml +281 -281
- package/agile-context-engineering/workflows/update.xml +238 -0
- package/bin/install.js +126 -7
- package/commands/ace/execute-story.md +1 -0
- package/commands/ace/help.md +93 -93
- package/commands/ace/init-coding-standards.md +83 -83
- package/commands/ace/map-story.md +165 -156
- package/commands/ace/map-subsystem.md +140 -138
- package/commands/ace/map-system.md +92 -92
- package/commands/ace/map-walkthrough.md +127 -0
- package/commands/ace/plan-feature.md +89 -89
- package/commands/ace/plan-story.md +15 -1
- package/commands/ace/review-story.md +109 -109
- package/commands/ace/update.md +56 -0
- package/hooks/ace-check-update.js +62 -0
- package/hooks/ace-statusline.js +89 -0
- package/package.json +5 -3
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to ACE will be documented in this file.
|
|
4
|
+
|
|
5
|
+
Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
|
+
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [0.3.0] - 2026-03-20
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- CHANGELOG.md with full release history
|
|
13
|
+
- GitHub Actions workflow for automated releases and npm publishing on version tags
|
|
14
|
+
- Changelog display during `/ace:update` — fetches and shows what changed before updating
|
|
15
|
+
- CICD.md documenting the complete release pipeline
|
|
16
|
+
|
|
17
|
+
## [0.2.2] - 2026-03-14
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
- `/ace:update` command with automatic update detection and installation
|
|
21
|
+
- Statusline hooks (`ace-check-update.js`, `ace-statusline.js`) for background update checking and context window display
|
|
22
|
+
- Wiki README template for subsystem documentation
|
|
23
|
+
- Plan mode exit warning for solo execution
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
- VERSION file now written correctly during installation
|
|
27
|
+
|
|
28
|
+
### Changed
|
|
29
|
+
- Renamed OpenCode to Crush across all commands, agents, and installer
|
|
30
|
+
|
|
31
|
+
## [0.2.1] - 2026-03-10
|
|
32
|
+
|
|
33
|
+
### Added
|
|
34
|
+
- Agent team tear down guards to prevent orphaned subagents
|
|
35
|
+
- `lib-docs` parameter to `/ace:plan-story` for external library documentation
|
|
36
|
+
- New subsystem detection in `/ace:map-story`
|
|
37
|
+
- Defensive programming instructions in coding standards
|
|
38
|
+
|
|
39
|
+
### Fixed
|
|
40
|
+
- Execute-story now enforces all steps in sequence
|
|
41
|
+
- GitHub issue status updates during story execution
|
|
42
|
+
|
|
43
|
+
### Changed
|
|
44
|
+
- Feature planning adjusted to break down into vertical stories
|
|
45
|
+
|
|
46
|
+
## [0.2.0] - 2026-03-07
|
|
47
|
+
|
|
48
|
+
### Added
|
|
49
|
+
- `/ace:plan-story` — deep questioning to create crystal-clear acceptance criteria with zero assumptions, then dispatches wiki research, external analysis, integration analysis, and technical solution design
|
|
50
|
+
- `/ace:execute-story` — loads AC + technical solution, creates execution plan, implements with solo or agent teams, runs code review, updates state, and triggers wiki mapping
|
|
51
|
+
- Agent teams support for parallel execution of independent tasks
|
|
52
|
+
|
|
53
|
+
## [0.1.0] - 2026-03-05
|
|
54
|
+
|
|
55
|
+
### Added
|
|
56
|
+
- `/ace:plan-backlog` — create or refine product backlog through vision-aware questioning, wiki analysis, and guided epic/feature planning
|
|
57
|
+
- `/ace:plan-feature` — plan features through backlog-aware questioning, story decomposition, and guided feature specification
|
|
58
|
+
|
|
59
|
+
## [0.0.2] - 2026-03-02
|
|
60
|
+
|
|
61
|
+
### Added
|
|
62
|
+
- `/ace:map-story` — update living knowledge docs after story implementation (git-based) or for existing undocumented code (file-based)
|
|
63
|
+
- `/ace:map-subsystem` — map a subsystem's structure, architecture, and knowledge docs
|
|
64
|
+
- `/ace:map-system` — map system-wide codebase structure, architecture, and testing framework
|
|
65
|
+
|
|
66
|
+
## [0.0.1] - 2026-02-23
|
|
67
|
+
|
|
68
|
+
### Added
|
|
69
|
+
- Initial ACE framework setup
|
|
70
|
+
- `/ace:init-coding-standards` — generate tailored coding standards through codebase detection and user interview
|
|
71
|
+
- `/ace:plan-product-vision` — create or update product vision through architecture-aware questioning
|
|
72
|
+
- Installer (`bin/install.js`) with support for Claude Code and Crush runtimes
|
|
73
|
+
- Local and global installation modes
|
|
74
|
+
|
|
75
|
+
[Unreleased]: https://github.com/Quantarcane/ACE/compare/v0.3.0...HEAD
|
|
76
|
+
[0.3.0]: https://github.com/Quantarcane/ACE/releases/tag/v0.3.0
|
|
77
|
+
[0.2.2]: https://github.com/Quantarcane/ACE/releases/tag/v0.2.2
|
|
78
|
+
[0.2.1]: https://github.com/Quantarcane/ACE/releases/tag/v0.2.1
|
|
79
|
+
[0.2.0]: https://github.com/Quantarcane/ACE/releases/tag/v0.2.0
|
|
80
|
+
[0.1.0]: https://github.com/Quantarcane/ACE/releases/tag/v0.1.0
|
|
81
|
+
[0.0.2]: https://github.com/Quantarcane/ACE/releases/tag/v0.0.2
|
|
82
|
+
[0.0.1]: https://github.com/Quantarcane/ACE/releases/tag/v0.0.1
|
package/LICENSE
CHANGED
|
@@ -1,51 +1,51 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 Quantarcane
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
22
|
-
|
|
23
|
-
---
|
|
24
|
-
|
|
25
|
-
ACKNOWLEDGEMENTS
|
|
26
|
-
|
|
27
|
-
Portions of this project were adapted from GSD (Get Shit Done)
|
|
28
|
-
by Lex Christopherson, licensed under the MIT License.
|
|
29
|
-
https://github.com/coleam00/get-shit-done
|
|
30
|
-
|
|
31
|
-
MIT License
|
|
32
|
-
|
|
33
|
-
Copyright (c) 2025 Lex Christopherson
|
|
34
|
-
|
|
35
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
36
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
37
|
-
in the Software without restriction, including without limitation the rights
|
|
38
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
39
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
40
|
-
furnished to do so, subject to the following conditions:
|
|
41
|
-
|
|
42
|
-
The above copyright notice and this permission notice shall be included in all
|
|
43
|
-
copies or substantial portions of the Software.
|
|
44
|
-
|
|
45
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
46
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
47
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
48
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
49
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
50
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
51
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Quantarcane
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
ACKNOWLEDGEMENTS
|
|
26
|
+
|
|
27
|
+
Portions of this project were adapted from GSD (Get Shit Done)
|
|
28
|
+
by Lex Christopherson, licensed under the MIT License.
|
|
29
|
+
https://github.com/coleam00/get-shit-done
|
|
30
|
+
|
|
31
|
+
MIT License
|
|
32
|
+
|
|
33
|
+
Copyright (c) 2025 Lex Christopherson
|
|
34
|
+
|
|
35
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
36
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
37
|
+
in the Software without restriction, including without limitation the rights
|
|
38
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
39
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
40
|
+
furnished to do so, subject to the following conditions:
|
|
41
|
+
|
|
42
|
+
The above copyright notice and this permission notice shall be included in all
|
|
43
|
+
copies or substantial portions of the Software.
|
|
44
|
+
|
|
45
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
46
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
47
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
48
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
49
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
50
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
51
|
+
SOFTWARE.
|