agent-enderun 0.3.5 → 0.4.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.
@@ -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 — Capability Leap & v0.3.5 Release
51
+ ### 2026-05-12 — The Evolution Milestone & v0.4.0 Release
52
52
 
53
+ - **Agent:** @manager
54
+ - **Trace ID:** 01KR6EJA6GG3RPS849097KS37Q
55
+ - **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.
56
+
57
+ ### 2026-05-12 — Capability Leap & v0.3.5 Release
58
+ ...
53
59
  - **Agent:** @manager
54
60
  - **Trace ID:** 01KR6EJA6GG3RPS849097KS37Q
55
61
  - **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.0
2
2
 
3
3
  **The Supreme AI Governance & Orchestration Framework for Enterprise Development**
4
4
 
package/bin/cli.js CHANGED
@@ -498,6 +498,12 @@ async function initCommand(selectedAdapter) {
498
498
 
499
499
 
500
500
  if (selectedAdapter === "gemini") {
501
+ const geminiMdPath = path.join(targetDir, "gemini.md");
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
+ }
501
507
  console.log(`💎 Gemini: Adapter GEMINI.md and ${targetBase}/ folder are ready.`);
502
508
  }
503
509
 
@@ -517,6 +523,15 @@ async function initCommand(selectedAdapter) {
517
523
  }
518
524
  }
519
525
 
526
+ if (selectedAdapter === "codex") {
527
+ const codexMdPath = path.join(targetDir, "codex.md");
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
+ }
533
+ }
534
+
520
535
  const pkgMgr = getPackageManager();
521
536
  const installCmd = pkgMgr === "npm" ? "npm install" : `${pkgMgr} install`;
522
537
  const buildCmd = pkgMgr === "npm" ? "npm run enderun:build" : `${pkgMgr} run enderun:build`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-enderun",
3
- "version": "0.3.5",
3
+ "version": "0.4.0",
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.0",
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.0",
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.0",
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
- []