orchestr8 2.8.0 → 3.0.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/.blueprint/agents/AGENT_BA_CASS.md +18 -34
- package/.blueprint/agents/AGENT_DEVELOPER_CODEY.md +21 -28
- package/.blueprint/agents/AGENT_SPECIFICATION_ALEX.md +6 -0
- package/.blueprint/agents/AGENT_TESTER_NIGEL.md +5 -3
- package/.blueprint/agents/WHAT_WE_STAND_FOR.md +0 -0
- package/.blueprint/features/feature_interactive-alex/FEATURE_SPEC.md +263 -0
- package/.blueprint/features/feature_interactive-alex/IMPLEMENTATION_PLAN.md +69 -0
- package/.blueprint/features/feature_interactive-alex/handoff-alex.md +19 -0
- package/.blueprint/features/feature_interactive-alex/handoff-cass.md +21 -0
- package/.blueprint/features/feature_interactive-alex/handoff-nigel.md +19 -0
- package/.blueprint/features/feature_interactive-alex/story-flag-routing.md +54 -0
- package/.blueprint/features/feature_interactive-alex/story-iterative-drafting.md +65 -0
- package/.blueprint/features/feature_interactive-alex/story-pipeline-integration.md +66 -0
- package/.blueprint/features/feature_interactive-alex/story-session-lifecycle.md +75 -0
- package/.blueprint/features/feature_interactive-alex/story-system-spec-creation.md +57 -0
- package/.blueprint/prompts/codey-implement-runtime.md +1 -1
- package/.blueprint/prompts/nigel-runtime.md +1 -1
- package/.blueprint/ways_of_working/DEVELOPMENT_RITUAL.md +4 -4
- package/README.md +31 -0
- package/SKILL.md +35 -1
- package/bin/cli.js +28 -0
- package/package.json +2 -2
- package/src/index.js +61 -1
- package/src/init.js +21 -3
- package/src/interactive.js +338 -0
- package/src/stack.js +320 -0
package/src/index.js
CHANGED
|
@@ -50,6 +50,37 @@ const {
|
|
|
50
50
|
TECHNICAL_KEYWORDS,
|
|
51
51
|
USER_FACING_KEYWORDS
|
|
52
52
|
} = require('./classifier');
|
|
53
|
+
const {
|
|
54
|
+
parseFlags: parseInteractiveFlags,
|
|
55
|
+
shouldEnterInteractiveMode,
|
|
56
|
+
createSession,
|
|
57
|
+
getSessionProgress,
|
|
58
|
+
handleCommand,
|
|
59
|
+
getNextSection,
|
|
60
|
+
markSectionComplete,
|
|
61
|
+
markSectionTBD,
|
|
62
|
+
gatherContext,
|
|
63
|
+
identifyGaps,
|
|
64
|
+
generateQuestions,
|
|
65
|
+
canFinalize,
|
|
66
|
+
generateSpec,
|
|
67
|
+
writeSpec,
|
|
68
|
+
generateHandoff,
|
|
69
|
+
getOutputPath,
|
|
70
|
+
SESSION_STATES,
|
|
71
|
+
SECTION_ORDER,
|
|
72
|
+
MIN_REQUIRED_SECTIONS,
|
|
73
|
+
SYSTEM_SPEC_QUESTIONS
|
|
74
|
+
} = require('./interactive');
|
|
75
|
+
const {
|
|
76
|
+
getDefaultStackConfig,
|
|
77
|
+
readStackConfig,
|
|
78
|
+
writeStackConfig,
|
|
79
|
+
resetStackConfig,
|
|
80
|
+
setStackConfigValue,
|
|
81
|
+
detectStackConfig,
|
|
82
|
+
displayStackConfig
|
|
83
|
+
} = require('./stack');
|
|
53
84
|
const tools = require('./tools');
|
|
54
85
|
|
|
55
86
|
module.exports = {
|
|
@@ -105,6 +136,35 @@ module.exports = {
|
|
|
105
136
|
logClassification,
|
|
106
137
|
TECHNICAL_KEYWORDS,
|
|
107
138
|
USER_FACING_KEYWORDS,
|
|
139
|
+
// Stack config exports
|
|
140
|
+
getDefaultStackConfig,
|
|
141
|
+
readStackConfig,
|
|
142
|
+
writeStackConfig,
|
|
143
|
+
resetStackConfig,
|
|
144
|
+
setStackConfigValue,
|
|
145
|
+
detectStackConfig,
|
|
146
|
+
displayStackConfig,
|
|
108
147
|
// Tools module (model native features)
|
|
109
|
-
tools
|
|
148
|
+
tools,
|
|
149
|
+
// Interactive mode exports
|
|
150
|
+
parseInteractiveFlags,
|
|
151
|
+
shouldEnterInteractiveMode,
|
|
152
|
+
createSession,
|
|
153
|
+
getSessionProgress,
|
|
154
|
+
handleCommand,
|
|
155
|
+
getNextSection,
|
|
156
|
+
markSectionComplete,
|
|
157
|
+
markSectionTBD,
|
|
158
|
+
gatherContext,
|
|
159
|
+
identifyGaps,
|
|
160
|
+
generateQuestions,
|
|
161
|
+
canFinalize,
|
|
162
|
+
generateSpec,
|
|
163
|
+
writeSpec,
|
|
164
|
+
generateHandoff,
|
|
165
|
+
getOutputPath,
|
|
166
|
+
SESSION_STATES,
|
|
167
|
+
SECTION_ORDER,
|
|
168
|
+
MIN_REQUIRED_SECTIONS,
|
|
169
|
+
SYSTEM_SPEC_QUESTIONS
|
|
110
170
|
};
|
package/src/init.js
CHANGED
|
@@ -2,6 +2,8 @@ const fs = require('fs');
|
|
|
2
2
|
const path = require('path');
|
|
3
3
|
const readline = require('readline');
|
|
4
4
|
|
|
5
|
+
const { detectStackConfig, writeStackConfig, CONFIG_FILE: STACK_CONFIG_FILE } = require('./stack');
|
|
6
|
+
|
|
5
7
|
const PACKAGE_ROOT = path.resolve(__dirname, '..');
|
|
6
8
|
const TARGET_DIR = process.cwd();
|
|
7
9
|
|
|
@@ -41,7 +43,8 @@ function updateGitignore() {
|
|
|
41
43
|
const entriesToAdd = [
|
|
42
44
|
'# agent-workflow',
|
|
43
45
|
'.claude/implement-queue.json',
|
|
44
|
-
'.claude/pipeline-history.json'
|
|
46
|
+
'.claude/pipeline-history.json',
|
|
47
|
+
'.claude/stack-config.json'
|
|
45
48
|
];
|
|
46
49
|
|
|
47
50
|
let content = '';
|
|
@@ -109,12 +112,27 @@ async function init() {
|
|
|
109
112
|
// Update .gitignore
|
|
110
113
|
updateGitignore();
|
|
111
114
|
|
|
115
|
+
// Auto-detect tech stack
|
|
116
|
+
const stackConfigPath = path.join(TARGET_DIR, STACK_CONFIG_FILE);
|
|
117
|
+
if (!fs.existsSync(stackConfigPath)) {
|
|
118
|
+
const detected = detectStackConfig(TARGET_DIR);
|
|
119
|
+
const hasValues = detected.language || detected.runtime;
|
|
120
|
+
if (hasValues) {
|
|
121
|
+
writeStackConfig(detected);
|
|
122
|
+
const parts = [detected.language, detected.runtime, ...detected.frameworks, detected.testRunner].filter(Boolean);
|
|
123
|
+
console.log(`Detected tech stack: ${parts.join(', ')}`);
|
|
124
|
+
}
|
|
125
|
+
} else {
|
|
126
|
+
console.log('Stack config already exists, skipping detection');
|
|
127
|
+
}
|
|
128
|
+
|
|
112
129
|
console.log(`
|
|
113
130
|
orchestr8 initialized successfully!
|
|
114
131
|
|
|
115
132
|
Next steps:
|
|
116
|
-
1.
|
|
117
|
-
2.
|
|
133
|
+
1. Review your tech stack with \`npx orchestr8 stack-config\`
|
|
134
|
+
2. Add business context documents to .business_context/
|
|
135
|
+
3. Run /implement-feature in Claude Code to start your first feature
|
|
118
136
|
`);
|
|
119
137
|
}
|
|
120
138
|
|
|
@@ -0,0 +1,338 @@
|
|
|
1
|
+
const fs = require('fs');
|
|
2
|
+
const path = require('path');
|
|
3
|
+
|
|
4
|
+
const SESSION_STATES = {
|
|
5
|
+
IDLE: 'idle',
|
|
6
|
+
GATHERING: 'gathering',
|
|
7
|
+
QUESTIONING: 'questioning',
|
|
8
|
+
DRAFTING: 'drafting',
|
|
9
|
+
FINALIZING: 'finalizing'
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
const SECTION_ORDER = ['intent', 'scope', 'actors', 'behaviour', 'dependencies'];
|
|
13
|
+
|
|
14
|
+
const MIN_REQUIRED_SECTIONS = ['intent', 'scope', 'actors'];
|
|
15
|
+
|
|
16
|
+
const SYSTEM_SPEC_QUESTIONS = ['purpose', 'actors', 'boundaries', 'rules'];
|
|
17
|
+
|
|
18
|
+
function parseFlags(args) {
|
|
19
|
+
return {
|
|
20
|
+
interactive: args.includes('--interactive'),
|
|
21
|
+
pauseAfter: args.find(a => a.startsWith('--pause-after='))?.split('=')[1] || null
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
function shouldEnterInteractiveMode(flags, hasSystemSpec, hasFeatureSpec) {
|
|
26
|
+
if (flags.interactive) return { interactive: true, target: 'feature' };
|
|
27
|
+
if (!hasSystemSpec) return { interactive: true, target: 'system' };
|
|
28
|
+
if (!hasFeatureSpec) return { interactive: true, target: 'feature' };
|
|
29
|
+
return { interactive: false, target: null };
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
function createSession(target) {
|
|
33
|
+
const sections = target === 'system'
|
|
34
|
+
? { purpose: null, actors: null, boundaries: null, rules: null }
|
|
35
|
+
: { intent: null, scope: null, actors: null, behaviour: null, dependencies: null };
|
|
36
|
+
|
|
37
|
+
return {
|
|
38
|
+
target,
|
|
39
|
+
state: SESSION_STATES.IDLE,
|
|
40
|
+
sections,
|
|
41
|
+
current: target === 'system' ? 'purpose' : 'intent',
|
|
42
|
+
revisionCount: 0,
|
|
43
|
+
questionCount: 0,
|
|
44
|
+
startedAt: new Date().toISOString(),
|
|
45
|
+
aborted: false,
|
|
46
|
+
specWritten: false,
|
|
47
|
+
context: {},
|
|
48
|
+
feedback: []
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
function getSessionProgress(session) {
|
|
53
|
+
const sectionList = Object.keys(session.sections);
|
|
54
|
+
const complete = Object.values(session.sections).filter(
|
|
55
|
+
s => s === 'complete' || s === 'TBD'
|
|
56
|
+
).length;
|
|
57
|
+
const remaining = sectionList.length - complete;
|
|
58
|
+
return { complete, remaining, total: sectionList.length };
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
function handleCommand(session, command) {
|
|
62
|
+
const cmd = command.trim().toLowerCase();
|
|
63
|
+
const parts = command.trim().split(/\s+/);
|
|
64
|
+
const baseCmd = parts[0].toLowerCase();
|
|
65
|
+
|
|
66
|
+
if (baseCmd === '/approve' || baseCmd === 'yes') {
|
|
67
|
+
session.sections[session.current] = 'complete';
|
|
68
|
+
const nextSection = getNextSection(session);
|
|
69
|
+
if (nextSection) {
|
|
70
|
+
session.current = nextSection;
|
|
71
|
+
return { action: 'next', section: nextSection };
|
|
72
|
+
}
|
|
73
|
+
return { action: 'finalize' };
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
if (baseCmd === '/change') {
|
|
77
|
+
const feedback = parts.slice(1).join(' ');
|
|
78
|
+
session.revisionCount++;
|
|
79
|
+
session.feedback.push({ section: session.current, feedback });
|
|
80
|
+
return { action: 'revise', feedback };
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
if (baseCmd === '/skip') {
|
|
84
|
+
session.sections[session.current] = 'TBD';
|
|
85
|
+
const nextSection = getNextSection(session);
|
|
86
|
+
if (nextSection) {
|
|
87
|
+
session.current = nextSection;
|
|
88
|
+
return { action: 'next', section: nextSection };
|
|
89
|
+
}
|
|
90
|
+
return { action: 'finalize' };
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
if (baseCmd === '/restart') {
|
|
94
|
+
session.sections[session.current] = null;
|
|
95
|
+
return { action: 'restart', section: session.current };
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
if (baseCmd === '/abort') {
|
|
99
|
+
session.aborted = true;
|
|
100
|
+
return { action: 'abort' };
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
if (baseCmd === '/done') {
|
|
104
|
+
if (canFinalize(session)) {
|
|
105
|
+
return { action: 'finalize' };
|
|
106
|
+
}
|
|
107
|
+
return { action: 'incomplete', missing: getMissingSections(session) };
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
return { action: 'unknown', command: baseCmd };
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
function getNextSection(session) {
|
|
114
|
+
const order = session.target === 'system'
|
|
115
|
+
? SYSTEM_SPEC_QUESTIONS
|
|
116
|
+
: SECTION_ORDER;
|
|
117
|
+
|
|
118
|
+
for (const section of order) {
|
|
119
|
+
const status = session.sections[section];
|
|
120
|
+
if (status !== 'complete' && status !== 'TBD') {
|
|
121
|
+
return section;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
return null;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
function markSectionComplete(session, section) {
|
|
128
|
+
if (section in session.sections) {
|
|
129
|
+
session.sections[section] = 'complete';
|
|
130
|
+
return true;
|
|
131
|
+
}
|
|
132
|
+
return false;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
function markSectionTBD(session, section) {
|
|
136
|
+
if (section in session.sections) {
|
|
137
|
+
session.sections[section] = 'TBD';
|
|
138
|
+
return true;
|
|
139
|
+
}
|
|
140
|
+
return false;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
function gatherContext(basePath = '.') {
|
|
144
|
+
const context = {
|
|
145
|
+
systemSpec: null,
|
|
146
|
+
businessContext: [],
|
|
147
|
+
templates: []
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
const systemSpecPath = path.join(basePath, '.blueprint/system_specification/SYSTEM_SPEC.md');
|
|
151
|
+
if (fs.existsSync(systemSpecPath)) {
|
|
152
|
+
context.systemSpec = fs.readFileSync(systemSpecPath, 'utf8');
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
const businessContextDir = path.join(basePath, '.business_context');
|
|
156
|
+
if (fs.existsSync(businessContextDir)) {
|
|
157
|
+
const files = fs.readdirSync(businessContextDir);
|
|
158
|
+
for (const file of files) {
|
|
159
|
+
if (file.endsWith('.md')) {
|
|
160
|
+
const content = fs.readFileSync(path.join(businessContextDir, file), 'utf8');
|
|
161
|
+
context.businessContext.push({ file, content });
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
const templatesDir = path.join(basePath, '.blueprint/templates');
|
|
167
|
+
if (fs.existsSync(templatesDir)) {
|
|
168
|
+
const files = fs.readdirSync(templatesDir);
|
|
169
|
+
for (const file of files) {
|
|
170
|
+
if (file.endsWith('.md')) {
|
|
171
|
+
const content = fs.readFileSync(path.join(templatesDir, file), 'utf8');
|
|
172
|
+
context.templates.push({ file, content });
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
return context;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
function identifyGaps(session, userDescription) {
|
|
181
|
+
const gaps = [];
|
|
182
|
+
const sectionKeys = session.target === 'system'
|
|
183
|
+
? SYSTEM_SPEC_QUESTIONS
|
|
184
|
+
: SECTION_ORDER;
|
|
185
|
+
|
|
186
|
+
for (const section of sectionKeys) {
|
|
187
|
+
const hasKey = `has${section.charAt(0).toUpperCase() + section.slice(1)}`;
|
|
188
|
+
if (!userDescription[hasKey]) {
|
|
189
|
+
gaps.push(section);
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
return gaps.slice(0, 4);
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
function generateQuestions(gaps) {
|
|
197
|
+
const questionTemplates = {
|
|
198
|
+
intent: 'What is the primary goal or purpose of this feature?',
|
|
199
|
+
scope: 'What boundaries define what is in scope vs out of scope?',
|
|
200
|
+
actors: 'Who are the users or systems that will interact with this?',
|
|
201
|
+
behaviour: 'What are the key behaviours or flows to support?',
|
|
202
|
+
dependencies: 'What does this depend on or what depends on it?',
|
|
203
|
+
purpose: 'What is the overall purpose of this system?',
|
|
204
|
+
boundaries: 'What are the system boundaries and integration points?',
|
|
205
|
+
rules: 'What business rules or constraints apply?'
|
|
206
|
+
};
|
|
207
|
+
|
|
208
|
+
return gaps.slice(0, 4).map(gap => ({
|
|
209
|
+
section: gap,
|
|
210
|
+
question: questionTemplates[gap] || `What information is needed for ${gap}?`
|
|
211
|
+
}));
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
function getMissingSections(session) {
|
|
215
|
+
const required = session.target === 'system'
|
|
216
|
+
? ['purpose', 'actors', 'boundaries']
|
|
217
|
+
: MIN_REQUIRED_SECTIONS;
|
|
218
|
+
|
|
219
|
+
return required.filter(section => {
|
|
220
|
+
const status = session.sections[section];
|
|
221
|
+
return status !== 'complete' && status !== 'TBD';
|
|
222
|
+
});
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
function canFinalize(session) {
|
|
226
|
+
const required = session.target === 'system'
|
|
227
|
+
? ['purpose', 'actors', 'boundaries']
|
|
228
|
+
: MIN_REQUIRED_SECTIONS;
|
|
229
|
+
|
|
230
|
+
return required.every(section => {
|
|
231
|
+
const status = session.sections[section];
|
|
232
|
+
return status === 'complete' || status === 'TBD';
|
|
233
|
+
});
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
function generateSpec(session) {
|
|
237
|
+
const sections = [];
|
|
238
|
+
const sectionOrder = session.target === 'system'
|
|
239
|
+
? SYSTEM_SPEC_QUESTIONS
|
|
240
|
+
: SECTION_ORDER;
|
|
241
|
+
|
|
242
|
+
const title = session.target === 'system' ? 'System Spec' : 'Feature Spec';
|
|
243
|
+
sections.push(`# ${title}`);
|
|
244
|
+
|
|
245
|
+
for (const sectionName of sectionOrder) {
|
|
246
|
+
const status = session.sections[sectionName];
|
|
247
|
+
const heading = sectionName.charAt(0).toUpperCase() + sectionName.slice(1);
|
|
248
|
+
sections.push(`## ${heading}`);
|
|
249
|
+
|
|
250
|
+
if (status === 'TBD') {
|
|
251
|
+
sections.push('TBD');
|
|
252
|
+
} else if (status === 'complete') {
|
|
253
|
+
sections.push(`[Content for ${sectionName}]`);
|
|
254
|
+
} else {
|
|
255
|
+
sections.push('TBD');
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
sections.push('');
|
|
260
|
+
sections.push('_Created via interactive session_');
|
|
261
|
+
|
|
262
|
+
return sections.join('\n');
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
function writeSpec(session, outputPath) {
|
|
266
|
+
const content = generateSpec(session);
|
|
267
|
+
const dir = path.dirname(outputPath);
|
|
268
|
+
|
|
269
|
+
if (!fs.existsSync(dir)) {
|
|
270
|
+
fs.mkdirSync(dir, { recursive: true });
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
fs.writeFileSync(outputPath, content);
|
|
274
|
+
session.specWritten = true;
|
|
275
|
+
return outputPath;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
function generateHandoff(session, slug) {
|
|
279
|
+
const progress = getSessionProgress(session);
|
|
280
|
+
const endedAt = new Date().toISOString();
|
|
281
|
+
const startedAt = new Date(session.startedAt);
|
|
282
|
+
const durationMs = new Date(endedAt) - startedAt;
|
|
283
|
+
|
|
284
|
+
const lines = [
|
|
285
|
+
'## Handoff Summary',
|
|
286
|
+
'**For:** Cass',
|
|
287
|
+
`**Feature:** ${slug}`,
|
|
288
|
+
'',
|
|
289
|
+
'### Key Decisions',
|
|
290
|
+
`- Interactive mode used for ${session.target} spec creation`,
|
|
291
|
+
`- ${progress.complete}/${progress.total} sections completed`,
|
|
292
|
+
session.revisionCount > 0 ? `- ${session.revisionCount} revision(s) made` : null,
|
|
293
|
+
'',
|
|
294
|
+
'### Files Created',
|
|
295
|
+
session.target === 'system'
|
|
296
|
+
? '- .blueprint/system_specification/SYSTEM_SPEC.md'
|
|
297
|
+
: `- .blueprint/features/feature_${slug}/FEATURE_SPEC.md`,
|
|
298
|
+
'',
|
|
299
|
+
'### Open Questions',
|
|
300
|
+
progress.remaining > 0 ? `- ${progress.remaining} section(s) marked TBD` : '- None',
|
|
301
|
+
'',
|
|
302
|
+
'### Critical Context',
|
|
303
|
+
`Session duration: ${Math.round(durationMs / 1000)}s, Questions asked: ${session.questionCount}, Revisions: ${session.revisionCount}`
|
|
304
|
+
].filter(line => line !== null);
|
|
305
|
+
|
|
306
|
+
return lines.join('\n');
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
function getOutputPath(session, slug, basePath = '.') {
|
|
310
|
+
if (session.target === 'system') {
|
|
311
|
+
return path.join(basePath, '.blueprint/system_specification/SYSTEM_SPEC.md');
|
|
312
|
+
}
|
|
313
|
+
return path.join(basePath, `.blueprint/features/feature_${slug}/FEATURE_SPEC.md`);
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
module.exports = {
|
|
317
|
+
SESSION_STATES,
|
|
318
|
+
SECTION_ORDER,
|
|
319
|
+
MIN_REQUIRED_SECTIONS,
|
|
320
|
+
SYSTEM_SPEC_QUESTIONS,
|
|
321
|
+
parseFlags,
|
|
322
|
+
shouldEnterInteractiveMode,
|
|
323
|
+
createSession,
|
|
324
|
+
getSessionProgress,
|
|
325
|
+
handleCommand,
|
|
326
|
+
getNextSection,
|
|
327
|
+
markSectionComplete,
|
|
328
|
+
markSectionTBD,
|
|
329
|
+
gatherContext,
|
|
330
|
+
identifyGaps,
|
|
331
|
+
generateQuestions,
|
|
332
|
+
getMissingSections,
|
|
333
|
+
canFinalize,
|
|
334
|
+
generateSpec,
|
|
335
|
+
writeSpec,
|
|
336
|
+
generateHandoff,
|
|
337
|
+
getOutputPath
|
|
338
|
+
};
|