@evo-dev/evodev 0.0.1-alpha → 0.0.1-alpha.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/.agents/skills/grilling/SKILL.md +10 -0
- package/dist/.claude-plugin/marketplace.json +2 -2
- package/dist/assets/agents/review/code-reviewer/examples.md +1 -1
- package/dist/assets/agents/review/code-reviewer/prompt.md +1 -1
- package/dist/assets/agents/review/code-reviewer/verification.md +1 -1
- package/dist/assets/skills/coding/knowledge-distillation/SKILL.md +249 -0
- package/dist/assets/skills/coding/knowledge-distillation/manifest.json +10 -0
- package/dist/assets/skills/coding/knowledge-distillation/references/knowledge-distillation-methods.md +126 -0
- package/dist/assets/workflows/rd-bug-fix/WORKFLOW.json +1 -1
- package/dist/assets/workflows/rd-code-review/WORKFLOW.json +1 -1
- package/dist/assets/workflows/rd-docs-update/WORKFLOW.json +1 -1
- package/dist/assets/workflows/rd-feature-implementation/WORKFLOW.json +1 -1
- package/dist/assets/workflows/rd-refactor/WORKFLOW.json +1 -1
- package/dist/assets/workflows/rd-release-readiness/WORKFLOW.json +1 -1
- package/dist/assets/workflows/rd-security-boundary-review/WORKFLOW.json +2 -2
- package/dist/assets/workflows/rd-test-generation/WORKFLOW.json +1 -1
- package/dist/index.js +18925 -6426
- package/dist/plugins/evodev/.claude-plugin/plugin.json +2 -2
- package/dist/plugins/evodev/.codex-plugin/plugin.json +8 -6
- package/dist/plugins/evodev/.mcp.json +6 -0
- package/dist/plugins/evodev/hooks/codex-hooks.json +10 -10
- package/dist/plugins/evodev/hooks/codex.ts +596 -34
- package/dist/plugins/evodev/hooks/hooks.json +18 -18
- package/dist/plugins/evodev/hooks/hooks.ts +417 -25
- package/dist/plugins/evodev/hooks/index.ts +15 -0
- package/dist/plugins/evodev/hooks/paths.ts +44 -1
- package/dist/plugins/evodev/hooks/plugin.ts +160 -9
- package/dist/plugins/evodev/hooks/runtime.ts +227 -43
- package/dist/plugins/evodev/hooks/transform-agent.ts +30 -0
- package/dist/plugins/evodev/hooks/workspace-core.ts +154 -0
- package/dist/plugins/evodev/package.json +3 -3
- package/dist/plugins/evodev/skills/engineering-discipline/SKILL.md +63 -0
- package/dist/plugins/evodev/skills/engineering-discipline/anti-patterns.md +21 -0
- package/dist/plugins/evodev/skills/engineering-discipline/examples.md +19 -0
- package/dist/plugins/evodev/skills/engineering-discipline/verification.md +11 -0
- package/dist/plugins/evodev/skills/knowledge-distillation/SKILL.md +249 -0
- package/dist/plugins/evodev/skills/knowledge-distillation/references/knowledge-distillation-methods.md +126 -0
- package/package.json +3 -6
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "evodev",
|
|
3
|
-
"description": "EvoDev hook integration for disciplined AI coding workflows.",
|
|
4
|
-
"version": "0.1.
|
|
3
|
+
"description": "EvoDev hook, skill, and Teams MCP integration for disciplined AI coding workflows.",
|
|
4
|
+
"version": "0.0.1-alpha.2",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "EvoDev"
|
|
7
7
|
},
|
|
@@ -1,19 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "evodev",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "EvoDev hook integration for disciplined AI coding workflows.",
|
|
3
|
+
"version": "0.0.1-alpha.2",
|
|
4
|
+
"description": "EvoDev hook, skill, and Teams MCP integration for disciplined AI coding workflows.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "EvoDev"
|
|
7
7
|
},
|
|
8
8
|
"license": "MIT",
|
|
9
|
+
"skills": "./skills/",
|
|
9
10
|
"hooks": "./hooks/codex-hooks.json",
|
|
11
|
+
"mcpServers": "./.mcp.json",
|
|
10
12
|
"interface": {
|
|
11
13
|
"displayName": "EvoDev",
|
|
12
|
-
"shortDescription": "Disciplined AI coding workflow
|
|
13
|
-
"longDescription": "EvoDev
|
|
14
|
+
"shortDescription": "Disciplined AI coding skills, workflow hooks, and Teams MCP.",
|
|
15
|
+
"longDescription": "EvoDev bundles reusable Codex skills through the plugin, exposes the evodev-teams MCP server, and keeps role-agent installation explicit through user-level Codex agent TOML sync.",
|
|
14
16
|
"developerName": "EvoDev",
|
|
15
17
|
"category": "Productivity",
|
|
16
|
-
"capabilities": ["
|
|
17
|
-
"defaultPrompt": ["
|
|
18
|
+
"capabilities": ["Skills", "Hooks", "MCP"],
|
|
19
|
+
"defaultPrompt": ["Use EvoDev skills to plan, verify, and improve this coding task."]
|
|
18
20
|
}
|
|
19
21
|
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"hooks": [
|
|
7
7
|
{
|
|
8
8
|
"type": "command",
|
|
9
|
-
"command": "
|
|
9
|
+
"command": "sh -lc 'root=\"${PLUGIN_ROOT:-}\"; if [ -z \"$root\" ]; then for candidate in \"$HOME/.codex/plugins/cache/evodev/evodev\"/* \"$HOME/.codex/plugins/evodev\"; do if [ -f \"$candidate/hooks/runtime.ts\" ]; then root=\"$candidate\"; break; fi; done; fi; if [ -z \"$root\" ] || [ ! -f \"$root/hooks/runtime.ts\" ]; then exit 0; fi; cd \"$root\" && bun run hooks/runtime.ts hook runtime --target codex || exit 0'",
|
|
10
10
|
"timeout": 30
|
|
11
11
|
}
|
|
12
12
|
]
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"hooks": [
|
|
18
18
|
{
|
|
19
19
|
"type": "command",
|
|
20
|
-
"command": "
|
|
20
|
+
"command": "sh -lc 'root=\"${PLUGIN_ROOT:-}\"; if [ -z \"$root\" ]; then for candidate in \"$HOME/.codex/plugins/cache/evodev/evodev\"/* \"$HOME/.codex/plugins/evodev\"; do if [ -f \"$candidate/hooks/runtime.ts\" ]; then root=\"$candidate\"; break; fi; done; fi; if [ -z \"$root\" ] || [ ! -f \"$root/hooks/runtime.ts\" ]; then exit 0; fi; cd \"$root\" && bun run hooks/runtime.ts hook runtime --target codex || exit 0'",
|
|
21
21
|
"timeout": 30
|
|
22
22
|
}
|
|
23
23
|
]
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"hooks": [
|
|
30
30
|
{
|
|
31
31
|
"type": "command",
|
|
32
|
-
"command": "
|
|
32
|
+
"command": "sh -lc 'root=\"${PLUGIN_ROOT:-}\"; if [ -z \"$root\" ]; then for candidate in \"$HOME/.codex/plugins/cache/evodev/evodev\"/* \"$HOME/.codex/plugins/evodev\"; do if [ -f \"$candidate/hooks/runtime.ts\" ]; then root=\"$candidate\"; break; fi; done; fi; if [ -z \"$root\" ] || [ ! -f \"$root/hooks/runtime.ts\" ]; then exit 0; fi; cd \"$root\" && bun run hooks/runtime.ts hook runtime --target codex || exit 0'",
|
|
33
33
|
"timeout": 30
|
|
34
34
|
}
|
|
35
35
|
]
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"hooks": [
|
|
42
42
|
{
|
|
43
43
|
"type": "command",
|
|
44
|
-
"command": "
|
|
44
|
+
"command": "sh -lc 'root=\"${PLUGIN_ROOT:-}\"; if [ -z \"$root\" ]; then for candidate in \"$HOME/.codex/plugins/cache/evodev/evodev\"/* \"$HOME/.codex/plugins/evodev\"; do if [ -f \"$candidate/hooks/runtime.ts\" ]; then root=\"$candidate\"; break; fi; done; fi; if [ -z \"$root\" ] || [ ! -f \"$root/hooks/runtime.ts\" ]; then exit 0; fi; cd \"$root\" && bun run hooks/runtime.ts hook runtime --target codex || exit 0'",
|
|
45
45
|
"timeout": 30
|
|
46
46
|
}
|
|
47
47
|
]
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"hooks": [
|
|
54
54
|
{
|
|
55
55
|
"type": "command",
|
|
56
|
-
"command": "
|
|
56
|
+
"command": "sh -lc 'root=\"${PLUGIN_ROOT:-}\"; if [ -z \"$root\" ]; then for candidate in \"$HOME/.codex/plugins/cache/evodev/evodev\"/* \"$HOME/.codex/plugins/evodev\"; do if [ -f \"$candidate/hooks/runtime.ts\" ]; then root=\"$candidate\"; break; fi; done; fi; if [ -z \"$root\" ] || [ ! -f \"$root/hooks/runtime.ts\" ]; then exit 0; fi; cd \"$root\" && bun run hooks/runtime.ts hook runtime --target codex || exit 0'",
|
|
57
57
|
"timeout": 30
|
|
58
58
|
}
|
|
59
59
|
]
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"hooks": [
|
|
65
65
|
{
|
|
66
66
|
"type": "command",
|
|
67
|
-
"command": "
|
|
67
|
+
"command": "sh -lc 'root=\"${PLUGIN_ROOT:-}\"; if [ -z \"$root\" ]; then for candidate in \"$HOME/.codex/plugins/cache/evodev/evodev\"/* \"$HOME/.codex/plugins/evodev\"; do if [ -f \"$candidate/hooks/runtime.ts\" ]; then root=\"$candidate\"; break; fi; done; fi; if [ -z \"$root\" ] || [ ! -f \"$root/hooks/runtime.ts\" ]; then exit 0; fi; cd \"$root\" && bun run hooks/runtime.ts hook runtime --target codex || exit 0'",
|
|
68
68
|
"timeout": 30
|
|
69
69
|
}
|
|
70
70
|
]
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"hooks": [
|
|
76
76
|
{
|
|
77
77
|
"type": "command",
|
|
78
|
-
"command": "
|
|
78
|
+
"command": "sh -lc 'root=\"${PLUGIN_ROOT:-}\"; if [ -z \"$root\" ]; then for candidate in \"$HOME/.codex/plugins/cache/evodev/evodev\"/* \"$HOME/.codex/plugins/evodev\"; do if [ -f \"$candidate/hooks/runtime.ts\" ]; then root=\"$candidate\"; break; fi; done; fi; if [ -z \"$root\" ] || [ ! -f \"$root/hooks/runtime.ts\" ]; then exit 0; fi; cd \"$root\" && bun run hooks/runtime.ts hook runtime --target codex || exit 0'",
|
|
79
79
|
"timeout": 30
|
|
80
80
|
}
|
|
81
81
|
]
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"hooks": [
|
|
88
88
|
{
|
|
89
89
|
"type": "command",
|
|
90
|
-
"command": "
|
|
90
|
+
"command": "sh -lc 'root=\"${PLUGIN_ROOT:-}\"; if [ -z \"$root\" ]; then for candidate in \"$HOME/.codex/plugins/cache/evodev/evodev\"/* \"$HOME/.codex/plugins/evodev\"; do if [ -f \"$candidate/hooks/runtime.ts\" ]; then root=\"$candidate\"; break; fi; done; fi; if [ -z \"$root\" ] || [ ! -f \"$root/hooks/runtime.ts\" ]; then exit 0; fi; cd \"$root\" && bun run hooks/runtime.ts hook runtime --target codex || exit 0'",
|
|
91
91
|
"timeout": 30
|
|
92
92
|
}
|
|
93
93
|
]
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"hooks": [
|
|
100
100
|
{
|
|
101
101
|
"type": "command",
|
|
102
|
-
"command": "
|
|
102
|
+
"command": "sh -lc 'root=\"${PLUGIN_ROOT:-}\"; if [ -z \"$root\" ]; then for candidate in \"$HOME/.codex/plugins/cache/evodev/evodev\"/* \"$HOME/.codex/plugins/evodev\"; do if [ -f \"$candidate/hooks/runtime.ts\" ]; then root=\"$candidate\"; break; fi; done; fi; if [ -z \"$root\" ] || [ ! -f \"$root/hooks/runtime.ts\" ]; then exit 0; fi; cd \"$root\" && bun run hooks/runtime.ts hook runtime --target codex || exit 0'",
|
|
103
103
|
"timeout": 30
|
|
104
104
|
}
|
|
105
105
|
]
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"hooks": [
|
|
112
112
|
{
|
|
113
113
|
"type": "command",
|
|
114
|
-
"command": "
|
|
114
|
+
"command": "sh -lc 'root=\"${PLUGIN_ROOT:-}\"; if [ -z \"$root\" ]; then for candidate in \"$HOME/.codex/plugins/cache/evodev/evodev\"/* \"$HOME/.codex/plugins/evodev\"; do if [ -f \"$candidate/hooks/runtime.ts\" ]; then root=\"$candidate\"; break; fi; done; fi; if [ -z \"$root\" ] || [ ! -f \"$root/hooks/runtime.ts\" ]; then exit 0; fi; cd \"$root\" && bun run hooks/runtime.ts hook runtime --target codex || exit 0'",
|
|
115
115
|
"timeout": 30
|
|
116
116
|
}
|
|
117
117
|
]
|