agent-enderun 0.0.8 → 0.0.9

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.
@@ -2,5 +2,5 @@
2
2
  "logLevel": "info",
3
3
  "outputFormat": "text",
4
4
  "defaultProfile": "Lightweight",
5
- "version": "0.0.8"
5
+ "version": "0.0.9"
6
6
  }
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.0.9] - 2026-05-09
6
+
7
+ ### Fixed
8
+ - **NPM Bin Fix:** Corrected the `bin` field in `package.json` to ensure the `agent-enderun` command is correctly linked by NPM during installation. Removed the redundant `./` prefix that was causing validation warnings.
9
+
10
+
5
11
  ## [0.0.8] - 2026-05-09
6
12
 
7
13
  ### Fixed
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "agent-enderun",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "type": "module",
5
5
  "workspaces": [
6
6
  "packages/*"
7
7
  ],
8
8
  "bin": {
9
- "agent-enderun": "./bin/cli.js"
9
+ "agent-enderun": "bin/cli.js"
10
10
  },
11
11
  "scripts": {
12
12
  "enderun:build": "npm run build --prefix packages/shared-types && npm run build --prefix packages/framework-mcp"
@@ -40,7 +40,7 @@ const LOG_AGENT_ACTION_ARGS_SCHEMA = z.object({
40
40
  summary: z.string().min(1),
41
41
  details: z.record(z.any()).default({}),
42
42
  });
43
- const FRAMEWORK_VERSION = "0.0.8";
43
+ const FRAMEWORK_VERSION = "0.0.9";
44
44
  function getFrameworkDir(projectRoot) {
45
45
  const adapters = [".gemini", ".claude", ".cursor", ".codex", ".enderun"];
46
46
  for (const adp of adapters) {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-enderun-mcp",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "Enterprise-grade MCP Server for AI Agent Framework",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -40,7 +40,7 @@ const LOG_AGENT_ACTION_ARGS_SCHEMA = z.object({
40
40
  summary: z.string().min(1),
41
41
  details: z.record(z.any()).default({}),
42
42
  });
43
- const FRAMEWORK_VERSION = "0.0.8";
43
+ const FRAMEWORK_VERSION = "0.0.9";
44
44
  function getFrameworkDir(projectRoot) {
45
45
  const adapters = [".gemini", ".claude", ".cursor", ".codex", ".enderun"];
46
46
  for (const adp of adapters) {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-enderun/shared-types",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
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",