agileflow 2.49.0 → 2.51.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/package.json +1 -1
- package/scripts/obtain-context.js +342 -184
- package/src/core/agents/accessibility.md +1 -1
- package/src/core/agents/adr-writer.md +1 -1
- package/src/core/agents/analytics.md +1 -1
- package/src/core/agents/api.md +1 -1
- package/src/core/agents/ci.md +1 -1
- package/src/core/agents/compliance.md +1 -1
- package/src/core/agents/configuration/archival.md +6 -6
- package/src/core/agents/configuration/attribution.md +1 -1
- package/src/core/agents/configuration/ci.md +1 -1
- package/src/core/agents/configuration/git-config.md +1 -1
- package/src/core/agents/configuration/hooks.md +16 -16
- package/src/core/agents/configuration/precompact.md +4 -4
- package/src/core/agents/configuration/status-line.md +10 -10
- package/src/core/agents/configuration/verify.md +2 -2
- package/src/core/agents/database.md +1 -1
- package/src/core/agents/datamigration.md +1 -1
- package/src/core/agents/design.md +1 -1
- package/src/core/agents/devops.md +1 -1
- package/src/core/agents/documentation.md +1 -1
- package/src/core/agents/epic-planner.md +1 -1
- package/src/core/agents/integrations.md +1 -1
- package/src/core/agents/mentor.md +1 -1
- package/src/core/agents/mobile.md +1 -1
- package/src/core/agents/monitoring.md +1 -1
- package/src/core/agents/multi-expert.md +1 -1
- package/src/core/agents/performance.md +1 -1
- package/src/core/agents/product.md +1 -1
- package/src/core/agents/qa.md +1 -1
- package/src/core/agents/readme-updater.md +1 -1
- package/src/core/agents/refactor.md +1 -1
- package/src/core/agents/research.md +1 -1
- package/src/core/agents/security.md +1 -1
- package/src/core/agents/testing.md +1 -1
- package/src/core/agents/ui.md +1 -1
- package/src/core/commands/adr.md +1 -1
- package/src/core/commands/agent.md +1 -1
- package/src/core/commands/assign.md +1 -1
- package/src/core/commands/auto.md +1 -1
- package/src/core/commands/babysit.md +4 -4
- package/src/core/commands/baseline.md +1 -1
- package/src/core/commands/blockers.md +1 -1
- package/src/core/commands/board.md +1 -1
- package/src/core/commands/compress.md +7 -7
- package/src/core/commands/configure.md +21 -21
- package/src/core/commands/deps.md +1 -1
- package/src/core/commands/diagnose.md +2 -2
- package/src/core/commands/docs.md +1 -1
- package/src/core/commands/epic.md +1 -1
- package/src/core/commands/help.md +1 -1
- package/src/core/commands/metrics.md +1 -1
- package/src/core/commands/packages.md +1 -1
- package/src/core/commands/pr.md +1 -1
- package/src/core/commands/readme-sync.md +1 -1
- package/src/core/commands/research.md +1 -1
- package/src/core/commands/retro.md +1 -1
- package/src/core/commands/sprint.md +1 -1
- package/src/core/commands/status.md +1 -1
- package/src/core/commands/story-validate.md +1 -1
- package/src/core/commands/story.md +1 -1
- package/src/core/commands/template.md +1 -1
- package/src/core/commands/tests.md +1 -1
- package/src/core/commands/update.md +1 -1
- package/src/core/commands/validate-expertise.md +3 -3
- package/src/core/commands/velocity.md +1 -1
- package/src/core/commands/verify.md +1 -1
- package/src/core/experts/devops/expertise.yaml +2 -2
- package/src/core/experts/monitoring/expertise.yaml +1 -1
- package/src/core/templates/agileflow-configure.js +12 -12
- package/src/core/templates/agileflow-welcome.js +1 -1
- package/src/core/templates/claude-settings.advanced.example.json +2 -2
- package/src/core/templates/claude-settings.example.json +1 -1
- package/tools/cli/installers/core/installer.js +2 -2
|
@@ -15,7 +15,7 @@ model: haiku
|
|
|
15
15
|
## STEP 0: Gather Context
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
node scripts/obtain-context.js configuration-archival
|
|
18
|
+
node .agileflow/scripts/obtain-context.js configuration-archival
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
---
|
|
@@ -151,7 +151,7 @@ if ! grep -q "archive-completed-stories.sh" .claude/settings.json 2>/dev/null; t
|
|
|
151
151
|
"matcher": "",
|
|
152
152
|
"hooks": [{
|
|
153
153
|
"type": "command",
|
|
154
|
-
"command": "bash scripts/archive-completed-stories.sh > /dev/null 2>&1 &"
|
|
154
|
+
"command": "bash .agileflow/scripts/archive-completed-stories.sh > /dev/null 2>&1 &"
|
|
155
155
|
}]
|
|
156
156
|
}]' .claude/settings.json > .claude/settings.json.tmp && mv .claude/settings.json.tmp .claude/settings.json
|
|
157
157
|
|
|
@@ -233,7 +233,7 @@ AgileFlow automatically manages \`docs/09-agents/status.json\` file size by arch
|
|
|
233
233
|
|
|
234
234
|
**Auto-Archival Hook** (runs on SessionStart):
|
|
235
235
|
- Checks \`docs/09-agents/status.json\` size
|
|
236
|
-
- If large enough, runs: \`bash scripts/archive-completed-stories.sh <DAYS>\`
|
|
236
|
+
- If large enough, runs: \`bash .agileflow/scripts/archive-completed-stories.sh <DAYS>\`
|
|
237
237
|
- Moves completed stories older than threshold to status-archive.json
|
|
238
238
|
- Updates status.json with only active + recent stories
|
|
239
239
|
- Runs silently in background (no interruption)
|
|
@@ -253,7 +253,7 @@ AgileFlow automatically manages \`docs/09-agents/status.json\` file size by arch
|
|
|
253
253
|
### Troubleshooting
|
|
254
254
|
|
|
255
255
|
**If agents fail with "file too large"**:
|
|
256
|
-
1. Run manual archival: \`bash scripts/archive-completed-stories.sh 7\`
|
|
256
|
+
1. Run manual archival: \`bash .agileflow/scripts/archive-completed-stories.sh 7\`
|
|
257
257
|
2. Reduce threshold in \`docs/00-meta/agileflow-metadata.json\` (e.g., 3 days instead of 30)
|
|
258
258
|
3. Verify auto-archival hook is in \`.claude/settings.json\`
|
|
259
259
|
|
|
@@ -291,8 +291,8 @@ How it works:
|
|
|
291
291
|
- Full history preserved in docs/09-agents/status-archive.json
|
|
292
292
|
|
|
293
293
|
Manual archival and compression:
|
|
294
|
-
- Archival: bash scripts/archive-completed-stories.sh (reads from metadata)
|
|
295
|
-
- Archival with custom threshold: bash scripts/archive-completed-stories.sh 7
|
|
294
|
+
- Archival: bash .agileflow/scripts/archive-completed-stories.sh (reads from metadata)
|
|
295
|
+
- Archival with custom threshold: bash .agileflow/scripts/archive-completed-stories.sh 7
|
|
296
296
|
- Compression: /agileflow:compress (strips verbose fields if archival isn't enough)
|
|
297
297
|
- View status: ls -lh docs/09-agents/status*.json
|
|
298
298
|
|
|
@@ -15,7 +15,7 @@ model: haiku
|
|
|
15
15
|
## STEP 0: Gather Context
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
node scripts/obtain-context.js configuration-hooks
|
|
18
|
+
node .agileflow/scripts/obtain-context.js configuration-hooks
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
---
|
|
@@ -277,7 +277,7 @@ Create `scripts/get-env.js` for dynamic environment variable loading:
|
|
|
277
277
|
#!/usr/bin/env node
|
|
278
278
|
/**
|
|
279
279
|
* get-env.js - Dynamic environment variable helper for hooks
|
|
280
|
-
* Usage: node scripts/get-env.js VARIABLE_NAME [default_value]
|
|
280
|
+
* Usage: node .agileflow/scripts/get-env.js VARIABLE_NAME [default_value]
|
|
281
281
|
*/
|
|
282
282
|
const fs = require('fs');
|
|
283
283
|
const path = require('path');
|
|
@@ -286,7 +286,7 @@ const varName = process.argv[2];
|
|
|
286
286
|
const defaultValue = process.argv[3] || '';
|
|
287
287
|
|
|
288
288
|
if (!varName) {
|
|
289
|
-
console.error('Usage: node scripts/get-env.js VARIABLE_NAME [default_value]');
|
|
289
|
+
console.error('Usage: node .agileflow/scripts/get-env.js VARIABLE_NAME [default_value]');
|
|
290
290
|
process.exit(1);
|
|
291
291
|
}
|
|
292
292
|
|
|
@@ -340,7 +340,7 @@ if (userSelectedSessionStart) {
|
|
|
340
340
|
matcher: "",
|
|
341
341
|
hooks: [{
|
|
342
342
|
type: "command",
|
|
343
|
-
command: "node scripts/agileflow-welcome.js 2>/dev/null || echo 'AgileFlow loaded'"
|
|
343
|
+
command: "node .agileflow/scripts/agileflow-welcome.js 2>/dev/null || echo 'AgileFlow loaded'"
|
|
344
344
|
}]
|
|
345
345
|
});
|
|
346
346
|
}
|
|
@@ -351,7 +351,7 @@ if (userSelectedPreCompact) {
|
|
|
351
351
|
matcher: "",
|
|
352
352
|
hooks: [{
|
|
353
353
|
type: "command",
|
|
354
|
-
command: "bash scripts/precompact-context.sh"
|
|
354
|
+
command: "bash .agileflow/scripts/precompact-context.sh"
|
|
355
355
|
}]
|
|
356
356
|
});
|
|
357
357
|
}
|
|
@@ -362,7 +362,7 @@ if (userSelectedStop) {
|
|
|
362
362
|
matcher: "",
|
|
363
363
|
hooks: [{
|
|
364
364
|
type: "command",
|
|
365
|
-
command: "bash scripts/agileflow-stop.sh 2>/dev/null"
|
|
365
|
+
command: "bash .agileflow/scripts/agileflow-stop.sh 2>/dev/null"
|
|
366
366
|
}]
|
|
367
367
|
});
|
|
368
368
|
}
|
|
@@ -390,7 +390,7 @@ if (userSelectedUserPromptSubmit) {
|
|
|
390
390
|
"hooks": [
|
|
391
391
|
{
|
|
392
392
|
"type": "command",
|
|
393
|
-
"command": "node scripts/agileflow-welcome.js 2>/dev/null || echo 'AgileFlow loaded'"
|
|
393
|
+
"command": "node .agileflow/scripts/agileflow-welcome.js 2>/dev/null || echo 'AgileFlow loaded'"
|
|
394
394
|
}
|
|
395
395
|
]
|
|
396
396
|
}
|
|
@@ -401,7 +401,7 @@ if (userSelectedUserPromptSubmit) {
|
|
|
401
401
|
"hooks": [
|
|
402
402
|
{
|
|
403
403
|
"type": "command",
|
|
404
|
-
"command": "bash scripts/precompact-context.sh"
|
|
404
|
+
"command": "bash .agileflow/scripts/precompact-context.sh"
|
|
405
405
|
}
|
|
406
406
|
]
|
|
407
407
|
}
|
|
@@ -412,7 +412,7 @@ if (userSelectedUserPromptSubmit) {
|
|
|
412
412
|
"hooks": [
|
|
413
413
|
{
|
|
414
414
|
"type": "command",
|
|
415
|
-
"command": "bash scripts/agileflow-stop.sh 2>/dev/null"
|
|
415
|
+
"command": "bash .agileflow/scripts/agileflow-stop.sh 2>/dev/null"
|
|
416
416
|
}
|
|
417
417
|
]
|
|
418
418
|
}
|
|
@@ -498,21 +498,21 @@ AgileFlow supports event-driven automation through Claude Code's official hooks
|
|
|
498
498
|
### Enabled Hooks
|
|
499
499
|
|
|
500
500
|
{{#if SessionStart}}
|
|
501
|
-
**SessionStart Hook** - `node scripts/agileflow-welcome.js`
|
|
501
|
+
**SessionStart Hook** - `node .agileflow/scripts/agileflow-welcome.js`
|
|
502
502
|
- Displays project status when Claude Code starts
|
|
503
503
|
- Shows active stories, WIP count, git branch
|
|
504
504
|
- Runs archival and session cleanup
|
|
505
505
|
{{/if}}
|
|
506
506
|
|
|
507
507
|
{{#if PreCompact}}
|
|
508
|
-
**PreCompact Hook** - `bash scripts/precompact-context.sh`
|
|
508
|
+
**PreCompact Hook** - `bash .agileflow/scripts/precompact-context.sh`
|
|
509
509
|
- Preserves project context during conversation compacts
|
|
510
510
|
- Outputs version, branch, active stories, key conventions
|
|
511
511
|
- Preserves active command behavioral rules (e.g., babysit's AskUserQuestion requirement)
|
|
512
512
|
{{/if}}
|
|
513
513
|
|
|
514
514
|
{{#if Stop}}
|
|
515
|
-
**Stop Hook** - `bash scripts/agileflow-stop.sh`
|
|
515
|
+
**Stop Hook** - `bash .agileflow/scripts/agileflow-stop.sh`
|
|
516
516
|
- Warns about uncommitted changes when Claude stops
|
|
517
517
|
- Shows staged, modified, and untracked file counts
|
|
518
518
|
- Reminds about in-progress stories
|
|
@@ -542,7 +542,7 @@ Use `scripts/get-env.js` to load environment variables:
|
|
|
542
542
|
|
|
543
543
|
**Use in hooks**:
|
|
544
544
|
\`\`\`bash
|
|
545
|
-
echo "Welcome $(node scripts/get-env.js USER_NAME)!"
|
|
545
|
+
echo "Welcome $(node .agileflow/scripts/get-env.js USER_NAME)!"
|
|
546
546
|
\`\`\`
|
|
547
547
|
```
|
|
548
548
|
|
|
@@ -575,9 +575,9 @@ Files created:
|
|
|
575
575
|
═══════════════════════════════════════════════════════════
|
|
576
576
|
|
|
577
577
|
Test hooks manually:
|
|
578
|
-
{{#if SessionStart}} node scripts/agileflow-welcome.js{{/if}}
|
|
579
|
-
{{#if PreCompact}} bash scripts/precompact-context.sh{{/if}}
|
|
580
|
-
{{#if Stop}} bash scripts/agileflow-stop.sh{{/if}}
|
|
578
|
+
{{#if SessionStart}} node .agileflow/scripts/agileflow-welcome.js{{/if}}
|
|
579
|
+
{{#if PreCompact}} bash .agileflow/scripts/precompact-context.sh{{/if}}
|
|
580
|
+
{{#if Stop}} bash .agileflow/scripts/agileflow-stop.sh{{/if}}
|
|
581
581
|
```
|
|
582
582
|
|
|
583
583
|
## Verification (Optional)
|
|
@@ -15,7 +15,7 @@ model: haiku
|
|
|
15
15
|
## STEP 0: Gather Context
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
node scripts/obtain-context.js configuration-precompact
|
|
18
|
+
node .agileflow/scripts/obtain-context.js configuration-precompact
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
---
|
|
@@ -178,7 +178,7 @@ Read current `.claude/settings.json` and add PreCompact hook:
|
|
|
178
178
|
"hooks": [
|
|
179
179
|
{
|
|
180
180
|
"type": "command",
|
|
181
|
-
"command": "bash scripts/precompact-context.sh"
|
|
181
|
+
"command": "bash .agileflow/scripts/precompact-context.sh"
|
|
182
182
|
}
|
|
183
183
|
]
|
|
184
184
|
}
|
|
@@ -220,7 +220,7 @@ console.log('Updated metadata with precompact version 2.40.0');
|
|
|
220
220
|
### Step 6: Test the Hook
|
|
221
221
|
|
|
222
222
|
```bash
|
|
223
|
-
bash scripts/precompact-context.sh
|
|
223
|
+
bash .agileflow/scripts/precompact-context.sh
|
|
224
224
|
```
|
|
225
225
|
|
|
226
226
|
Should output project context. Verify it shows:
|
|
@@ -284,7 +284,7 @@ What happens now:
|
|
|
284
284
|
- Your conventions and current work survive summarization
|
|
285
285
|
|
|
286
286
|
Test it now:
|
|
287
|
-
bash scripts/precompact-context.sh
|
|
287
|
+
bash .agileflow/scripts/precompact-context.sh
|
|
288
288
|
|
|
289
289
|
To trigger a compact manually:
|
|
290
290
|
/compact "Additional focus areas to preserve"
|
|
@@ -14,7 +14,7 @@ model: haiku
|
|
|
14
14
|
## STEP 0: Gather Context
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
-
node scripts/obtain-context.js configuration-status-line
|
|
17
|
+
node .agileflow/scripts/obtain-context.js configuration-status-line
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
---
|
|
@@ -272,7 +272,7 @@ The NEW format uses an object:
|
|
|
272
272
|
{
|
|
273
273
|
"statusLine": {
|
|
274
274
|
"type": "command",
|
|
275
|
-
"command": "bash scripts/agileflow-statusline.sh",
|
|
275
|
+
"command": "bash .agileflow/scripts/agileflow-statusline.sh",
|
|
276
276
|
"padding": 0
|
|
277
277
|
}
|
|
278
278
|
}
|
|
@@ -281,7 +281,7 @@ The NEW format uses an object:
|
|
|
281
281
|
The OLD format (invalid) was just a string:
|
|
282
282
|
```json
|
|
283
283
|
{
|
|
284
|
-
"statusLine": "bash scripts/agileflow-statusline.sh"
|
|
284
|
+
"statusLine": "bash .agileflow/scripts/agileflow-statusline.sh"
|
|
285
285
|
}
|
|
286
286
|
```
|
|
287
287
|
|
|
@@ -304,7 +304,7 @@ Use `jq` to add/update the statusLine field (this will replace old string format
|
|
|
304
304
|
cp .claude/settings.json .claude/settings.json.backup 2>/dev/null
|
|
305
305
|
|
|
306
306
|
# Add statusLine configuration (replaces any old format)
|
|
307
|
-
jq '. + {"statusLine": {"type": "command", "command": "bash scripts/agileflow-statusline.sh", "padding": 0}}' .claude/settings.json > .claude/settings.json.tmp && mv .claude/settings.json.tmp .claude/settings.json
|
|
307
|
+
jq '. + {"statusLine": {"type": "command", "command": "bash .agileflow/scripts/agileflow-statusline.sh", "padding": 0}}' .claude/settings.json > .claude/settings.json.tmp && mv .claude/settings.json.tmp .claude/settings.json
|
|
308
308
|
```
|
|
309
309
|
|
|
310
310
|
### Step 6: Update .gitignore
|
|
@@ -356,7 +356,7 @@ Edit `scripts/agileflow-statusline.sh` to change what's displayed. The script re
|
|
|
356
356
|
|
|
357
357
|
If the status line doesn't appear:
|
|
358
358
|
1. Verify script is executable: `chmod +x scripts/agileflow-statusline.sh`
|
|
359
|
-
2. Test manually: `echo '{"model":{"display_name":"Test"}}' | bash scripts/agileflow-statusline.sh`
|
|
359
|
+
2. Test manually: `echo '{"model":{"display_name":"Test"}}' | bash .agileflow/scripts/agileflow-statusline.sh`
|
|
360
360
|
3. Check `.claude/settings.json` has the statusLine configuration
|
|
361
361
|
4. **Restart Claude Code** (quit completely, wait 5 seconds, restart)
|
|
362
362
|
```
|
|
@@ -405,7 +405,7 @@ echo "$SAMPLE_INPUT" | jq .
|
|
|
405
405
|
echo ""
|
|
406
406
|
echo "Status line output:"
|
|
407
407
|
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
|
|
408
|
-
echo "$SAMPLE_INPUT" | bash scripts/agileflow-statusline.sh
|
|
408
|
+
echo "$SAMPLE_INPUT" | bash .agileflow/scripts/agileflow-statusline.sh
|
|
409
409
|
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
|
|
410
410
|
echo ""
|
|
411
411
|
|
|
@@ -509,16 +509,16 @@ Components can be toggled individually using the configure script:
|
|
|
509
509
|
|
|
510
510
|
```bash
|
|
511
511
|
# List current component status
|
|
512
|
-
node scripts/agileflow-configure.js --components
|
|
512
|
+
node .agileflow/scripts/agileflow-configure.js --components
|
|
513
513
|
|
|
514
514
|
# Show specific components
|
|
515
|
-
node scripts/agileflow-configure.js --show=agileflow,context,git
|
|
515
|
+
node .agileflow/scripts/agileflow-configure.js --show=agileflow,context,git
|
|
516
516
|
|
|
517
517
|
# Hide specific components
|
|
518
|
-
node scripts/agileflow-configure.js --hide=model,cost,wip
|
|
518
|
+
node .agileflow/scripts/agileflow-configure.js --hide=model,cost,wip
|
|
519
519
|
|
|
520
520
|
# Minimal statusline (just branding and context)
|
|
521
|
-
node scripts/agileflow-configure.js --hide=model,story,epic,wip,cost,git
|
|
521
|
+
node .agileflow/scripts/agileflow-configure.js --hide=model,story,epic,wip,cost,git
|
|
522
522
|
```
|
|
523
523
|
|
|
524
524
|
Components are stored in `docs/00-meta/agileflow-metadata.json`:
|
|
@@ -15,7 +15,7 @@ model: haiku
|
|
|
15
15
|
## STEP 0: Gather Context
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
node scripts/obtain-context.js configuration-verify
|
|
18
|
+
node .agileflow/scripts/obtain-context.js configuration-verify
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
---
|
|
@@ -423,7 +423,7 @@ test_get_env() {
|
|
|
423
423
|
fi
|
|
424
424
|
|
|
425
425
|
# Test basic functionality
|
|
426
|
-
TEST_VALUE=$(node scripts/get-env.js USER_NAME "TestUser")
|
|
426
|
+
TEST_VALUE=$(node .agileflow/scripts/get-env.js USER_NAME "TestUser")
|
|
427
427
|
|
|
428
428
|
if [ $? -eq 0 ]; then
|
|
429
429
|
echo "✅ get-env.js works (returned: $TEST_VALUE)"
|
package/src/core/agents/qa.md
CHANGED
package/src/core/agents/ui.md
CHANGED
package/src/core/commands/adr.md
CHANGED
|
@@ -27,7 +27,7 @@ End-to-end mentor for implementing features.
|
|
|
27
27
|
**Before doing ANYTHING else, run the context script to gather all project state in one shot:**
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
node scripts/obtain-context.js babysit
|
|
30
|
+
node .agileflow/scripts/obtain-context.js babysit
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
This single command gathers:
|
|
@@ -70,7 +70,7 @@ Keep this section under 150 lines - it contains the critical behavioral rules an
|
|
|
70
70
|
### TodoWrite Tracking
|
|
71
71
|
|
|
72
72
|
**CRITICAL**: Track progress with TodoWrite tool. Typical workflow:
|
|
73
|
-
1. Run context script (`node scripts/obtain-context.js babysit`)
|
|
73
|
+
1. Run context script (`node .agileflow/scripts/obtain-context.js babysit`)
|
|
74
74
|
2. Present suggestions using AskUserQuestion
|
|
75
75
|
3. Read task-specific docs based on user's choice
|
|
76
76
|
4. Plan implementation steps with file paths
|
|
@@ -145,7 +145,7 @@ ROLE: Babysitter (Mentor + Orchestrator)
|
|
|
145
145
|
TODO LIST TRACKING
|
|
146
146
|
**CRITICAL**: Immediately create a todo list using TodoWrite tool to track mentoring workflow:
|
|
147
147
|
```
|
|
148
|
-
1. Run context script (node scripts/obtain-context.js babysit)
|
|
148
|
+
1. Run context script (node .agileflow/scripts/obtain-context.js babysit)
|
|
149
149
|
2. Present intelligent suggestions using AskUserQuestion
|
|
150
150
|
3. Read task-specific docs (based on what user chooses)
|
|
151
151
|
4. Validate story readiness and architecture context
|
|
@@ -173,7 +173,7 @@ GOAL
|
|
|
173
173
|
**Run the context script IMMEDIATELY - DO NOT SKIP:**
|
|
174
174
|
|
|
175
175
|
```bash
|
|
176
|
-
node scripts/obtain-context.js babysit
|
|
176
|
+
node .agileflow/scripts/obtain-context.js babysit
|
|
177
177
|
```
|
|
178
178
|
|
|
179
179
|
This single command gathers all essential context:
|
|
@@ -10,7 +10,7 @@ Create a verified checkpoint representing a known-good state of the project.
|
|
|
10
10
|
## STEP 0: Gather Context
|
|
11
11
|
|
|
12
12
|
```bash
|
|
13
|
-
node scripts/obtain-context.js baseline
|
|
13
|
+
node .agileflow/scripts/obtain-context.js baseline
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
<!-- COMPACT_SUMMARY_START -->
|
|
@@ -10,7 +10,7 @@ Generate a visual kanban board from current story statuses.
|
|
|
10
10
|
## STEP 0: Gather Context
|
|
11
11
|
|
|
12
12
|
```bash
|
|
13
|
-
node scripts/obtain-context.js board
|
|
13
|
+
node .agileflow/scripts/obtain-context.js board
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
This gathers git status, stories/epics, session state, and registers for PreCompact.
|