agent-enderun 0.3.5 → 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,20 @@ 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 — Capability Leap & v0.3.5 Release
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
+ ...
59
+ - **Agent:** @manager
60
+ - **Trace ID:** 01KR6EJA6GG3RPS849097KS37Q
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.
62
+
63
+ ### 2026-05-12 — Capability Leap & v0.3.5 Release
64
+ ...
53
65
  - **Agent:** @manager
54
66
  - **Trace ID:** 01KR6EJA6GG3RPS849097KS37Q
55
67
  - **Action:** Upgraded framework to v0.3.5. Implemented AST-based compliance auditing, Autonomous Conflict Resolution, and Senior Resilience patterns. Unified inter-agent communication and mandated shared UI component protocols. Verified monorepo version synchronization.
File without changes
File without changes
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # 🏛️ Agent Enderun — v0.3.5
1
+ # 🏛️ Agent Enderun — v0.4.1
2
2
 
3
3
  **The Supreme AI Governance & Orchestration Framework for Enterprise Development**
4
4
 
package/bin/cli.js CHANGED
@@ -498,7 +498,7 @@ async function initCommand(selectedAdapter) {
498
498
 
499
499
 
500
500
  if (selectedAdapter === "gemini") {
501
- console.log(`💎 Gemini: Adapter GEMINI.md and ${targetBase}/ folder are ready.`);
501
+ console.log(`💎 Gemini: Adapter gemini.md and ${targetBase}/ folder are ready.`);
502
502
  }
503
503
 
504
504
  if (selectedAdapter === "claude") {
@@ -510,13 +510,17 @@ async function initCommand(selectedAdapter) {
510
510
 
511
511
  if (selectedAdapter === "cursor") {
512
512
  const cursorRulesPath = path.join(targetDir, ".cursorrules");
513
- const cursorMdPath = path.join(targetDir, "CURSOR.md");
513
+ const cursorMdPath = path.join(targetDir, "cursor.md");
514
514
  if (fs.existsSync(cursorMdPath) && !fs.existsSync(cursorRulesPath)) {
515
515
  fs.copyFileSync(cursorMdPath, cursorRulesPath);
516
- console.log("🔗 Cursor: Synchronized CURSOR.md to .cursorrules");
516
+ console.log("🔗 Cursor: Synchronized cursor.md to .cursorrules");
517
517
  }
518
518
  }
519
519
 
520
+ if (selectedAdapter === "codex") {
521
+ console.log(`💎 Codex: Adapter codex.md and ${targetBase}/ folder are ready.`);
522
+ }
523
+
520
524
  const pkgMgr = getPackageManager();
521
525
  const installCmd = pkgMgr === "npm" ? "npm install" : `${pkgMgr} install`;
522
526
  const buildCmd = pkgMgr === "npm" ? "npm run enderun:build" : `${pkgMgr} run enderun:build`;
@@ -1265,3 +1269,33 @@ Example:
1265
1269
  }
1266
1270
 
1267
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.3.5",
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",
@@ -35,14 +35,10 @@
35
35
  "packages/shared-types/dist",
36
36
  "packages/shared-types/src",
37
37
  "packages/shared-types/package.json",
38
- "packages/shared-types/tsconfig.json",
39
38
  "packages/shared-types/contract.version.json",
40
- "packages/shared-types/README.md",
41
39
  "packages/framework-mcp/dist",
42
40
  "packages/framework-mcp/src",
43
41
  "packages/framework-mcp/package.json",
44
- "packages/framework-mcp/tsconfig.json",
45
- "packages/framework-mcp/README.md",
46
42
  ".enderun",
47
43
  "ENDERUN.md",
48
44
  "README.md",
@@ -75,7 +71,7 @@
75
71
  "concurrently": "^9.1.2"
76
72
  },
77
73
  "enderun": {
78
- "version": "0.3.5",
74
+ "version": "0.4.1",
79
75
  "initializedAt": "2026-05-09T13:24:27.472Z"
80
76
  }
81
77
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-enderun-mcp",
3
- "version": "0.3.5",
3
+ "version": "0.4.1",
4
4
  "description": "Enterprise-grade MCP Server for AI Agent Framework",
5
5
  "author": "Yusuf BEKAR",
6
6
  "license": "MIT",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-enderun/shared-types",
3
- "version": "0.3.5",
3
+ "version": "0.4.1",
4
4
  "description": "Shared TypeScript types for AI-Enderun Framework. Ensures Contract-First synchronization between agents.",
5
5
  "author": "Yusuf BEKAR",
6
6
  "license": "MIT",
@@ -1,13 +0,0 @@
1
- [
2
- {
3
- "timestamp": "2026-05-12T19:53:02.084Z",
4
- "agent": "analyst",
5
- "action": "MODIFY",
6
- "requestId": "01KR6EJA6GG3RPS849097KS37Q",
7
- "status": "SUCCESS",
8
- "summary": "Enhanced Analyst SOP with Surgical and Responsive design audit mandates.",
9
- "files": [
10
- ".enderun/agents/analyst.md"
11
- ]
12
- }
13
- ]
@@ -1 +0,0 @@
1
- []
@@ -1,14 +0,0 @@
1
- [
2
- {
3
- "timestamp": "2026-05-12T19:53:02.084Z",
4
- "agent": "explorer",
5
- "action": "RESEARCH",
6
- "requestId": "01KR6EJA6GG3RPS849097KS37Q",
7
- "status": "SUCCESS",
8
- "summary": "Performed deep-dive analysis of framework architecture, shared-types, and MCP tool capabilities.",
9
- "files": [
10
- "packages/shared-types/src/index.ts",
11
- "packages/framework-mcp/src/tools/"
12
- ]
13
- }
14
- ]
@@ -1,25 +0,0 @@
1
- [
2
- {
3
- "timestamp": "2026-05-12T19:53:02.084Z",
4
- "agent": "frontend",
5
- "action": "MODIFY",
6
- "requestId": "01KR6EJA6GG3RPS849097KS37Q",
7
- "status": "SUCCESS",
8
- "summary": "Updated Frontend SOP and Zero UI Policy to enforce Panda CSS and Surgical Updates.",
9
- "files": [
10
- ".enderun/agents/frontend.md",
11
- ".enderun/knowledge/zero_ui_library_policy.md"
12
- ]
13
- },
14
- {
15
- "timestamp": "2026-05-12T19:53:02.084Z",
16
- "agent": "frontend",
17
- "action": "CREATE",
18
- "requestId": "01KR6EJA6GG3RPS849097KS37Q",
19
- "status": "SUCCESS",
20
- "summary": "Created Responsive Design Standards for cross-screen compatibility.",
21
- "files": [
22
- ".enderun/knowledge/responsive_design_standards.md"
23
- ]
24
- }
25
- ]
@@ -1 +0,0 @@
1
- []
@@ -1,59 +0,0 @@
1
- [
2
- {
3
- "timestamp": "2026-05-12T19:53:02.084Z",
4
- "agent": "manager",
5
- "action": "MODIFY",
6
- "requestId": "01KR6EJA6GG3RPS849097KS37Q",
7
- "status": "SUCCESS",
8
- "summary": "Updated Supreme Law (ENDERUN.md) with Design Continuity and Shared Component policies.",
9
- "files": [
10
- "ENDERUN.md"
11
- ]
12
- },
13
- {
14
- "timestamp": "2026-05-12T19:53:02.084Z",
15
- "agent": "manager",
16
- "action": "MODIFY",
17
- "requestId": "01KR6EJA6GG3RPS849097KS37Q",
18
- "status": "SUCCESS",
19
- "summary": "Improved inter-agent communication SOPs (Backend-Frontend notification, Explorer UI mapping).",
20
- "files": [
21
- ".enderun/agents/backend.md",
22
- ".enderun/agents/explorer.md",
23
- ".enderun/agents/git.md"
24
- ]
25
- },
26
- {
27
- "timestamp": "2026-05-12T19:56:24.343Z",
28
- "agent": "manager",
29
- "action": "MODIFY",
30
- "requestId": "01KR6EJA6GG3RPS849097KS37Q",
31
- "status": "SUCCESS",
32
- "summary": "Implemented Autonomous Conflict Resolution Protocol for inter-agent negotiation.",
33
- "files": [
34
- ".enderun/agents/manager.md"
35
- ]
36
- },
37
- {
38
- "timestamp": "2026-05-12T19:56:24.343Z",
39
- "agent": "manager",
40
- "action": "MODIFY",
41
- "requestId": "01KR6EJA6GG3RPS849097KS37Q",
42
- "status": "SUCCESS",
43
- "summary": "Upgraded MCP security scan to use AST-based analysis for Zero UI and Branded Types policies.",
44
- "files": [
45
- "packages/framework-mcp/src/tools/security.ts"
46
- ]
47
- },
48
- {
49
- "timestamp": "2026-05-12T19:56:24.343Z",
50
- "agent": "manager",
51
- "action": "MODIFY",
52
- "requestId": "01KR6EJA6GG3RPS849097KS37Q",
53
- "status": "SUCCESS",
54
- "summary": "Enriched Async Error Handling knowledge base with senior resilience patterns.",
55
- "files": [
56
- ".enderun/knowledge/async_error_handling.md"
57
- ]
58
- }
59
- ]
@@ -1 +0,0 @@
1
- []
@@ -1 +0,0 @@
1
- []