Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/audiobook-curator/agent-bundle.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { defineConfig } from 'agent-bundle';
import { defineConfig } from 'agent-bundle/config';

export default defineConfig({
marketplace: true,
Expand Down
4 changes: 2 additions & 2 deletions examples/audiobook-curator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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:*",
Expand Down
2 changes: 1 addition & 1 deletion examples/hooks-and-scripts/agent-bundle.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { defineConfig } from 'agent-bundle';
import { defineConfig } from 'agent-bundle/config';

export default defineConfig({
assets: ['release/*.json'],
Expand Down
4 changes: 2 additions & 2 deletions examples/hooks-and-scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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:*"
Expand Down
2 changes: 1 addition & 1 deletion examples/mcp-app/agent-bundle.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { defineConfig } from 'agent-bundle';
import { defineConfig } from 'agent-bundle/config';

export default defineConfig({
assets: ['evals/fixtures/status/result.json'],
Expand Down
4 changes: 2 additions & 2 deletions examples/mcp-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion examples/rsc-agent-runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
2 changes: 1 addition & 1 deletion examples/skills-starter/agent-bundle.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { defineConfig } from 'agent-bundle';
import { defineConfig } from 'agent-bundle/config';

export default defineConfig({
plugin: {
Expand Down
4 changes: 2 additions & 2 deletions examples/skills-starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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:*"
Expand Down
Loading