agent-enderun 0.7.0 → 0.7.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.
@@ -8,7 +8,7 @@ const getPackageVersion = () => {
8
8
  const pkgPath = path.join(__dirname, "../package.json");
9
9
  if (fs.existsSync(pkgPath)) {
10
10
  const pkg = JSON.parse(fs.readFileSync(pkgPath, "utf-8"));
11
- return pkg.version || "0.6.6";
11
+ return pkg.version || "0.7.1";
12
12
  }
13
13
  }
14
14
  catch {
@@ -18,7 +18,7 @@ const getPackageVersion = () => {
18
18
  };
19
19
  export const FRAMEWORK_VERSION = getPackageVersion();
20
20
  export function getFrameworkDir(_projectRoot) {
21
- return ".antigravitycli";
21
+ return ".agents"; // Antigravity-only runtime folder
22
22
  }
23
23
  export function resolveSafePath(projectRoot, targetPath) {
24
24
  const resolved = path.resolve(projectRoot, targetPath);
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-enderun-mcp",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "Enterprise-grade MCP Server for AI Agent Framework",
5
5
  "author": "Yusuf BEKAR",
6
6
  "license": "MIT",
@@ -10,7 +10,7 @@ const getPackageVersion = (): string => {
10
10
  const pkgPath = path.join(__dirname, "../package.json");
11
11
  if (fs.existsSync(pkgPath)) {
12
12
  const pkg = JSON.parse(fs.readFileSync(pkgPath, "utf-8"));
13
- return pkg.version || "0.6.6";
13
+ return pkg.version || "0.7.1";
14
14
  }
15
15
  } catch {
16
16
  // fallback
@@ -21,7 +21,7 @@ const getPackageVersion = (): string => {
21
21
  export const FRAMEWORK_VERSION = getPackageVersion();
22
22
 
23
23
  export function getFrameworkDir(_projectRoot: string): string {
24
- return ".antigravitycli";
24
+ return ".agents"; // Antigravity-only runtime folder
25
25
  }
26
26
 
27
27
  export function resolveSafePath(projectRoot: string, targetPath: string): string {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-enderun",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "The Supreme AI Governance & Orchestration Framework for Enterprise Development",
5
5
  "author": "Yusuf BEKAR",
6
6
  "license": "MIT",
@@ -80,4 +80,4 @@
80
80
  "initializedAt": "2026-05-24T12:00:52.687Z"
81
81
  },
82
82
  "dependencies": {}
83
- }
83
+ }