agileflow 2.36.2 → 2.37.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/README.md +64 -64
- package/package.json +1 -1
- package/src/core/agents/accessibility.md +14 -14
- package/src/core/agents/adr-writer.md +5 -5
- package/src/core/agents/analytics.md +14 -14
- package/src/core/agents/api.md +22 -22
- package/src/core/agents/ci.md +20 -20
- package/src/core/agents/compliance.md +14 -14
- package/src/core/agents/configuration/archival.md +1 -1
- package/src/core/agents/configuration/ci.md +3 -3
- package/src/core/agents/configuration/hooks.md +1 -1
- package/src/core/agents/configuration/status-line.md +420 -0
- package/src/core/agents/database.md +18 -18
- package/src/core/agents/datamigration.md +14 -14
- package/src/core/agents/design.md +14 -14
- package/src/core/agents/devops.md +38 -38
- package/src/core/agents/documentation.md +4 -4
- package/src/core/agents/epic-planner.md +7 -7
- package/src/core/agents/integrations.md +17 -17
- package/src/core/agents/mentor.md +33 -33
- package/src/core/agents/mobile.md +15 -15
- package/src/core/agents/monitoring.md +14 -14
- package/src/core/agents/performance.md +16 -16
- package/src/core/agents/product.md +6 -6
- package/src/core/agents/qa.md +14 -14
- package/src/core/agents/readme-updater.md +2 -2
- package/src/core/agents/refactor.md +16 -16
- package/src/core/agents/security.md +20 -20
- package/src/core/agents/testing.md +16 -16
- package/src/core/agents/ui.md +23 -23
- package/src/core/commands/adr.md +5 -4
- package/src/core/commands/agent.md +1 -0
- package/src/core/commands/auto.md +1 -1
- package/src/core/commands/babysit.md +141 -70
- package/src/core/commands/baseline.md +34 -16
- package/src/core/commands/blockers.md +7 -7
- package/src/core/commands/board.md +1 -1
- package/src/core/commands/changelog.md +15 -9
- package/src/core/commands/compress.md +23 -5
- package/src/core/commands/configure.md +44 -9
- package/src/core/commands/context.md +6 -6
- package/src/core/commands/debt.md +1 -1
- package/src/core/commands/deps.md +10 -10
- package/src/core/commands/diagnose.md +11 -1
- package/src/core/commands/docs.md +2 -1
- package/src/core/commands/handoff.md +1 -0
- package/src/core/commands/help.md +9 -0
- package/src/core/commands/impact.md +2 -1
- package/src/core/commands/metrics.md +12 -12
- package/src/core/commands/multi-expert.md +1 -1
- package/src/core/commands/packages.md +12 -12
- package/src/core/commands/pr.md +1 -0
- package/src/core/commands/readme-sync.md +59 -87
- package/src/core/commands/retro.md +12 -12
- package/src/core/commands/review.md +2 -1
- package/src/core/commands/session/end.md +8 -8
- package/src/core/commands/session/history.md +13 -13
- package/src/core/commands/session/init.md +16 -16
- package/src/core/commands/session/resume.md +17 -17
- package/src/core/commands/session/status.md +14 -14
- package/src/core/commands/sprint.md +5 -5
- package/src/core/commands/story-validate.md +4 -3
- package/src/core/commands/story.md +1 -0
- package/src/core/commands/template.md +3 -3
- package/src/core/commands/tests.md +15 -0
- package/src/core/commands/update.md +1 -1
- package/src/core/commands/velocity.md +2 -2
- package/src/core/commands/verify.md +27 -9
- package/src/core/skills/agileflow-tech-debt/SKILL.md +2 -2
- package/src/core/templates/README-template.md +1 -1
- package/src/core/templates/agent-profile-template.md +1 -1
- package/src/core/templates/agileflow-statusline.sh +161 -0
- package/src/core/templates/claude-settings.advanced.example.json +2 -2
- package/src/core/templates/claude-settings.example.json +1 -1
- package/src/core/templates/resume-session.sh +2 -2
- package/src/core/templates/worktrees-guide.md +11 -11
- package/tools/cli/commands/config.js +1 -1
- package/tools/cli/commands/doctor.js +1 -1
- package/tools/cli/commands/status.js +1 -1
- package/tools/cli/commands/uninstall.js +1 -1
- package/tools/cli/installers/ide/claude-code.js +1 -1
- package/tools/cli/installers/ide/cursor.js +2 -2
- package/tools/cli/lib/content-injector.js +1 -1
- package/tools/cli/lib/docs-setup.js +22 -32
- package/tools/postinstall.js +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
description: Configure advanced AgileFlow features (git, hooks, archival, CI)
|
|
2
|
+
description: Configure advanced AgileFlow features (git, hooks, archival, CI, status line)
|
|
3
3
|
argument-hint: (interactive menu)
|
|
4
4
|
---
|
|
5
5
|
|
|
@@ -33,6 +33,7 @@ Each feature is handled by a specialized agent:
|
|
|
33
33
|
- **Hooks System** (`AgileFlow:agents:configuration:hooks`) - Event-driven automation
|
|
34
34
|
- **Auto-Archival** (`AgileFlow:agents:configuration:archival`) - Status.json size management
|
|
35
35
|
- **CI/CD** (`AgileFlow:agents:configuration:ci`) - Automated testing and quality checks
|
|
36
|
+
- **Status Line** (`AgileFlow:agents:configuration:status-line`) - Custom Claude Code status bar with AgileFlow context
|
|
36
37
|
|
|
37
38
|
## Detection Phase (Run First)
|
|
38
39
|
|
|
@@ -112,6 +113,15 @@ else
|
|
|
112
113
|
CI_CONFIGURED=false
|
|
113
114
|
fi
|
|
114
115
|
|
|
116
|
+
# Check status line
|
|
117
|
+
if [ -f scripts/agileflow-statusline.sh ] && grep -q "statusLine" .claude/settings.json 2>/dev/null; then
|
|
118
|
+
echo "✅ Status line configured"
|
|
119
|
+
STATUSLINE_CONFIGURED=true
|
|
120
|
+
else
|
|
121
|
+
echo "❌ Status line not configured"
|
|
122
|
+
STATUSLINE_CONFIGURED=false
|
|
123
|
+
fi
|
|
124
|
+
|
|
115
125
|
echo "===================================="
|
|
116
126
|
echo ""
|
|
117
127
|
```
|
|
@@ -151,7 +161,8 @@ The AskUserQuestion tool allows you to prompt the user for input. It requires XM
|
|
|
151
161
|
{"label": "Attribution Settings", "description": "Configure CLAUDE.md attribution policy"},
|
|
152
162
|
{"label": "Hooks System", "description": "Set up event-driven automation"},
|
|
153
163
|
{"label": "Auto-Archival", "description": "Manage status.json file size"},
|
|
154
|
-
{"label": "CI/CD", "description": "Set up automated testing"}
|
|
164
|
+
{"label": "CI/CD", "description": "Set up automated testing"},
|
|
165
|
+
{"label": "Status Line", "description": "Custom status bar with story/WIP/context info"}
|
|
155
166
|
]
|
|
156
167
|
}]</parameter>
|
|
157
168
|
</invoke>
|
|
@@ -169,7 +180,8 @@ The AskUserQuestion tool allows you to prompt the user for input. It requires XM
|
|
|
169
180
|
{"label": "Attribution Settings", "description": "Configure CLAUDE.md attribution policy"},
|
|
170
181
|
{"label": "Hooks System", "description": "Set up event-driven automation"},
|
|
171
182
|
{"label": "Auto-Archival", "description": "Manage status.json file size"},
|
|
172
|
-
{"label": "CI/CD", "description": "Set up automated testing"}
|
|
183
|
+
{"label": "CI/CD", "description": "Set up automated testing"},
|
|
184
|
+
{"label": "Status Line", "description": "Custom status bar with story/WIP/context info"}
|
|
173
185
|
]
|
|
174
186
|
}]</parameter>
|
|
175
187
|
</invoke>
|
|
@@ -190,6 +202,7 @@ Available options:
|
|
|
190
202
|
3. Hooks System (event-driven automation)
|
|
191
203
|
4. Auto-Archival (status.json size management)
|
|
192
204
|
5. CI/CD (automated testing and quality checks)
|
|
205
|
+
6. Status Line (custom status bar with story/WIP/context info)
|
|
193
206
|
|
|
194
207
|
You can select multiple options. Features already configured are marked with ✅.
|
|
195
208
|
|
|
@@ -199,6 +212,7 @@ Current status:
|
|
|
199
212
|
- Hooks System: [✅ Configured / ❌ Not configured]
|
|
200
213
|
- Auto-Archival: [✅ Configured / ❌ Not configured]
|
|
201
214
|
- CI/CD: [✅ Configured / ❌ Not configured]
|
|
215
|
+
- Status Line: [✅ Configured / ❌ Not configured]
|
|
202
216
|
|
|
203
217
|
Select features to configure:
|
|
204
218
|
```
|
|
@@ -261,6 +275,16 @@ Task({
|
|
|
261
275
|
})
|
|
262
276
|
```
|
|
263
277
|
|
|
278
|
+
#### Status Line Agent
|
|
279
|
+
|
|
280
|
+
```javascript
|
|
281
|
+
Task({
|
|
282
|
+
subagent_type: "AgileFlow:agents:configuration:status-line",
|
|
283
|
+
description: "Configure status line",
|
|
284
|
+
prompt: "Set up a custom AgileFlow status line for Claude Code. Ask user which components to display (story, WIP, context %, cost, git branch), create the statusline script, configure .claude/settings.json, and document in CLAUDE.md."
|
|
285
|
+
})
|
|
286
|
+
```
|
|
287
|
+
|
|
264
288
|
### Parallel Execution
|
|
265
289
|
|
|
266
290
|
**CRITICAL**: Spawn multiple agents in a **single message** for parallel execution:
|
|
@@ -281,12 +305,14 @@ Task({ subagent_type: "AgileFlow:agents:configuration:hooks", ... })
|
|
|
281
305
|
|
|
282
306
|
Some agents have dependencies:
|
|
283
307
|
- **Auto-Archival** depends on **Hooks System** (needs .claude/settings.json to exist)
|
|
308
|
+
- **Status Line** depends on **Hooks System** (needs .claude/settings.json to exist)
|
|
284
309
|
- **Git Config**, **Attribution**, and **CI/CD** are independent (can run in parallel)
|
|
285
310
|
|
|
286
311
|
**Execution Strategy**:
|
|
287
312
|
1. If user selects Git + Attribution + CI: Run in parallel (no dependencies)
|
|
288
313
|
2. If user selects Hooks + Archival: Run hooks FIRST, then archival (dependency)
|
|
289
|
-
3. If user selects
|
|
314
|
+
3. If user selects Hooks + Status Line: Run hooks FIRST, then status line (dependency)
|
|
315
|
+
4. If user selects all 6: Run Git + Attribution + CI in parallel, wait, then run Hooks, wait, then run Archival + Status Line in parallel
|
|
290
316
|
|
|
291
317
|
## Agent Result Handling
|
|
292
318
|
|
|
@@ -301,6 +327,7 @@ Results:
|
|
|
301
327
|
- Hooks System: [✅ Configured / ❌ Failed / ⏭️ Skipped]
|
|
302
328
|
- Auto-Archival: [✅ Configured / ❌ Failed / ⏭️ Skipped]
|
|
303
329
|
- CI/CD: [✅ Configured / ❌ Failed / ⏭️ Skipped]
|
|
330
|
+
- Status Line: [✅ Configured / ❌ Failed / ⏭️ Skipped]
|
|
304
331
|
|
|
305
332
|
Next steps:
|
|
306
333
|
[Agent-specific next steps from results]
|
|
@@ -360,10 +387,17 @@ If an agent fails:
|
|
|
360
387
|
- Create workflow file (`.github/workflows/ci.yml`, `.gitlab-ci.yml`, or `.circleci/config.yml`)
|
|
361
388
|
- Document in CLAUDE.md with CI status, badge URL, and troubleshooting
|
|
362
389
|
|
|
390
|
+
### 6. Status Line (status-line agent)
|
|
391
|
+
- Ask user which components to display (story, WIP, context %, cost, git branch)
|
|
392
|
+
- Create `scripts/agileflow-statusline.sh` script
|
|
393
|
+
- Add `statusLine` configuration to `.claude/settings.json`
|
|
394
|
+
- Document in CLAUDE.md
|
|
395
|
+
- **CRITICAL**: Remind user to restart Claude Code
|
|
396
|
+
|
|
363
397
|
## Example Workflow
|
|
364
398
|
|
|
365
399
|
```
|
|
366
|
-
1. User runs: /
|
|
400
|
+
1. User runs: /agileflow:configure
|
|
367
401
|
|
|
368
402
|
2. Orchestrator detects current status:
|
|
369
403
|
✅ Git initialized
|
|
@@ -372,9 +406,10 @@ If an agent fails:
|
|
|
372
406
|
❌ Hooks system not configured
|
|
373
407
|
❌ Auto-archival not configured
|
|
374
408
|
❌ CI/CD not configured
|
|
409
|
+
❌ Status line not configured
|
|
375
410
|
|
|
376
411
|
3. Orchestrator presents menu using AskUserQuestion:
|
|
377
|
-
"Select features to configure: [Git Repository, Attribution Settings, Hooks System, Auto-Archival, CI/CD]"
|
|
412
|
+
"Select features to configure: [Git Repository, Attribution Settings, Hooks System, Auto-Archival, CI/CD, Status Line]"
|
|
378
413
|
|
|
379
414
|
4. User selects: ["Attribution Settings", "Hooks System", "CI/CD"]
|
|
380
415
|
|
|
@@ -399,9 +434,9 @@ If an agent fails:
|
|
|
399
434
|
- ALWAYS run detection phase first
|
|
400
435
|
- Use AskUserQuestion tool for interactive menus
|
|
401
436
|
- Spawn agents in parallel when possible (single message)
|
|
402
|
-
- Respect agent dependencies (hooks before archival)
|
|
437
|
+
- Respect agent dependencies (hooks before archival, hooks before status-line)
|
|
403
438
|
- Display clear results summary after completion
|
|
404
|
-
- Remind user to restart Claude Code if hooks were configured
|
|
439
|
+
- Remind user to restart Claude Code if hooks or status line were configured
|
|
405
440
|
- Be idempotent (safe to run multiple times)
|
|
406
441
|
|
|
407
442
|
## Output
|
|
@@ -411,4 +446,4 @@ If an agent fails:
|
|
|
411
446
|
- Agent spawn confirmations
|
|
412
447
|
- Final results summary
|
|
413
448
|
- Next steps (agent-specific guidance)
|
|
414
|
-
- **CRITICAL reminder** if hooks configured: "🔴 RESTART CLAUDE CODE NOW!"
|
|
449
|
+
- **CRITICAL reminder** if hooks or status line configured: "🔴 RESTART CLAUDE CODE NOW!"
|
|
@@ -197,18 +197,18 @@ When user pastes research results back:
|
|
|
197
197
|
|
|
198
198
|
```bash
|
|
199
199
|
# Generate/refresh full context brief (default)
|
|
200
|
-
/
|
|
201
|
-
/
|
|
200
|
+
/agileflow:context
|
|
201
|
+
/agileflow:context MODE=full
|
|
202
202
|
|
|
203
203
|
# Export concise excerpt for pasting
|
|
204
|
-
/
|
|
204
|
+
/agileflow:context MODE=export
|
|
205
205
|
|
|
206
206
|
# Add a quick note
|
|
207
|
-
/
|
|
207
|
+
/agileflow:context MODE=note NOTE="User reported auth bug in production"
|
|
208
208
|
|
|
209
209
|
# Build research prompt
|
|
210
|
-
/
|
|
211
|
-
/
|
|
210
|
+
/agileflow:context MODE=research TOPIC="Implement OAuth 2.0 with Google"
|
|
211
|
+
/agileflow:context MODE=research TOPIC="Add Stripe payments" DETAILS="Launch by end of sprint"
|
|
212
212
|
```
|
|
213
213
|
|
|
214
214
|
---
|
|
@@ -250,7 +250,7 @@ Suggest adding to CI (weekly):
|
|
|
250
250
|
```yaml
|
|
251
251
|
- cron: '0 0 * * 1' # Monday
|
|
252
252
|
- name: Technical debt scan
|
|
253
|
-
run: npx claude-code /
|
|
253
|
+
run: npx claude-code /agileflow:tech-debt SCAN=full OUTPUT=report
|
|
254
254
|
```
|
|
255
255
|
|
|
256
256
|
RULES
|
|
@@ -508,40 +508,40 @@ USAGE EXAMPLES
|
|
|
508
508
|
|
|
509
509
|
### Show all dependencies
|
|
510
510
|
```bash
|
|
511
|
-
/
|
|
511
|
+
/agileflow:dependencies
|
|
512
512
|
```
|
|
513
513
|
|
|
514
514
|
### Specific epic dependencies
|
|
515
515
|
```bash
|
|
516
|
-
/
|
|
516
|
+
/agileflow:dependencies EPIC=EP-0010
|
|
517
517
|
```
|
|
518
518
|
|
|
519
519
|
### Specific story dependencies
|
|
520
520
|
```bash
|
|
521
|
-
/
|
|
521
|
+
/agileflow:dependencies STORY=US-0032
|
|
522
522
|
```
|
|
523
523
|
|
|
524
524
|
### Only critical path analysis
|
|
525
525
|
```bash
|
|
526
|
-
/
|
|
526
|
+
/agileflow:dependencies ANALYSIS=critical-path
|
|
527
527
|
```
|
|
528
528
|
|
|
529
529
|
### Export as Mermaid diagram
|
|
530
530
|
```bash
|
|
531
|
-
/
|
|
531
|
+
/agileflow:dependencies FORMAT=mermaid > dependencies.mmd
|
|
532
532
|
```
|
|
533
533
|
|
|
534
534
|
### Check for circular dependencies
|
|
535
535
|
```bash
|
|
536
|
-
/
|
|
536
|
+
/agileflow:dependencies ANALYSIS=circular
|
|
537
537
|
```
|
|
538
538
|
|
|
539
539
|
INTEGRATION WITH OTHER COMMANDS
|
|
540
540
|
|
|
541
|
-
- Before `/
|
|
542
|
-
- After `/
|
|
543
|
-
- In `/
|
|
544
|
-
- With `/
|
|
541
|
+
- Before `/agileflow:board`: Run `/agileflow:dependencies` to understand blockers
|
|
542
|
+
- After `/agileflow:story-new`: Run `/agileflow:dependencies` to visualize impact
|
|
543
|
+
- In `/agileflow:babysit`: Check `/agileflow:dependencies` before starting work
|
|
544
|
+
- With `/agileflow:metrics`: Correlate cycle time with dependency depth
|
|
545
545
|
|
|
546
546
|
RULES
|
|
547
547
|
- Parse dependencies from story frontmatter first (authoritative)
|
|
@@ -10,6 +10,16 @@ Run comprehensive AgileFlow system health checks to identify potential issues be
|
|
|
10
10
|
|
|
11
11
|
ROLE: System Diagnostician
|
|
12
12
|
|
|
13
|
+
INPUTS
|
|
14
|
+
(no arguments - runs full system diagnostics)
|
|
15
|
+
|
|
16
|
+
ACTIONS
|
|
17
|
+
1) Validate all JSON files (status.json, metadata, settings)
|
|
18
|
+
2) Check file structure (docs/, .agileflow/, .claude/)
|
|
19
|
+
3) Verify git state and hooks
|
|
20
|
+
4) Check for common issues (stale stories, invalid references)
|
|
21
|
+
5) Generate health report with recommendations
|
|
22
|
+
|
|
13
23
|
OBJECTIVE: Validate AgileFlow system health, identify issues, and provide actionable recommendations.
|
|
14
24
|
|
|
15
25
|
**Run these diagnostic checks**:
|
|
@@ -173,7 +183,7 @@ else
|
|
|
173
183
|
echo "1. Fix JSON validation errors using: bash scripts/validate-json.sh <file>"
|
|
174
184
|
echo "2. Add missing files to .gitignore if needed"
|
|
175
185
|
echo "3. Run archival if status.json is too large: bash scripts/archive-completed-stories.sh 7"
|
|
176
|
-
echo "4. Re-run diagnostics after fixes: /
|
|
186
|
+
echo "4. Re-run diagnostics after fixes: /agileflow:diagnose"
|
|
177
187
|
exit 1
|
|
178
188
|
fi
|
|
179
189
|
```
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: Synchronize documentation with code changes
|
|
3
|
+
argument-hint: [BRANCH=<name>] [BASE=<branch>] [AUTO_CREATE=yes|no]
|
|
3
4
|
---
|
|
4
5
|
|
|
5
6
|
# docs-sync
|
|
@@ -148,7 +149,7 @@ CI INTEGRATION
|
|
|
148
149
|
Suggest adding to PR checks:
|
|
149
150
|
```yaml
|
|
150
151
|
- name: Check docs sync
|
|
151
|
-
run: npx claude-code /
|
|
152
|
+
run: npx claude-code /agileflow:docs-sync BRANCH=${{ github.head_ref }}
|
|
152
153
|
# Fail if critical docs missing (e.g., public API endpoints)
|
|
153
154
|
```
|
|
154
155
|
|
|
@@ -10,6 +10,15 @@ Display a concise overview of the AgileFlow system.
|
|
|
10
10
|
|
|
11
11
|
ROLE: System Guide
|
|
12
12
|
|
|
13
|
+
INPUTS
|
|
14
|
+
(no arguments - displays system overview)
|
|
15
|
+
|
|
16
|
+
ACTIONS
|
|
17
|
+
1) Print folder map (docs/*) and what lives where
|
|
18
|
+
2) Explain Epics, Stories, ADRs, status.json, bus/log.jsonl
|
|
19
|
+
3) Show daily workflow
|
|
20
|
+
4) List all available commands with examples
|
|
21
|
+
|
|
13
22
|
TASK
|
|
14
23
|
Print a concise, one-screen overview:
|
|
15
24
|
- Folder map (docs/*) and what lives where
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: Analyze change impact across codebase
|
|
3
|
+
argument-hint: [FILES=<paths>] [BASE=<branch>] [RUN_TESTS=yes|no]
|
|
3
4
|
---
|
|
4
5
|
|
|
5
6
|
# impact-analysis
|
|
@@ -165,7 +166,7 @@ INTEGRATION
|
|
|
165
166
|
Suggest optimized CI that only runs affected tests:
|
|
166
167
|
```yaml
|
|
167
168
|
- name: Impact analysis
|
|
168
|
-
run: npx claude-code /
|
|
169
|
+
run: npx claude-code /agileflow:impact-analysis BASE=main
|
|
169
170
|
|
|
170
171
|
- name: Run affected tests
|
|
171
172
|
run: npm test -- $(cat affected-tests.txt)
|
|
@@ -437,9 +437,9 @@ DASHBOARD OUTPUT
|
|
|
437
437
|
║ ║
|
|
438
438
|
╚════════════════════════════════════════════════════════════════╝
|
|
439
439
|
|
|
440
|
-
Run `/
|
|
441
|
-
Run `/
|
|
442
|
-
Run `/
|
|
440
|
+
Run `/agileflow:velocity` for forecasting
|
|
441
|
+
Run `/agileflow:board` for current kanban view
|
|
442
|
+
Run `/agileflow:retro` for retrospective insights
|
|
443
443
|
```
|
|
444
444
|
|
|
445
445
|
EXPORT FORMATS
|
|
@@ -494,35 +494,35 @@ USAGE EXAMPLES
|
|
|
494
494
|
|
|
495
495
|
### View all metrics for last 30 days
|
|
496
496
|
```bash
|
|
497
|
-
/
|
|
497
|
+
/agileflow:metrics
|
|
498
498
|
```
|
|
499
499
|
|
|
500
500
|
### Last 90 days, specific epic
|
|
501
501
|
```bash
|
|
502
|
-
/
|
|
502
|
+
/agileflow:metrics TIMEFRAME=90d EPIC=EP-0010
|
|
503
503
|
```
|
|
504
504
|
|
|
505
505
|
### Only cycle time, export as JSON
|
|
506
506
|
```bash
|
|
507
|
-
/
|
|
507
|
+
/agileflow:metrics METRIC=cycle-time FORMAT=json
|
|
508
508
|
```
|
|
509
509
|
|
|
510
510
|
### Agent-specific metrics
|
|
511
511
|
```bash
|
|
512
|
-
/
|
|
512
|
+
/agileflow:metrics OWNER=AG-API TIMEFRAME=7d
|
|
513
513
|
```
|
|
514
514
|
|
|
515
515
|
### Export to CSV for spreadsheet analysis
|
|
516
516
|
```bash
|
|
517
|
-
/
|
|
517
|
+
/agileflow:metrics FORMAT=csv > metrics.csv
|
|
518
518
|
```
|
|
519
519
|
|
|
520
520
|
INTEGRATION WITH OTHER COMMANDS
|
|
521
521
|
|
|
522
|
-
- After `/
|
|
523
|
-
- After `/
|
|
524
|
-
- Before `/
|
|
525
|
-
- In `/
|
|
522
|
+
- After `/agileflow:velocity`: Run `/agileflow:metrics` to see detailed trends
|
|
523
|
+
- After `/agileflow:board`: Run `/agileflow:metrics` to understand bottlenecks
|
|
524
|
+
- Before `/agileflow:retro`: Run `/agileflow:metrics` to gather data for retrospective
|
|
525
|
+
- In `/agileflow:babysit`: Auto-run `/agileflow:metrics` when velocity drops
|
|
526
526
|
|
|
527
527
|
RULES
|
|
528
528
|
- Always calculate from raw data (bus/log.jsonl, status.json)
|
|
@@ -3,7 +3,7 @@ description: Deploy multiple domain experts on the same problem for higher confi
|
|
|
3
3
|
argument-hint: <question or task>
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# /
|
|
6
|
+
# /agileflow:multi-expert
|
|
7
7
|
|
|
8
8
|
Deploy multiple Agent Experts on the same problem. Each expert validates independently, then results are synthesized for higher confidence answers.
|
|
9
9
|
|
|
@@ -235,7 +235,7 @@ Group updates by SCOPE:
|
|
|
235
235
|
- Run update commands
|
|
236
236
|
- Run tests (if available)
|
|
237
237
|
- Commit with message: "chore(deps): update dependencies (<scope>)"
|
|
238
|
-
- Push and create PR using /
|
|
238
|
+
- Push and create PR using /agileflow:pr-template
|
|
239
239
|
|
|
240
240
|
### Integration
|
|
241
241
|
- Save report to docs/08-project/dependency-report-<YYYYMMDD>.md
|
|
@@ -283,7 +283,7 @@ None
|
|
|
283
283
|
## Moderate (3)
|
|
284
284
|
[...]
|
|
285
285
|
|
|
286
|
-
**Recommendation**: Run /
|
|
286
|
+
**Recommendation**: Run /agileflow:packages ACTION=update SCOPE=security
|
|
287
287
|
```
|
|
288
288
|
|
|
289
289
|
---
|
|
@@ -292,29 +292,29 @@ None
|
|
|
292
292
|
|
|
293
293
|
```bash
|
|
294
294
|
# Show dependency dashboard (default)
|
|
295
|
-
/
|
|
296
|
-
/
|
|
295
|
+
/agileflow:packages
|
|
296
|
+
/agileflow:packages ACTION=dashboard
|
|
297
297
|
|
|
298
298
|
# Export dashboard as HTML
|
|
299
|
-
/
|
|
299
|
+
/agileflow:packages ACTION=dashboard OUTPUT=html
|
|
300
300
|
|
|
301
301
|
# Export as JSON for tooling
|
|
302
|
-
/
|
|
302
|
+
/agileflow:packages ACTION=dashboard OUTPUT=json > deps.json
|
|
303
303
|
|
|
304
304
|
# Security audit only
|
|
305
|
-
/
|
|
305
|
+
/agileflow:packages ACTION=audit
|
|
306
306
|
|
|
307
307
|
# Update security vulnerabilities
|
|
308
|
-
/
|
|
308
|
+
/agileflow:packages ACTION=update SCOPE=security
|
|
309
309
|
|
|
310
310
|
# Update all minor and patch versions
|
|
311
|
-
/
|
|
311
|
+
/agileflow:packages ACTION=update SCOPE=minor
|
|
312
312
|
|
|
313
313
|
# Update all with auto-PR
|
|
314
|
-
/
|
|
314
|
+
/agileflow:packages ACTION=update SCOPE=all AUTO_PR=yes
|
|
315
315
|
|
|
316
316
|
# Update only production dependencies
|
|
317
|
-
/
|
|
317
|
+
/agileflow:packages ACTION=update INCLUDE_DEV=no
|
|
318
318
|
```
|
|
319
319
|
|
|
320
320
|
---
|
|
@@ -330,7 +330,7 @@ Suggest adding automated checks:
|
|
|
330
330
|
run: npm outdated || true # Don't fail, just warn
|
|
331
331
|
|
|
332
332
|
- name: Generate dashboard
|
|
333
|
-
run: npx claude-code /
|
|
333
|
+
run: npx claude-code /agileflow:packages ACTION=dashboard
|
|
334
334
|
```
|
|
335
335
|
|
|
336
336
|
Suggest Dependabot config (.github/dependabot.yml):
|