@cuylabs/agent-code 0.10.0 → 0.11.0

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -136,7 +136,8 @@ function resolveSubAgentOptions(subagents, cwd) {
136
136
  });
137
137
  roles = discovery.roles;
138
138
  for (const { path: p, error } of discovery.errors) {
139
- console.error(`[agents] ${p}: ${error}`);
139
+ process.stderr.write(`[agents] ${p}: ${error}
140
+ `);
140
141
  }
141
142
  }
142
143
  if (roles.length === 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cuylabs/agent-code",
3
- "version": "0.10.0",
3
+ "version": "0.11.0",
4
4
  "description": "Embeddable AI coding agent built on @cuylabs/agent-core",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -24,7 +24,7 @@
24
24
  "dependencies": {
25
25
  "ai": "^6.0.67",
26
26
  "zod": "^3.24.0",
27
- "@cuylabs/agent-core": "^0.10.0"
27
+ "@cuylabs/agent-core": "^0.11.0"
28
28
  },
29
29
  "peerDependencies": {
30
30
  "@ai-sdk/anthropic": "^3.0.0",