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 +1 -1
- package/README.md +1 -1
- package/bin/cli.js +1 -15
- package/package.json +10 -3
- 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/packages/framework-mcp/package-lock.json +0 -1836
- package/packages/framework-mcp/tests/mcp-server.test.ts +0 -6
- package/packages/framework-mcp/tsconfig.json +0 -15
- package/packages/shared-types/contract.version.json +0 -9
- package/packages/shared-types/tsconfig.json +0 -17
package/ENDERUN.md
CHANGED
package/README.md
CHANGED
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.
|
|
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.
|
|
60
|
+
"version": "0.2.1",
|
|
54
61
|
"initializedAt": "2026-05-09T13:24:27.472Z"
|
|
55
62
|
}
|
|
56
63
|
}
|
|
@@ -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.
|
|
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"];
|