@evo-dev/core 0.0.1-alpha.5 → 0.0.1-alpha.7
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/config/index.js +6 -36
- package/dist/index.js +724 -1590
- package/package.json +1 -1
- package/src/agents/index.ts +0 -264
- package/src/code-agent-traces/index.ts +8 -2
- package/src/daemon/index.ts +0 -40
- package/src/evolution/candidates/index.ts +77 -18
- package/src/evolution/evidence/session-memory/storage.ts +50 -0
- package/src/evolution/evidence/session-memory/updater.ts +8 -1
- package/src/evolution/review/index.ts +3 -9
- package/src/evolution/schema.ts +0 -1
- package/src/hooks/index.ts +112 -179
- package/src/index.ts +1 -2
- package/src/projects/index.ts +453 -0
- package/src/workflow/index.ts +3 -21
- package/src/project/index.ts +0 -507
- package/src/task/index.ts +0 -840
package/dist/config/index.js
CHANGED
|
@@ -782,42 +782,6 @@ async function pathExists2(path) {
|
|
|
782
782
|
}
|
|
783
783
|
}
|
|
784
784
|
|
|
785
|
-
// packages/core/src/task/index.ts
|
|
786
|
-
var FORBIDDEN_TASK_WRITE_SEGMENTS = new Set([".claude", ".codex"]);
|
|
787
|
-
var FORBIDDEN_PROJECT_ASSET_SEGMENTS = new Set(["packages", "src"]);
|
|
788
|
-
var FORBIDDEN_TASK_WRITE_FILES = new Set(["agents.md", "claude.md", "package.json", "readme.md"]);
|
|
789
|
-
var FORBIDDEN_RAW_KEYS2 = new Set([
|
|
790
|
-
"rawoutput",
|
|
791
|
-
"raw_output",
|
|
792
|
-
"stdout",
|
|
793
|
-
"stderr",
|
|
794
|
-
"source",
|
|
795
|
-
"sourcecontent",
|
|
796
|
-
"source_content",
|
|
797
|
-
"sourcetext",
|
|
798
|
-
"source_text",
|
|
799
|
-
"prompt",
|
|
800
|
-
"prompttext",
|
|
801
|
-
"prompt_text",
|
|
802
|
-
"transcript",
|
|
803
|
-
"transcripttext",
|
|
804
|
-
"transcript_text",
|
|
805
|
-
"secret",
|
|
806
|
-
"secretvalue",
|
|
807
|
-
"secret_value"
|
|
808
|
-
]);
|
|
809
|
-
var ALLOWED_VERIFICATION_KEYS = new Set([
|
|
810
|
-
"acceptanceResults",
|
|
811
|
-
"antiCriteriaResults",
|
|
812
|
-
"commands",
|
|
813
|
-
"evidence",
|
|
814
|
-
"exitCode",
|
|
815
|
-
"id",
|
|
816
|
-
"status",
|
|
817
|
-
"summary",
|
|
818
|
-
"type"
|
|
819
|
-
]);
|
|
820
|
-
|
|
821
785
|
// packages/core/src/team/prompts.ts
|
|
822
786
|
var TEAM_ROLE_STARTUP_PROMPT_TEMPLATE = [
|
|
823
787
|
"You are an EvoDev managed role agent.",
|
|
@@ -967,6 +931,12 @@ var CODEX_STOP_EVENTS_WITHOUT_ADDITIONAL_CONTEXT = new Set([
|
|
|
967
931
|
"Stop",
|
|
968
932
|
"SubagentStop"
|
|
969
933
|
]);
|
|
934
|
+
var COMPLETION_EVENTS_WITHOUT_DEVELOPMENT_DIAGNOSTICS = new Set([
|
|
935
|
+
"Stop",
|
|
936
|
+
"SubagentStop",
|
|
937
|
+
"TaskCompleted",
|
|
938
|
+
"TeammateIdle"
|
|
939
|
+
]);
|
|
970
940
|
function createDefaultHookSettings() {
|
|
971
941
|
return {
|
|
972
942
|
enabled: true,
|