agent-enderun 0.3.2 → 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.
@@ -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
@@ -1,4 +1,4 @@
1
- # Agent Enderun (v0.3.2)
1
+ # Agent Enderun (v0.3.4)
2
2
  # Place in project root. This file is the single source of truth for Base Project AI Extensions.
3
3
 
4
4
  ## 🎖️ AGENT CHECKLIST (MANDATORY BEFORE RESPONSE)
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # 🏛️ Agent Enderun — v0.3.2
1
+ # 🏛️ Agent Enderun — v0.3.4
2
2
 
3
3
  **The Supreme AI Governance & Orchestration Framework for Enterprise Development**
4
4
 
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 directories in target before copying
417
- if (["packages/framework-mcp", "packages/shared-types", ".enderun", ".enderun", ".claude", ".cursor", ".codex"].includes(item)) {
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 isDocs = item === "docs";
443
- copyDir(src, dest, new Set(skipFiles), isDocs, targetBase, targetScope);
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,9 +1,10 @@
1
1
  {
2
2
  "name": "agent-enderun",
3
- "version": "0.3.2",
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.2.2",
78
+ "version": "0.3.4",
78
79
  "initializedAt": "2026-05-09T13:24:27.472Z"
79
80
  }
80
81
  }
@@ -1,4 +1,4 @@
1
- # AI-Enderun MCP Server (v0.2.0)
1
+ # AI-Enderun MCP Server (v0.3.4)
2
2
 
3
3
  English | [Türkçe](#türkçe)
4
4
 
@@ -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.0",
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.0";
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.2",
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",
@@ -5,7 +5,7 @@ import { allTools, allHandlers } from "./tools/index.js";
5
5
 
6
6
  const server = new Server({
7
7
  name: "ai-enderun-mcp",
8
- version: "0.3.2",
8
+ version: "0.3.4",
9
9
  }, {
10
10
  capabilities: {
11
11
  tools: {},
@@ -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.2";
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,4 +1,4 @@
1
- # AI-Enderun Shared Types (v0.2.0)
1
+ # AI-Enderun Shared Types (v0.3.4)
2
2
 
3
3
  English | [Türkçe](#türkçe)
4
4
 
@@ -1,8 +1,19 @@
1
1
  {
2
2
  "name": "@ai-enderun/shared-types",
3
- "version": "0.3.2",
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",