@devflow-tools/cli 0.3.2 → 0.5.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.
- package/README.md +50 -0
- package/dist/commands/init.d.ts +6 -2
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +53 -2
- package/dist/commands/init.js.map +1 -1
- package/dist/index.js +15 -0
- package/dist/index.js.map +1 -1
- package/dist/lib/plugin-setup.d.ts +23 -0
- package/dist/lib/plugin-setup.d.ts.map +1 -0
- package/dist/lib/plugin-setup.js +141 -0
- package/dist/lib/plugin-setup.js.map +1 -0
- package/dist/plugin-files/.claude-plugin/plugin.json +20 -0
- package/dist/plugin-files/CLAUDE.md +34 -0
- package/dist/plugin-files/dist/command-registry.json +235 -0
- package/dist/plugin-files/dist/skills/devflow:context/SKILL.md +29 -0
- package/dist/plugin-files/dist/skills/devflow:docker/SKILL.md +49 -0
- package/dist/plugin-files/dist/skills/devflow:electron/SKILL.md +49 -0
- package/dist/plugin-files/dist/skills/devflow:graph/SKILL.md +24 -0
- package/dist/plugin-files/dist/skills/devflow:graphql/SKILL.md +48 -0
- package/dist/plugin-files/dist/skills/devflow:knowledge/SKILL.md +24 -0
- package/dist/plugin-files/dist/skills/devflow:memory/SKILL.md +23 -0
- package/dist/plugin-files/dist/skills/devflow:nest/SKILL.md +48 -0
- package/dist/plugin-files/dist/skills/devflow:nextjs/SKILL.md +45 -0
- package/dist/plugin-files/dist/skills/devflow:performance/SKILL.md +49 -0
- package/dist/plugin-files/dist/skills/devflow:react/SKILL.md +57 -0
- package/dist/plugin-files/dist/skills/devflow:tailwind/SKILL.md +45 -0
- package/dist/plugin-files/dist/skills/devflow:taro/SKILL.md +48 -0
- package/dist/plugin-files/dist/skills/devflow:vue/SKILL.md +52 -0
- package/dist/plugin-files/dist/skills/devflow:workflow/SKILL.md +24 -0
- package/dist/plugin-files/hooks/constitution.md +20 -0
- package/dist/plugin-files/hooks/post-tool-use +106 -0
- package/dist/plugin-files/hooks/pre-tool-use +147 -0
- package/dist/plugin-files/hooks/session-start +96 -0
- package/dist/plugin-files/hooks/stop +31 -0
- package/dist/plugin-files/hooks.json +40 -0
- package/dist/plugin-files/package.json +29 -0
- 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
|
+
"version": "0.5.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.
|
|
18
|
-
"@devflow-tools/benchmark": "^0.
|
|
19
|
-
"@devflow-tools/context-engine": "^0.
|
|
20
|
-
"@devflow-tools/knowledge-engine": "^0.
|
|
21
|
-
"@devflow-tools/
|
|
22
|
-
"@devflow-tools/
|
|
23
|
-
"@devflow-tools/plugin-
|
|
24
|
-
"@devflow-tools/plugin-
|
|
25
|
-
"@devflow-tools/plugin-
|
|
26
|
-
"@devflow-tools/plugin-
|
|
27
|
-
"@devflow-tools/plugin-
|
|
28
|
-
"@devflow-tools/plugin-
|
|
29
|
-
"@devflow-tools/plugin-
|
|
30
|
-
"@devflow-tools/plugin-
|
|
31
|
-
"@devflow-tools/plugin-
|
|
32
|
-
"@devflow-tools/plugin-
|
|
33
|
-
"@devflow-tools/plugin-
|
|
34
|
-
"@devflow-tools/plugin-
|
|
35
|
-
"@devflow-tools/plugin-
|
|
36
|
-
"@devflow-tools/
|
|
37
|
-
"@devflow-tools/
|
|
18
|
+
"@devflow-tools/adapters": "^0.5.0",
|
|
19
|
+
"@devflow-tools/benchmark": "^0.5.0",
|
|
20
|
+
"@devflow-tools/context-engine": "^0.5.0",
|
|
21
|
+
"@devflow-tools/knowledge-engine": "^0.5.0",
|
|
22
|
+
"@devflow-tools/mcp-server": "^0.5.0",
|
|
23
|
+
"@devflow-tools/memory-engine": "^0.5.0",
|
|
24
|
+
"@devflow-tools/plugin-animation": "^0.5.0",
|
|
25
|
+
"@devflow-tools/plugin-css": "^0.5.0",
|
|
26
|
+
"@devflow-tools/plugin-docker": "^0.5.0",
|
|
27
|
+
"@devflow-tools/plugin-electron": "^0.5.0",
|
|
28
|
+
"@devflow-tools/plugin-git": "^0.5.0",
|
|
29
|
+
"@devflow-tools/plugin-graphql": "^0.5.0",
|
|
30
|
+
"@devflow-tools/plugin-nest": "^0.5.0",
|
|
31
|
+
"@devflow-tools/plugin-nextjs": "^0.5.0",
|
|
32
|
+
"@devflow-tools/plugin-performance": "^0.5.0",
|
|
33
|
+
"@devflow-tools/plugin-react": "^0.5.0",
|
|
34
|
+
"@devflow-tools/plugin-tailwind": "^0.5.0",
|
|
35
|
+
"@devflow-tools/plugin-taro": "^0.5.0",
|
|
36
|
+
"@devflow-tools/plugin-ui-layout": "^0.5.0",
|
|
37
|
+
"@devflow-tools/plugin-vue": "^0.5.0",
|
|
38
|
+
"@devflow-tools/sdk": "^0.5.0",
|
|
39
|
+
"@devflow-tools/workflow-engine": "^0.5.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": "
|
|
51
|
+
"gitHead": "431c0f26e14d476c08d543ef5cd65367413dbc98"
|
|
50
52
|
}
|