agent-enderun 0.3.1 → 0.3.3
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.md +1 -1
- package/README.md +1 -1
- package/bin/cli.js +4 -4
- package/package.json +2 -2
- package/packages/framework-mcp/dist/index.js +1 -1
- package/packages/framework-mcp/dist/utils.js +1 -1
- package/packages/framework-mcp/package.json +1 -1
- package/packages/framework-mcp/src/index.ts +1 -1
- package/packages/framework-mcp/src/utils.ts +1 -1
- package/packages/shared-types/package.json +1 -1
package/ENDERUN.md
CHANGED
package/README.md
CHANGED
package/bin/cli.js
CHANGED
|
@@ -413,8 +413,8 @@ async function initCommand(selectedAdapter) {
|
|
|
413
413
|
const src = path.join(sourceDir, item);
|
|
414
414
|
let dest = path.join(targetDir, item);
|
|
415
415
|
|
|
416
|
-
// FORCED CLEANUP: Delete existing framework
|
|
417
|
-
if (["packages/framework-mcp"
|
|
416
|
+
// FORCED CLEANUP: Delete existing framework engine directory to ensure clean update
|
|
417
|
+
if (["packages/framework-mcp"].includes(item)) {
|
|
418
418
|
if (fs.existsSync(dest)) {
|
|
419
419
|
try {
|
|
420
420
|
fs.rmSync(dest, { recursive: true, force: true });
|
|
@@ -439,8 +439,8 @@ async function initCommand(selectedAdapter) {
|
|
|
439
439
|
if (fs.existsSync(src)) {
|
|
440
440
|
if (fs.lstatSync(src).isDirectory()) {
|
|
441
441
|
const skipFiles = (item === ".enderun") ? ["logs", "PROJECT_MEMORY.md", "PROJECT_MEMORY.lock"] : [];
|
|
442
|
-
const
|
|
443
|
-
copyDir(src, dest, new Set(skipFiles),
|
|
442
|
+
const nonDestructive = ["packages/shared-types", "docs", ".enderun"].includes(item);
|
|
443
|
+
copyDir(src, dest, new Set(skipFiles), nonDestructive, targetBase, targetScope);
|
|
444
444
|
} else {
|
|
445
445
|
if (item === "package.json") continue; // We merge it later
|
|
446
446
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-enderun",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "The Supreme AI Governance & Orchestration Framework for Enterprise Development",
|
|
5
5
|
"author": "Yusuf BEKAR",
|
|
6
6
|
"license": "MIT",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"concurrently": "^9.1.2"
|
|
75
75
|
},
|
|
76
76
|
"enderun": {
|
|
77
|
-
"version": "0.
|
|
77
|
+
"version": "0.3.3",
|
|
78
78
|
"initializedAt": "2026-05-09T13:24:27.472Z"
|
|
79
79
|
}
|
|
80
80
|
}
|
|
@@ -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.3",
|
|
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.3";
|
|
4
4
|
export function getFrameworkDir(projectRoot) {
|
|
5
5
|
const adapters = [".gemini", ".claude", ".cursor", ".codex", ".enderun"];
|
|
6
6
|
for (const adp of adapters) {
|
|
@@ -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.3";
|
|
5
5
|
|
|
6
6
|
export function getFrameworkDir(projectRoot: string): string {
|
|
7
7
|
const adapters = [".gemini", ".claude", ".cursor", ".codex", ".enderun"];
|