@devflow-tools/cli 0.18.26 → 0.18.28

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 (54) hide show
  1. package/dist/commands/init.d.ts.map +1 -1
  2. package/dist/commands/init.js +3 -18
  3. package/dist/commands/init.js.map +1 -1
  4. package/dist/commands/setup.js +1 -1
  5. package/dist/commands/setup.js.map +1 -1
  6. package/dist/index.js +1 -1
  7. package/dist/index.js.map +1 -1
  8. package/dist/lib/plugin-setup.d.ts +0 -6
  9. package/dist/lib/plugin-setup.d.ts.map +1 -1
  10. package/dist/lib/plugin-setup.js +1 -29
  11. package/dist/lib/plugin-setup.js.map +1 -1
  12. package/dist/plugin-files/.claude-plugin/plugin.json +1 -1
  13. package/dist/plugin-files/.mcp.json +12 -0
  14. package/dist/plugin-files/dist/command-registry.json +66 -50
  15. package/dist/plugin-files/dist/hooks/hook-daemon.js +26 -26
  16. package/dist/plugin-files/dist/hooks/post-tool-use-failure.js +2 -2
  17. package/dist/plugin-files/dist/hooks/post-tool-use.js +6 -6
  18. package/dist/plugin-files/dist/hooks/pre-compact.js +3 -3
  19. package/dist/plugin-files/dist/hooks/pre-tool-use.js +4 -4
  20. package/dist/plugin-files/dist/hooks/session-end.js +1 -1
  21. package/dist/plugin-files/dist/hooks/stop.js +9 -9
  22. package/dist/plugin-files/dist/hooks/user-prompt-submit.js +8 -8
  23. package/dist/plugin-files/dist/skills/devflow:animation/SKILL.md +1 -1
  24. package/dist/plugin-files/dist/skills/devflow:context/SKILL.md +9 -9
  25. package/dist/plugin-files/dist/skills/devflow:css/SKILL.md +1 -1
  26. package/dist/plugin-files/dist/skills/devflow:delivery/SKILL.md +25 -25
  27. package/dist/plugin-files/dist/skills/devflow:docker/SKILL.md +1 -1
  28. package/dist/plugin-files/dist/skills/devflow:doctor/SKILL.md +43 -0
  29. package/dist/plugin-files/dist/skills/devflow:electron/SKILL.md +1 -1
  30. package/dist/plugin-files/dist/skills/devflow:git/SKILL.md +1 -1
  31. package/dist/plugin-files/dist/skills/devflow:graph/SKILL.md +6 -6
  32. package/dist/plugin-files/dist/skills/devflow:graphql/SKILL.md +1 -1
  33. package/dist/plugin-files/dist/skills/devflow:knowledge/SKILL.md +6 -6
  34. package/dist/plugin-files/dist/skills/devflow:memory/SKILL.md +6 -6
  35. package/dist/plugin-files/dist/skills/devflow:nest/SKILL.md +2 -2
  36. package/dist/plugin-files/dist/skills/devflow:nextjs/SKILL.md +2 -2
  37. package/dist/plugin-files/dist/skills/devflow:performance/SKILL.md +1 -1
  38. package/dist/plugin-files/dist/skills/devflow:react/SKILL.md +5 -5
  39. package/dist/plugin-files/dist/skills/devflow:tailwind/SKILL.md +2 -2
  40. package/dist/plugin-files/dist/skills/devflow:taro/SKILL.md +1 -1
  41. package/dist/plugin-files/dist/skills/devflow:ui-layout/SKILL.md +1 -1
  42. package/dist/plugin-files/dist/skills/devflow:vue/SKILL.md +2 -2
  43. package/dist/plugin-files/dist/skills/devflow:workflow/SKILL.md +6 -6
  44. package/dist/plugin-files/hooks/session-start +13 -11
  45. package/dist/plugin-files/package.json +14 -13
  46. package/dist/plugin-files/skills/context/SKILL.md +7 -7
  47. package/dist/plugin-files/skills/delivery/SKILL.md +9 -9
  48. package/dist/plugin-files/skills/devflow/SKILL.md +1 -1
  49. package/dist/plugin-files/skills/doctor/SKILL.md +4 -1
  50. package/dist/plugin-files/skills/graph/SKILL.md +5 -5
  51. package/dist/plugin-files/skills/knowledge/SKILL.md +5 -5
  52. package/dist/plugin-files/skills/memory/SKILL.md +5 -5
  53. package/dist/plugin-files/skills/workflow/SKILL.md +5 -5
  54. package/package.json +28 -28
@@ -2,6 +2,22 @@
2
2
  "version": 2,
3
3
  "compatibility": 1,
4
4
  "commands": {
5
+ "devflow:doctor": {
6
+ "mcpTools": [
7
+ "devflow_runtime_status"
8
+ ],
9
+ "blockedNative": [],
10
+ "source": "core",
11
+ "sourceVersion": "0.18.28",
12
+ "requiresContext": false,
13
+ "evidenceMode": "runtime",
14
+ "skillPath": "skills/devflow:doctor/SKILL.md",
15
+ "hostTools": {
16
+ "claude-code": [
17
+ "mcp__plugin_devflow_devflow__devflow_runtime_status"
18
+ ]
19
+ }
20
+ },
5
21
  "devflow:context": {
6
22
  "mcpTools": [
7
23
  "get_project_context",
@@ -19,14 +35,14 @@
19
35
  "WebFetch"
20
36
  ],
21
37
  "source": "core",
22
- "sourceVersion": "0.18.26",
38
+ "sourceVersion": "0.18.28",
23
39
  "requiresContext": true,
24
40
  "evidenceMode": "mixed",
25
41
  "skillPath": "skills/devflow:context/SKILL.md",
26
42
  "hostTools": {
27
43
  "claude-code": [
28
- "mcp__devflow__get_project_context",
29
- "mcp__devflow__search_symbol"
44
+ "mcp__plugin_devflow_devflow__get_project_context",
45
+ "mcp__plugin_devflow_devflow__search_symbol"
30
46
  ]
31
47
  }
32
48
  },
@@ -44,13 +60,13 @@
44
60
  "Explore"
45
61
  ],
46
62
  "source": "core",
47
- "sourceVersion": "0.18.26",
63
+ "sourceVersion": "0.18.28",
48
64
  "requiresContext": true,
49
65
  "evidenceMode": "mixed",
50
66
  "skillPath": "skills/devflow:graph/SKILL.md",
51
67
  "hostTools": {
52
68
  "claude-code": [
53
- "mcp__devflow__get_dependency_graph"
69
+ "mcp__plugin_devflow_devflow__get_dependency_graph"
54
70
  ]
55
71
  }
56
72
  },
@@ -63,13 +79,13 @@
63
79
  "WebFetch"
64
80
  ],
65
81
  "source": "core",
66
- "sourceVersion": "0.18.26",
82
+ "sourceVersion": "0.18.28",
67
83
  "requiresContext": true,
68
84
  "evidenceMode": "mixed",
69
85
  "skillPath": "skills/devflow:knowledge/SKILL.md",
70
86
  "hostTools": {
71
87
  "claude-code": [
72
- "mcp__devflow__get_knowledge"
88
+ "mcp__plugin_devflow_devflow__get_knowledge"
73
89
  ]
74
90
  }
75
91
  },
@@ -87,13 +103,13 @@
87
103
  "Explore"
88
104
  ],
89
105
  "source": "core",
90
- "sourceVersion": "0.18.26",
106
+ "sourceVersion": "0.18.28",
91
107
  "requiresContext": true,
92
108
  "evidenceMode": "mixed",
93
109
  "skillPath": "skills/devflow:memory/SKILL.md",
94
110
  "hostTools": {
95
111
  "claude-code": [
96
- "mcp__devflow__get_memory"
112
+ "mcp__plugin_devflow_devflow__get_memory"
97
113
  ]
98
114
  }
99
115
  },
@@ -103,13 +119,13 @@
103
119
  ],
104
120
  "blockedNative": [],
105
121
  "source": "core",
106
- "sourceVersion": "0.18.26",
122
+ "sourceVersion": "0.18.28",
107
123
  "requiresContext": true,
108
124
  "evidenceMode": "mixed",
109
125
  "skillPath": "skills/devflow:workflow/SKILL.md",
110
126
  "hostTools": {
111
127
  "claude-code": [
112
- "mcp__devflow__run_workflow"
128
+ "mcp__plugin_devflow_devflow__run_workflow"
113
129
  ]
114
130
  }
115
131
  },
@@ -134,28 +150,28 @@
134
150
  ],
135
151
  "blockedNative": [],
136
152
  "source": "core",
137
- "sourceVersion": "0.18.26",
153
+ "sourceVersion": "0.18.28",
138
154
  "requiresContext": true,
139
155
  "evidenceMode": "mixed",
140
156
  "skillPath": "skills/devflow:delivery/SKILL.md",
141
157
  "hostTools": {
142
158
  "claude-code": [
143
- "mcp__devflow__delivery_status",
144
- "mcp__devflow__delivery_create_case",
145
- "mcp__devflow__delivery_answer",
146
- "mcp__devflow__delivery_revise",
147
- "mcp__devflow__delivery_compare_options",
148
- "mcp__devflow__delivery_approve",
149
- "mcp__devflow__delivery_reject",
150
- "mcp__devflow__delivery_resume",
151
- "mcp__devflow__delivery_recover_task",
152
- "mcp__devflow__delivery_admit_worktree",
153
- "mcp__devflow__delivery_refresh_activation",
154
- "mcp__devflow__delivery_advance",
155
- "mcp__devflow__delivery_retry_task",
156
- "mcp__devflow__delivery_import_external_change",
157
- "mcp__devflow__delivery_export",
158
- "mcp__devflow__delivery_cancel"
159
+ "mcp__plugin_devflow_devflow__delivery_status",
160
+ "mcp__plugin_devflow_devflow__delivery_create_case",
161
+ "mcp__plugin_devflow_devflow__delivery_answer",
162
+ "mcp__plugin_devflow_devflow__delivery_revise",
163
+ "mcp__plugin_devflow_devflow__delivery_compare_options",
164
+ "mcp__plugin_devflow_devflow__delivery_approve",
165
+ "mcp__plugin_devflow_devflow__delivery_reject",
166
+ "mcp__plugin_devflow_devflow__delivery_resume",
167
+ "mcp__plugin_devflow_devflow__delivery_recover_task",
168
+ "mcp__plugin_devflow_devflow__delivery_admit_worktree",
169
+ "mcp__plugin_devflow_devflow__delivery_refresh_activation",
170
+ "mcp__plugin_devflow_devflow__delivery_advance",
171
+ "mcp__plugin_devflow_devflow__delivery_retry_task",
172
+ "mcp__plugin_devflow_devflow__delivery_import_external_change",
173
+ "mcp__plugin_devflow_devflow__delivery_export",
174
+ "mcp__plugin_devflow_devflow__delivery_cancel"
159
175
  ]
160
176
  }
161
177
  },
@@ -181,7 +197,7 @@
181
197
  "skillPath": "skills/devflow:animation/SKILL.md",
182
198
  "hostTools": {
183
199
  "claude-code": [
184
- "mcp__devflow__animation_suggest"
200
+ "mcp__plugin_devflow_devflow__animation_suggest"
185
201
  ]
186
202
  }
187
203
  },
@@ -207,7 +223,7 @@
207
223
  "skillPath": "skills/devflow:css/SKILL.md",
208
224
  "hostTools": {
209
225
  "claude-code": [
210
- "mcp__devflow__css_audit_selectors"
226
+ "mcp__plugin_devflow_devflow__css_audit_selectors"
211
227
  ]
212
228
  }
213
229
  },
@@ -233,7 +249,7 @@
233
249
  "skillPath": "skills/devflow:docker/SKILL.md",
234
250
  "hostTools": {
235
251
  "claude-code": [
236
- "mcp__devflow__docker_dockerize_project"
252
+ "mcp__plugin_devflow_devflow__docker_dockerize_project"
237
253
  ]
238
254
  }
239
255
  },
@@ -262,7 +278,7 @@
262
278
  ],
263
279
  "hostTools": {
264
280
  "claude-code": [
265
- "mcp__devflow__electron_diagnose_bug"
281
+ "mcp__plugin_devflow_devflow__electron_diagnose_bug"
266
282
  ]
267
283
  }
268
284
  },
@@ -288,7 +304,7 @@
288
304
  "skillPath": "skills/devflow:git/SKILL.md",
289
305
  "hostTools": {
290
306
  "claude-code": [
291
- "mcp__devflow__git_analyze_repo"
307
+ "mcp__plugin_devflow_devflow__git_analyze_repo"
292
308
  ]
293
309
  }
294
310
  },
@@ -317,7 +333,7 @@
317
333
  ],
318
334
  "hostTools": {
319
335
  "claude-code": [
320
- "mcp__devflow__graphql_diagnose_bug"
336
+ "mcp__plugin_devflow_devflow__graphql_diagnose_bug"
321
337
  ]
322
338
  }
323
339
  },
@@ -347,8 +363,8 @@
347
363
  ],
348
364
  "hostTools": {
349
365
  "claude-code": [
350
- "mcp__devflow__nest_diagnose_bug",
351
- "mcp__devflow__nest_new_module"
366
+ "mcp__plugin_devflow_devflow__nest_diagnose_bug",
367
+ "mcp__plugin_devflow_devflow__nest_new_module"
352
368
  ]
353
369
  }
354
370
  },
@@ -379,8 +395,8 @@
379
395
  ],
380
396
  "hostTools": {
381
397
  "claude-code": [
382
- "mcp__devflow__nextjs_diagnose_bug",
383
- "mcp__devflow__nextjs_new_page"
398
+ "mcp__plugin_devflow_devflow__nextjs_diagnose_bug",
399
+ "mcp__plugin_devflow_devflow__nextjs_new_page"
384
400
  ]
385
401
  }
386
402
  },
@@ -406,7 +422,7 @@
406
422
  "skillPath": "skills/devflow:performance/SKILL.md",
407
423
  "hostTools": {
408
424
  "claude-code": [
409
- "mcp__devflow__performance_audit_performance"
425
+ "mcp__plugin_devflow_devflow__performance_audit_performance"
410
426
  ]
411
427
  }
412
428
  },
@@ -440,11 +456,11 @@
440
456
  ],
441
457
  "hostTools": {
442
458
  "claude-code": [
443
- "mcp__devflow__react_review_hooks",
444
- "mcp__devflow__react_audit_performance",
445
- "mcp__devflow__react_refactor_component",
446
- "mcp__devflow__react_diagnose_bug",
447
- "mcp__devflow__react_new_component"
459
+ "mcp__plugin_devflow_devflow__react_review_hooks",
460
+ "mcp__plugin_devflow_devflow__react_audit_performance",
461
+ "mcp__plugin_devflow_devflow__react_refactor_component",
462
+ "mcp__plugin_devflow_devflow__react_diagnose_bug",
463
+ "mcp__plugin_devflow_devflow__react_new_component"
448
464
  ]
449
465
  }
450
466
  },
@@ -474,8 +490,8 @@
474
490
  ],
475
491
  "hostTools": {
476
492
  "claude-code": [
477
- "mcp__devflow__tailwind_new_component",
478
- "mcp__devflow__tailwind_optimize_classes"
493
+ "mcp__plugin_devflow_devflow__tailwind_new_component",
494
+ "mcp__plugin_devflow_devflow__tailwind_optimize_classes"
479
495
  ]
480
496
  }
481
497
  },
@@ -504,7 +520,7 @@
504
520
  ],
505
521
  "hostTools": {
506
522
  "claude-code": [
507
- "mcp__devflow__taro_new_page"
523
+ "mcp__plugin_devflow_devflow__taro_new_page"
508
524
  ]
509
525
  }
510
526
  },
@@ -530,7 +546,7 @@
530
546
  "skillPath": "skills/devflow:ui-layout/SKILL.md",
531
547
  "hostTools": {
532
548
  "claude-code": [
533
- "mcp__devflow__ui_layout_generate"
549
+ "mcp__plugin_devflow_devflow__ui_layout_generate"
534
550
  ]
535
551
  }
536
552
  },
@@ -560,8 +576,8 @@
560
576
  ],
561
577
  "hostTools": {
562
578
  "claude-code": [
563
- "mcp__devflow__vue_diagnose_bug",
564
- "mcp__devflow__vue_debug_reactivity"
579
+ "mcp__plugin_devflow_devflow__vue_diagnose_bug",
580
+ "mcp__plugin_devflow_devflow__vue_debug_reactivity"
565
581
  ]
566
582
  }
567
583
  }