@devflow-tools/cli 0.3.2 → 0.4.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 (37) hide show
  1. package/README.md +50 -0
  2. package/dist/commands/init.d.ts +6 -2
  3. package/dist/commands/init.d.ts.map +1 -1
  4. package/dist/commands/init.js +53 -2
  5. package/dist/commands/init.js.map +1 -1
  6. package/dist/index.js +15 -0
  7. package/dist/index.js.map +1 -1
  8. package/dist/lib/plugin-setup.d.ts +23 -0
  9. package/dist/lib/plugin-setup.d.ts.map +1 -0
  10. package/dist/lib/plugin-setup.js +141 -0
  11. package/dist/lib/plugin-setup.js.map +1 -0
  12. package/dist/plugin-files/.claude-plugin/plugin.json +20 -0
  13. package/dist/plugin-files/CLAUDE.md +34 -0
  14. package/dist/plugin-files/dist/command-registry.json +235 -0
  15. package/dist/plugin-files/dist/skills/devflow:context/SKILL.md +29 -0
  16. package/dist/plugin-files/dist/skills/devflow:docker/SKILL.md +49 -0
  17. package/dist/plugin-files/dist/skills/devflow:electron/SKILL.md +49 -0
  18. package/dist/plugin-files/dist/skills/devflow:graph/SKILL.md +24 -0
  19. package/dist/plugin-files/dist/skills/devflow:graphql/SKILL.md +48 -0
  20. package/dist/plugin-files/dist/skills/devflow:knowledge/SKILL.md +24 -0
  21. package/dist/plugin-files/dist/skills/devflow:memory/SKILL.md +23 -0
  22. package/dist/plugin-files/dist/skills/devflow:nest/SKILL.md +48 -0
  23. package/dist/plugin-files/dist/skills/devflow:nextjs/SKILL.md +45 -0
  24. package/dist/plugin-files/dist/skills/devflow:performance/SKILL.md +49 -0
  25. package/dist/plugin-files/dist/skills/devflow:react/SKILL.md +57 -0
  26. package/dist/plugin-files/dist/skills/devflow:tailwind/SKILL.md +45 -0
  27. package/dist/plugin-files/dist/skills/devflow:taro/SKILL.md +48 -0
  28. package/dist/plugin-files/dist/skills/devflow:vue/SKILL.md +52 -0
  29. package/dist/plugin-files/dist/skills/devflow:workflow/SKILL.md +24 -0
  30. package/dist/plugin-files/hooks/constitution.md +20 -0
  31. package/dist/plugin-files/hooks/post-tool-use +106 -0
  32. package/dist/plugin-files/hooks/pre-tool-use +147 -0
  33. package/dist/plugin-files/hooks/session-start +96 -0
  34. package/dist/plugin-files/hooks/stop +31 -0
  35. package/dist/plugin-files/hooks.json +40 -0
  36. package/dist/plugin-files/package.json +29 -0
  37. package/package.json +25 -23
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devflow-tools/cli",
3
- "version": "0.3.2",
3
+ "version": "0.4.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "bin": {
@@ -8,33 +8,35 @@
8
8
  },
9
9
  "scripts": {
10
10
  "build": "tsc -b",
11
+ "postbuild": "npx tsx scripts/build-plugin-files.ts",
11
12
  "test": "cgnode ../../node_modules/.bin/vitest run",
12
13
  "typecheck": "tsc --noEmit",
13
14
  "clean": "rm -rf dist"
14
15
  },
15
16
  "dependencies": {
16
17
  "@colbymchenry/codegraph": "^1.1.1",
17
- "@devflow-tools/adapters": "^0.3.2",
18
- "@devflow-tools/benchmark": "^0.3.2",
19
- "@devflow-tools/context-engine": "^0.3.2",
20
- "@devflow-tools/knowledge-engine": "^0.3.2",
21
- "@devflow-tools/memory-engine": "^0.3.2",
22
- "@devflow-tools/plugin-animation": "^0.3.2",
23
- "@devflow-tools/plugin-css": "^0.3.2",
24
- "@devflow-tools/plugin-docker": "^0.3.2",
25
- "@devflow-tools/plugin-electron": "^0.3.2",
26
- "@devflow-tools/plugin-git": "^0.3.2",
27
- "@devflow-tools/plugin-graphql": "^0.3.2",
28
- "@devflow-tools/plugin-nest": "^0.3.2",
29
- "@devflow-tools/plugin-nextjs": "^0.3.2",
30
- "@devflow-tools/plugin-performance": "^0.3.2",
31
- "@devflow-tools/plugin-react": "^0.3.2",
32
- "@devflow-tools/plugin-tailwind": "^0.3.2",
33
- "@devflow-tools/plugin-taro": "^0.3.2",
34
- "@devflow-tools/plugin-ui-layout": "^0.3.2",
35
- "@devflow-tools/plugin-vue": "^0.3.2",
36
- "@devflow-tools/sdk": "^0.3.2",
37
- "@devflow-tools/workflow-engine": "^0.3.2",
18
+ "@devflow-tools/adapters": "^0.4.0",
19
+ "@devflow-tools/benchmark": "^0.4.0",
20
+ "@devflow-tools/context-engine": "^0.4.0",
21
+ "@devflow-tools/knowledge-engine": "^0.4.0",
22
+ "@devflow-tools/mcp-server": "^0.4.0",
23
+ "@devflow-tools/memory-engine": "^0.4.0",
24
+ "@devflow-tools/plugin-animation": "^0.4.0",
25
+ "@devflow-tools/plugin-css": "^0.4.0",
26
+ "@devflow-tools/plugin-docker": "^0.4.0",
27
+ "@devflow-tools/plugin-electron": "^0.4.0",
28
+ "@devflow-tools/plugin-git": "^0.4.0",
29
+ "@devflow-tools/plugin-graphql": "^0.4.0",
30
+ "@devflow-tools/plugin-nest": "^0.4.0",
31
+ "@devflow-tools/plugin-nextjs": "^0.4.0",
32
+ "@devflow-tools/plugin-performance": "^0.4.0",
33
+ "@devflow-tools/plugin-react": "^0.4.0",
34
+ "@devflow-tools/plugin-tailwind": "^0.4.0",
35
+ "@devflow-tools/plugin-taro": "^0.4.0",
36
+ "@devflow-tools/plugin-ui-layout": "^0.4.0",
37
+ "@devflow-tools/plugin-vue": "^0.4.0",
38
+ "@devflow-tools/sdk": "^0.4.0",
39
+ "@devflow-tools/workflow-engine": "^0.4.0",
38
40
  "chalk": "^5.3.0",
39
41
  "commander": "^12.0.0"
40
42
  },
@@ -46,5 +48,5 @@
46
48
  "dist",
47
49
  "bin"
48
50
  ],
49
- "gitHead": "8bd4fe5d195782d3e5a5357fc9bff5998561c956"
51
+ "gitHead": "c76bcf3a2bb8ac12b871738d6661979eb45090c6"
50
52
  }