agent-enderun 0.3.3 → 0.3.4
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/.enderun/PROJECT_MEMORY.md +6 -0
- package/ENDERUN.md +1 -1
- package/README.md +1 -1
- package/package.json +3 -2
- package/packages/framework-mcp/README.md +1 -1
- package/packages/framework-mcp/dist/index.js +1 -1
- package/packages/framework-mcp/dist/utils.js +1 -1
- package/packages/framework-mcp/package.json +12 -1
- package/packages/framework-mcp/src/index.ts +1 -1
- package/packages/framework-mcp/src/utils.ts +1 -1
- package/packages/shared-types/README.md +1 -1
- package/packages/shared-types/package.json +12 -1
|
@@ -48,6 +48,12 @@ 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 — Critical Fix & v0.3.4 Release
|
|
52
|
+
|
|
53
|
+
- **Agent:** @manager
|
|
54
|
+
- **Trace ID:** 01KRES6JRXE82FZPWVR1SSMB4W
|
|
55
|
+
- **Action:** Fixed a critical bug in the `init` command that caused the deletion of `packages/shared-types` and `.enderun` user data during updates. Enhanced metadata across all monorepo packages by explicitly defining README paths and synchronizing repository/homepage links to fix NPM registry display issues. Bumped version to v0.3.4 across all packages and verified build integrity.
|
|
56
|
+
|
|
51
57
|
### 2026-05-11 — Modular Architecture & Documentation Overhaul
|
|
52
58
|
|
|
53
59
|
- **Agent:** @analyst
|
package/ENDERUN.md
CHANGED
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-enderun",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"description": "The Supreme AI Governance & Orchestration Framework for Enterprise Development",
|
|
5
5
|
"author": "Yusuf BEKAR",
|
|
6
6
|
"license": "MIT",
|
|
7
|
+
"readme": "README.md",
|
|
7
8
|
"type": "module",
|
|
8
9
|
"repository": {
|
|
9
10
|
"type": "git",
|
|
@@ -74,7 +75,7 @@
|
|
|
74
75
|
"concurrently": "^9.1.2"
|
|
75
76
|
},
|
|
76
77
|
"enderun": {
|
|
77
|
-
"version": "0.3.
|
|
78
|
+
"version": "0.3.4",
|
|
78
79
|
"initializedAt": "2026-05-09T13:24:27.472Z"
|
|
79
80
|
}
|
|
80
81
|
}
|
|
@@ -4,7 +4,7 @@ import { CallToolRequestSchema, ListToolsRequestSchema } from "@modelcontextprot
|
|
|
4
4
|
import { allTools, allHandlers } from "./tools/index.js";
|
|
5
5
|
const server = new Server({
|
|
6
6
|
name: "ai-enderun-mcp",
|
|
7
|
-
version: "0.3.
|
|
7
|
+
version: "0.3.4",
|
|
8
8
|
}, {
|
|
9
9
|
capabilities: {
|
|
10
10
|
tools: {},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import path from "path";
|
|
2
2
|
import fs from "fs";
|
|
3
|
-
export const FRAMEWORK_VERSION = "0.3.
|
|
3
|
+
export const FRAMEWORK_VERSION = "0.3.4";
|
|
4
4
|
export function getFrameworkDir(projectRoot) {
|
|
5
5
|
const adapters = [".gemini", ".claude", ".cursor", ".codex", ".enderun"];
|
|
6
6
|
for (const adp of adapters) {
|
|
@@ -1,8 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-enderun-mcp",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"description": "Enterprise-grade MCP Server for AI Agent Framework",
|
|
5
|
+
"author": "Yusuf BEKAR",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"readme": "README.md",
|
|
5
8
|
"type": "module",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/ysf-bkr/Agent-Enderun.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/ysf-bkr/Agent-Enderun/issues"
|
|
15
|
+
},
|
|
16
|
+
"homepage": "https://github.com/ysf-bkr/Agent-Enderun#readme",
|
|
6
17
|
"main": "dist/index.js",
|
|
7
18
|
"module": "dist/index.js",
|
|
8
19
|
"types": "dist/index.js",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import path from "path";
|
|
2
2
|
import fs from "fs";
|
|
3
3
|
|
|
4
|
-
export const FRAMEWORK_VERSION = "0.3.
|
|
4
|
+
export const FRAMEWORK_VERSION = "0.3.4";
|
|
5
5
|
|
|
6
6
|
export function getFrameworkDir(projectRoot: string): string {
|
|
7
7
|
const adapters = [".gemini", ".claude", ".cursor", ".codex", ".enderun"];
|
|
@@ -1,8 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-enderun/shared-types",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"description": "Shared TypeScript types for AI-Enderun Framework. Ensures Contract-First synchronization between agents.",
|
|
5
|
+
"author": "Yusuf BEKAR",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"readme": "README.md",
|
|
5
8
|
"type": "module",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/ysf-bkr/Agent-Enderun.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/ysf-bkr/Agent-Enderun/issues"
|
|
15
|
+
},
|
|
16
|
+
"homepage": "https://github.com/ysf-bkr/Agent-Enderun#readme",
|
|
6
17
|
"main": "dist/index.js",
|
|
7
18
|
"module": "dist/index.js",
|
|
8
19
|
"types": "dist/index.js",
|