@evomap/evolver 1.78.1 → 1.78.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/package.json +1 -1
- package/src/adapters/scripts/evolver-signal-detect.js +8 -2
- package/src/evolve.js +1 -1
- package/src/gep/.integrity +0 -0
- package/src/gep/a2aProtocol.js +1 -1
- package/src/gep/candidateEval.js +1 -1
- package/src/gep/candidates.js +1 -1
- package/src/gep/contentHash.js +1 -1
- package/src/gep/crypto.js +1 -1
- package/src/gep/curriculum.js +1 -1
- package/src/gep/deviceId.js +1 -1
- package/src/gep/envFingerprint.js +1 -1
- package/src/gep/explore.js +1 -1
- package/src/gep/hubReview.js +1 -1
- package/src/gep/hubSearch.js +1 -1
- package/src/gep/hubVerify.js +1 -1
- package/src/gep/integrityCheck.js +1 -1
- package/src/gep/learningSignals.js +1 -1
- package/src/gep/memoryGraph.js +1 -1
- package/src/gep/memoryGraphAdapter.js +1 -1
- package/src/gep/mutation.js +1 -1
- package/src/gep/narrativeMemory.js +1 -1
- package/src/gep/personality.js +1 -1
- package/src/gep/policyCheck.js +1 -1
- package/src/gep/prompt.js +1 -1
- package/src/gep/reflection.js +1 -1
- package/src/gep/selector.js +1 -1
- package/src/gep/shield.js +1 -1
- package/src/gep/skillDistiller.js +1 -1
- package/src/gep/solidify.js +1 -1
- package/src/gep/strategy.js +1 -1
- package/assets/gep/candidates.jsonl +0 -1
- package/assets/gep/failed_capsules.json +0 -4
- package/assets/gep/genes.jsonl +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evomap/evolver",
|
|
3
|
-
"version": "1.78.
|
|
3
|
+
"version": "1.78.2",
|
|
4
4
|
"description": "A GEP-powered self-evolution engine for AI agents. Features automated log analysis and Genome Evolution Protocol (GEP) for auditable, reusable evolution assets.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -38,8 +38,14 @@ function main() {
|
|
|
38
38
|
handled = true;
|
|
39
39
|
try {
|
|
40
40
|
const input = inputData.trim() ? JSON.parse(inputData) : {};
|
|
41
|
-
|
|
42
|
-
|
|
41
|
+
// Claude Code's PostToolUse payload nests tool args under tool_input.
|
|
42
|
+
// Older/raw shapes put them at the top level; support both.
|
|
43
|
+
const ti = input.tool_input || {};
|
|
44
|
+
const tr = input.tool_response || {};
|
|
45
|
+
const content = ti.content || ti.new_string || ti.file_content
|
|
46
|
+
|| input.content || input.file_content || input.diff || '';
|
|
47
|
+
const filePath = ti.file_path || tr.filePath
|
|
48
|
+
|| input.path || input.file_path || '';
|
|
43
49
|
|
|
44
50
|
const signals = detectSignals(content);
|
|
45
51
|
|