@evo-dev/evodev 0.0.1-alpha → 0.0.1-alpha.1

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/dist/.claude-plugin/marketplace.json +2 -2
  2. package/dist/assets/agents/review/code-reviewer/examples.md +1 -1
  3. package/dist/assets/agents/review/code-reviewer/prompt.md +1 -1
  4. package/dist/assets/agents/review/code-reviewer/verification.md +1 -1
  5. package/dist/assets/skills/coding/knowledge-distillation/SKILL.md +248 -0
  6. package/dist/assets/skills/coding/knowledge-distillation/manifest.json +10 -0
  7. package/dist/assets/skills/coding/knowledge-distillation/references/knowledge-distillation-methods.md +122 -0
  8. package/dist/assets/workflows/rd-bug-fix/WORKFLOW.json +1 -1
  9. package/dist/assets/workflows/rd-code-review/WORKFLOW.json +1 -1
  10. package/dist/assets/workflows/rd-docs-update/WORKFLOW.json +1 -1
  11. package/dist/assets/workflows/rd-feature-implementation/WORKFLOW.json +1 -1
  12. package/dist/assets/workflows/rd-refactor/WORKFLOW.json +1 -1
  13. package/dist/assets/workflows/rd-release-readiness/WORKFLOW.json +1 -1
  14. package/dist/assets/workflows/rd-security-boundary-review/WORKFLOW.json +2 -2
  15. package/dist/assets/workflows/rd-test-generation/WORKFLOW.json +1 -1
  16. package/dist/index.js +13114 -6432
  17. package/dist/plugins/evodev/.claude-plugin/plugin.json +2 -2
  18. package/dist/plugins/evodev/.codex-plugin/plugin.json +8 -6
  19. package/dist/plugins/evodev/.mcp.json +6 -0
  20. package/dist/plugins/evodev/hooks/codex-hooks.json +10 -10
  21. package/dist/plugins/evodev/hooks/codex.ts +393 -34
  22. package/dist/plugins/evodev/hooks/hooks.json +18 -18
  23. package/dist/plugins/evodev/hooks/hooks.ts +268 -10
  24. package/dist/plugins/evodev/hooks/index.ts +15 -0
  25. package/dist/plugins/evodev/hooks/paths.ts +44 -1
  26. package/dist/plugins/evodev/hooks/plugin.ts +160 -9
  27. package/dist/plugins/evodev/hooks/runtime.ts +146 -31
  28. package/dist/plugins/evodev/hooks/transform-agent.ts +30 -0
  29. package/dist/plugins/evodev/hooks/workspace-core.ts +181 -0
  30. package/dist/plugins/evodev/package.json +3 -3
  31. package/dist/plugins/evodev/skills/engineering-discipline/SKILL.md +63 -0
  32. package/dist/plugins/evodev/skills/engineering-discipline/anti-patterns.md +21 -0
  33. package/dist/plugins/evodev/skills/engineering-discipline/examples.md +19 -0
  34. package/dist/plugins/evodev/skills/engineering-discipline/verification.md +11 -0
  35. package/dist/plugins/evodev/skills/knowledge-distillation/SKILL.md +248 -0
  36. package/dist/plugins/evodev/skills/knowledge-distillation/references/knowledge-distillation-methods.md +122 -0
  37. 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.0",
3
+ "description": "EvoDev hook, skill, and Teams MCP integration for disciplined AI coding workflows.",
4
+ "version": "0.0.1-alpha.1",
5
5
  "author": {
6
6
  "name": "EvoDev"
7
7
  },
@@ -1,19 +1,21 @@
1
1
  {
2
2
  "name": "evodev",
3
- "version": "0.1.0",
4
- "description": "EvoDev hook integration for disciplined AI coding workflows.",
3
+ "version": "0.0.1-alpha.1",
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 integration.",
13
- "longDescription": "EvoDev integrates with Codex plugin installation while keeping Codex skill and agent sync reserved until capability verification is complete.",
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": ["Plugin Install"],
17
- "defaultPrompt": ["Check EvoDev doctor status."]
18
+ "capabilities": ["Skills", "Hooks", "MCP"],
19
+ "defaultPrompt": ["Use EvoDev skills to plan, verify, and improve this coding task."]
18
20
  }
19
21
  }
@@ -0,0 +1,6 @@
1
+ {
2
+ "evodev-teams": {
3
+ "command": "evodev",
4
+ "args": ["mcp", "teams"]
5
+ }
6
+ }
@@ -6,7 +6,7 @@
6
6
  "hooks": [
7
7
  {
8
8
  "type": "command",
9
- "command": "NODE_PATH=\"$(dirname \"$(bun pm bin -g)\")/install/global/node_modules${NODE_PATH:+:$NODE_PATH}\" bun run \"${PLUGIN_ROOT}/hooks/runtime.ts\" hook runtime --target codex",
9
+ "command": "bun run \"${PLUGIN_ROOT}/hooks/runtime.ts\" hook runtime --target codex",
10
10
  "timeout": 30
11
11
  }
12
12
  ]
@@ -17,7 +17,7 @@
17
17
  "hooks": [
18
18
  {
19
19
  "type": "command",
20
- "command": "NODE_PATH=\"$(dirname \"$(bun pm bin -g)\")/install/global/node_modules${NODE_PATH:+:$NODE_PATH}\" bun run \"${PLUGIN_ROOT}/hooks/runtime.ts\" hook runtime --target codex",
20
+ "command": "bun run \"${PLUGIN_ROOT}/hooks/runtime.ts\" hook runtime --target codex",
21
21
  "timeout": 30
22
22
  }
23
23
  ]
@@ -29,7 +29,7 @@
29
29
  "hooks": [
30
30
  {
31
31
  "type": "command",
32
- "command": "NODE_PATH=\"$(dirname \"$(bun pm bin -g)\")/install/global/node_modules${NODE_PATH:+:$NODE_PATH}\" bun run \"${PLUGIN_ROOT}/hooks/runtime.ts\" hook runtime --target codex",
32
+ "command": "bun run \"${PLUGIN_ROOT}/hooks/runtime.ts\" hook runtime --target codex",
33
33
  "timeout": 30
34
34
  }
35
35
  ]
@@ -41,7 +41,7 @@
41
41
  "hooks": [
42
42
  {
43
43
  "type": "command",
44
- "command": "NODE_PATH=\"$(dirname \"$(bun pm bin -g)\")/install/global/node_modules${NODE_PATH:+:$NODE_PATH}\" bun run \"${PLUGIN_ROOT}/hooks/runtime.ts\" hook runtime --target codex",
44
+ "command": "bun run \"${PLUGIN_ROOT}/hooks/runtime.ts\" hook runtime --target codex",
45
45
  "timeout": 30
46
46
  }
47
47
  ]
@@ -53,7 +53,7 @@
53
53
  "hooks": [
54
54
  {
55
55
  "type": "command",
56
- "command": "NODE_PATH=\"$(dirname \"$(bun pm bin -g)\")/install/global/node_modules${NODE_PATH:+:$NODE_PATH}\" bun run \"${PLUGIN_ROOT}/hooks/runtime.ts\" hook runtime --target codex",
56
+ "command": "bun run \"${PLUGIN_ROOT}/hooks/runtime.ts\" hook runtime --target codex",
57
57
  "timeout": 30
58
58
  }
59
59
  ]
@@ -64,7 +64,7 @@
64
64
  "hooks": [
65
65
  {
66
66
  "type": "command",
67
- "command": "NODE_PATH=\"$(dirname \"$(bun pm bin -g)\")/install/global/node_modules${NODE_PATH:+:$NODE_PATH}\" bun run \"${PLUGIN_ROOT}/hooks/runtime.ts\" hook runtime --target codex",
67
+ "command": "bun run \"${PLUGIN_ROOT}/hooks/runtime.ts\" hook runtime --target codex",
68
68
  "timeout": 30
69
69
  }
70
70
  ]
@@ -75,7 +75,7 @@
75
75
  "hooks": [
76
76
  {
77
77
  "type": "command",
78
- "command": "NODE_PATH=\"$(dirname \"$(bun pm bin -g)\")/install/global/node_modules${NODE_PATH:+:$NODE_PATH}\" bun run \"${PLUGIN_ROOT}/hooks/runtime.ts\" hook runtime --target codex",
78
+ "command": "bun run \"${PLUGIN_ROOT}/hooks/runtime.ts\" hook runtime --target codex",
79
79
  "timeout": 30
80
80
  }
81
81
  ]
@@ -87,7 +87,7 @@
87
87
  "hooks": [
88
88
  {
89
89
  "type": "command",
90
- "command": "NODE_PATH=\"$(dirname \"$(bun pm bin -g)\")/install/global/node_modules${NODE_PATH:+:$NODE_PATH}\" bun run \"${PLUGIN_ROOT}/hooks/runtime.ts\" hook runtime --target codex",
90
+ "command": "bun run \"${PLUGIN_ROOT}/hooks/runtime.ts\" hook runtime --target codex",
91
91
  "timeout": 30
92
92
  }
93
93
  ]
@@ -99,7 +99,7 @@
99
99
  "hooks": [
100
100
  {
101
101
  "type": "command",
102
- "command": "NODE_PATH=\"$(dirname \"$(bun pm bin -g)\")/install/global/node_modules${NODE_PATH:+:$NODE_PATH}\" bun run \"${PLUGIN_ROOT}/hooks/runtime.ts\" hook runtime --target codex",
102
+ "command": "bun run \"${PLUGIN_ROOT}/hooks/runtime.ts\" hook runtime --target codex",
103
103
  "timeout": 30
104
104
  }
105
105
  ]
@@ -111,7 +111,7 @@
111
111
  "hooks": [
112
112
  {
113
113
  "type": "command",
114
- "command": "NODE_PATH=\"$(dirname \"$(bun pm bin -g)\")/install/global/node_modules${NODE_PATH:+:$NODE_PATH}\" bun run \"${PLUGIN_ROOT}/hooks/runtime.ts\" hook runtime --target codex",
114
+ "command": "bun run \"${PLUGIN_ROOT}/hooks/runtime.ts\" hook runtime --target codex",
115
115
  "timeout": 30
116
116
  }
117
117
  ]