agent-enderun 0.2.0 → 0.2.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.
package/ENDERUN.md CHANGED
@@ -1,4 +1,4 @@
1
- # Agent Enderun (v0.2.0)
1
+ # Agent Enderun (v0.2.1)
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.2.0
1
+ # šŸ›ļø Agent Enderun — v0.2.1
2
2
 
3
3
  **The Supreme AI Governance & Orchestration Framework for Enterprise Development**
4
4
 
package/bin/cli.js CHANGED
@@ -469,21 +469,6 @@ async function initCommand(selectedAdapter) {
469
469
 
470
470
  console.log("\nšŸ› ļø Running smart configuration for adapters...");
471
471
 
472
- // Universal Symlink for Gemini compatibility
473
- if (targetBase !== ".enderun") {
474
- try {
475
- const geminiDir = path.join(targetDir, ".enderun");
476
- if (!fs.existsSync(geminiDir)) fs.mkdirSync(geminiDir, { recursive: true });
477
-
478
- const geminiAgentsDir = path.join(geminiDir, "agents");
479
- const frameworkAgentsDir = path.join(targetDir, targetBase, "agents");
480
- if (!fs.existsSync(geminiAgentsDir)) {
481
- const relativePath = path.relative(geminiDir, frameworkAgentsDir);
482
- fs.symlinkSync(relativePath, geminiAgentsDir, "dir");
483
- console.log(`šŸ”— Created symlink: .enderun/agents -> ${targetBase}/agents`);
484
- }
485
- } catch (e) {}
486
- }
487
472
 
488
473
  if (selectedAdapter === "gemini") {
489
474
  console.log(`šŸ’Ž Gemini: Adapter GEMINI.md and ${targetBase}/ folder are ready.`);
@@ -624,6 +609,7 @@ function checkCommand() {
624
609
  console.log("\nšŸš€ All systems green! Agent Enderun is ready for orchestration.");
625
610
  } else {
626
611
  console.log(`\nāš ļø Found ${issues} issues. Please fix them before starting.`);
612
+ process.exit(1);
627
613
  }
628
614
  }
629
615
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-enderun",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "The Supreme AI Governance & Orchestration Framework for Enterprise Development",
5
5
  "author": "Yusuf BEKAR",
6
6
  "license": "MIT",
@@ -30,7 +30,14 @@
30
30
  },
31
31
  "files": [
32
32
  "bin",
33
- "packages",
33
+ "packages/shared-types/dist",
34
+ "packages/shared-types/src",
35
+ "packages/shared-types/package.json",
36
+ "packages/shared-types/README.md",
37
+ "packages/framework-mcp/dist",
38
+ "packages/framework-mcp/src",
39
+ "packages/framework-mcp/package.json",
40
+ "packages/framework-mcp/README.md",
34
41
  ".enderun",
35
42
  "ENDERUN.md",
36
43
  "README.md",
@@ -50,7 +57,7 @@
50
57
  "dependencies": {},
51
58
  "devDependencies": {},
52
59
  "enderun": {
53
- "version": "0.2.0",
60
+ "version": "0.2.1",
54
61
  "initializedAt": "2026-05-09T13:24:27.472Z"
55
62
  }
56
63
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-enderun-mcp",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Enterprise-grade MCP Server for AI Agent Framework",
5
5
  "type": "module",
6
6
  "main": "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.2.0",
8
+ version: "0.2.1",
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.2.0";
4
+ export const FRAMEWORK_VERSION = "0.2.1";
5
5
 
6
6
  export function getFrameworkDir(projectRoot: string): string {
7
7
  const adapters = [".gemini", ".claude", ".cursor", ".codex", ".enderun"];
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-enderun/shared-types",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Shared TypeScript types for AI-Enderun Framework. Ensures Contract-First synchronization between agents.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",