@devflow-tools/cli 0.16.8 → 0.16.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 (37) hide show
  1. package/dist/commands/doctor.d.ts.map +1 -1
  2. package/dist/commands/doctor.js +59 -2
  3. package/dist/commands/doctor.js.map +1 -1
  4. package/dist/commands/mcp.d.ts +10 -0
  5. package/dist/commands/mcp.d.ts.map +1 -0
  6. package/dist/commands/mcp.js +33 -0
  7. package/dist/commands/mcp.js.map +1 -0
  8. package/dist/commands/plugin/install.d.ts.map +1 -1
  9. package/dist/commands/plugin/install.js +6 -7
  10. package/dist/commands/plugin/install.js.map +1 -1
  11. package/dist/commands/plugin/uninstall.d.ts.map +1 -1
  12. package/dist/commands/plugin/uninstall.js +6 -7
  13. package/dist/commands/plugin/uninstall.js.map +1 -1
  14. package/dist/commands/plugin-guide.d.ts.map +1 -1
  15. package/dist/commands/plugin-guide.js +8 -5
  16. package/dist/commands/plugin-guide.js.map +1 -1
  17. package/dist/commands/skill-health.d.ts +21 -0
  18. package/dist/commands/skill-health.d.ts.map +1 -0
  19. package/dist/commands/skill-health.js +106 -0
  20. package/dist/commands/skill-health.js.map +1 -0
  21. package/dist/commands/skill.d.ts.map +1 -1
  22. package/dist/commands/skill.js +101 -29
  23. package/dist/commands/skill.js.map +1 -1
  24. package/dist/index.js +32 -0
  25. package/dist/index.js.map +1 -1
  26. package/dist/lib/plugin-registry.d.ts.map +1 -1
  27. package/dist/lib/plugin-registry.js +3 -10
  28. package/dist/lib/plugin-registry.js.map +1 -1
  29. package/dist/plugin-files/.claude-plugin/plugin.json +1 -1
  30. package/dist/plugin-files/dist/command-registry.json +116 -20
  31. package/dist/plugin-files/dist/hooks/hook-client.js +6 -6
  32. package/dist/plugin-files/dist/hooks/hook-daemon.js +9 -9
  33. package/dist/plugin-files/dist/hooks/post-tool-use.js +3 -3
  34. package/dist/plugin-files/dist/hooks/pre-tool-use.js +2 -2
  35. package/dist/plugin-files/dist/hooks/user-prompt-submit.js +2 -2
  36. package/dist/plugin-files/package.json +7 -7
  37. package/package.json +27 -27
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devflow-tools/claude-code-plugin",
3
- "version": "0.16.8",
3
+ "version": "0.16.9",
4
4
  "description": "DevFlow — Developer Intelligence Platform for Claude Code",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -8,18 +8,18 @@
8
8
  "deploy": "npx tsx scripts/inject-gates.ts --deploy"
9
9
  },
10
10
  "dependencies": {
11
- "@devflow-tools/database": "0.16.8",
12
- "@devflow-tools/memory-engine": "0.16.8",
13
- "@devflow-tools/sdk": "0.16.8",
14
- "@devflow-tools/telemetry": "0.16.8",
15
- "@devflow-tools/workflow-engine": "0.16.8"
11
+ "@devflow-tools/database": "0.16.9",
12
+ "@devflow-tools/memory-engine": "0.16.9",
13
+ "@devflow-tools/sdk": "0.16.9",
14
+ "@devflow-tools/telemetry": "0.16.9",
15
+ "@devflow-tools/workflow-engine": "0.16.9"
16
16
  },
17
17
  "allowScripts": {
18
18
  "better-sqlite3@12.11.1": true,
19
19
  "sharp@0.32.6": true
20
20
  },
21
21
  "devDependencies": {
22
- "@devflow-tools/mcp-server": "0.16.8"
22
+ "@devflow-tools/mcp-server": "0.16.9"
23
23
  },
24
24
  "keywords": [
25
25
  "pi-package",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devflow-tools/cli",
3
- "version": "0.16.8",
3
+ "version": "0.16.9",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {
@@ -12,31 +12,31 @@
12
12
  },
13
13
  "dependencies": {
14
14
  "@colbymchenry/codegraph": "^1.1.1",
15
- "@devflow-tools/adapters": "0.16.8",
16
- "@devflow-tools/benchmark": "0.16.8",
17
- "@devflow-tools/context-engine": "0.16.8",
18
- "@devflow-tools/database": "0.16.8",
19
- "@devflow-tools/knowledge-engine": "0.16.8",
20
- "@devflow-tools/mcp-server": "0.16.8",
21
- "@devflow-tools/memory-engine": "0.16.8",
22
- "@devflow-tools/plugin-animation": "0.16.8",
23
- "@devflow-tools/plugin-css": "0.16.8",
24
- "@devflow-tools/plugin-docker": "0.16.8",
25
- "@devflow-tools/plugin-electron": "0.16.8",
26
- "@devflow-tools/plugin-git": "0.16.8",
27
- "@devflow-tools/plugin-graphql": "0.16.8",
28
- "@devflow-tools/plugin-nest": "0.16.8",
29
- "@devflow-tools/plugin-nextjs": "0.16.8",
30
- "@devflow-tools/plugin-performance": "0.16.8",
31
- "@devflow-tools/plugin-react": "0.16.8",
32
- "@devflow-tools/plugin-tailwind": "0.16.8",
33
- "@devflow-tools/plugin-taro": "0.16.8",
34
- "@devflow-tools/plugin-ui-layout": "0.16.8",
35
- "@devflow-tools/plugin-vue": "0.16.8",
36
- "@devflow-tools/sdk": "0.16.8",
37
- "@devflow-tools/server": "0.16.8",
38
- "@devflow-tools/telemetry": "0.16.8",
39
- "@devflow-tools/workflow-engine": "0.16.8",
15
+ "@devflow-tools/adapters": "0.16.9",
16
+ "@devflow-tools/benchmark": "0.16.9",
17
+ "@devflow-tools/context-engine": "0.16.9",
18
+ "@devflow-tools/database": "0.16.9",
19
+ "@devflow-tools/knowledge-engine": "0.16.9",
20
+ "@devflow-tools/mcp-server": "0.16.9",
21
+ "@devflow-tools/memory-engine": "0.16.9",
22
+ "@devflow-tools/plugin-animation": "0.16.9",
23
+ "@devflow-tools/plugin-css": "0.16.9",
24
+ "@devflow-tools/plugin-docker": "0.16.9",
25
+ "@devflow-tools/plugin-electron": "0.16.9",
26
+ "@devflow-tools/plugin-git": "0.16.9",
27
+ "@devflow-tools/plugin-graphql": "0.16.9",
28
+ "@devflow-tools/plugin-nest": "0.16.9",
29
+ "@devflow-tools/plugin-nextjs": "0.16.9",
30
+ "@devflow-tools/plugin-performance": "0.16.9",
31
+ "@devflow-tools/plugin-react": "0.16.9",
32
+ "@devflow-tools/plugin-tailwind": "0.16.9",
33
+ "@devflow-tools/plugin-taro": "0.16.9",
34
+ "@devflow-tools/plugin-ui-layout": "0.16.9",
35
+ "@devflow-tools/plugin-vue": "0.16.9",
36
+ "@devflow-tools/sdk": "0.16.9",
37
+ "@devflow-tools/server": "0.16.9",
38
+ "@devflow-tools/telemetry": "0.16.9",
39
+ "@devflow-tools/workflow-engine": "0.16.9",
40
40
  "@inquirer/prompts": "^7.10.1",
41
41
  "chalk": "^5.3.0",
42
42
  "commander": "^12.0.0"
@@ -49,5 +49,5 @@
49
49
  "dist",
50
50
  "bin"
51
51
  ],
52
- "gitHead": "38b7ea6653ad6e0d3edb7eae260367032f0bb854"
52
+ "gitHead": "964af33767bf232606e63d973b3a29d7d53c8119"
53
53
  }