agile-context-engineering 0.2.2 → 0.5.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/.claude-plugin/plugin.json +10 -0
- package/CHANGELOG.md +82 -0
- package/README.md +27 -18
- package/agents/ace-product-owner.md +1 -1
- package/agents/ace-technical-application-architect.md +28 -0
- package/agents/ace-wiki-mapper.md +144 -29
- package/bin/install.js +67 -63
- package/hooks/ace-check-update.js +17 -9
- package/package.json +7 -5
- package/shared/lib/ace-core.js +308 -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/ui-formatting.md +299 -299
- package/skills/execute-story/SKILL.md +110 -0
- package/skills/execute-story/script.js +305 -0
- package/skills/execute-story/script.test.js +261 -0
- package/skills/execute-story/walkthrough-template.xml +255 -0
- package/{agile-context-engineering/workflows/execute-story.xml → skills/execute-story/workflow.xml} +83 -9
- package/skills/help/SKILL.md +69 -0
- package/skills/help/script.js +318 -0
- package/skills/help/script.test.js +183 -0
- package/{agile-context-engineering/workflows/help.xml → skills/help/workflow.xml} +8 -8
- package/skills/init-coding-standards/SKILL.md +72 -0
- package/{agile-context-engineering/templates/wiki/coding-standards.xml → skills/init-coding-standards/coding-standards-template.xml} +38 -0
- package/skills/init-coding-standards/script.js +59 -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} +4 -9
- package/skills/map-cross-cutting/SKILL.md +89 -0
- package/skills/map-cross-cutting/workflow.xml +330 -0
- package/skills/map-guide/SKILL.md +89 -0
- package/skills/map-guide/workflow.xml +320 -0
- package/skills/map-pattern/SKILL.md +89 -0
- package/skills/map-pattern/workflow.xml +331 -0
- package/skills/map-story/SKILL.md +127 -0
- 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/skills/map-story/templates/walkthrough.xml +255 -0
- package/{agile-context-engineering/workflows/map-story.xml → skills/map-story/workflow.xml} +258 -9
- package/skills/map-subsystem/SKILL.md +111 -0
- package/skills/map-subsystem/script.js +60 -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 +3 -3
- package/skills/map-subsystem/templates/pattern.xml +159 -0
- 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} +17 -21
- package/skills/map-sys-doc/SKILL.md +90 -0
- package/skills/map-sys-doc/system.xml +381 -0
- package/skills/map-sys-doc/workflow.xml +336 -0
- package/skills/map-system/SKILL.md +85 -0
- package/skills/map-system/script.js +84 -0
- package/skills/map-system/script.test.js +73 -0
- package/skills/map-system/templates/wiki-readme.xml +297 -0
- package/{agile-context-engineering/workflows/map-system.xml → skills/map-system/workflow.xml} +11 -16
- package/skills/map-walkthrough/SKILL.md +92 -0
- package/skills/map-walkthrough/walkthrough.xml +255 -0
- package/skills/map-walkthrough/workflow.xml +457 -0
- package/skills/plan-backlog/SKILL.md +75 -0
- package/skills/plan-backlog/script.js +136 -0
- package/skills/plan-backlog/script.test.js +83 -0
- package/{agile-context-engineering/workflows/plan-backlog.xml → skills/plan-backlog/workflow.xml} +13 -21
- package/skills/plan-feature/SKILL.md +76 -0
- package/skills/plan-feature/script.js +148 -0
- package/skills/plan-feature/script.test.js +80 -0
- package/{agile-context-engineering/workflows/plan-feature.xml → skills/plan-feature/workflow.xml} +21 -29
- package/skills/plan-product-vision/SKILL.md +75 -0
- package/skills/plan-product-vision/script.js +60 -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} +4 -9
- package/skills/plan-story/SKILL.md +116 -0
- package/skills/plan-story/script.js +326 -0
- package/skills/plan-story/script.test.js +240 -0
- package/skills/plan-story/story-template.xml +451 -0
- package/{agile-context-engineering/workflows/plan-story.xml → skills/plan-story/workflow.xml} +1285 -909
- package/skills/research-external-solution/SKILL.md +107 -0
- package/skills/research-external-solution/script.js +238 -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} +4 -6
- package/skills/research-integration-solution/SKILL.md +98 -0
- package/{agile-context-engineering/templates/product/story-integration-solution.xml → skills/research-integration-solution/integration-solution-template.xml} +1 -0
- package/skills/research-integration-solution/script.js +231 -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} +4 -5
- package/skills/research-story-wiki/SKILL.md +92 -0
- package/skills/research-story-wiki/script.js +231 -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} +4 -0
- package/{agile-context-engineering/workflows/research-story-wiki.xml → skills/research-story-wiki/workflow.xml} +5 -6
- package/skills/research-technical-solution/SKILL.md +103 -0
- package/skills/research-technical-solution/script.js +231 -0
- package/skills/research-technical-solution/script.test.js +134 -0
- package/{agile-context-engineering/workflows/research-technical-solution.xml → skills/research-technical-solution/workflow.xml} +4 -5
- package/skills/review-story/SKILL.md +100 -0
- package/skills/review-story/script.js +257 -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} +1 -3
- package/skills/update/SKILL.md +53 -0
- package/{agile-context-engineering/workflows/update.xml → skills/update/workflow.xml} +237 -207
- 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/agile-context-engineering/templates/wiki/wiki-readme.xml +0 -276
- package/commands/ace/execute-story.md +0 -137
- package/commands/ace/help.md +0 -93
- package/commands/ace/init-coding-standards.md +0 -83
- package/commands/ace/map-story.md +0 -156
- package/commands/ace/map-subsystem.md +0 -138
- package/commands/ace/map-system.md +0 -92
- package/commands/ace/plan-backlog.md +0 -83
- package/commands/ace/plan-feature.md +0 -89
- package/commands/ace/plan-product-vision.md +0 -81
- package/commands/ace/plan-story.md +0 -145
- package/commands/ace/research-external-solution.md +0 -138
- package/commands/ace/research-integration-solution.md +0 -135
- package/commands/ace/research-story-wiki.md +0 -116
- package/commands/ace/research-technical-solution.md +0 -147
- package/commands/ace/review-story.md +0 -109
- package/commands/ace/update.md +0 -54
- /package/{agile-context-engineering → shared}/utils/questioning.xml +0 -0
- /package/{agile-context-engineering/templates/product/story.xml → skills/execute-story/story-template.xml} +0 -0
- /package/{agile-context-engineering/templates/wiki → skills/map-cross-cutting}/system-cross-cutting.xml +0 -0
- /package/{agile-context-engineering/templates/wiki → skills/map-guide}/guide.xml +0 -0
- /package/{agile-context-engineering/templates/wiki → skills/map-pattern}/pattern.xml +0 -0
- /package/{agile-context-engineering/templates/wiki → skills/map-story/templates}/decizions.xml +0 -0
- /package/{agile-context-engineering/templates/wiki → skills/map-story/templates}/system.xml +0 -0
- /package/{agile-context-engineering/templates/wiki → skills/map-story/templates}/tech-debt-index.xml +0 -0
- /package/{agile-context-engineering/templates/wiki → skills/map-subsystem/templates}/subsystem-architecture.xml +0 -0
- /package/{agile-context-engineering/templates/wiki → skills/map-subsystem/templates}/subsystem-structure.xml +0 -0
- /package/{agile-context-engineering/templates/wiki → skills/map-system/templates}/system-architecture.xml +0 -0
- /package/{agile-context-engineering/templates/wiki → skills/map-system/templates}/system-structure.xml +0 -0
- /package/{agile-context-engineering/templates/wiki → skills/map-system/templates}/testing-framework.xml +0 -0
- /package/{agile-context-engineering/templates/product/product-backlog.xml → skills/plan-backlog/product-backlog-template.xml} +0 -0
- /package/{agile-context-engineering/templates/product/feature.xml → skills/plan-feature/feature-template.xml} +0 -0
- /package/{agile-context-engineering/templates/product/product-vision.xml → skills/plan-product-vision/product-vision-template.xml} +0 -0
- /package/{agile-context-engineering/templates/product/external-solution.xml → skills/research-external-solution/external-solution-template.xml} +0 -0
- /package/{agile-context-engineering/templates/product/story-technical-solution.xml → skills/research-technical-solution/technical-solution-template.xml} +0 -0
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* research-integration-solution skill script — Entry point for ace-tools operations
|
|
5
|
+
* needed by the research-integration-solution skill.
|
|
6
|
+
*
|
|
7
|
+
* Subcommands:
|
|
8
|
+
* init [story-param] Environment detection for research-integration-solution workflow
|
|
9
|
+
*
|
|
10
|
+
* Usage: node script.js <subcommand> [args] [--raw]
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
const path = require('path');
|
|
14
|
+
|
|
15
|
+
const {
|
|
16
|
+
loadConfig, pathExists, safeReadFile, loadSettings, resolveModel,
|
|
17
|
+
execCommand, output, error,
|
|
18
|
+
} = require('../../shared/lib/ace-core');
|
|
19
|
+
|
|
20
|
+
const {
|
|
21
|
+
classifyStoryParam, extractStoryMetadata, extractStoryRequirements,
|
|
22
|
+
extractWikiReferences,
|
|
23
|
+
computeStoryPaths,
|
|
24
|
+
} = require('../../shared/lib/ace-story');
|
|
25
|
+
|
|
26
|
+
// ─── CLI Dispatch ────────────────────────────────────────────────────────────
|
|
27
|
+
|
|
28
|
+
const cwd = process.cwd();
|
|
29
|
+
const args = process.argv.slice(2);
|
|
30
|
+
const raw = args.includes('--raw');
|
|
31
|
+
const cmd = args[0];
|
|
32
|
+
|
|
33
|
+
switch (cmd) {
|
|
34
|
+
case 'init':
|
|
35
|
+
cmdInit(cwd, raw, args.slice(1).filter(a => a !== '--raw').join(' ') || undefined);
|
|
36
|
+
break;
|
|
37
|
+
default:
|
|
38
|
+
error(`Unknown command: ${cmd}\nAvailable: init`);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
// ─── Init: Research Story ───────────────────────────────────────────────────
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* Environment detection for the research-integration-solution workflow.
|
|
45
|
+
*
|
|
46
|
+
* Replicates cmdInitResearchStory from ace-tools.js:
|
|
47
|
+
* 1. loadConfig, detect git/gh CLI/github_project
|
|
48
|
+
* 2. classifyStoryParam — validate story source
|
|
49
|
+
* 3. Load story content (from file or GitHub)
|
|
50
|
+
* 4. extractStoryMetadata, extractStoryRequirements, extractWikiReferences
|
|
51
|
+
* 5. computeStoryPaths or derive from file location
|
|
52
|
+
* 6. Check artifact existence (external/integration analysis, feature file)
|
|
53
|
+
* 7. Verify wiki doc existence
|
|
54
|
+
* 8. Output JSON with all data
|
|
55
|
+
*/
|
|
56
|
+
function cmdInit(cwd, raw, storyParam) {
|
|
57
|
+
const config = loadConfig(cwd);
|
|
58
|
+
|
|
59
|
+
// ── Environment detection ──
|
|
60
|
+
const has_git = pathExists(cwd, '.git');
|
|
61
|
+
const has_gh_cli = (() => {
|
|
62
|
+
try {
|
|
63
|
+
const { execSync } = require('child_process');
|
|
64
|
+
execSync('gh --version', { stdio: 'pipe' });
|
|
65
|
+
return true;
|
|
66
|
+
} catch { return false; }
|
|
67
|
+
})();
|
|
68
|
+
const github_project = (() => {
|
|
69
|
+
const settings = loadSettings(cwd);
|
|
70
|
+
return settings.github_project;
|
|
71
|
+
})();
|
|
72
|
+
|
|
73
|
+
// ── Classify the story parameter ──
|
|
74
|
+
const classified = classifyStoryParam(storyParam);
|
|
75
|
+
|
|
76
|
+
// Early exit if invalid
|
|
77
|
+
if (classified.type === null || classified.type === 'invalid') {
|
|
78
|
+
output({
|
|
79
|
+
analyst_model: resolveModel(cwd, 'ace-code-integration-analyst'),
|
|
80
|
+
mapper_model: resolveModel(cwd, 'ace-wiki-mapper'),
|
|
81
|
+
commit_docs: config.commit_docs,
|
|
82
|
+
has_git, has_gh_cli, github_project,
|
|
83
|
+
story_source: null,
|
|
84
|
+
story_valid: false,
|
|
85
|
+
story_error: classified.reason || 'No story parameter provided',
|
|
86
|
+
story: { id: null, title: null, status: null, size: null },
|
|
87
|
+
feature: { id: null, title: null },
|
|
88
|
+
epic: { id: null, title: null },
|
|
89
|
+
user_story: null, description: null, acceptance_criteria_count: 0,
|
|
90
|
+
paths: null,
|
|
91
|
+
has_external_analysis: false, has_integration_analysis: false, has_feature_file: false,
|
|
92
|
+
wiki_references: { system_wide: [], subsystem_docs: [], total_count: 0 },
|
|
93
|
+
wiki_docs_exist: { existing: [], missing: [] },
|
|
94
|
+
}, raw);
|
|
95
|
+
return;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
// ── Load story content ──
|
|
99
|
+
let storyContent = null;
|
|
100
|
+
let storySource = classified.type === 'file' ? 'file' : 'github';
|
|
101
|
+
let storyError = null;
|
|
102
|
+
let storyFilePath = null;
|
|
103
|
+
|
|
104
|
+
if (classified.type === 'file') {
|
|
105
|
+
const resolvedPath = path.isAbsolute(classified.filePath)
|
|
106
|
+
? classified.filePath
|
|
107
|
+
: path.join(cwd, classified.filePath);
|
|
108
|
+
if (!pathExists(cwd, classified.filePath)) {
|
|
109
|
+
storyError = `Story file not found: ${classified.filePath}`;
|
|
110
|
+
} else {
|
|
111
|
+
storyContent = safeReadFile(resolvedPath);
|
|
112
|
+
storyFilePath = classified.filePath;
|
|
113
|
+
if (!storyContent) storyError = `Could not read story file: ${classified.filePath}`;
|
|
114
|
+
}
|
|
115
|
+
} else {
|
|
116
|
+
// github-url or issue-number
|
|
117
|
+
if (!has_gh_cli) {
|
|
118
|
+
storyError = 'GitHub CLI (gh) not installed. Cannot fetch GitHub issues.';
|
|
119
|
+
} else {
|
|
120
|
+
const repo = classified.repo || (github_project.repo || null);
|
|
121
|
+
if (!repo) {
|
|
122
|
+
storyError = 'No repository configured. Provide a full GitHub URL or configure github_project.repo in settings.';
|
|
123
|
+
} else {
|
|
124
|
+
const ghResult = execCommand(
|
|
125
|
+
`gh issue view ${classified.issueNumber} --repo ${repo} --json title,body,labels,state`,
|
|
126
|
+
cwd
|
|
127
|
+
);
|
|
128
|
+
if (!ghResult) {
|
|
129
|
+
storyError = `Could not fetch GitHub issue #${classified.issueNumber} from ${repo}.`;
|
|
130
|
+
} else {
|
|
131
|
+
try {
|
|
132
|
+
const issue = JSON.parse(ghResult);
|
|
133
|
+
storyContent = issue.body || '';
|
|
134
|
+
if (storyContent && !storyContent.match(/^#\s+/m)) {
|
|
135
|
+
storyContent = `# ${issue.title}\n\n${storyContent}`;
|
|
136
|
+
}
|
|
137
|
+
} catch {
|
|
138
|
+
storyError = `Failed to parse GitHub issue response for #${classified.issueNumber}.`;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
// ── Extract metadata & requirements ──
|
|
146
|
+
const metadata = extractStoryMetadata(storyContent);
|
|
147
|
+
const requirements = extractStoryRequirements(storyContent);
|
|
148
|
+
const wikiRefs = extractWikiReferences(storyContent);
|
|
149
|
+
|
|
150
|
+
// ── Compute paths ──
|
|
151
|
+
let paths = null;
|
|
152
|
+
if (storyFilePath) {
|
|
153
|
+
const resolvedPath = path.isAbsolute(storyFilePath)
|
|
154
|
+
? storyFilePath
|
|
155
|
+
: path.join(cwd, storyFilePath);
|
|
156
|
+
const storyDir = path.dirname(resolvedPath);
|
|
157
|
+
const relStoryDir = path.relative(cwd, storyDir).replace(/\\/g, '/');
|
|
158
|
+
const storySlug = path.basename(storyDir);
|
|
159
|
+
const featureDir = path.dirname(storyDir);
|
|
160
|
+
const relFeatureDir = path.relative(cwd, featureDir).replace(/\\/g, '/');
|
|
161
|
+
const featureSlug = path.basename(featureDir);
|
|
162
|
+
|
|
163
|
+
paths = {
|
|
164
|
+
epic_slug: null,
|
|
165
|
+
feature_slug: featureSlug,
|
|
166
|
+
story_slug: storySlug,
|
|
167
|
+
story_dir: relStoryDir,
|
|
168
|
+
story_file: storyFilePath.replace(/\\/g, '/'),
|
|
169
|
+
external_analysis_file: `${relStoryDir}/external-analysis.md`,
|
|
170
|
+
integration_analysis_file: `${relStoryDir}/integration-analysis.md`,
|
|
171
|
+
feature_dir: relFeatureDir,
|
|
172
|
+
feature_file: `${relFeatureDir}/${featureSlug}.md`,
|
|
173
|
+
};
|
|
174
|
+
} else if (metadata.epic.id && metadata.feature.id && metadata.id) {
|
|
175
|
+
paths = computeStoryPaths(
|
|
176
|
+
metadata.epic.id, metadata.epic.title || '',
|
|
177
|
+
metadata.feature.id, metadata.feature.title || '',
|
|
178
|
+
metadata.id, metadata.title || ''
|
|
179
|
+
);
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
// ── Check artifact existence ──
|
|
183
|
+
const has_external_analysis = paths ? pathExists(cwd, paths.external_analysis_file) : false;
|
|
184
|
+
const has_integration_analysis = paths ? pathExists(cwd, paths.integration_analysis_file) : false;
|
|
185
|
+
const has_feature_file = paths ? pathExists(cwd, paths.feature_file) : false;
|
|
186
|
+
|
|
187
|
+
// ── Verify wiki doc existence ──
|
|
188
|
+
const allWikiPaths = [...wikiRefs.system_wide, ...wikiRefs.subsystem_docs.map(d => d.path)];
|
|
189
|
+
const wikiExisting = [];
|
|
190
|
+
const wikiMissing = [];
|
|
191
|
+
for (const wikiPath of allWikiPaths) {
|
|
192
|
+
if (pathExists(cwd, wikiPath)) {
|
|
193
|
+
wikiExisting.push(wikiPath);
|
|
194
|
+
} else {
|
|
195
|
+
wikiMissing.push(wikiPath);
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
// ── Build result ──
|
|
200
|
+
const result = {
|
|
201
|
+
analyst_model: resolveModel(cwd, 'ace-code-integration-analyst'),
|
|
202
|
+
mapper_model: resolveModel(cwd, 'ace-wiki-mapper'),
|
|
203
|
+
commit_docs: config.commit_docs,
|
|
204
|
+
has_git, has_gh_cli, github_project,
|
|
205
|
+
story_source: storySource,
|
|
206
|
+
story_valid: storyContent !== null && storyError === null,
|
|
207
|
+
story_error: storyError,
|
|
208
|
+
story: {
|
|
209
|
+
id: metadata.id,
|
|
210
|
+
title: metadata.title,
|
|
211
|
+
status: metadata.status,
|
|
212
|
+
size: metadata.size,
|
|
213
|
+
},
|
|
214
|
+
feature: metadata.feature,
|
|
215
|
+
epic: metadata.epic,
|
|
216
|
+
user_story: requirements.user_story,
|
|
217
|
+
description: requirements.description,
|
|
218
|
+
acceptance_criteria_count: requirements.acceptance_criteria_count,
|
|
219
|
+
paths,
|
|
220
|
+
has_external_analysis,
|
|
221
|
+
has_integration_analysis,
|
|
222
|
+
has_feature_file,
|
|
223
|
+
wiki_references: wikiRefs,
|
|
224
|
+
wiki_docs_exist: {
|
|
225
|
+
existing: wikiExisting,
|
|
226
|
+
missing: wikiMissing,
|
|
227
|
+
},
|
|
228
|
+
};
|
|
229
|
+
|
|
230
|
+
output(result, raw);
|
|
231
|
+
}
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
const { describe, it, before, after } = require('node:test');
|
|
2
|
+
const assert = require('node:assert');
|
|
3
|
+
const { execSync } = require('child_process');
|
|
4
|
+
const fs = require('fs');
|
|
5
|
+
const path = require('path');
|
|
6
|
+
const os = require('os');
|
|
7
|
+
|
|
8
|
+
const SCRIPT = path.join(__dirname, 'script.js');
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Create a minimal ACE project structure in a temp directory.
|
|
12
|
+
*/
|
|
13
|
+
function createTestProject() {
|
|
14
|
+
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), 'ace-test-'));
|
|
15
|
+
|
|
16
|
+
// .ace/config.json
|
|
17
|
+
const aceDir = path.join(tmpDir, '.ace');
|
|
18
|
+
fs.mkdirSync(aceDir, { recursive: true });
|
|
19
|
+
fs.writeFileSync(path.join(aceDir, 'config.json'), JSON.stringify({
|
|
20
|
+
version: '0.1.0',
|
|
21
|
+
projectName: 'test-project',
|
|
22
|
+
model_profile: 'quality',
|
|
23
|
+
commit_docs: true,
|
|
24
|
+
github: { enabled: false },
|
|
25
|
+
}, null, 2));
|
|
26
|
+
|
|
27
|
+
// .ace/settings.json
|
|
28
|
+
fs.writeFileSync(path.join(aceDir, 'settings.json'), JSON.stringify({
|
|
29
|
+
model_profile: 'quality',
|
|
30
|
+
commit_docs: true,
|
|
31
|
+
agent_teams: false,
|
|
32
|
+
github_project: { enabled: false, gh_installed: false, repo: '', project_number: null, owner: '' },
|
|
33
|
+
}, null, 2));
|
|
34
|
+
|
|
35
|
+
return tmpDir;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Create a story file in the test project.
|
|
40
|
+
*/
|
|
41
|
+
function createStoryFile(tmpDir, relPath, content) {
|
|
42
|
+
const fullPath = path.join(tmpDir, relPath);
|
|
43
|
+
fs.mkdirSync(path.dirname(fullPath), { recursive: true });
|
|
44
|
+
fs.writeFileSync(fullPath, content, 'utf-8');
|
|
45
|
+
return relPath;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
function runScript(subcommand, args, cwd) {
|
|
49
|
+
return execSync(`node "${SCRIPT}" ${subcommand} ${args}`, {
|
|
50
|
+
cwd,
|
|
51
|
+
encoding: 'utf-8',
|
|
52
|
+
timeout: 10000,
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
function cleanup(tmpDir) {
|
|
57
|
+
fs.rmSync(tmpDir, { recursive: true, force: true });
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
// ─── Tests ───────────────────────────────────────────────────────────────────
|
|
61
|
+
|
|
62
|
+
describe('research-integration-solution script', () => {
|
|
63
|
+
|
|
64
|
+
describe('init', () => {
|
|
65
|
+
let tmpDir;
|
|
66
|
+
|
|
67
|
+
before(() => { tmpDir = createTestProject(); });
|
|
68
|
+
after(() => { cleanup(tmpDir); });
|
|
69
|
+
|
|
70
|
+
it('returns valid JSON with environment detection for a story file', () => {
|
|
71
|
+
const storyContent = [
|
|
72
|
+
'# S1: Add Login Button',
|
|
73
|
+
'**Feature**: F1 User Auth | **Epic**: E1 Platform',
|
|
74
|
+
'**Status**: Todo | **Size**: 3 | **Sprint**: — | **Link**: —',
|
|
75
|
+
'',
|
|
76
|
+
'## User Story',
|
|
77
|
+
'',
|
|
78
|
+
'> As a user,',
|
|
79
|
+
'> I want to click a login button,',
|
|
80
|
+
'> so that I can access my account.',
|
|
81
|
+
'',
|
|
82
|
+
'## Description',
|
|
83
|
+
'',
|
|
84
|
+
'Adds a login button to the header.',
|
|
85
|
+
'',
|
|
86
|
+
'## Acceptance Criteria',
|
|
87
|
+
'',
|
|
88
|
+
'### Scenario: Click login button',
|
|
89
|
+
'',
|
|
90
|
+
'**Given** the user is on the homepage',
|
|
91
|
+
'**When** they click "Login"',
|
|
92
|
+
'**Then** they see the login form',
|
|
93
|
+
].join('\n');
|
|
94
|
+
|
|
95
|
+
const storyPath = createStoryFile(
|
|
96
|
+
tmpDir,
|
|
97
|
+
'.ace/artifacts/product/e1-platform/f1-user-auth/s1-add-login-button/s1-add-login-button.md',
|
|
98
|
+
storyContent
|
|
99
|
+
);
|
|
100
|
+
|
|
101
|
+
const result = JSON.parse(runScript('init', storyPath, tmpDir));
|
|
102
|
+
|
|
103
|
+
assert.ok(result.analyst_model, 'should have analyst_model');
|
|
104
|
+
assert.ok(result.mapper_model, 'should have mapper_model');
|
|
105
|
+
assert.strictEqual(result.story_valid, true, 'story should be valid');
|
|
106
|
+
assert.strictEqual(result.story_source, 'file');
|
|
107
|
+
assert.strictEqual(result.story.id, 'S1');
|
|
108
|
+
assert.strictEqual(result.story.title, 'Add Login Button');
|
|
109
|
+
assert.strictEqual(result.acceptance_criteria_count, 1);
|
|
110
|
+
assert.ok(result.paths, 'should have computed paths');
|
|
111
|
+
assert.ok(result.wiki_references, 'should have wiki_references');
|
|
112
|
+
assert.ok(result.wiki_docs_exist, 'should have wiki_docs_exist');
|
|
113
|
+
});
|
|
114
|
+
|
|
115
|
+
it('errors on init without story param', () => {
|
|
116
|
+
const result = JSON.parse(runScript('init', '', tmpDir));
|
|
117
|
+
assert.strictEqual(result.story_valid, false);
|
|
118
|
+
});
|
|
119
|
+
|
|
120
|
+
it('handles non-existent story file gracefully', () => {
|
|
121
|
+
const result = JSON.parse(runScript('init', 'nonexistent/story.md', tmpDir));
|
|
122
|
+
assert.strictEqual(result.story_valid, false);
|
|
123
|
+
assert.ok(result.story_error.includes('not found'));
|
|
124
|
+
});
|
|
125
|
+
});
|
|
126
|
+
|
|
127
|
+
describe('error handling', () => {
|
|
128
|
+
it('errors on unknown command', () => {
|
|
129
|
+
assert.throws(() => {
|
|
130
|
+
execSync(`node "${SCRIPT}" bogus`, { encoding: 'utf-8', stdio: 'pipe' });
|
|
131
|
+
});
|
|
132
|
+
});
|
|
133
|
+
});
|
|
134
|
+
});
|
|
@@ -34,12 +34,10 @@
|
|
|
34
34
|
<step name="setup" order="1">
|
|
35
35
|
**MANDATORY FIRST STEP — Execute environment detection and story initialization:**
|
|
36
36
|
|
|
37
|
-
|
|
38
|
-
INIT=$(node ~/.claude/agile-context-engineering/src/ace-tools.js init research-story {story_param})
|
|
39
|
-
```
|
|
37
|
+
INIT is available from the preprocessed Environment Context above — do NOT re-run init.
|
|
40
38
|
|
|
41
|
-
This
|
|
42
|
-
references,
|
|
39
|
+
This preprocessing validated the story parameter, extracted metadata/requirements/wiki
|
|
40
|
+
references, computed all paths and slugs, and checked artifact existence.
|
|
43
41
|
|
|
44
42
|
Parse INIT JSON for:
|
|
45
43
|
- **Environment**: `has_git`, `has_gh_cli`, `github_project`, `analyst_model`
|
|
@@ -303,6 +301,7 @@
|
|
|
303
301
|
- Cross-cutting concerns to respect
|
|
304
302
|
- Architecture Decision Records (ADRs) that constrain design
|
|
305
303
|
- Guides for common implementation tasks
|
|
304
|
+
- Walkthroughs of complex multi-class flows
|
|
306
305
|
|
|
307
306
|
3. **[MANDATORY] Load external analysis (if available):**
|
|
308
307
|
- If EXTERNAL_ANALYSIS_CONTENT is set, study it for:
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: research-story-wiki
|
|
3
|
+
description: Research and curate wiki references relevant to a story's technical solution
|
|
4
|
+
argument-hint: "story=<file-path|github-url>"
|
|
5
|
+
disable-model-invocation: true
|
|
6
|
+
allowed-tools: Read, Bash, Write, Edit, AskUserQuestion, Glob, Grep, Agent
|
|
7
|
+
model: opus
|
|
8
|
+
effort: max
|
|
9
|
+
context: fork
|
|
10
|
+
agent: ace-wiki-mapper
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# Research Story Wiki
|
|
14
|
+
|
|
15
|
+
Research the project's engineering wiki to identify documents directly relevant to implementing a story.
|
|
16
|
+
|
|
17
|
+
## When to Use
|
|
18
|
+
|
|
19
|
+
- After `/ace:plan-story` pass 1 -- once story business requirements (sections 1-8) are complete
|
|
20
|
+
- Anytime a story needs its Relevant Wiki section populated or refreshed
|
|
21
|
+
- When story scope changed and wiki references need re-evaluation
|
|
22
|
+
- Called as part of `/ace:plan-story` pipeline (pass 2)
|
|
23
|
+
|
|
24
|
+
## Input
|
|
25
|
+
|
|
26
|
+
### Required
|
|
27
|
+
|
|
28
|
+
- **`story`** -- Story source:
|
|
29
|
+
- **File path**: Path to a markdown file containing the story (from plan-story command)
|
|
30
|
+
- **GitHub URL or issue number**: e.g., `story=#95` or `story=https://github.com/owner/repo/issues/95`
|
|
31
|
+
- Must be a valid, accessible file or GitHub issue.
|
|
32
|
+
- Contains the user story, description, and acceptance criteria.
|
|
33
|
+
- **The story's requirements define which wiki docs are relevant.**
|
|
34
|
+
- If not valid, stop and prompt the user.
|
|
35
|
+
|
|
36
|
+
## Environment Context (preprocessed)
|
|
37
|
+
|
|
38
|
+
!`node "${CLAUDE_SKILL_DIR}/script.js" init "$ARGUMENTS" 2>/dev/null`
|
|
39
|
+
|
|
40
|
+
## Supporting Resources
|
|
41
|
+
|
|
42
|
+
Read ALL of these before starting the workflow:
|
|
43
|
+
|
|
44
|
+
- **Workflow**: Read [workflow.xml](workflow.xml) -- complete orchestration process with all steps
|
|
45
|
+
- **Story wiki template**: Read [story-wiki-template.xml](story-wiki-template.xml) -- output format for the wiki section
|
|
46
|
+
- **UI formatting**: Read `${CLAUDE_SKILL_DIR}/../../shared/utils/ui-formatting.md` -- ACE output formatting rules
|
|
47
|
+
|
|
48
|
+
## Process
|
|
49
|
+
|
|
50
|
+
Use the `ace-wiki-mapper` agent for wiki exploration and curation.
|
|
51
|
+
|
|
52
|
+
The Environment Context above contains the preprocessed INIT JSON -- use it directly instead of running the init script manually. The workflow's step 1 setup can skip the init bash call since that data is already available.
|
|
53
|
+
|
|
54
|
+
Read all supporting resources listed above, then execute the workflow defined in [workflow.xml](workflow.xml) end-to-end. Preserve all workflow gates (validation, approvals, commits).
|
|
55
|
+
|
|
56
|
+
The research process:
|
|
57
|
+
1. ALWAYS curates the four system-wide docs with story-specific reasons
|
|
58
|
+
2. Identifies affected subsystems from story content and feature context
|
|
59
|
+
3. Spawns parallel ace-wiki-mapper agents to scan subsystem wiki docs
|
|
60
|
+
4. Compiles a categorized, deduplicated list of relevant references
|
|
61
|
+
|
|
62
|
+
All output is written to the story file -- populating the Relevant Wiki section placeholder left by pass 1.
|
|
63
|
+
|
|
64
|
+
## Artifacts
|
|
65
|
+
|
|
66
|
+
```
|
|
67
|
+
Modifies in-place: the story file at
|
|
68
|
+
.ace/artifacts/product/<id-epic_name>/<id-feature_name>/<id-story_name>/<id-story_name>.md
|
|
69
|
+
(adds/replaces the ## Relevant Wiki section)
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## Example Usage
|
|
73
|
+
|
|
74
|
+
```
|
|
75
|
+
# Example with file path story
|
|
76
|
+
/ace:research-story-wiki \
|
|
77
|
+
story=.ace/artifacts/product/e1-auth/f3-oauth/s1-buttons/s1-buttons.md
|
|
78
|
+
|
|
79
|
+
# Example with GitHub issue number
|
|
80
|
+
/ace:research-story-wiki story=#95
|
|
81
|
+
|
|
82
|
+
# Example with full GitHub URL
|
|
83
|
+
/ace:research-story-wiki \
|
|
84
|
+
story=https://github.com/owner/repo/issues/95
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
## Next Steps
|
|
88
|
+
|
|
89
|
+
- Continue with story refinement -- external analysis (pass 3) or technical solution (pass 5)
|
|
90
|
+
- `/ace:research-external-solution story=... external-codebase=...` -- Analyze external reference systems
|
|
91
|
+
- `/ace:plan-story story=...` -- Continue the full story pipeline
|
|
92
|
+
- `/ace:help` -- Check project initialization status
|