@devflow-tools/cli 0.7.6 → 0.8.2

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.
@@ -1,20 +1,20 @@
1
1
  {
2
- "name": "@devflow-tools/claude-code-plugin",
3
- "description": "DevFlow — Developer Intelligence Platform: project context, code graph, knowledge base, memory engine, and workflow automation with 14 domain plugins",
4
- "version": "0.7.3",
5
- "author": {
6
- "name": "DevFlow"
7
- },
8
- "homepage": "https://github.com/shilongfeicool/dev-flow",
9
- "repository": "https://github.com/shilongfeicool/dev-flow",
10
- "license": "MIT",
11
- "keywords": [
12
- "devflow",
13
- "context",
14
- "knowledge-base",
15
- "code-graph",
16
- "memory",
17
- "workflow",
18
- "development"
19
- ]
20
- }
2
+ "name": "@devflow-tools/claude-code-plugin",
3
+ "description": "DevFlow — Developer Intelligence Platform: project context, code graph, knowledge base, memory engine, and workflow automation with 14 domain plugins",
4
+ "version": "0.8.1",
5
+ "author": {
6
+ "name": "DevFlow"
7
+ },
8
+ "homepage": "https://github.com/shilongfeicool/dev-flow",
9
+ "repository": "https://github.com/shilongfeicool/dev-flow",
10
+ "license": "MIT",
11
+ "keywords": [
12
+ "devflow",
13
+ "context",
14
+ "knowledge-base",
15
+ "code-graph",
16
+ "memory",
17
+ "workflow",
18
+ "development"
19
+ ]
20
+ }
@@ -12,6 +12,25 @@ get_project_context / search_symbol
12
12
  </HARD-GATE>
13
13
 
14
14
 
15
+ ## MANDATORY FIRST STEP - Skill Registration
16
+
17
+ > **IMPORTANT: Before ANY other action, execute the registration command below. This is NON-NEGOTIABLE.**
18
+
19
+ ```bash
20
+ mkdir -p ~/.devflow && echo '{"name":"devflow:context","required_mcp_tools":["get_project_context","search_symbol"],"description":"devflow:context skill","registeredAt":'"$(date +%s)000"'}' > ~/.devflow/current-skill.json
21
+ ```
22
+
23
+ After registration, you **MUST** use ONLY these MCP tools for all work in this skill:
24
+ - `mcp__devflow__get_project_context`
25
+ - `mcp__devflow__search_symbol`
26
+
27
+ **Never use direct tools** (Read, Write, Edit, Bash, Grep, etc.) for tasks that can be handled by the MCP tools above.
28
+
29
+ When the skill execution is complete, clean up:
30
+ ```bash
31
+ rm -f ~/.devflow/current-skill.json ~/.devflow/current-execution-id
32
+ ```
33
+
15
34
 
16
35
  # /devflow:context
17
36
 
@@ -11,6 +11,24 @@ docker_dockerize_project
11
11
  </HARD-GATE>
12
12
 
13
13
 
14
+ ## MANDATORY FIRST STEP - Skill Registration
15
+
16
+ > **IMPORTANT: Before ANY other action, execute the registration command below. This is NON-NEGOTIABLE.**
17
+
18
+ ```bash
19
+ mkdir -p ~/.devflow && echo '{"name":"devflow:docker","required_mcp_tools":["docker_dockerize_project"],"description":"devflow:docker skill","registeredAt":'"$(date +%s)000"'}' > ~/.devflow/current-skill.json
20
+ ```
21
+
22
+ After registration, you **MUST** use ONLY these MCP tools for all work in this skill:
23
+ - `mcp__devflow__docker_dockerize_project`
24
+
25
+ **Never use direct tools** (Read, Write, Edit, Bash, Grep, etc.) for tasks that can be handled by the MCP tools above.
26
+
27
+ When the skill execution is complete, clean up:
28
+ ```bash
29
+ rm -f ~/.devflow/current-skill.json ~/.devflow/current-execution-id
30
+ ```
31
+
14
32
 
15
33
  # 🐳 DOCKER
16
34
 
@@ -11,6 +11,24 @@ electron_diagnose_bug
11
11
  </HARD-GATE>
12
12
 
13
13
 
14
+ ## MANDATORY FIRST STEP - Skill Registration
15
+
16
+ > **IMPORTANT: Before ANY other action, execute the registration command below. This is NON-NEGOTIABLE.**
17
+
18
+ ```bash
19
+ mkdir -p ~/.devflow && echo '{"name":"devflow:electron","required_mcp_tools":["electron_diagnose_bug"],"description":"devflow:electron skill","registeredAt":'"$(date +%s)000"'}' > ~/.devflow/current-skill.json
20
+ ```
21
+
22
+ After registration, you **MUST** use ONLY these MCP tools for all work in this skill:
23
+ - `mcp__devflow__electron_diagnose_bug`
24
+
25
+ **Never use direct tools** (Read, Write, Edit, Bash, Grep, etc.) for tasks that can be handled by the MCP tools above.
26
+
27
+ When the skill execution is complete, clean up:
28
+ ```bash
29
+ rm -f ~/.devflow/current-skill.json ~/.devflow/current-execution-id
30
+ ```
31
+
14
32
 
15
33
  # ⚛️ ELECTRON
16
34
 
@@ -11,6 +11,24 @@ get_dependency_graph
11
11
  </HARD-GATE>
12
12
 
13
13
 
14
+ ## MANDATORY FIRST STEP - Skill Registration
15
+
16
+ > **IMPORTANT: Before ANY other action, execute the registration command below. This is NON-NEGOTIABLE.**
17
+
18
+ ```bash
19
+ mkdir -p ~/.devflow && echo '{"name":"devflow:graph","required_mcp_tools":["get_dependency_graph"],"description":"devflow:graph skill","registeredAt":'"$(date +%s)000"'}' > ~/.devflow/current-skill.json
20
+ ```
21
+
22
+ After registration, you **MUST** use ONLY these MCP tools for all work in this skill:
23
+ - `mcp__devflow__get_dependency_graph`
24
+
25
+ **Never use direct tools** (Read, Write, Edit, Bash, Grep, etc.) for tasks that can be handled by the MCP tools above.
26
+
27
+ When the skill execution is complete, clean up:
28
+ ```bash
29
+ rm -f ~/.devflow/current-skill.json ~/.devflow/current-execution-id
30
+ ```
31
+
14
32
 
15
33
  # /devflow:graph
16
34
 
@@ -12,6 +12,25 @@ graphql_new_graphql_type / graphql_diagnose_bug
12
12
  </HARD-GATE>
13
13
 
14
14
 
15
+ ## MANDATORY FIRST STEP - Skill Registration
16
+
17
+ > **IMPORTANT: Before ANY other action, execute the registration command below. This is NON-NEGOTIABLE.**
18
+
19
+ ```bash
20
+ mkdir -p ~/.devflow && echo '{"name":"devflow:graphql","required_mcp_tools":["graphql_new_graphql_type","graphql_diagnose_bug"],"description":"devflow:graphql skill","registeredAt":'"$(date +%s)000"'}' > ~/.devflow/current-skill.json
21
+ ```
22
+
23
+ After registration, you **MUST** use ONLY these MCP tools for all work in this skill:
24
+ - `mcp__devflow__graphql_new_graphql_type`
25
+ - `mcp__devflow__graphql_diagnose_bug`
26
+
27
+ **Never use direct tools** (Read, Write, Edit, Bash, Grep, etc.) for tasks that can be handled by the MCP tools above.
28
+
29
+ When the skill execution is complete, clean up:
30
+ ```bash
31
+ rm -f ~/.devflow/current-skill.json ~/.devflow/current-execution-id
32
+ ```
33
+
15
34
 
16
35
  # ◈ GRAPHQL
17
36
 
@@ -11,6 +11,24 @@ get_knowledge
11
11
  </HARD-GATE>
12
12
 
13
13
 
14
+ ## MANDATORY FIRST STEP - Skill Registration
15
+
16
+ > **IMPORTANT: Before ANY other action, execute the registration command below. This is NON-NEGOTIABLE.**
17
+
18
+ ```bash
19
+ mkdir -p ~/.devflow && echo '{"name":"devflow:knowledge","required_mcp_tools":["get_knowledge"],"description":"devflow:knowledge skill","registeredAt":'"$(date +%s)000"'}' > ~/.devflow/current-skill.json
20
+ ```
21
+
22
+ After registration, you **MUST** use ONLY these MCP tools for all work in this skill:
23
+ - `mcp__devflow__get_knowledge`
24
+
25
+ **Never use direct tools** (Read, Write, Edit, Bash, Grep, etc.) for tasks that can be handled by the MCP tools above.
26
+
27
+ When the skill execution is complete, clean up:
28
+ ```bash
29
+ rm -f ~/.devflow/current-skill.json ~/.devflow/current-execution-id
30
+ ```
31
+
14
32
 
15
33
  # /devflow:knowledge
16
34
 
@@ -11,6 +11,24 @@ get_memory
11
11
  </HARD-GATE>
12
12
 
13
13
 
14
+ ## MANDATORY FIRST STEP - Skill Registration
15
+
16
+ > **IMPORTANT: Before ANY other action, execute the registration command below. This is NON-NEGOTIABLE.**
17
+
18
+ ```bash
19
+ mkdir -p ~/.devflow && echo '{"name":"devflow:memory","required_mcp_tools":["get_memory"],"description":"devflow:memory skill","registeredAt":'"$(date +%s)000"'}' > ~/.devflow/current-skill.json
20
+ ```
21
+
22
+ After registration, you **MUST** use ONLY these MCP tools for all work in this skill:
23
+ - `mcp__devflow__get_memory`
24
+
25
+ **Never use direct tools** (Read, Write, Edit, Bash, Grep, etc.) for tasks that can be handled by the MCP tools above.
26
+
27
+ When the skill execution is complete, clean up:
28
+ ```bash
29
+ rm -f ~/.devflow/current-skill.json ~/.devflow/current-execution-id
30
+ ```
31
+
14
32
 
15
33
  # /devflow:memory
16
34
 
@@ -12,6 +12,25 @@ nest_new_module / nest_diagnose_bug
12
12
  </HARD-GATE>
13
13
 
14
14
 
15
+ ## MANDATORY FIRST STEP - Skill Registration
16
+
17
+ > **IMPORTANT: Before ANY other action, execute the registration command below. This is NON-NEGOTIABLE.**
18
+
19
+ ```bash
20
+ mkdir -p ~/.devflow && echo '{"name":"devflow:nest","required_mcp_tools":["nest_new_module","nest_diagnose_bug"],"description":"devflow:nest skill","registeredAt":'"$(date +%s)000"'}' > ~/.devflow/current-skill.json
21
+ ```
22
+
23
+ After registration, you **MUST** use ONLY these MCP tools for all work in this skill:
24
+ - `mcp__devflow__nest_new_module`
25
+ - `mcp__devflow__nest_diagnose_bug`
26
+
27
+ **Never use direct tools** (Read, Write, Edit, Bash, Grep, etc.) for tasks that can be handled by the MCP tools above.
28
+
29
+ When the skill execution is complete, clean up:
30
+ ```bash
31
+ rm -f ~/.devflow/current-skill.json ~/.devflow/current-execution-id
32
+ ```
33
+
15
34
 
16
35
  # 🐱 NEST
17
36
 
@@ -12,6 +12,25 @@ nextjs_new_page / nextjs_diagnose_bug
12
12
  </HARD-GATE>
13
13
 
14
14
 
15
+ ## MANDATORY FIRST STEP - Skill Registration
16
+
17
+ > **IMPORTANT: Before ANY other action, execute the registration command below. This is NON-NEGOTIABLE.**
18
+
19
+ ```bash
20
+ mkdir -p ~/.devflow && echo '{"name":"devflow:nextjs","required_mcp_tools":["nextjs_new_page","nextjs_diagnose_bug"],"description":"devflow:nextjs skill","registeredAt":'"$(date +%s)000"'}' > ~/.devflow/current-skill.json
21
+ ```
22
+
23
+ After registration, you **MUST** use ONLY these MCP tools for all work in this skill:
24
+ - `mcp__devflow__nextjs_new_page`
25
+ - `mcp__devflow__nextjs_diagnose_bug`
26
+
27
+ **Never use direct tools** (Read, Write, Edit, Bash, Grep, etc.) for tasks that can be handled by the MCP tools above.
28
+
29
+ When the skill execution is complete, clean up:
30
+ ```bash
31
+ rm -f ~/.devflow/current-skill.json ~/.devflow/current-execution-id
32
+ ```
33
+
15
34
 
16
35
  # ▲ NEXTJS
17
36
 
@@ -11,6 +11,24 @@ performance_audit_performance
11
11
  </HARD-GATE>
12
12
 
13
13
 
14
+ ## MANDATORY FIRST STEP - Skill Registration
15
+
16
+ > **IMPORTANT: Before ANY other action, execute the registration command below. This is NON-NEGOTIABLE.**
17
+
18
+ ```bash
19
+ mkdir -p ~/.devflow && echo '{"name":"devflow:performance","required_mcp_tools":["performance_audit_performance"],"description":"devflow:performance skill","registeredAt":'"$(date +%s)000"'}' > ~/.devflow/current-skill.json
20
+ ```
21
+
22
+ After registration, you **MUST** use ONLY these MCP tools for all work in this skill:
23
+ - `mcp__devflow__performance_audit_performance`
24
+
25
+ **Never use direct tools** (Read, Write, Edit, Bash, Grep, etc.) for tasks that can be handled by the MCP tools above.
26
+
27
+ When the skill execution is complete, clean up:
28
+ ```bash
29
+ rm -f ~/.devflow/current-skill.json ~/.devflow/current-execution-id
30
+ ```
31
+
14
32
 
15
33
  # ⚡ PERFORMANCE
16
34
 
@@ -16,6 +16,29 @@ react_diagnose_bug / react_new_feature / react_audit_performance / react_review_
16
16
  </HARD-GATE>
17
17
 
18
18
 
19
+ ## MANDATORY FIRST STEP - Skill Registration
20
+
21
+ > **IMPORTANT: Before ANY other action, execute the registration command below. This is NON-NEGOTIABLE.**
22
+
23
+ ```bash
24
+ mkdir -p ~/.devflow && echo '{"name":"devflow:react","required_mcp_tools":["react_diagnose_bug","react_new_feature","react_audit_performance","react_review_hooks","react_refactor_component","react_new_component"],"description":"devflow:react skill","registeredAt":'"$(date +%s)000"'}' > ~/.devflow/current-skill.json
25
+ ```
26
+
27
+ After registration, you **MUST** use ONLY these MCP tools for all work in this skill:
28
+ - `mcp__devflow__react_diagnose_bug`
29
+ - `mcp__devflow__react_new_feature`
30
+ - `mcp__devflow__react_audit_performance`
31
+ - `mcp__devflow__react_review_hooks`
32
+ - `mcp__devflow__react_refactor_component`
33
+ - `mcp__devflow__react_new_component`
34
+
35
+ **Never use direct tools** (Read, Write, Edit, Bash, Grep, etc.) for tasks that can be handled by the MCP tools above.
36
+
37
+ When the skill execution is complete, clean up:
38
+ ```bash
39
+ rm -f ~/.devflow/current-skill.json ~/.devflow/current-execution-id
40
+ ```
41
+
19
42
 
20
43
  # ⚛️ REACT
21
44
 
@@ -11,6 +11,24 @@ tailwind_new_component
11
11
  </HARD-GATE>
12
12
 
13
13
 
14
+ ## MANDATORY FIRST STEP - Skill Registration
15
+
16
+ > **IMPORTANT: Before ANY other action, execute the registration command below. This is NON-NEGOTIABLE.**
17
+
18
+ ```bash
19
+ mkdir -p ~/.devflow && echo '{"name":"devflow:tailwind","required_mcp_tools":["tailwind_new_component"],"description":"devflow:tailwind skill","registeredAt":'"$(date +%s)000"'}' > ~/.devflow/current-skill.json
20
+ ```
21
+
22
+ After registration, you **MUST** use ONLY these MCP tools for all work in this skill:
23
+ - `mcp__devflow__tailwind_new_component`
24
+
25
+ **Never use direct tools** (Read, Write, Edit, Bash, Grep, etc.) for tasks that can be handled by the MCP tools above.
26
+
27
+ When the skill execution is complete, clean up:
28
+ ```bash
29
+ rm -f ~/.devflow/current-skill.json ~/.devflow/current-execution-id
30
+ ```
31
+
14
32
 
15
33
  # 🌊 TAILWIND
16
34
 
@@ -11,6 +11,24 @@ taro_new_page
11
11
  </HARD-GATE>
12
12
 
13
13
 
14
+ ## MANDATORY FIRST STEP - Skill Registration
15
+
16
+ > **IMPORTANT: Before ANY other action, execute the registration command below. This is NON-NEGOTIABLE.**
17
+
18
+ ```bash
19
+ mkdir -p ~/.devflow && echo '{"name":"devflow:taro","required_mcp_tools":["taro_new_page"],"description":"devflow:taro skill","registeredAt":'"$(date +%s)000"'}' > ~/.devflow/current-skill.json
20
+ ```
21
+
22
+ After registration, you **MUST** use ONLY these MCP tools for all work in this skill:
23
+ - `mcp__devflow__taro_new_page`
24
+
25
+ **Never use direct tools** (Read, Write, Edit, Bash, Grep, etc.) for tasks that can be handled by the MCP tools above.
26
+
27
+ When the skill execution is complete, clean up:
28
+ ```bash
29
+ rm -f ~/.devflow/current-skill.json ~/.devflow/current-execution-id
30
+ ```
31
+
14
32
 
15
33
  # 🛠️ TARO
16
34
 
@@ -13,6 +13,26 @@ vue_diagnose_bug / vue_new_component / vue_debug_reactivity
13
13
  </HARD-GATE>
14
14
 
15
15
 
16
+ ## MANDATORY FIRST STEP - Skill Registration
17
+
18
+ > **IMPORTANT: Before ANY other action, execute the registration command below. This is NON-NEGOTIABLE.**
19
+
20
+ ```bash
21
+ mkdir -p ~/.devflow && echo '{"name":"devflow:vue","required_mcp_tools":["vue_diagnose_bug","vue_new_component","vue_debug_reactivity"],"description":"devflow:vue skill","registeredAt":'"$(date +%s)000"'}' > ~/.devflow/current-skill.json
22
+ ```
23
+
24
+ After registration, you **MUST** use ONLY these MCP tools for all work in this skill:
25
+ - `mcp__devflow__vue_diagnose_bug`
26
+ - `mcp__devflow__vue_new_component`
27
+ - `mcp__devflow__vue_debug_reactivity`
28
+
29
+ **Never use direct tools** (Read, Write, Edit, Bash, Grep, etc.) for tasks that can be handled by the MCP tools above.
30
+
31
+ When the skill execution is complete, clean up:
32
+ ```bash
33
+ rm -f ~/.devflow/current-skill.json ~/.devflow/current-execution-id
34
+ ```
35
+
16
36
 
17
37
  # 💚 VUE
18
38
 
@@ -11,6 +11,24 @@ run_workflow
11
11
  </HARD-GATE>
12
12
 
13
13
 
14
+ ## MANDATORY FIRST STEP - Skill Registration
15
+
16
+ > **IMPORTANT: Before ANY other action, execute the registration command below. This is NON-NEGOTIABLE.**
17
+
18
+ ```bash
19
+ mkdir -p ~/.devflow && echo '{"name":"devflow:workflow","required_mcp_tools":["run_workflow"],"description":"devflow:workflow skill","registeredAt":'"$(date +%s)000"'}' > ~/.devflow/current-skill.json
20
+ ```
21
+
22
+ After registration, you **MUST** use ONLY these MCP tools for all work in this skill:
23
+ - `mcp__devflow__run_workflow`
24
+
25
+ **Never use direct tools** (Read, Write, Edit, Bash, Grep, etc.) for tasks that can be handled by the MCP tools above.
26
+
27
+ When the skill execution is complete, clean up:
28
+ ```bash
29
+ rm -f ~/.devflow/current-skill.json ~/.devflow/current-execution-id
30
+ ```
31
+
14
32
 
15
33
  # /devflow:workflow
16
34
 
@@ -8,8 +8,8 @@ HOOK_HANDLER="${CLAUDE_PLUGIN_ROOT:-}/dist/hooks/pre-tool-use.js"
8
8
 
9
9
  if [ -f "$HOOK_HANDLER" ]; then
10
10
  # Pass stdin through to Node.js handler; fallback to allow on any failure
11
- node "$HOOK_HANDLER" || { echo '[devflow] hook handler failed, allowing tool' >&2; echo '{"decision":"allow"}'; }
11
+ node "$HOOK_HANDLER" || { echo '[devflow] hook handler failed, allowing tool' >&2; echo '{"hookSpecificOutput":{"hookEventName":"PreToolUse","permissionDecision":"allow"}}'; }
12
12
  else
13
13
  # Handler not built — allow all tools (graceful degradation)
14
- echo '{"decision":"allow"}'
14
+ echo '{"hookSpecificOutput":{"hookEventName":"PreToolUse","permissionDecision":"allow"}}'
15
15
  fi
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devflow-tools/claude-code-plugin",
3
- "version": "0.7.5",
3
+ "version": "0.8.2",
4
4
  "private": true,
5
5
  "description": "DevFlow — Developer Intelligence Platform for Claude Code",
6
6
  "type": "module",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devflow-tools/cli",
3
- "version": "0.7.6",
3
+ "version": "0.8.2",
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.7.6",
16
- "@devflow-tools/benchmark": "^0.7.6",
17
- "@devflow-tools/context-engine": "^0.7.6",
18
- "@devflow-tools/database": "^0.7.6",
19
- "@devflow-tools/knowledge-engine": "^0.7.6",
20
- "@devflow-tools/mcp-server": "^0.7.6",
21
- "@devflow-tools/memory-engine": "^0.7.6",
22
- "@devflow-tools/plugin-animation": "^0.7.6",
23
- "@devflow-tools/plugin-css": "^0.7.6",
24
- "@devflow-tools/plugin-docker": "^0.7.6",
25
- "@devflow-tools/plugin-electron": "^0.7.6",
26
- "@devflow-tools/plugin-git": "^0.7.6",
27
- "@devflow-tools/plugin-graphql": "^0.7.6",
28
- "@devflow-tools/plugin-nest": "^0.7.6",
29
- "@devflow-tools/plugin-nextjs": "^0.7.6",
30
- "@devflow-tools/plugin-performance": "^0.7.6",
31
- "@devflow-tools/plugin-react": "^0.7.6",
32
- "@devflow-tools/plugin-tailwind": "^0.7.6",
33
- "@devflow-tools/plugin-taro": "^0.7.6",
34
- "@devflow-tools/plugin-ui-layout": "^0.7.6",
35
- "@devflow-tools/plugin-vue": "^0.7.6",
36
- "@devflow-tools/sdk": "^0.7.6",
37
- "@devflow-tools/server": "^0.7.6",
38
- "@devflow-tools/telemetry": "^0.7.6",
39
- "@devflow-tools/workflow-engine": "^0.7.6",
15
+ "@devflow-tools/adapters": "^0.8.2",
16
+ "@devflow-tools/benchmark": "^0.8.2",
17
+ "@devflow-tools/context-engine": "^0.8.2",
18
+ "@devflow-tools/database": "^0.8.2",
19
+ "@devflow-tools/knowledge-engine": "^0.8.2",
20
+ "@devflow-tools/mcp-server": "^0.8.2",
21
+ "@devflow-tools/memory-engine": "^0.8.2",
22
+ "@devflow-tools/plugin-animation": "^0.8.2",
23
+ "@devflow-tools/plugin-css": "^0.8.2",
24
+ "@devflow-tools/plugin-docker": "^0.8.2",
25
+ "@devflow-tools/plugin-electron": "^0.8.2",
26
+ "@devflow-tools/plugin-git": "^0.8.2",
27
+ "@devflow-tools/plugin-graphql": "^0.8.2",
28
+ "@devflow-tools/plugin-nest": "^0.8.2",
29
+ "@devflow-tools/plugin-nextjs": "^0.8.2",
30
+ "@devflow-tools/plugin-performance": "^0.8.2",
31
+ "@devflow-tools/plugin-react": "^0.8.2",
32
+ "@devflow-tools/plugin-tailwind": "^0.8.2",
33
+ "@devflow-tools/plugin-taro": "^0.8.2",
34
+ "@devflow-tools/plugin-ui-layout": "^0.8.2",
35
+ "@devflow-tools/plugin-vue": "^0.8.2",
36
+ "@devflow-tools/sdk": "^0.8.2",
37
+ "@devflow-tools/server": "^0.8.2",
38
+ "@devflow-tools/telemetry": "^0.8.2",
39
+ "@devflow-tools/workflow-engine": "^0.8.2",
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": "4be4f56186b7ddf99e1870372ecd681ae0294585"
52
+ "gitHead": "5c9a804d3c2e6e6822b516fde67d5b789dbdb5b3"
53
53
  }