@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.
- package/dist/plugin-files/.claude-plugin/plugin.json +19 -19
- package/dist/plugin-files/dist/skills/devflow:context/SKILL.md +19 -0
- package/dist/plugin-files/dist/skills/devflow:docker/SKILL.md +18 -0
- package/dist/plugin-files/dist/skills/devflow:electron/SKILL.md +18 -0
- package/dist/plugin-files/dist/skills/devflow:graph/SKILL.md +18 -0
- package/dist/plugin-files/dist/skills/devflow:graphql/SKILL.md +19 -0
- package/dist/plugin-files/dist/skills/devflow:knowledge/SKILL.md +18 -0
- package/dist/plugin-files/dist/skills/devflow:memory/SKILL.md +18 -0
- package/dist/plugin-files/dist/skills/devflow:nest/SKILL.md +19 -0
- package/dist/plugin-files/dist/skills/devflow:nextjs/SKILL.md +19 -0
- package/dist/plugin-files/dist/skills/devflow:performance/SKILL.md +18 -0
- package/dist/plugin-files/dist/skills/devflow:react/SKILL.md +23 -0
- package/dist/plugin-files/dist/skills/devflow:tailwind/SKILL.md +18 -0
- package/dist/plugin-files/dist/skills/devflow:taro/SKILL.md +18 -0
- package/dist/plugin-files/dist/skills/devflow:vue/SKILL.md +20 -0
- package/dist/plugin-files/dist/skills/devflow:workflow/SKILL.md +18 -0
- package/dist/plugin-files/hooks/pre-tool-use +2 -2
- package/dist/plugin-files/package.json +1 -1
- package/package.json +27 -27
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
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 '{"
|
|
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 '{"
|
|
14
|
+
echo '{"hookSpecificOutput":{"hookEventName":"PreToolUse","permissionDecision":"allow"}}'
|
|
15
15
|
fi
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devflow-tools/cli",
|
|
3
|
-
"version": "0.
|
|
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.
|
|
16
|
-
"@devflow-tools/benchmark": "^0.
|
|
17
|
-
"@devflow-tools/context-engine": "^0.
|
|
18
|
-
"@devflow-tools/database": "^0.
|
|
19
|
-
"@devflow-tools/knowledge-engine": "^0.
|
|
20
|
-
"@devflow-tools/mcp-server": "^0.
|
|
21
|
-
"@devflow-tools/memory-engine": "^0.
|
|
22
|
-
"@devflow-tools/plugin-animation": "^0.
|
|
23
|
-
"@devflow-tools/plugin-css": "^0.
|
|
24
|
-
"@devflow-tools/plugin-docker": "^0.
|
|
25
|
-
"@devflow-tools/plugin-electron": "^0.
|
|
26
|
-
"@devflow-tools/plugin-git": "^0.
|
|
27
|
-
"@devflow-tools/plugin-graphql": "^0.
|
|
28
|
-
"@devflow-tools/plugin-nest": "^0.
|
|
29
|
-
"@devflow-tools/plugin-nextjs": "^0.
|
|
30
|
-
"@devflow-tools/plugin-performance": "^0.
|
|
31
|
-
"@devflow-tools/plugin-react": "^0.
|
|
32
|
-
"@devflow-tools/plugin-tailwind": "^0.
|
|
33
|
-
"@devflow-tools/plugin-taro": "^0.
|
|
34
|
-
"@devflow-tools/plugin-ui-layout": "^0.
|
|
35
|
-
"@devflow-tools/plugin-vue": "^0.
|
|
36
|
-
"@devflow-tools/sdk": "^0.
|
|
37
|
-
"@devflow-tools/server": "^0.
|
|
38
|
-
"@devflow-tools/telemetry": "^0.
|
|
39
|
-
"@devflow-tools/workflow-engine": "^0.
|
|
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": "
|
|
52
|
+
"gitHead": "5c9a804d3c2e6e6822b516fde67d5b789dbdb5b3"
|
|
53
53
|
}
|