agileflow 2.99.0 → 2.99.2

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.
Files changed (127) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/README.md +3 -3
  3. package/lib/dashboard-protocol.js +38 -0
  4. package/lib/dashboard-server.js +197 -7
  5. package/lib/feedback.js +36 -9
  6. package/lib/git-operations.js +4 -1
  7. package/lib/merge-operations.js +25 -0
  8. package/lib/progress.js +7 -6
  9. package/lib/session-operations.js +611 -0
  10. package/lib/session-switching.js +191 -0
  11. package/lib/template-loader.js +4 -2
  12. package/lib/worktree-operations.js +5 -25
  13. package/package.json +1 -1
  14. package/scripts/agileflow-configure.js +13 -0
  15. package/scripts/agileflow-welcome.js +11 -6
  16. package/scripts/batch-pmap-loop.js +11 -4
  17. package/scripts/claude-tmux.sh +186 -103
  18. package/scripts/damage-control-bash.js +33 -3
  19. package/scripts/damage-control-edit.js +33 -3
  20. package/scripts/damage-control-write.js +33 -3
  21. package/scripts/lib/configure-features.js +10 -7
  22. package/scripts/lib/configure-repair.js +12 -2
  23. package/scripts/lib/process-cleanup.js +197 -15
  24. package/scripts/obtain-context.js +5 -0
  25. package/scripts/session-manager.js +156 -932
  26. package/scripts/spawn-parallel.js +15 -11
  27. package/src/core/agents/configuration/archival.md +2 -1
  28. package/src/core/agents/configuration/attribution.md +2 -1
  29. package/src/core/agents/configuration/ci.md +2 -1
  30. package/src/core/agents/configuration/damage-control.md +2 -1
  31. package/src/core/agents/configuration/git-config.md +2 -1
  32. package/src/core/agents/configuration/hooks.md +2 -1
  33. package/src/core/agents/configuration/precompact.md +2 -1
  34. package/src/core/agents/configuration/status-line.md +2 -1
  35. package/src/core/agents/configuration/verify.md +2 -1
  36. package/src/core/commands/adr/list.md +1 -1
  37. package/src/core/commands/adr/update.md +1 -1
  38. package/src/core/commands/adr/view.md +1 -1
  39. package/src/core/commands/adr.md +1 -1
  40. package/src/core/commands/agent.md +1 -1
  41. package/src/core/commands/api.md +1 -1
  42. package/src/core/commands/assign.md +1 -1
  43. package/src/core/commands/audit.md +1 -1
  44. package/src/core/commands/auto.md +1 -1
  45. package/src/core/commands/automate.md +1 -1
  46. package/src/core/commands/babysit.md +1 -1
  47. package/src/core/commands/baseline.md +1 -1
  48. package/src/core/commands/batch.md +1 -1
  49. package/src/core/commands/blockers.md +1 -1
  50. package/src/core/commands/board.md +1 -1
  51. package/src/core/commands/changelog.md +1 -1
  52. package/src/core/commands/choose.md +1 -1
  53. package/src/core/commands/ci.md +1 -1
  54. package/src/core/commands/compress.md +1 -1
  55. package/src/core/commands/configure.md +56 -1
  56. package/src/core/commands/context/export.md +1 -1
  57. package/src/core/commands/context/full.md +1 -1
  58. package/src/core/commands/context/note.md +1 -1
  59. package/src/core/commands/council.md +1 -1
  60. package/src/core/commands/debt.md +1 -1
  61. package/src/core/commands/deploy.md +1 -1
  62. package/src/core/commands/deps.md +1 -1
  63. package/src/core/commands/diagnose.md +1 -1
  64. package/src/core/commands/docs.md +1 -1
  65. package/src/core/commands/epic/list.md +1 -1
  66. package/src/core/commands/epic/view.md +1 -1
  67. package/src/core/commands/epic.md +1 -1
  68. package/src/core/commands/feedback.md +1 -1
  69. package/src/core/commands/handoff.md +1 -1
  70. package/src/core/commands/help.md +4 -190
  71. package/src/core/commands/ideate/history.md +1 -1
  72. package/src/core/commands/ideate/new.md +1 -1
  73. package/src/core/commands/impact.md +1 -1
  74. package/src/core/commands/install.md +1 -1
  75. package/src/core/commands/logic/audit.md +1 -1
  76. package/src/core/commands/maintain.md +1 -1
  77. package/src/core/commands/metrics.md +1 -1
  78. package/src/core/commands/multi-expert.md +1 -1
  79. package/src/core/commands/packages.md +1 -1
  80. package/src/core/commands/pr.md +1 -1
  81. package/src/core/commands/readme-sync.md +1 -1
  82. package/src/core/commands/research/analyze.md +1 -1
  83. package/src/core/commands/research/ask.md +1 -1
  84. package/src/core/commands/research/import.md +1 -1
  85. package/src/core/commands/research/list.md +1 -1
  86. package/src/core/commands/research/synthesize.md +1 -1
  87. package/src/core/commands/research/view.md +1 -1
  88. package/src/core/commands/retro.md +1 -1
  89. package/src/core/commands/review.md +1 -1
  90. package/src/core/commands/rlm.md +1 -1
  91. package/src/core/commands/roadmap/analyze.md +1 -1
  92. package/src/core/commands/rpi.md +1 -1
  93. package/src/core/commands/serve.md +127 -0
  94. package/src/core/commands/session/cleanup.md +1 -1
  95. package/src/core/commands/session/end.md +84 -23
  96. package/src/core/commands/session/history.md +1 -1
  97. package/src/core/commands/session/init.md +1 -1
  98. package/src/core/commands/session/new.md +198 -84
  99. package/src/core/commands/session/resume.md +1 -1
  100. package/src/core/commands/session/spawn.md +1 -1
  101. package/src/core/commands/session/status.md +1 -1
  102. package/src/core/commands/skill/create.md +1 -1
  103. package/src/core/commands/skill/delete.md +1 -1
  104. package/src/core/commands/skill/edit.md +1 -1
  105. package/src/core/commands/skill/list.md +1 -1
  106. package/src/core/commands/skill/test.md +1 -1
  107. package/src/core/commands/skill/upgrade.md +1 -1
  108. package/src/core/commands/sprint.md +1 -1
  109. package/src/core/commands/status.md +1 -1
  110. package/src/core/commands/story/list.md +1 -1
  111. package/src/core/commands/story/view.md +1 -1
  112. package/src/core/commands/story-validate.md +1 -1
  113. package/src/core/commands/story.md +1 -1
  114. package/src/core/commands/team/list.md +1 -1
  115. package/src/core/commands/team/start.md +1 -1
  116. package/src/core/commands/team/status.md +1 -1
  117. package/src/core/commands/team/stop.md +1 -1
  118. package/src/core/commands/template.md +1 -1
  119. package/src/core/commands/tests.md +1 -1
  120. package/src/core/commands/update.md +1 -1
  121. package/src/core/commands/validate-expertise.md +1 -1
  122. package/src/core/commands/velocity.md +1 -1
  123. package/src/core/commands/verify.md +1 -1
  124. package/src/core/commands/whats-new.md +1 -1
  125. package/src/core/commands/workflow.md +1 -1
  126. package/tools/cli/installers/ide/codex.js +12 -4
  127. package/tools/cli/lib/content-injector.js +23 -4
@@ -31,6 +31,7 @@ const { c, success, warning, error, dim, bold } = require('../lib/colors');
31
31
  const { getProjectRoot, getStatusPath } = require('../lib/paths');
32
32
  const { safeReadJSON } = require('../lib/errors');
33
33
  const { getInheritedFlags, detectParentSessionFlags } = require('../lib/flag-detection');
34
+ const { feedback } = require('../lib/feedback');
34
35
 
35
36
  // Import session manager functions
36
37
  const sessionManager = require('./session-manager');
@@ -319,15 +320,19 @@ async function spawn(args) {
319
320
  console.log('');
320
321
  }
321
322
 
323
+ const task = feedback.task('Creating parallel sessions', sessionsToCreate.length);
322
324
  const createdSessions = [];
323
325
  for (const sessionSpec of sessionsToCreate) {
326
+ const spinner = feedback.spinner(`Creating session: ${sessionSpec.nickname}`);
327
+ spinner.start();
328
+
324
329
  const result = await sessionManager.createSession({
325
330
  nickname: sessionSpec.nickname,
326
331
  branch: sessionSpec.branch,
327
332
  });
328
333
 
329
334
  if (!result.success) {
330
- console.error(error(`Failed to create session ${sessionSpec.nickname}: ${result.error}`));
335
+ spinner.fail(`Failed: ${sessionSpec.nickname} - ${result.error}`);
331
336
  continue;
332
337
  }
333
338
 
@@ -343,8 +348,10 @@ async function spawn(args) {
343
348
  // Show what was copied
344
349
  const copied = [...(result.envFilesCopied || []), ...(result.foldersCopied || [])];
345
350
  const copyInfo = copied.length ? dim(` (copied: ${copied.join(', ')})`) : '';
346
- console.log(success(`Session ${result.sessionId}: ${sessionSpec.nickname}${copyInfo}`));
351
+ spinner.succeed(`Session ${result.sessionId}: ${sessionSpec.nickname}${copyInfo}`);
352
+ task.step(`${sessionSpec.nickname}`);
347
353
  }
354
+ task.complete(`Created ${createdSessions.length} sessions`);
348
355
 
349
356
  if (createdSessions.length === 0) {
350
357
  console.error(error('\nNo sessions were created.'));
@@ -520,17 +527,14 @@ async function addWindow(args) {
520
527
  // Get window number
521
528
  let windowIndex;
522
529
  try {
523
- windowIndex = execFileSync(
524
- 'tmux',
525
- ['list-windows', '-t', currentSession, '-F', '#I:#W'],
526
- {
530
+ windowIndex =
531
+ execFileSync('tmux', ['list-windows', '-t', currentSession, '-F', '#I:#W'], {
527
532
  encoding: 'utf8',
528
533
  stdio: ['pipe', 'pipe', 'pipe'],
529
- }
530
- )
531
- .split('\n')
532
- .find(line => line.endsWith(`:${windowName}`))
533
- ?.split(':')[0] || '?';
534
+ })
535
+ .split('\n')
536
+ .find(line => line.endsWith(`:${windowName}`))
537
+ ?.split(':')[0] || '?';
534
538
  } catch {
535
539
  windowIndex = '?';
536
540
  }
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  name: configuration-archival
3
3
  description: Configure AgileFlow auto-archival system for story status management
4
- tools: - Bash
4
+ tools:
5
+ - Bash
5
6
  - Read
6
7
  - Edit
7
8
  - Write
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  name: configuration-attribution
3
3
  description: Configure CLAUDE.md file with git attribution preferences
4
- tools: - Bash
4
+ tools:
5
+ - Bash
5
6
  - Read
6
7
  - Edit
7
8
  - Write
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  name: configuration-ci
3
3
  description: Configure CI/CD workflow for automated testing and quality checks
4
- tools: - Bash
4
+ tools:
5
+ - Bash
5
6
  - Read
6
7
  - Edit
7
8
  - Write
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  name: configuration-damage-control
3
3
  description: Configure AgileFlow damage control to protect against destructive commands
4
- tools: - Read
4
+ tools:
5
+ - Read
5
6
  - Write
6
7
  - Edit
7
8
  - Bash
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  name: configuration-git-config
3
3
  description: Configure git repository initialization and remote setup
4
- tools: - Bash
4
+ tools:
5
+ - Bash
5
6
  - Read
6
7
  - Edit
7
8
  - Write
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  name: configuration-hooks
3
3
  description: Configure AgileFlow hooks system for event-driven automation
4
- tools: - Bash
4
+ tools:
5
+ - Bash
5
6
  - Read
6
7
  - Edit
7
8
  - Write
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  name: precompact
3
3
  description: Configure PreCompact hook for context preservation during conversation compacts
4
- tools: - Read
4
+ tools:
5
+ - Read
5
6
  - Write
6
7
  - Edit
7
8
  - Bash
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  name: configuration-status-line
3
3
  description: Configure AgileFlow status line for Claude Code
4
- tools: - Bash
4
+ tools:
5
+ - Bash
5
6
  - Read
6
7
  - Edit
7
8
  - Write
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  name: configuration-verify
3
3
  description: Verify configuration and test that everything works
4
- tools: - Bash
4
+ tools:
5
+ - Bash
5
6
  - Read
6
7
  - Edit
7
8
  - Write
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: List all Architecture Decision Records
3
- argument-hint: [STATUS=<status>]
3
+ argument-hint: "[STATUS=<status>]"
4
4
  compact_context:
5
5
  priority: medium
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Update ADR status or content
3
- argument-hint: NUMBER=<number> [STATUS=<status>] [REASON=<text>]
3
+ argument-hint: "NUMBER=<number> [STATUS=<status>] [REASON=<text>]"
4
4
  compact_context:
5
5
  priority: high
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: View ADR details with contextual actions
3
- argument-hint: NUMBER=<number>
3
+ argument-hint: "NUMBER=<number>"
4
4
  compact_context:
5
5
  priority: medium
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Create an Architecture Decision Record
3
- argument-hint: NUMBER=<number> TITLE=<text> CONTEXT=<text> DECISION=<text> CONSEQUENCES=<text> [LINKS=<text>]
3
+ argument-hint: "NUMBER=<number> TITLE=<text> CONTEXT=<text> DECISION=<text> CONSEQUENCES=<text> [LINKS=<text>]"
4
4
  compact_context:
5
5
  priority: medium
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Onboard a new agent with profile and contract
3
- argument-hint: AGENT_ID=<id> ROLE=<text> [TOOLS=<list>] [SCOPE=<list>]
3
+ argument-hint: "AGENT_ID=<id> ROLE=<text> [TOOLS=<list>] [SCOPE=<list>]"
4
4
  compact_context:
5
5
  priority: high
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Start REST API server to expose AgileFlow state
3
- argument-hint: ACTION=start|stop|status [PORT=3456]
3
+ argument-hint: "ACTION=start|stop|status [PORT=3456]"
4
4
  compact_context:
5
5
  priority: medium
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Assign or reassign a story to an owner
3
- argument-hint: STORY=<US-ID> NEW_OWNER=<id> [NEW_STATUS=<status>] [NOTE=<text>]
3
+ argument-hint: "STORY=<US-ID> NEW_OWNER=<id> [NEW_STATUS=<status>] [NOTE=<text>]"
4
4
  compact_context:
5
5
  priority: high
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Audit story completion - tests + acceptance criteria verification (GSD pattern)
3
- argument-hint: STORY=<US-ID>
3
+ argument-hint: "STORY=<US-ID>"
4
4
  compact_context:
5
5
  priority: high
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Auto-generate stories from PRDs, mockups, or specs
3
- argument-hint: SOURCE=<path|url> [EPIC=<EP-ID>] [OWNER=<id>] [AUTO_CREATE=true|false]
3
+ argument-hint: "SOURCE=<path|url> [EPIC=<EP-ID>] [OWNER=<id>] [AUTO_CREATE=true|false]"
4
4
  compact_context:
5
5
  priority: high
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Manage scheduled automations for recurring tasks
3
- argument-hint: ACTION=list|add|edit|remove|run|presets [ID=<automation-id>]
3
+ argument-hint: "ACTION=list|add|edit|remove|run|presets [ID=<automation-id>]"
4
4
  compact_context:
5
5
  priority: medium
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Interactive mentor for end-to-end feature implementation
3
- argument-hint: [EPIC=<EP-ID>]
3
+ argument-hint: "[EPIC=<EP-ID>]"
4
4
  compact_context:
5
5
  priority: critical
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Mark current state as verified baseline
3
- argument-hint: [<message>]
3
+ argument-hint: "[<message>]"
4
4
  compact_context:
5
5
  priority: critical
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Process multiple items with functional patterns (map/pmap/filter/reduce)
3
- argument-hint: <operation> <pattern> [<action>]
3
+ argument-hint: "<operation> <pattern> [<action>]"
4
4
  compact_context:
5
5
  priority: normal
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Track and resolve blockers with actionable suggestions
3
- argument-hint: [AGENT=<id>] [SHOW_RESOLVED=true|false] [DETAILED=true|false]
3
+ argument-hint: "[AGENT=<id>] [SHOW_RESOLVED=true|false] [DETAILED=true|false]"
4
4
  model: haiku
5
5
  compact_context:
6
6
  priority: high
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Display visual kanban board with WIP limits
3
- argument-hint: [EPIC=<EP-ID>] [OWNER=<id>] [FORMAT=ascii|markdown|html] [GROUP_BY=status|owner|epic]
3
+ argument-hint: "[EPIC=<EP-ID>] [OWNER=<id>] [FORMAT=ascii|markdown|html] [GROUP_BY=status|owner|epic]"
4
4
  model: haiku
5
5
  type: output-only # Board display - read-only visualization, not an ongoing task
6
6
  compact_context:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Auto-generate changelog from commit history
3
- argument-hint: (no arguments)
3
+ argument-hint: "(no arguments)"
4
4
  compact_context:
5
5
  priority: high
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: AI-directed decision making with structured options
3
- argument-hint: <decision> [<context>]
3
+ argument-hint: "<decision> [<context>]"
4
4
  compact_context:
5
5
  priority: normal
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Bootstrap CI/CD workflow with testing and quality checks
3
- argument-hint: (no arguments)
3
+ argument-hint: "(no arguments)"
4
4
  compact_context:
5
5
  priority: high
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Compress status.json by removing verbose fields and keeping only tracking metadata
3
- argument-hint: (no arguments)
3
+ argument-hint: "(no arguments)"
4
4
  compact_context:
5
5
  priority: high
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Configure AgileFlow features, hooks, and project infrastructure (Visual E2E, CI, git)
3
- argument-hint: [--profile=<name>] [--save-profile=<name>] [--list-profiles] [--export-profile=<name>] [--import-profile=<file>] [--enable/--disable=features]
3
+ argument-hint: "[--profile=<name>] [--save-profile=<name>] [--list-profiles] [--export-profile=<name>] [--import-profile=<file>] [--enable/--disable=features]"
4
4
  compact_context:
5
5
  priority: critical
6
6
  preserve_rules:
@@ -443,6 +443,61 @@ When creating new sessions with /agileflow:session:new, this will be the
443
443
  recommended option. You can still choose a different mode per-session.
444
444
  ```
445
445
 
446
+ **If user selected "Skip permissions" or "Accept edits only"**, offer Claude settings integration:
447
+
448
+ ```xml
449
+ <invoke name="AskUserQuestion">
450
+ <parameter name="questions">[{
451
+ "question": "Also configure Claude to default to this mode?",
452
+ "header": "Claude settings",
453
+ "multiSelect": false,
454
+ "options": [
455
+ {"label": "af wrapper only (Recommended)", "description": "The 'af' command already uses this setting. No other changes needed."},
456
+ {"label": "Also add shell alias", "description": "Add alias to your shell profile so 'claude' also uses this mode"},
457
+ {"label": "No thanks", "description": "Keep current setup"}
458
+ ]
459
+ }]</parameter>
460
+ </invoke>
461
+ ```
462
+
463
+ **If "Also add shell alias" selected:**
464
+
465
+ Determine the flag based on the selected mode:
466
+ - `skip-permissions` → `--dangerously-skip-permissions`
467
+ - `accept-edits` → `--permission-mode acceptEdits`
468
+
469
+ ```bash
470
+ # Detect shell config file
471
+ SHELL_RC="$HOME/.bashrc"
472
+ [ -f "$HOME/.zshrc" ] && SHELL_RC="$HOME/.zshrc"
473
+
474
+ # Check if alias already exists
475
+ grep -q 'alias claude=' "$SHELL_RC" 2>/dev/null
476
+ ```
477
+
478
+ If alias doesn't exist, add it using the Edit tool on the shell RC file:
479
+ ```bash
480
+ # Append alias (idempotent - only if not already present)
481
+ # For skip-permissions:
482
+ echo 'alias claude="claude --dangerously-skip-permissions"' >> "$SHELL_RC"
483
+ # For accept-edits:
484
+ echo 'alias claude="claude --permission-mode acceptEdits"' >> "$SHELL_RC"
485
+ ```
486
+
487
+ Display:
488
+ ```
489
+ ✅ Shell alias added to {SHELL_RC}
490
+ Run `source {SHELL_RC}` or open a new terminal for the alias to take effect.
491
+
492
+ To remove later: edit {SHELL_RC} and remove the 'alias claude=' line.
493
+ ```
494
+
495
+ **If "af wrapper only" or "No thanks" selected:**
496
+ ```
497
+ The 'af' command already reads the configured startup mode automatically.
498
+ No additional changes needed.
499
+ ```
500
+
446
501
  ---
447
502
 
448
503
  ### If "Infrastructure" selected
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Export concise context excerpt for web AI tools
3
- argument-hint: (no arguments)
3
+ argument-hint: "(no arguments)"
4
4
  compact_context:
5
5
  priority: medium
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Generate/refresh full context brief for web AI tools
3
- argument-hint: (no arguments)
3
+ argument-hint: "(no arguments)"
4
4
  compact_context:
5
5
  priority: high
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Add timestamped note to context file
3
- argument-hint: NOTE=<text>
3
+ argument-hint: "NOTE=<text>"
4
4
  compact_context:
5
5
  priority: high
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Convene AI Council for strategic decisions with three perspectives (Optimist, Advocate, Analyst)
3
- argument-hint: <question> [--mode parallel|debate] [--rounds N]
3
+ argument-hint: "<question> [--mode parallel|debate] [--rounds N]"
4
4
  compact_context:
5
5
  priority: high
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Track and prioritize technical debt items
3
- argument-hint: (no arguments)
3
+ argument-hint: "(no arguments)"
4
4
  compact_context:
5
5
  priority: medium
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Set up automated deployment pipeline
3
- argument-hint: (no arguments)
3
+ argument-hint: "(no arguments)"
4
4
  compact_context:
5
5
  priority: high
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Visualize dependency graph with critical path detection
3
- argument-hint: [SCOPE=story|epic|all] [EPIC=<EP-ID>] [STORY=<US-ID>] [FORMAT=ascii|mermaid|graphviz|json] [ANALYSIS=critical-path|circular|blocking|all]
3
+ argument-hint: "[SCOPE=story|epic|all] [EPIC=<EP-ID>] [STORY=<US-ID>] [FORMAT=ascii|mermaid|graphviz|json] [ANALYSIS=critical-path|circular|blocking|all]"
4
4
  model: haiku
5
5
  compact_context:
6
6
  priority: high
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: System health diagnostics
3
- argument-hint: (no arguments)
3
+ argument-hint: "(no arguments)"
4
4
  compact_context:
5
5
  priority: high
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Synchronize documentation with code changes
3
- argument-hint: [BRANCH=<name>] [BASE=<branch>] [AUTO_CREATE=true|false]
3
+ argument-hint: "[BRANCH=<name>] [BASE=<branch>] [AUTO_CREATE=true|false]"
4
4
  compact_context:
5
5
  priority: high
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: List all epics with status and progress
3
- argument-hint: [STATUS=<status>]
3
+ argument-hint: "[STATUS=<status>]"
4
4
  compact_context:
5
5
  priority: medium
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: View epic details with stories and contextual actions
3
- argument-hint: EPIC=<EP-ID>
3
+ argument-hint: "EPIC=<EP-ID>"
4
4
  compact_context:
5
5
  priority: medium
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Create a new epic with stories
3
- argument-hint: EPIC=<EP-ID> TITLE=<text> OWNER=<id> GOAL=<text> [STORIES=<list>] [RESEARCH=<file>]
3
+ argument-hint: "EPIC=<EP-ID> TITLE=<text> OWNER=<id> GOAL=<text> [STORIES=<list>] [RESEARCH=<file>]"
4
4
  compact_context:
5
5
  priority: high
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Collect and process agent feedback
3
- argument-hint: (no arguments)
3
+ argument-hint: "(no arguments)"
4
4
  compact_context:
5
5
  priority: medium
6
6
  preserve_rules:
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Document work handoff between agents
3
- argument-hint: STORY=<US-ID> FROM=<id> TO=<id> [SUMMARY=<text>] [BLOCKERS=<list>]
3
+ argument-hint: "STORY=<US-ID> FROM=<id> TO=<id> [SUMMARY=<text>] [BLOCKERS=<list>]"
4
4
  compact_context:
5
5
  priority: high
6
6
  preserve_rules: