agent-enderun 0.4.0 → 0.4.1
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.
|
@@ -48,8 +48,14 @@ This file is the Single Source of Truth (SSOT) and the persistent memory of the
|
|
|
48
48
|
|
|
49
49
|
## HISTORY (Persistent Memory)
|
|
50
50
|
|
|
51
|
-
### 2026-05-12 —
|
|
51
|
+
### 2026-05-12 — Pure Start & v0.4.1 Release
|
|
52
|
+
|
|
53
|
+
- **Agent:** @manager
|
|
54
|
+
- **Trace ID:** 01KR6EJA6GG3RPS849097KS37Q
|
|
55
|
+
- **Action:** Reset git history for a clean production start. Bumped version to v0.4.1. This release represents the stable, production-ready "Autonomous Agent Academy" architecture.
|
|
52
56
|
|
|
57
|
+
### 2026-05-12 — The Evolution Milestone & v0.4.0 Release
|
|
58
|
+
...
|
|
53
59
|
- **Agent:** @manager
|
|
54
60
|
- **Trace ID:** 01KR6EJA6GG3RPS849097KS37Q
|
|
55
61
|
- **Action:** Major version bump to v0.4.0. Completed the transition from basic governance to an "Autonomous Agent Academy" architecture. Key features: AST-based compliance auditing, Autonomous Conflict Resolution Protocol, and Senior-level Resilience patterns. Unified the adapter entry points for all AI assistants. Verified zero-drift between code and constitution.
|
package/README.md
CHANGED
package/bin/cli.js
CHANGED
|
@@ -498,13 +498,7 @@ async function initCommand(selectedAdapter) {
|
|
|
498
498
|
|
|
499
499
|
|
|
500
500
|
if (selectedAdapter === "gemini") {
|
|
501
|
-
|
|
502
|
-
const adapterGeminiMdPath = path.join(targetDir, "GEMINI.md");
|
|
503
|
-
if (fs.existsSync(adapterGeminiMdPath) && !fs.existsSync(geminiMdPath)) {
|
|
504
|
-
fs.copyFileSync(adapterGeminiMdPath, geminiMdPath);
|
|
505
|
-
console.log("💎 Gemini: Synchronized GEMINI.md to gemini.md for automatic detection.");
|
|
506
|
-
}
|
|
507
|
-
console.log(`💎 Gemini: Adapter GEMINI.md and ${targetBase}/ folder are ready.`);
|
|
501
|
+
console.log(`💎 Gemini: Adapter gemini.md and ${targetBase}/ folder are ready.`);
|
|
508
502
|
}
|
|
509
503
|
|
|
510
504
|
if (selectedAdapter === "claude") {
|
|
@@ -516,20 +510,15 @@ async function initCommand(selectedAdapter) {
|
|
|
516
510
|
|
|
517
511
|
if (selectedAdapter === "cursor") {
|
|
518
512
|
const cursorRulesPath = path.join(targetDir, ".cursorrules");
|
|
519
|
-
const cursorMdPath = path.join(targetDir, "
|
|
513
|
+
const cursorMdPath = path.join(targetDir, "cursor.md");
|
|
520
514
|
if (fs.existsSync(cursorMdPath) && !fs.existsSync(cursorRulesPath)) {
|
|
521
515
|
fs.copyFileSync(cursorMdPath, cursorRulesPath);
|
|
522
|
-
console.log("🔗 Cursor: Synchronized
|
|
516
|
+
console.log("🔗 Cursor: Synchronized cursor.md to .cursorrules");
|
|
523
517
|
}
|
|
524
518
|
}
|
|
525
519
|
|
|
526
520
|
if (selectedAdapter === "codex") {
|
|
527
|
-
|
|
528
|
-
const adapterCodexMdPath = path.join(targetDir, "CODEX.md");
|
|
529
|
-
if (fs.existsSync(adapterCodexMdPath) && !fs.existsSync(codexMdPath)) {
|
|
530
|
-
fs.copyFileSync(adapterCodexMdPath, codexMdPath);
|
|
531
|
-
console.log("💎 Codex: Synchronized CODEX.md to codex.md for automatic detection.");
|
|
532
|
-
}
|
|
521
|
+
console.log(`💎 Codex: Adapter codex.md and ${targetBase}/ folder are ready.`);
|
|
533
522
|
}
|
|
534
523
|
|
|
535
524
|
const pkgMgr = getPackageManager();
|
|
@@ -1280,3 +1269,33 @@ Example:
|
|
|
1280
1269
|
}
|
|
1281
1270
|
|
|
1282
1271
|
main().catch(console.error);
|
|
1272
|
+
:
|
|
1273
|
+
case "--version":
|
|
1274
|
+
console.log(`v${FRAMEWORK_VERSION}`);
|
|
1275
|
+
break;
|
|
1276
|
+
default:
|
|
1277
|
+
console.log(`
|
|
1278
|
+
🤖 Agent Enderun CLI (v${FRAMEWORK_VERSION})
|
|
1279
|
+
|
|
1280
|
+
Available Commands:
|
|
1281
|
+
init [adapter] Initialize the framework (gemini, claude, cursor, codex)
|
|
1282
|
+
check Full health check
|
|
1283
|
+
check:security Run security audit scan
|
|
1284
|
+
check:compliance Run constitution compliance check
|
|
1285
|
+
status Show current phase and task status
|
|
1286
|
+
trace:new <desc> Generate a new Trace ID
|
|
1287
|
+
verify-contract Check shared types integrity
|
|
1288
|
+
explorer:graph Generate dependency graph
|
|
1289
|
+
explorer:audit Codebase intelligence scan
|
|
1290
|
+
git:commit <id> Suggest semantic commit message
|
|
1291
|
+
mcp Start the MCP server
|
|
1292
|
+
version Show version information
|
|
1293
|
+
|
|
1294
|
+
Example:
|
|
1295
|
+
agent-enderun trace:new "Auth module design" backend P1
|
|
1296
|
+
`);
|
|
1297
|
+
break;
|
|
1298
|
+
}
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
main().catch(console.error);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-enderun",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "The Supreme AI Governance & Orchestration Framework for Enterprise Development",
|
|
5
5
|
"author": "Yusuf BEKAR",
|
|
6
6
|
"license": "MIT",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"concurrently": "^9.1.2"
|
|
72
72
|
},
|
|
73
73
|
"enderun": {
|
|
74
|
-
"version": "0.4.
|
|
74
|
+
"version": "0.4.1",
|
|
75
75
|
"initializedAt": "2026-05-09T13:24:27.472Z"
|
|
76
76
|
}
|
|
77
77
|
}
|