@evo-dev/core 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/assets/agents/review/code-reviewer/examples.md +1 -1
- package/assets/agents/review/code-reviewer/prompt.md +1 -1
- package/assets/agents/review/code-reviewer/verification.md +1 -1
- package/assets/skills/coding/knowledge-distillation/SKILL.md +249 -0
- package/assets/skills/coding/knowledge-distillation/manifest.json +10 -0
- package/assets/skills/coding/knowledge-distillation/references/knowledge-distillation-methods.md +126 -0
- package/assets/workflows/rd-bug-fix/WORKFLOW.json +1 -1
- package/assets/workflows/rd-code-review/WORKFLOW.json +1 -1
- package/assets/workflows/rd-docs-update/WORKFLOW.json +1 -1
- package/assets/workflows/rd-feature-implementation/WORKFLOW.json +1 -1
- package/assets/workflows/rd-refactor/WORKFLOW.json +1 -1
- package/assets/workflows/rd-release-readiness/WORKFLOW.json +1 -1
- package/assets/workflows/rd-security-boundary-review/WORKFLOW.json +2 -2
- package/assets/workflows/rd-test-generation/WORKFLOW.json +1 -1
- package/dist/config/index.js +968 -39
- package/dist/index.js +10914 -1476
- package/dist/plugins/index.js +32 -32
- package/package.json +5 -1
- package/src/agents/index.ts +84 -49
- package/src/code-agent-traces/index.ts +521 -0
- package/src/config/index.ts +5 -0
- package/src/config/paths.ts +30 -0
- package/src/config/settings.ts +130 -0
- package/src/config/store.ts +152 -0
- package/src/daemon/index.ts +465 -3
- package/src/evolution/index.ts +2827 -0
- package/src/hooks/index.ts +543 -247
- package/src/index.ts +6 -0
- package/src/knowledge/index.ts +4784 -0
- package/src/pack/index.ts +13 -13
- package/src/plugins/capabilities.ts +40 -42
- package/src/plugins/index.ts +0 -1
- package/src/plugins/types.ts +4 -0
- package/src/protected-zones/index.ts +29 -11
- package/src/runtime-logs/index.ts +798 -0
- package/src/sync/orchestrator.ts +6 -0
- package/src/task/index.ts +3 -3
- package/src/team/index.ts +3069 -0
- package/src/team/mcp.ts +405 -0
- package/src/team/prompts.ts +141 -0
- package/src/workflow/index.ts +6 -6
package/src/index.ts
CHANGED
|
@@ -1,14 +1,20 @@
|
|
|
1
1
|
export * from "./agents/index.ts";
|
|
2
2
|
export * from "./assets/index.ts";
|
|
3
|
+
export * from "./code-agent-traces/index.ts";
|
|
3
4
|
export * from "./config/index.ts";
|
|
4
5
|
export * from "./daemon/index.ts";
|
|
6
|
+
export * from "./evolution/index.ts";
|
|
5
7
|
export * from "./hooks/index.ts";
|
|
8
|
+
export * from "./knowledge/index.ts";
|
|
6
9
|
export * from "./learning/index.ts";
|
|
7
10
|
export * from "./observability/index.ts";
|
|
8
11
|
export * from "./pack/index.ts";
|
|
9
12
|
export * from "./plugins/index.ts";
|
|
10
13
|
export * from "./project/index.ts";
|
|
11
14
|
export * from "./protected-zones/index.ts";
|
|
15
|
+
export * from "./runtime-logs/index.ts";
|
|
12
16
|
export * from "./sync/index.ts";
|
|
13
17
|
export * from "./task/index.ts";
|
|
18
|
+
export * from "./team/index.ts";
|
|
19
|
+
export * from "./team/mcp.ts";
|
|
14
20
|
export * from "./workflow/index.ts";
|