agileflow 4.0.0-alpha.8 → 4.0.0-alpha.9

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 (219) hide show
  1. package/content/plugins/accessibility/plugin.yaml +0 -1
  2. package/content/plugins/ads/plugin.yaml +0 -35
  3. package/content/plugins/audit/plugin.yaml +0 -39
  4. package/content/plugins/core/plugin.yaml +0 -119
  5. package/content/plugins/council/plugin.yaml +0 -5
  6. package/content/plugins/database/plugin.yaml +0 -1
  7. package/content/plugins/debugging/plugin.yaml +0 -1
  8. package/content/plugins/delivery/plugin.yaml +0 -15
  9. package/content/plugins/docs/plugin.yaml +0 -19
  10. package/content/plugins/engineering/plugin.yaml +0 -1
  11. package/content/plugins/ideation/plugin.yaml +0 -13
  12. package/content/plugins/migration/plugin.yaml +0 -11
  13. package/content/plugins/performance/plugin.yaml +0 -1
  14. package/content/plugins/planning/plugin.yaml +0 -23
  15. package/content/plugins/psychology/plugin.yaml +0 -1
  16. package/content/plugins/refactoring/plugin.yaml +0 -1
  17. package/content/plugins/research/plugin.yaml +0 -15
  18. package/content/plugins/reviews/plugin.yaml +0 -1
  19. package/content/plugins/seo/plugin.yaml +0 -35
  20. package/content/plugins/testing/plugin.yaml +0 -1
  21. package/package.json +1 -3
  22. package/src/cli/commands/doctor.js +649 -9
  23. package/src/cli/commands/hook.js +11 -8
  24. package/src/cli/commands/launch.js +1210 -0
  25. package/src/cli/commands/learn.js +31 -16
  26. package/src/cli/commands/plugins.js +7 -3
  27. package/src/cli/commands/setup.js +311 -125
  28. package/src/cli/commands/skills.js +39 -23
  29. package/src/cli/commands/update.js +26 -10
  30. package/src/cli/index.js +13 -0
  31. package/src/cli/wizard/babysit-mode-picker.js +39 -66
  32. package/src/cli/wizard/launch-alias-picker.js +50 -0
  33. package/src/cli/wizard/launch-cli-picker.js +129 -0
  34. package/src/cli/wizard/launch-tmux-picker.js +133 -0
  35. package/src/cli/wizard/plugin-picker.js +18 -23
  36. package/src/lib/errors.js +120 -0
  37. package/src/lib/path-check.js +39 -0
  38. package/src/runtime/ide/claude-code-settings.js +13 -0
  39. package/src/runtime/installer/install.js +78 -13
  40. package/src/runtime/launch/alias-installer.js +191 -0
  41. package/src/runtime/launch/cli-resume.js +244 -0
  42. package/src/runtime/launch/defaults.js +66 -0
  43. package/src/runtime/launch/detect-clis.js +69 -0
  44. package/src/runtime/launch/doctor.js +464 -0
  45. package/src/runtime/launch/exec-wrapper.js +114 -0
  46. package/src/runtime/launch/parallel-session.js +247 -0
  47. package/src/runtime/launch/prefs.js +211 -0
  48. package/src/runtime/launch/project-prefs.js +234 -0
  49. package/src/runtime/launch/resolve-cli.js +56 -0
  50. package/src/runtime/launch/restore.js +142 -0
  51. package/src/runtime/launch/schema.json +75 -0
  52. package/src/runtime/launch/session-lifecycle.js +313 -0
  53. package/src/runtime/launch/session-registry.js +401 -0
  54. package/src/runtime/launch/spawn.js +103 -0
  55. package/src/runtime/launch/tmux.js +560 -0
  56. package/src/runtime/launch/worktree.js +260 -0
  57. package/src/runtime/plugins/registry.js +16 -11
  58. package/src/runtime/plugins/validator.js +57 -43
  59. package/content/plugins/ads/commands/ads/audit.md +0 -464
  60. package/content/plugins/ads/commands/ads/budget.md +0 -100
  61. package/content/plugins/ads/commands/ads/competitor.md +0 -119
  62. package/content/plugins/ads/commands/ads/creative.md +0 -88
  63. package/content/plugins/ads/commands/ads/generate.md +0 -242
  64. package/content/plugins/ads/commands/ads/google.md +0 -115
  65. package/content/plugins/ads/commands/ads/health.md +0 -331
  66. package/content/plugins/ads/commands/ads/landing.md +0 -126
  67. package/content/plugins/ads/commands/ads/linkedin.md +0 -167
  68. package/content/plugins/ads/commands/ads/meta.md +0 -94
  69. package/content/plugins/ads/commands/ads/microsoft.md +0 -170
  70. package/content/plugins/ads/commands/ads/plan.md +0 -351
  71. package/content/plugins/ads/commands/ads/test-plan.md +0 -321
  72. package/content/plugins/ads/commands/ads/tiktok.md +0 -185
  73. package/content/plugins/ads/commands/ads/track.md +0 -303
  74. package/content/plugins/ads/commands/ads/youtube.md +0 -179
  75. package/content/plugins/ads/commands/ads.md +0 -143
  76. package/content/plugins/audit/commands/audit.md +0 -552
  77. package/content/plugins/audit/commands/browser-qa.md +0 -249
  78. package/content/plugins/audit/commands/code/accessibility.md +0 -430
  79. package/content/plugins/audit/commands/code/api.md +0 -380
  80. package/content/plugins/audit/commands/code/architecture.md +0 -380
  81. package/content/plugins/audit/commands/code/completeness.md +0 -589
  82. package/content/plugins/audit/commands/code/flows.md +0 -533
  83. package/content/plugins/audit/commands/code/legal.md +0 -581
  84. package/content/plugins/audit/commands/code/logic.md +0 -498
  85. package/content/plugins/audit/commands/code/performance.md +0 -577
  86. package/content/plugins/audit/commands/code/quality.md +0 -537
  87. package/content/plugins/audit/commands/code/security.md +0 -580
  88. package/content/plugins/audit/commands/code/test.md +0 -576
  89. package/content/plugins/audit/commands/code.md +0 -35
  90. package/content/plugins/audit/commands/review.md +0 -731
  91. package/content/plugins/audit/commands/tdd-next.md +0 -292
  92. package/content/plugins/audit/commands/tdd.md +0 -244
  93. package/content/plugins/audit/commands/tests.md +0 -769
  94. package/content/plugins/audit/commands/verify.md +0 -567
  95. package/content/plugins/core/commands/adr/list.md +0 -199
  96. package/content/plugins/core/commands/adr/update.md +0 -264
  97. package/content/plugins/core/commands/adr/view.md +0 -284
  98. package/content/plugins/core/commands/adr.md +0 -407
  99. package/content/plugins/core/commands/agent.md +0 -264
  100. package/content/plugins/core/commands/assign.md +0 -393
  101. package/content/plugins/core/commands/auto.md +0 -598
  102. package/content/plugins/core/commands/babysit.md +0 -744
  103. package/content/plugins/core/commands/baseline.md +0 -778
  104. package/content/plugins/core/commands/batch.md +0 -566
  105. package/content/plugins/core/commands/blockers.md +0 -638
  106. package/content/plugins/core/commands/board.md +0 -555
  107. package/content/plugins/core/commands/channels.md +0 -129
  108. package/content/plugins/core/commands/choose.md +0 -444
  109. package/content/plugins/core/commands/compact/search.md +0 -42
  110. package/content/plugins/core/commands/compress.md +0 -442
  111. package/content/plugins/core/commands/configure.md +0 -1202
  112. package/content/plugins/core/commands/context/export.md +0 -316
  113. package/content/plugins/core/commands/context/full.md +0 -386
  114. package/content/plugins/core/commands/context/note.md +0 -389
  115. package/content/plugins/core/commands/debt.md +0 -536
  116. package/content/plugins/core/commands/epic/edit.md +0 -226
  117. package/content/plugins/core/commands/epic/list.md +0 -229
  118. package/content/plugins/core/commands/epic/view.md +0 -277
  119. package/content/plugins/core/commands/epic.md +0 -499
  120. package/content/plugins/core/commands/handoff.md +0 -406
  121. package/content/plugins/core/commands/help.md +0 -201
  122. package/content/plugins/core/commands/install.md +0 -541
  123. package/content/plugins/core/commands/maintain.md +0 -571
  124. package/content/plugins/core/commands/retro.md +0 -836
  125. package/content/plugins/core/commands/session/cleanup.md +0 -489
  126. package/content/plugins/core/commands/session/end.md +0 -911
  127. package/content/plugins/core/commands/session/history.md +0 -300
  128. package/content/plugins/core/commands/session/init.md +0 -219
  129. package/content/plugins/core/commands/session/new.md +0 -863
  130. package/content/plugins/core/commands/session/resume.md +0 -302
  131. package/content/plugins/core/commands/session/spawn.md +0 -211
  132. package/content/plugins/core/commands/session/status.md +0 -284
  133. package/content/plugins/core/commands/status/undo.md +0 -207
  134. package/content/plugins/core/commands/status.md +0 -450
  135. package/content/plugins/core/commands/story/edit.md +0 -217
  136. package/content/plugins/core/commands/story/list.md +0 -232
  137. package/content/plugins/core/commands/story/view.md +0 -321
  138. package/content/plugins/core/commands/story-validate.md +0 -517
  139. package/content/plugins/core/commands/story.md +0 -496
  140. package/content/plugins/core/commands/team/guide.md +0 -748
  141. package/content/plugins/core/commands/team/list.md +0 -61
  142. package/content/plugins/core/commands/team/start.md +0 -137
  143. package/content/plugins/core/commands/team/status.md +0 -68
  144. package/content/plugins/core/commands/team/stop.md +0 -80
  145. package/content/plugins/core/commands/template.md +0 -680
  146. package/content/plugins/core/commands/update.md +0 -640
  147. package/content/plugins/core/commands/validate-expertise.md +0 -326
  148. package/content/plugins/core/commands/whats-new.md +0 -206
  149. package/content/plugins/core/commands/workflow.md +0 -479
  150. package/content/plugins/core/commands/workspace/init.md +0 -114
  151. package/content/plugins/core/commands/workspace/spawn.md +0 -152
  152. package/content/plugins/core/commands/workspace/status.md +0 -101
  153. package/content/plugins/core/commands/workspace.md +0 -26
  154. package/content/plugins/council/commands/council.md +0 -631
  155. package/content/plugins/council/commands/multi-expert.md +0 -465
  156. package/content/plugins/delivery/commands/changelog.md +0 -634
  157. package/content/plugins/delivery/commands/ci.md +0 -344
  158. package/content/plugins/delivery/commands/deploy.md +0 -907
  159. package/content/plugins/delivery/commands/deps.md +0 -758
  160. package/content/plugins/delivery/commands/packages.md +0 -577
  161. package/content/plugins/delivery/commands/pr.md +0 -346
  162. package/content/plugins/delivery/commands/sprint.md +0 -739
  163. package/content/plugins/docs/commands/docs.md +0 -496
  164. package/content/plugins/docs/commands/learn/explain.md +0 -126
  165. package/content/plugins/docs/commands/learn/glossary.md +0 -140
  166. package/content/plugins/docs/commands/learn/patterns.md +0 -143
  167. package/content/plugins/docs/commands/learn/tour.md +0 -134
  168. package/content/plugins/docs/commands/learn.md +0 -28
  169. package/content/plugins/docs/commands/readme-sync.md +0 -347
  170. package/content/plugins/docs/commands/skill/list.md +0 -149
  171. package/content/plugins/docs/commands/skill/recommend.md +0 -226
  172. package/content/plugins/ideation/commands/ideate/brief.md +0 -392
  173. package/content/plugins/ideation/commands/ideate/discover.md +0 -423
  174. package/content/plugins/ideation/commands/ideate/features.md +0 -509
  175. package/content/plugins/ideation/commands/ideate/history.md +0 -408
  176. package/content/plugins/ideation/commands/ideate/new.md +0 -940
  177. package/content/plugins/ideation/commands/ideate.md +0 -29
  178. package/content/plugins/migration/commands/migrate/codemods.md +0 -154
  179. package/content/plugins/migration/commands/migrate/plan.md +0 -140
  180. package/content/plugins/migration/commands/migrate/scan.md +0 -121
  181. package/content/plugins/migration/commands/migrate/validate.md +0 -123
  182. package/content/plugins/migration/commands/migrate.md +0 -28
  183. package/content/plugins/planning/commands/api.md +0 -281
  184. package/content/plugins/planning/commands/automate.md +0 -432
  185. package/content/plugins/planning/commands/diagnose.md +0 -418
  186. package/content/plugins/planning/commands/export.md +0 -243
  187. package/content/plugins/planning/commands/feedback.md +0 -680
  188. package/content/plugins/planning/commands/impact.md +0 -443
  189. package/content/plugins/planning/commands/metrics.md +0 -891
  190. package/content/plugins/planning/commands/rlm.md +0 -461
  191. package/content/plugins/planning/commands/roadmap/analyze.md +0 -416
  192. package/content/plugins/planning/commands/rpi.md +0 -665
  193. package/content/plugins/planning/commands/velocity.md +0 -657
  194. package/content/plugins/research/commands/research/analyze.md +0 -810
  195. package/content/plugins/research/commands/research/ask.md +0 -885
  196. package/content/plugins/research/commands/research/import.md +0 -1039
  197. package/content/plugins/research/commands/research/list.md +0 -272
  198. package/content/plugins/research/commands/research/synthesize.md +0 -943
  199. package/content/plugins/research/commands/research/view.md +0 -326
  200. package/content/plugins/research/commands/skill/research.md +0 -278
  201. package/content/plugins/seo/commands/seo/audit.md +0 -454
  202. package/content/plugins/seo/commands/seo/competitor.md +0 -183
  203. package/content/plugins/seo/commands/seo/content.md +0 -127
  204. package/content/plugins/seo/commands/seo/geo.md +0 -236
  205. package/content/plugins/seo/commands/seo/hreflang.md +0 -144
  206. package/content/plugins/seo/commands/seo/images.md +0 -116
  207. package/content/plugins/seo/commands/seo/page.md +0 -206
  208. package/content/plugins/seo/commands/seo/plan.md +0 -176
  209. package/content/plugins/seo/commands/seo/programmatic.md +0 -135
  210. package/content/plugins/seo/commands/seo/references/cwv-thresholds.md +0 -64
  211. package/content/plugins/seo/commands/seo/references/eeat-framework.md +0 -110
  212. package/content/plugins/seo/commands/seo/references/quality-gates.md +0 -96
  213. package/content/plugins/seo/commands/seo/references/schema-types.md +0 -102
  214. package/content/plugins/seo/commands/seo/schema.md +0 -194
  215. package/content/plugins/seo/commands/seo/sitemap.md +0 -99
  216. package/content/plugins/seo/commands/seo/technical.md +0 -120
  217. package/content/plugins/seo/commands/seo.md +0 -109
  218. package/src/cli/wizard/babysit-mode-picker-clean.js +0 -192
  219. package/src/cli/wizard/behaviors-picker-clean.js +0 -127
@@ -6,7 +6,6 @@ enabledByDefault: false
6
6
  cannotDisable: false
7
7
  depends: []
8
8
  provides:
9
- commands: []
10
9
  skills:
11
10
  - id: agileflow-accessibility
12
11
  dir: skills/agileflow-accessibility
@@ -7,41 +7,6 @@ enabledByDefault: false
7
7
  depends: []
8
8
 
9
9
  provides:
10
- commands:
11
- - id: ads
12
- path: commands/ads.md
13
- - id: ads-audit
14
- path: commands/ads/audit.md
15
- - id: ads-budget
16
- path: commands/ads/budget.md
17
- - id: ads-competitor
18
- path: commands/ads/competitor.md
19
- - id: ads-creative
20
- path: commands/ads/creative.md
21
- - id: ads-generate
22
- path: commands/ads/generate.md
23
- - id: ads-google
24
- path: commands/ads/google.md
25
- - id: ads-health
26
- path: commands/ads/health.md
27
- - id: ads-landing
28
- path: commands/ads/landing.md
29
- - id: ads-linkedin
30
- path: commands/ads/linkedin.md
31
- - id: ads-meta
32
- path: commands/ads/meta.md
33
- - id: ads-microsoft
34
- path: commands/ads/microsoft.md
35
- - id: ads-plan
36
- path: commands/ads/plan.md
37
- - id: ads-test-plan
38
- path: commands/ads/test-plan.md
39
- - id: ads-tiktok
40
- path: commands/ads/tiktok.md
41
- - id: ads-track
42
- path: commands/ads/track.md
43
- - id: ads-youtube
44
- path: commands/ads/youtube.md
45
10
  skills:
46
11
  - id: agileflow-ads
47
12
  dir: skills/agileflow-ads
@@ -7,45 +7,6 @@ enabledByDefault: false
7
7
  depends: []
8
8
 
9
9
  provides:
10
- commands:
11
- - id: audit
12
- path: commands/audit.md
13
- - id: browser-qa
14
- path: commands/browser-qa.md
15
- - id: code
16
- path: commands/code.md
17
- - id: code-accessibility
18
- path: commands/code/accessibility.md
19
- - id: code-api
20
- path: commands/code/api.md
21
- - id: code-architecture
22
- path: commands/code/architecture.md
23
- - id: code-completeness
24
- path: commands/code/completeness.md
25
- - id: code-flows
26
- path: commands/code/flows.md
27
- - id: code-legal
28
- path: commands/code/legal.md
29
- - id: code-logic
30
- path: commands/code/logic.md
31
- - id: code-performance
32
- path: commands/code/performance.md
33
- - id: code-quality
34
- path: commands/code/quality.md
35
- - id: code-security
36
- path: commands/code/security.md
37
- - id: code-test
38
- path: commands/code/test.md
39
- - id: review
40
- path: commands/review.md
41
- - id: tdd-next
42
- path: commands/tdd-next.md
43
- - id: tdd
44
- path: commands/tdd.md
45
- - id: tests
46
- path: commands/tests.md
47
- - id: verify
48
- path: commands/verify.md
49
10
  skills:
50
11
  - id: agileflow-audit
51
12
  dir: skills/agileflow-audit
@@ -8,125 +8,6 @@ cannotDisable: true
8
8
  depends: []
9
9
 
10
10
  provides:
11
- commands:
12
- - id: adr
13
- path: commands/adr.md
14
- - id: adr-list
15
- path: commands/adr/list.md
16
- - id: adr-update
17
- path: commands/adr/update.md
18
- - id: adr-view
19
- path: commands/adr/view.md
20
- - id: agent
21
- path: commands/agent.md
22
- - id: assign
23
- path: commands/assign.md
24
- - id: auto
25
- path: commands/auto.md
26
- - id: babysit
27
- path: commands/babysit.md
28
- - id: baseline
29
- path: commands/baseline.md
30
- - id: batch
31
- path: commands/batch.md
32
- - id: blockers
33
- path: commands/blockers.md
34
- - id: board
35
- path: commands/board.md
36
- - id: channels
37
- path: commands/channels.md
38
- - id: choose
39
- path: commands/choose.md
40
- - id: compact-search
41
- path: commands/compact/search.md
42
- - id: compress
43
- path: commands/compress.md
44
- - id: configure
45
- path: commands/configure.md
46
- - id: context-export
47
- path: commands/context/export.md
48
- - id: context-full
49
- path: commands/context/full.md
50
- - id: context-note
51
- path: commands/context/note.md
52
- - id: debt
53
- path: commands/debt.md
54
- - id: epic
55
- path: commands/epic.md
56
- - id: epic-edit
57
- path: commands/epic/edit.md
58
- - id: epic-list
59
- path: commands/epic/list.md
60
- - id: epic-view
61
- path: commands/epic/view.md
62
- - id: handoff
63
- path: commands/handoff.md
64
- - id: help
65
- path: commands/help.md
66
- - id: install
67
- path: commands/install.md
68
- - id: maintain
69
- path: commands/maintain.md
70
- - id: retro
71
- path: commands/retro.md
72
- - id: session-cleanup
73
- path: commands/session/cleanup.md
74
- - id: session-end
75
- path: commands/session/end.md
76
- - id: session-history
77
- path: commands/session/history.md
78
- - id: session-init
79
- path: commands/session/init.md
80
- - id: session-new
81
- path: commands/session/new.md
82
- - id: session-resume
83
- path: commands/session/resume.md
84
- - id: session-spawn
85
- path: commands/session/spawn.md
86
- - id: session-status
87
- path: commands/session/status.md
88
- - id: status
89
- path: commands/status.md
90
- - id: status-undo
91
- path: commands/status/undo.md
92
- - id: story-validate
93
- path: commands/story-validate.md
94
- - id: story
95
- path: commands/story.md
96
- - id: story-edit
97
- path: commands/story/edit.md
98
- - id: story-list
99
- path: commands/story/list.md
100
- - id: story-view
101
- path: commands/story/view.md
102
- - id: team-guide
103
- path: commands/team/guide.md
104
- - id: team-list
105
- path: commands/team/list.md
106
- - id: team-start
107
- path: commands/team/start.md
108
- - id: team-status
109
- path: commands/team/status.md
110
- - id: team-stop
111
- path: commands/team/stop.md
112
- - id: template
113
- path: commands/template.md
114
- - id: update
115
- path: commands/update.md
116
- - id: validate-expertise
117
- path: commands/validate-expertise.md
118
- - id: whats-new
119
- path: commands/whats-new.md
120
- - id: workflow
121
- path: commands/workflow.md
122
- - id: workspace
123
- path: commands/workspace.md
124
- - id: workspace-init
125
- path: commands/workspace/init.md
126
- - id: workspace-spawn
127
- path: commands/workspace/spawn.md
128
- - id: workspace-status
129
- path: commands/workspace/status.md
130
11
  skills:
131
12
  - id: agileflow-adr
132
13
  dir: skills/agileflow-adr
@@ -7,11 +7,6 @@ enabledByDefault: false
7
7
  depends: []
8
8
 
9
9
  provides:
10
- commands:
11
- - id: council
12
- path: commands/council.md
13
- - id: multi-expert
14
- path: commands/multi-expert.md
15
10
  skills:
16
11
  - id: agileflow-council
17
12
  dir: skills/agileflow-council
@@ -6,7 +6,6 @@ enabledByDefault: false
6
6
  cannotDisable: false
7
7
  depends: []
8
8
  provides:
9
- commands: []
10
9
  skills:
11
10
  - id: agileflow-database
12
11
  dir: skills/agileflow-database
@@ -6,7 +6,6 @@ enabledByDefault: false
6
6
  cannotDisable: false
7
7
  depends: []
8
8
  provides:
9
- commands: []
10
9
  skills:
11
10
  - id: agileflow-debug
12
11
  dir: skills/agileflow-debug
@@ -7,21 +7,6 @@ enabledByDefault: false
7
7
  depends: []
8
8
 
9
9
  provides:
10
- commands:
11
- - id: changelog
12
- path: commands/changelog.md
13
- - id: ci
14
- path: commands/ci.md
15
- - id: deploy
16
- path: commands/deploy.md
17
- - id: deps
18
- path: commands/deps.md
19
- - id: packages
20
- path: commands/packages.md
21
- - id: pr
22
- path: commands/pr.md
23
- - id: sprint
24
- path: commands/sprint.md
25
10
  skills:
26
11
  - id: agileflow-delivery
27
12
  dir: skills/agileflow-delivery
@@ -7,25 +7,6 @@ enabledByDefault: false
7
7
  depends: []
8
8
 
9
9
  provides:
10
- commands:
11
- - id: docs
12
- path: commands/docs.md
13
- - id: learn
14
- path: commands/learn.md
15
- - id: learn-explain
16
- path: commands/learn/explain.md
17
- - id: learn-glossary
18
- path: commands/learn/glossary.md
19
- - id: learn-patterns
20
- path: commands/learn/patterns.md
21
- - id: learn-tour
22
- path: commands/learn/tour.md
23
- - id: readme-sync
24
- path: commands/readme-sync.md
25
- - id: skill-list
26
- path: commands/skill/list.md
27
- - id: skill-recommend
28
- path: commands/skill/recommend.md
29
10
  skills:
30
11
  - id: agileflow-docs
31
12
  dir: skills/agileflow-docs
@@ -7,7 +7,6 @@ enabledByDefault: false
7
7
  depends: []
8
8
 
9
9
  provides:
10
- commands: []
11
10
  skills:
12
11
  - id: agileflow-engineering
13
12
  dir: skills/agileflow-engineering
@@ -7,19 +7,6 @@ enabledByDefault: false
7
7
  depends: []
8
8
 
9
9
  provides:
10
- commands:
11
- - id: ideate
12
- path: commands/ideate.md
13
- - id: ideate-brief
14
- path: commands/ideate/brief.md
15
- - id: ideate-discover
16
- path: commands/ideate/discover.md
17
- - id: ideate-features
18
- path: commands/ideate/features.md
19
- - id: ideate-history
20
- path: commands/ideate/history.md
21
- - id: ideate-new
22
- path: commands/ideate/new.md
23
10
  skills:
24
11
  - id: agileflow-ideation
25
12
  dir: skills/agileflow-ideation
@@ -7,17 +7,6 @@ enabledByDefault: false
7
7
  depends: []
8
8
 
9
9
  provides:
10
- commands:
11
- - id: migrate
12
- path: commands/migrate.md
13
- - id: migrate-codemods
14
- path: commands/migrate/codemods.md
15
- - id: migrate-plan
16
- path: commands/migrate/plan.md
17
- - id: migrate-scan
18
- path: commands/migrate/scan.md
19
- - id: migrate-validate
20
- path: commands/migrate/validate.md
21
10
  skills:
22
11
  - id: agileflow-migration
23
12
  dir: skills/agileflow-migration
@@ -6,7 +6,6 @@ enabledByDefault: false
6
6
  cannotDisable: false
7
7
  depends: []
8
8
  provides:
9
- commands: []
10
9
  skills:
11
10
  - id: agileflow-performance
12
11
  dir: skills/agileflow-performance
@@ -7,29 +7,6 @@ enabledByDefault: false
7
7
  depends: []
8
8
 
9
9
  provides:
10
- commands:
11
- - id: api
12
- path: commands/api.md
13
- - id: automate
14
- path: commands/automate.md
15
- - id: diagnose
16
- path: commands/diagnose.md
17
- - id: export
18
- path: commands/export.md
19
- - id: feedback
20
- path: commands/feedback.md
21
- - id: impact
22
- path: commands/impact.md
23
- - id: metrics
24
- path: commands/metrics.md
25
- - id: rlm
26
- path: commands/rlm.md
27
- - id: roadmap-analyze
28
- path: commands/roadmap/analyze.md
29
- - id: rpi
30
- path: commands/rpi.md
31
- - id: velocity
32
- path: commands/velocity.md
33
10
  skills:
34
11
  - id: agileflow-planning
35
12
  dir: skills/agileflow-planning
@@ -6,7 +6,6 @@ enabledByDefault: false
6
6
  cannotDisable: false
7
7
  depends: []
8
8
  provides:
9
- commands: []
10
9
  skills:
11
10
  - id: agileflow-retention
12
11
  dir: skills/agileflow-retention
@@ -6,7 +6,6 @@ enabledByDefault: false
6
6
  cannotDisable: false
7
7
  depends: []
8
8
  provides:
9
- commands: []
10
9
  skills:
11
10
  - id: agileflow-refactor
12
11
  dir: skills/agileflow-refactor
@@ -7,21 +7,6 @@ enabledByDefault: false
7
7
  depends: []
8
8
 
9
9
  provides:
10
- commands:
11
- - id: research-analyze
12
- path: commands/research/analyze.md
13
- - id: research-ask
14
- path: commands/research/ask.md
15
- - id: research-import
16
- path: commands/research/import.md
17
- - id: research-list
18
- path: commands/research/list.md
19
- - id: research-synthesize
20
- path: commands/research/synthesize.md
21
- - id: research-view
22
- path: commands/research/view.md
23
- - id: skill-research
24
- path: commands/skill/research.md
25
10
  skills:
26
11
  - id: agileflow-research
27
12
  dir: skills/agileflow-research
@@ -6,7 +6,6 @@ enabledByDefault: false
6
6
  cannotDisable: false
7
7
  depends: []
8
8
  provides:
9
- commands: []
10
9
  skills:
11
10
  - id: agileflow-pr-reviewer
12
11
  dir: skills/agileflow-pr-reviewer
@@ -7,41 +7,6 @@ enabledByDefault: false
7
7
  depends: []
8
8
 
9
9
  provides:
10
- commands:
11
- - id: seo
12
- path: commands/seo.md
13
- - id: seo-audit
14
- path: commands/seo/audit.md
15
- - id: seo-competitor
16
- path: commands/seo/competitor.md
17
- - id: seo-content
18
- path: commands/seo/content.md
19
- - id: seo-geo
20
- path: commands/seo/geo.md
21
- - id: seo-hreflang
22
- path: commands/seo/hreflang.md
23
- - id: seo-images
24
- path: commands/seo/images.md
25
- - id: seo-page
26
- path: commands/seo/page.md
27
- - id: seo-plan
28
- path: commands/seo/plan.md
29
- - id: seo-programmatic
30
- path: commands/seo/programmatic.md
31
- - id: seo-references-cwv-thresholds
32
- path: commands/seo/references/cwv-thresholds.md
33
- - id: seo-references-eeat-framework
34
- path: commands/seo/references/eeat-framework.md
35
- - id: seo-references-quality-gates
36
- path: commands/seo/references/quality-gates.md
37
- - id: seo-references-schema-types
38
- path: commands/seo/references/schema-types.md
39
- - id: seo-schema
40
- path: commands/seo/schema.md
41
- - id: seo-sitemap
42
- path: commands/seo/sitemap.md
43
- - id: seo-technical
44
- path: commands/seo/technical.md
45
10
  skills:
46
11
  - id: agileflow-seo
47
12
  dir: skills/agileflow-seo
@@ -8,7 +8,6 @@ cannotDisable: false
8
8
  depends: []
9
9
 
10
10
  provides:
11
- commands: []
12
11
  skills:
13
12
  - id: agileflow-test-writer
14
13
  dir: skills/agileflow-test-writer
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agileflow",
3
- "version": "4.0.0-alpha.8",
3
+ "version": "4.0.0-alpha.9",
4
4
  "description": "AI-driven agile development toolkit for Claude Code — skills-first architecture with opt-in plugins (v4)",
5
5
  "keywords": [
6
6
  "agile",
@@ -50,11 +50,9 @@
50
50
  "dependencies": {
51
51
  "@clack/prompts": "^0.8.2",
52
52
  "@iarna/toml": "^2.2.5",
53
- "agileflow": "^4.0.0-alpha.3",
54
53
  "ajv": "^8.17.1",
55
54
  "chalk": "^4.1.2",
56
55
  "commander": "^12.1.0",
57
- "fs-extra": "^11.2.0",
58
56
  "js-yaml": "^4.1.0"
59
57
  },
60
58
  "devDependencies": {