@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.
Files changed (41) hide show
  1. package/assets/agents/review/code-reviewer/examples.md +1 -1
  2. package/assets/agents/review/code-reviewer/prompt.md +1 -1
  3. package/assets/agents/review/code-reviewer/verification.md +1 -1
  4. package/assets/skills/coding/knowledge-distillation/SKILL.md +249 -0
  5. package/assets/skills/coding/knowledge-distillation/manifest.json +10 -0
  6. package/assets/skills/coding/knowledge-distillation/references/knowledge-distillation-methods.md +126 -0
  7. package/assets/workflows/rd-bug-fix/WORKFLOW.json +1 -1
  8. package/assets/workflows/rd-code-review/WORKFLOW.json +1 -1
  9. package/assets/workflows/rd-docs-update/WORKFLOW.json +1 -1
  10. package/assets/workflows/rd-feature-implementation/WORKFLOW.json +1 -1
  11. package/assets/workflows/rd-refactor/WORKFLOW.json +1 -1
  12. package/assets/workflows/rd-release-readiness/WORKFLOW.json +1 -1
  13. package/assets/workflows/rd-security-boundary-review/WORKFLOW.json +2 -2
  14. package/assets/workflows/rd-test-generation/WORKFLOW.json +1 -1
  15. package/dist/config/index.js +968 -39
  16. package/dist/index.js +10914 -1476
  17. package/dist/plugins/index.js +32 -32
  18. package/package.json +5 -1
  19. package/src/agents/index.ts +84 -49
  20. package/src/code-agent-traces/index.ts +521 -0
  21. package/src/config/index.ts +5 -0
  22. package/src/config/paths.ts +30 -0
  23. package/src/config/settings.ts +130 -0
  24. package/src/config/store.ts +152 -0
  25. package/src/daemon/index.ts +465 -3
  26. package/src/evolution/index.ts +2827 -0
  27. package/src/hooks/index.ts +543 -247
  28. package/src/index.ts +6 -0
  29. package/src/knowledge/index.ts +4784 -0
  30. package/src/pack/index.ts +13 -13
  31. package/src/plugins/capabilities.ts +40 -42
  32. package/src/plugins/index.ts +0 -1
  33. package/src/plugins/types.ts +4 -0
  34. package/src/protected-zones/index.ts +29 -11
  35. package/src/runtime-logs/index.ts +798 -0
  36. package/src/sync/orchestrator.ts +6 -0
  37. package/src/task/index.ts +3 -3
  38. package/src/team/index.ts +3069 -0
  39. package/src/team/mcp.ts +405 -0
  40. package/src/team/prompts.ts +141 -0
  41. package/src/workflow/index.ts +6 -6
@@ -25,6 +25,7 @@ export interface SyncOrchestratorOptions {
25
25
  assetsRootDir: string;
26
26
  pluginRegistry: PluginRegistry;
27
27
  dryRun?: boolean;
28
+ force?: boolean;
28
29
  targetPlugins?: PluginId[];
29
30
  includeSkills?: boolean;
30
31
  includeAgents?: boolean;
@@ -49,6 +50,7 @@ export async function runSync(options: SyncOrchestratorOptions): Promise<SyncRun
49
50
  assets,
50
51
  plugins,
51
52
  dryRun: options.dryRun ?? false,
53
+ force: options.force ?? false,
52
54
  includeSkills: options.includeSkills,
53
55
  includeAgents: options.includeAgents,
54
56
  });
@@ -77,6 +79,7 @@ export interface BuildSyncPlansInput {
77
79
  assets: AssetScanResult;
78
80
  plugins: CodeAgentPlugin[];
79
81
  dryRun: boolean;
82
+ force: boolean;
80
83
  includeSkills?: boolean;
81
84
  includeAgents?: boolean;
82
85
  }
@@ -94,6 +97,7 @@ export function buildSyncPlans(input: BuildSyncPlansInput): SyncPlan[] {
94
97
  skills: filterAssetsForTarget(skills, plugin.id),
95
98
  agents: filterAssetsForTarget(agents, plugin.id),
96
99
  dryRun: input.dryRun,
100
+ force: input.force,
97
101
  }));
98
102
  }
99
103
 
@@ -116,11 +120,13 @@ async function executeSyncPlans(
116
120
  targetPlugin: plan.targetPlugin,
117
121
  skills: plan.skills,
118
122
  dryRun: plan.dryRun,
123
+ force: plan.force,
119
124
  }),
120
125
  plugin.syncAgents({
121
126
  targetPlugin: plan.targetPlugin,
122
127
  agents: plan.agents,
123
128
  dryRun: plan.dryRun,
129
+ force: plan.force,
124
130
  }),
125
131
  ]);
126
132
 
package/src/task/index.ts CHANGED
@@ -56,7 +56,7 @@ export interface TaskContract {
56
56
  requiredVerification: string[];
57
57
  };
58
58
  verification: {
59
- policy: "fail-closed";
59
+ policy: "advisory";
60
60
  commands: VerificationCommandResult[];
61
61
  acceptanceResults: VerificationCriterionResult[];
62
62
  antiCriteriaResults: VerificationCriterionResult[];
@@ -261,7 +261,7 @@ export function createTaskContract(input: TaskInitInput): TaskContract {
261
261
  requiredVerification: uniqueSanitizedIds(input.requiredVerification ?? []),
262
262
  },
263
263
  verification: {
264
- policy: "fail-closed",
264
+ policy: "advisory",
265
265
  commands: [],
266
266
  acceptanceResults: [],
267
267
  antiCriteriaResults: [],
@@ -353,7 +353,7 @@ export function verifyTaskContract(
353
353
  criterion.status,
354
354
  })),
355
355
  verification: {
356
- policy: "fail-closed",
356
+ policy: "advisory",
357
357
  commands,
358
358
  acceptanceResults,
359
359
  antiCriteriaResults,