@evo-dev/core 0.0.1-alpha → 0.0.1-alpha.10
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 +251 -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/team/agents/code-reviewer.md +48 -0
- package/assets/team/agents/docs-maintainer.md +51 -0
- package/assets/team/agents/implementation-engineer.md +51 -0
- package/assets/team/agents/product-scope-analyst.md +58 -0
- package/assets/team/agents/release-engineer.md +55 -0
- package/assets/team/agents/security-boundary-reviewer.md +50 -0
- package/assets/team/agents/solution-architect.md +51 -0
- package/assets/team/agents/verification-engineer.md +51 -0
- package/assets/team/team.md +102 -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 +1115 -81
- package/dist/index.js +13796 -2196
- package/dist/plugins/index.js +32 -32
- package/package.json +5 -1
- package/src/agents/index.ts +63 -292
- package/src/code-agent-traces/index.ts +520 -0
- package/src/config/index.ts +7 -0
- package/src/config/paths.ts +30 -0
- package/src/config/settings.ts +201 -0
- package/src/config/store.ts +152 -0
- package/src/daemon/index.ts +462 -40
- package/src/evolution/candidates/index.ts +564 -0
- package/src/evolution/control/index.ts +20 -0
- package/src/evolution/evidence/analysis.ts +533 -0
- package/src/evolution/evidence/index.ts +3 -0
- package/src/evolution/evidence/session-memory/analysis.ts +281 -0
- package/src/evolution/evidence/session-memory/constants.ts +9 -0
- package/src/evolution/evidence/session-memory/index.ts +7 -0
- package/src/evolution/evidence/session-memory/paths.ts +29 -0
- package/src/evolution/evidence/session-memory/policy.ts +39 -0
- package/src/evolution/evidence/session-memory/segment.ts +202 -0
- package/src/evolution/evidence/session-memory/sensitivity.ts +335 -0
- package/src/evolution/evidence/session-memory/state-machine.ts +249 -0
- package/src/evolution/evidence/session-memory/storage.ts +379 -0
- package/src/evolution/evidence/session-memory/types.ts +221 -0
- package/src/evolution/evidence/session-memory/updater.ts +191 -0
- package/src/evolution/formatters.ts +169 -0
- package/src/evolution/index.ts +16 -0
- package/src/evolution/knowledge/index.ts +5427 -0
- package/src/evolution/paths.ts +44 -0
- package/src/evolution/processor/distillation.ts +518 -0
- package/src/evolution/processor/index.ts +3 -0
- package/src/evolution/processor/process.ts +528 -0
- package/src/{learning → evolution/review}/index.ts +10 -14
- package/src/evolution/schema.ts +568 -0
- package/src/evolution/shared.ts +758 -0
- package/src/evolution/triggers/classification.ts +102 -0
- package/src/evolution/triggers/index.ts +295 -0
- package/src/hooks/index.ts +652 -376
- package/src/index.ts +16 -3
- 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/projects/index.ts +453 -0
- package/src/protected-zones/index.ts +29 -11
- package/src/runtime-logs/index.ts +790 -0
- package/src/sync/orchestrator.ts +6 -0
- package/src/team/index.ts +3642 -0
- package/src/team/mcp.ts +405 -0
- package/src/team/prompts.ts +141 -0
- package/src/utils/errors.ts +13 -0
- package/src/utils/fs.ts +40 -0
- package/src/utils/hash.ts +9 -0
- package/src/utils/ids.ts +12 -0
- package/src/utils/index.ts +7 -0
- package/src/utils/parsing.ts +11 -0
- package/src/utils/text.ts +18 -0
- package/src/utils/time.ts +5 -0
- package/src/workflow/index.ts +6 -24
- package/src/project/index.ts +0 -507
- package/src/task/index.ts +0 -840
package/src/sync/orchestrator.ts
CHANGED
|
@@ -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
|
|