agileflow 2.41.0 → 2.43.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.
Files changed (67) hide show
  1. package/package.json +1 -1
  2. package/src/core/agents/accessibility.md +8 -0
  3. package/src/core/agents/adr-writer.md +8 -0
  4. package/src/core/agents/analytics.md +8 -0
  5. package/src/core/agents/api.md +8 -2
  6. package/src/core/agents/ci.md +8 -0
  7. package/src/core/agents/compliance.md +8 -0
  8. package/src/core/agents/configuration/archival.md +46 -1
  9. package/src/core/agents/configuration/attribution.md +22 -1
  10. package/src/core/agents/configuration/ci.md +23 -1
  11. package/src/core/agents/configuration/git-config.md +23 -1
  12. package/src/core/agents/configuration/hooks.md +22 -1
  13. package/src/core/agents/configuration/precompact.md +8 -0
  14. package/src/core/agents/configuration/status-line.md +116 -13
  15. package/src/core/agents/configuration/verify.md +23 -1
  16. package/src/core/agents/database.md +8 -2
  17. package/src/core/agents/datamigration.md +8 -0
  18. package/src/core/agents/design.md +8 -0
  19. package/src/core/agents/devops.md +8 -2
  20. package/src/core/agents/documentation.md +8 -0
  21. package/src/core/agents/epic-planner.md +8 -0
  22. package/src/core/agents/integrations.md +8 -0
  23. package/src/core/agents/mentor.md +8 -3
  24. package/src/core/agents/mobile.md +8 -0
  25. package/src/core/agents/monitoring.md +8 -0
  26. package/src/core/agents/multi-expert.md +8 -0
  27. package/src/core/agents/performance.md +8 -2
  28. package/src/core/agents/product.md +8 -0
  29. package/src/core/agents/qa.md +8 -0
  30. package/src/core/agents/readme-updater.md +8 -0
  31. package/src/core/agents/refactor.md +8 -2
  32. package/src/core/agents/research.md +8 -0
  33. package/src/core/agents/security.md +8 -2
  34. package/src/core/agents/testing.md +8 -0
  35. package/src/core/agents/ui.md +8 -2
  36. package/src/core/commands/adr.md +2 -13
  37. package/src/core/commands/agent.md +2 -13
  38. package/src/core/commands/assign.md +2 -13
  39. package/src/core/commands/auto.md +2 -13
  40. package/src/core/commands/babysit.md +94 -88
  41. package/src/core/commands/baseline.md +2 -13
  42. package/src/core/commands/blockers.md +4 -13
  43. package/src/core/commands/board.md +4 -13
  44. package/src/core/commands/configure.md +187 -433
  45. package/src/core/commands/deps.md +4 -15
  46. package/src/core/commands/docs.md +2 -15
  47. package/src/core/commands/epic.md +4 -15
  48. package/src/core/commands/help.md +3 -14
  49. package/src/core/commands/metrics.md +4 -15
  50. package/src/core/commands/packages.md +3 -14
  51. package/src/core/commands/pr.md +4 -13
  52. package/src/core/commands/readme-sync.md +7 -24
  53. package/src/core/commands/research.md +3 -14
  54. package/src/core/commands/retro.md +4 -15
  55. package/src/core/commands/sprint.md +8 -0
  56. package/src/core/commands/status.md +5 -14
  57. package/src/core/commands/story-validate.md +3 -14
  58. package/src/core/commands/story.md +17 -17
  59. package/src/core/commands/template.md +2 -15
  60. package/src/core/commands/tests.md +2 -15
  61. package/src/core/commands/update.md +2 -15
  62. package/src/core/commands/validate-expertise.md +2 -15
  63. package/src/core/commands/velocity.md +4 -15
  64. package/src/core/commands/verify.md +4 -15
  65. package/src/core/templates/agileflow-configure.js +927 -0
  66. package/src/core/templates/agileflow-metadata.json +12 -0
  67. package/src/core/templates/agileflow-statusline.sh +238 -44
@@ -7,23 +7,14 @@ model: haiku
7
7
 
8
8
  Generate a visual kanban board from current story statuses.
9
9
 
10
- ## STEP 0: Activate Command
10
+ ## STEP 0: Gather Context
11
11
 
12
12
  ```bash
13
- node -e "
14
- const fs = require('fs');
15
- const path = 'docs/09-agents/session-state.json';
16
- if (fs.existsSync(path)) {
17
- const state = JSON.parse(fs.readFileSync(path, 'utf8'));
18
- const cmd = { name: 'board', activated_at: new Date().toISOString(), state: {} };
19
- state.active_commands = state.active_commands || [];
20
- if (!state.active_commands.some(c => c.name === cmd.name)) state.active_commands.push(cmd);
21
- fs.writeFileSync(path, JSON.stringify(state, null, 2) + '\n');
22
- console.log('✅ board command activated');
23
- }
24
- "
13
+ node scripts/obtain-context.js board
25
14
  ```
26
15
 
16
+ This gathers git status, stories/epics, session state, and registers for PreCompact.
17
+
27
18
  <!-- COMPACT_SUMMARY_START -->
28
19
  ## Compact Summary
29
20