diff --git a/examples/audiobook-curator/agent-bundle.config.ts b/examples/audiobook-curator/agent-bundle.config.ts index 3824d62bc..8f626b3ea 100644 --- a/examples/audiobook-curator/agent-bundle.config.ts +++ b/examples/audiobook-curator/agent-bundle.config.ts @@ -1,4 +1,4 @@ -import { defineConfig } from 'agent-bundle'; +import { defineConfig } from 'agent-bundle/config'; export default defineConfig({ marketplace: true, diff --git a/examples/audiobook-curator/package.json b/examples/audiobook-curator/package.json index c8a167544..bd3391243 100644 --- a/examples/audiobook-curator/package.json +++ b/examples/audiobook-curator/package.json @@ -21,12 +21,12 @@ } }, "scripts": { - "build": "agent-bundle build --json --output artifact", + "build": "agent-bundle build --output artifact", "check": "pnpm validate && pnpm build && pnpm typecheck && pnpm test", "dev": "agent-bundle dev", "test": "rstest tests", "typecheck": "tsc -p tsconfig.json --noEmit", - "validate": "agent-bundle validate --json" + "validate": "agent-bundle validate" }, "dependencies": { "@agent-bundle/rsc-runtime": "workspace:*", diff --git a/examples/hooks-and-scripts/agent-bundle.config.ts b/examples/hooks-and-scripts/agent-bundle.config.ts index 2df50f572..302a7706d 100644 --- a/examples/hooks-and-scripts/agent-bundle.config.ts +++ b/examples/hooks-and-scripts/agent-bundle.config.ts @@ -1,4 +1,4 @@ -import { defineConfig } from 'agent-bundle'; +import { defineConfig } from 'agent-bundle/config'; export default defineConfig({ assets: ['release/*.json'], diff --git a/examples/hooks-and-scripts/package.json b/examples/hooks-and-scripts/package.json index 5fba88cbd..48935f0bc 100644 --- a/examples/hooks-and-scripts/package.json +++ b/examples/hooks-and-scripts/package.json @@ -3,10 +3,10 @@ "private": true, "type": "module", "scripts": { - "build": "agent-bundle build --json", + "build": "agent-bundle build", "check": "pnpm validate && pnpm build", "dev": "agent-bundle dev", - "validate": "agent-bundle validate --json" + "validate": "agent-bundle validate" }, "devDependencies": { "agent-bundle": "workspace:*" diff --git a/examples/mcp-app/agent-bundle.config.ts b/examples/mcp-app/agent-bundle.config.ts index 2072b0928..50d2328ff 100644 --- a/examples/mcp-app/agent-bundle.config.ts +++ b/examples/mcp-app/agent-bundle.config.ts @@ -1,4 +1,4 @@ -import { defineConfig } from 'agent-bundle'; +import { defineConfig } from 'agent-bundle/config'; export default defineConfig({ assets: ['evals/fixtures/status/result.json'], diff --git a/examples/mcp-app/package.json b/examples/mcp-app/package.json index 51ba6e27e..49508a1c7 100644 --- a/examples/mcp-app/package.json +++ b/examples/mcp-app/package.json @@ -3,10 +3,10 @@ "private": true, "type": "module", "scripts": { - "build": "agent-bundle build --json", + "build": "agent-bundle build", "check": "pnpm validate && pnpm build", "dev": "agent-bundle dev", - "validate": "agent-bundle validate --json" + "validate": "agent-bundle validate" }, "devDependencies": { "@modelcontextprotocol/ext-apps": "1.7.5", diff --git a/examples/rsc-agent-runtime/package.json b/examples/rsc-agent-runtime/package.json index dd41d5234..42e3526b6 100644 --- a/examples/rsc-agent-runtime/package.json +++ b/examples/rsc-agent-runtime/package.json @@ -8,7 +8,7 @@ "test": "rstest --config rstest.config.ts", "typecheck": "tsc -p tsconfig.json --noEmit", "validate": "agent-bundle validate", - "check": "pnpm build && pnpm test && pnpm typecheck", + "check": "pnpm validate && pnpm build && pnpm typecheck && pnpm test", "eval:hosts": "node scripts/eval-hosts.mjs", "capture:widget": "node scripts/capture-widget.mjs" }, diff --git a/examples/skills-starter/agent-bundle.config.ts b/examples/skills-starter/agent-bundle.config.ts index d6e7a2de1..da0b4bafd 100644 --- a/examples/skills-starter/agent-bundle.config.ts +++ b/examples/skills-starter/agent-bundle.config.ts @@ -1,4 +1,4 @@ -import { defineConfig } from 'agent-bundle'; +import { defineConfig } from 'agent-bundle/config'; export default defineConfig({ plugin: { diff --git a/examples/skills-starter/package.json b/examples/skills-starter/package.json index 1ad63fe66..46aefce62 100644 --- a/examples/skills-starter/package.json +++ b/examples/skills-starter/package.json @@ -3,10 +3,10 @@ "private": true, "type": "module", "scripts": { - "build": "agent-bundle build --json", + "build": "agent-bundle build", "check": "pnpm validate && pnpm build", "dev": "agent-bundle dev", - "validate": "agent-bundle validate --json" + "validate": "agent-bundle validate" }, "devDependencies": { "agent-bundle": "workspace:*"