genesis-ai-cli 8.2.0 → 8.3.0
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.
|
@@ -61,6 +61,9 @@ const child_process_1 = require("child_process");
|
|
|
61
61
|
const util_1 = require("util");
|
|
62
62
|
const fs = __importStar(require("fs"));
|
|
63
63
|
const path = __importStar(require("path"));
|
|
64
|
+
// v8.3: Self-modification imports
|
|
65
|
+
const darwin_godel_js_1 = require("../self-modification/darwin-godel.js");
|
|
66
|
+
const self_improvement_js_1 = require("../self-modification/self-improvement.js");
|
|
64
67
|
const execAsync = (0, util_1.promisify)(child_process_1.exec);
|
|
65
68
|
// ============================================================================
|
|
66
69
|
// Lazy Singleton Instances
|
|
@@ -1410,6 +1413,215 @@ registerAction('code.diff', async (context) => {
|
|
|
1410
1413
|
}
|
|
1411
1414
|
});
|
|
1412
1415
|
// ============================================================================
|
|
1416
|
+
// SELF-MODIFICATION EXECUTOR (v8.3)
|
|
1417
|
+
// ============================================================================
|
|
1418
|
+
/**
|
|
1419
|
+
* self.modify: Radical self-modification via Darwin-Gödel Engine
|
|
1420
|
+
*
|
|
1421
|
+
* This is the core action that allows Genesis to modify its own code.
|
|
1422
|
+
* Requires:
|
|
1423
|
+
* - φ ≥ 0.3 (consciousness threshold)
|
|
1424
|
+
* - Valid modification plan
|
|
1425
|
+
* - All invariants must pass after modification
|
|
1426
|
+
*
|
|
1427
|
+
* Flow:
|
|
1428
|
+
* 1. Check consciousness level
|
|
1429
|
+
* 2. Generate or use provided modification plan
|
|
1430
|
+
* 3. Validate plan (syntax, safety)
|
|
1431
|
+
* 4. Apply in sandbox
|
|
1432
|
+
* 5. Verify (build, test, invariants)
|
|
1433
|
+
* 6. Atomic apply on success
|
|
1434
|
+
* 7. Store outcome in memory
|
|
1435
|
+
*/
|
|
1436
|
+
registerAction('self.modify', async (context) => {
|
|
1437
|
+
const start = Date.now();
|
|
1438
|
+
try {
|
|
1439
|
+
// 1. Check consciousness level
|
|
1440
|
+
const phiMonitor = getPhiMonitor();
|
|
1441
|
+
const level = phiMonitor.getCurrentLevel();
|
|
1442
|
+
const phi = level.phi;
|
|
1443
|
+
if (phi < 0.3) {
|
|
1444
|
+
return {
|
|
1445
|
+
success: false,
|
|
1446
|
+
action: 'self.modify',
|
|
1447
|
+
error: `Insufficient consciousness level: φ=${phi.toFixed(3)} (need ≥0.3)`,
|
|
1448
|
+
data: { phi, threshold: 0.3 },
|
|
1449
|
+
duration: Date.now() - start,
|
|
1450
|
+
};
|
|
1451
|
+
}
|
|
1452
|
+
// 2. Get or create modification plan
|
|
1453
|
+
let plan;
|
|
1454
|
+
if (context.parameters?.plan) {
|
|
1455
|
+
// Use provided plan
|
|
1456
|
+
plan = context.parameters.plan;
|
|
1457
|
+
}
|
|
1458
|
+
else if (context.parameters?.targetMetric) {
|
|
1459
|
+
// Use SelfImprovementEngine to find opportunity
|
|
1460
|
+
const engine = (0, self_improvement_js_1.getSelfImprovementEngine)();
|
|
1461
|
+
const cycleResult = await engine.runCycle();
|
|
1462
|
+
// Find opportunity matching target metric
|
|
1463
|
+
const targetMetric = context.parameters.targetMetric;
|
|
1464
|
+
const opportunity = cycleResult.opportunities.find((o) => o.metric === targetMetric);
|
|
1465
|
+
if (!opportunity || !opportunity.suggestedFix) {
|
|
1466
|
+
return {
|
|
1467
|
+
success: false,
|
|
1468
|
+
action: 'self.modify',
|
|
1469
|
+
error: `No improvement opportunity found for metric: ${targetMetric}`,
|
|
1470
|
+
data: {
|
|
1471
|
+
metrics: cycleResult.metrics,
|
|
1472
|
+
availableOpportunities: cycleResult.opportunities.map((o) => o.metric),
|
|
1473
|
+
},
|
|
1474
|
+
duration: Date.now() - start,
|
|
1475
|
+
};
|
|
1476
|
+
}
|
|
1477
|
+
plan = opportunity.suggestedFix;
|
|
1478
|
+
}
|
|
1479
|
+
else {
|
|
1480
|
+
// Auto-detect: run full improvement cycle
|
|
1481
|
+
const engine = (0, self_improvement_js_1.getSelfImprovementEngine)();
|
|
1482
|
+
const result = await engine.runCycle();
|
|
1483
|
+
if (result.results.length === 0) {
|
|
1484
|
+
return {
|
|
1485
|
+
success: true,
|
|
1486
|
+
action: 'self.modify',
|
|
1487
|
+
data: {
|
|
1488
|
+
message: 'No improvements needed - all metrics within targets',
|
|
1489
|
+
metrics: result.metrics,
|
|
1490
|
+
opportunities: result.opportunities.length,
|
|
1491
|
+
},
|
|
1492
|
+
duration: Date.now() - start,
|
|
1493
|
+
};
|
|
1494
|
+
}
|
|
1495
|
+
// Return first improvement result
|
|
1496
|
+
const improvement = result.results[0];
|
|
1497
|
+
return {
|
|
1498
|
+
success: improvement.success,
|
|
1499
|
+
action: 'self.modify',
|
|
1500
|
+
data: {
|
|
1501
|
+
opportunityId: improvement.opportunityId,
|
|
1502
|
+
applied: improvement.applied,
|
|
1503
|
+
beforeMetrics: improvement.beforeMetrics,
|
|
1504
|
+
afterMetrics: improvement.afterMetrics,
|
|
1505
|
+
commitHash: improvement.commitHash,
|
|
1506
|
+
},
|
|
1507
|
+
duration: Date.now() - start,
|
|
1508
|
+
};
|
|
1509
|
+
}
|
|
1510
|
+
// 3. Apply via Darwin-Gödel Engine
|
|
1511
|
+
const darwinGodel = (0, darwin_godel_js_1.getDarwinGodelEngine)();
|
|
1512
|
+
const applyResult = await darwinGodel.apply(plan);
|
|
1513
|
+
// 4. Log outcome (memory storage removed - use event system instead)
|
|
1514
|
+
console.log(`[self.modify] ${applyResult.success ? 'SUCCESS' : 'FAILED'}: ${plan.name}`);
|
|
1515
|
+
return {
|
|
1516
|
+
success: applyResult.success,
|
|
1517
|
+
action: 'self.modify',
|
|
1518
|
+
data: {
|
|
1519
|
+
planId: plan.id,
|
|
1520
|
+
planName: plan.name,
|
|
1521
|
+
modificationsCount: plan.modifications.length,
|
|
1522
|
+
verification: {
|
|
1523
|
+
buildSuccess: applyResult.verificaton.buildSuccess,
|
|
1524
|
+
testsSuccess: applyResult.verificaton.testsSuccess,
|
|
1525
|
+
invariantsPass: applyResult.verificaton.invariantsPass,
|
|
1526
|
+
},
|
|
1527
|
+
commitHash: applyResult.commitHash,
|
|
1528
|
+
rollbackHash: applyResult.rollbackHash,
|
|
1529
|
+
canRollback: !!applyResult.rollbackHash,
|
|
1530
|
+
},
|
|
1531
|
+
duration: Date.now() - start,
|
|
1532
|
+
};
|
|
1533
|
+
}
|
|
1534
|
+
catch (error) {
|
|
1535
|
+
return {
|
|
1536
|
+
success: false,
|
|
1537
|
+
action: 'self.modify',
|
|
1538
|
+
error: error instanceof Error ? error.message : String(error),
|
|
1539
|
+
duration: Date.now() - start,
|
|
1540
|
+
};
|
|
1541
|
+
}
|
|
1542
|
+
});
|
|
1543
|
+
/**
|
|
1544
|
+
* improve.self: High-level self-improvement action
|
|
1545
|
+
*
|
|
1546
|
+
* Observes metrics, identifies bottlenecks, and triggers self.modify.
|
|
1547
|
+
* This is the "autonomous improvement" entry point.
|
|
1548
|
+
*/
|
|
1549
|
+
registerAction('improve.self', async (context) => {
|
|
1550
|
+
const start = Date.now();
|
|
1551
|
+
try {
|
|
1552
|
+
const engine = (0, self_improvement_js_1.getSelfImprovementEngine)();
|
|
1553
|
+
// 1. Run improvement cycle (observe + reflect + optionally apply)
|
|
1554
|
+
const cycleResult = await engine.runCycle();
|
|
1555
|
+
const { metrics, opportunities, results } = cycleResult;
|
|
1556
|
+
if (opportunities.length === 0) {
|
|
1557
|
+
return {
|
|
1558
|
+
success: true,
|
|
1559
|
+
action: 'improve.self',
|
|
1560
|
+
data: {
|
|
1561
|
+
message: 'System is operating within optimal parameters',
|
|
1562
|
+
metrics: {
|
|
1563
|
+
phi: metrics.phi,
|
|
1564
|
+
memoryReuse: metrics.memoryReuse,
|
|
1565
|
+
errorRate: metrics.errorRate,
|
|
1566
|
+
taskSuccessRate: metrics.taskSuccessRate,
|
|
1567
|
+
},
|
|
1568
|
+
},
|
|
1569
|
+
duration: Date.now() - start,
|
|
1570
|
+
};
|
|
1571
|
+
}
|
|
1572
|
+
// 2. Sort by priority and pick top
|
|
1573
|
+
const sorted = [...opportunities].sort((a, b) => b.priority - a.priority);
|
|
1574
|
+
const topOpportunity = sorted[0];
|
|
1575
|
+
// 3. If autoApply and we have results, report them
|
|
1576
|
+
if (context.parameters?.autoApply && results.length > 0) {
|
|
1577
|
+
return {
|
|
1578
|
+
success: true,
|
|
1579
|
+
action: 'improve.self',
|
|
1580
|
+
data: {
|
|
1581
|
+
applied: results.length > 0,
|
|
1582
|
+
improvements: results.map((i) => ({
|
|
1583
|
+
id: i.opportunityId,
|
|
1584
|
+
success: i.success,
|
|
1585
|
+
})),
|
|
1586
|
+
metrics: metrics,
|
|
1587
|
+
},
|
|
1588
|
+
duration: Date.now() - start,
|
|
1589
|
+
};
|
|
1590
|
+
}
|
|
1591
|
+
// 4. Otherwise, just report opportunities
|
|
1592
|
+
return {
|
|
1593
|
+
success: true,
|
|
1594
|
+
action: 'improve.self',
|
|
1595
|
+
data: {
|
|
1596
|
+
opportunities: sorted.map((o) => ({
|
|
1597
|
+
id: o.id,
|
|
1598
|
+
category: o.category,
|
|
1599
|
+
metric: o.metric,
|
|
1600
|
+
current: o.currentValue,
|
|
1601
|
+
target: o.targetValue,
|
|
1602
|
+
priority: o.priority,
|
|
1603
|
+
description: o.description,
|
|
1604
|
+
})),
|
|
1605
|
+
topRecommendation: {
|
|
1606
|
+
metric: topOpportunity.metric,
|
|
1607
|
+
description: topOpportunity.description,
|
|
1608
|
+
priority: topOpportunity.priority,
|
|
1609
|
+
},
|
|
1610
|
+
hint: 'Use self.modify with targetMetric parameter to apply improvement',
|
|
1611
|
+
},
|
|
1612
|
+
duration: Date.now() - start,
|
|
1613
|
+
};
|
|
1614
|
+
}
|
|
1615
|
+
catch (error) {
|
|
1616
|
+
return {
|
|
1617
|
+
success: false,
|
|
1618
|
+
action: 'improve.self',
|
|
1619
|
+
error: error instanceof Error ? error.message : String(error),
|
|
1620
|
+
duration: Date.now() - start,
|
|
1621
|
+
};
|
|
1622
|
+
}
|
|
1623
|
+
});
|
|
1624
|
+
// ============================================================================
|
|
1413
1625
|
// Action Executor Manager
|
|
1414
1626
|
// ============================================================================
|
|
1415
1627
|
class ActionExecutorManager {
|
package/dist/test/brain.test.js
CHANGED
|
@@ -123,18 +123,24 @@ const node_assert_1 = __importDefault(require("node:assert"));
|
|
|
123
123
|
});
|
|
124
124
|
});
|
|
125
125
|
(0, node_test_1.describe)('Brain Metrics', () => {
|
|
126
|
-
(0, node_test_1.test)('
|
|
126
|
+
(0, node_test_1.test)('metrics have correct structure and types', async () => {
|
|
127
127
|
const { createBrain } = await import('../src/brain/index.js');
|
|
128
128
|
const brain = createBrain();
|
|
129
129
|
const metrics = brain.getMetrics();
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
node_assert_1.default.
|
|
133
|
-
node_assert_1.default.
|
|
134
|
-
node_assert_1.default.
|
|
135
|
-
node_assert_1.default.
|
|
136
|
-
node_assert_1.default.
|
|
137
|
-
node_assert_1.default.
|
|
130
|
+
// Note: Due to v8.1 state persistence, metrics may carry over from previous runs
|
|
131
|
+
// We verify the metrics structure and types rather than exact values
|
|
132
|
+
node_assert_1.default.ok(typeof metrics.totalCycles === 'number', 'totalCycles should be a number');
|
|
133
|
+
node_assert_1.default.ok(typeof metrics.successfulCycles === 'number', 'successfulCycles should be a number');
|
|
134
|
+
node_assert_1.default.ok(typeof metrics.failedCycles === 'number', 'failedCycles should be a number');
|
|
135
|
+
node_assert_1.default.ok(typeof metrics.memoryRecalls === 'number', 'memoryRecalls should be a number');
|
|
136
|
+
node_assert_1.default.ok(typeof metrics.groundingChecks === 'number', 'groundingChecks should be a number');
|
|
137
|
+
node_assert_1.default.ok(typeof metrics.toolExecutions === 'number', 'toolExecutions should be a number');
|
|
138
|
+
node_assert_1.default.ok(typeof metrics.healingAttempts === 'number', 'healingAttempts should be a number');
|
|
139
|
+
node_assert_1.default.ok(typeof metrics.broadcasts === 'number', 'broadcasts should be a number');
|
|
140
|
+
// Verify metrics are non-negative
|
|
141
|
+
node_assert_1.default.ok(metrics.totalCycles >= 0, 'totalCycles should be >= 0');
|
|
142
|
+
node_assert_1.default.ok(metrics.successfulCycles >= 0, 'successfulCycles should be >= 0');
|
|
143
|
+
node_assert_1.default.ok(metrics.failedCycles >= 0, 'failedCycles should be >= 0');
|
|
138
144
|
});
|
|
139
145
|
(0, node_test_1.test)('metrics track avgPhi', async () => {
|
|
140
146
|
const { createBrain } = await import('../src/brain/index.js');
|
package/package.json
CHANGED