agent-enderun 0.2.3 → 0.2.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.md
CHANGED
package/README.md
CHANGED
package/bin/cli.js
CHANGED
|
@@ -657,13 +657,13 @@ function sanitizeJson(obj, targetScope = "") {
|
|
|
657
657
|
finalValue = value.replace("ai-enderun-", `${scopeName}-`);
|
|
658
658
|
}
|
|
659
659
|
|
|
660
|
-
// Handle agent-enderun -> target
|
|
661
|
-
if (
|
|
662
|
-
finalKey = scopeName;
|
|
663
|
-
}
|
|
664
|
-
if (typeof value === "string" && value === "agent-enderun") {
|
|
660
|
+
// Handle agent-enderun -> target (ONLY for the package name)
|
|
661
|
+
if (key === "name" && value === "agent-enderun") {
|
|
665
662
|
finalValue = scopeName;
|
|
666
663
|
}
|
|
664
|
+
|
|
665
|
+
// Preserve agent-enderun in dependencies and bin
|
|
666
|
+
// (No action needed as finalKey/finalValue default to original)
|
|
667
667
|
|
|
668
668
|
if (typeof value === "string" && value.startsWith("workspace:")) {
|
|
669
669
|
finalValue = "*";
|
package/package.json
CHANGED
|
@@ -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.4";
|
|
5
5
|
|
|
6
6
|
export function getFrameworkDir(projectRoot: string): string {
|
|
7
7
|
const adapters = [".gemini", ".claude", ".cursor", ".codex", ".enderun"];
|