@koda-sl/baker-cli 0.139.1 → 0.140.1-dev.5c3f9a4ae
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.
- package/README.md +5 -2
- package/dist/{chunk-TAGQCU36.js → chunk-TXNOPO6P.js} +4 -4
- package/dist/chunk-TXNOPO6P.js.map +1 -0
- package/dist/cli.js +404 -49
- package/dist/cli.js.map +1 -1
- package/dist/engine/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-TAGQCU36.js.map +0 -1
package/README.md
CHANGED
|
@@ -2525,11 +2525,12 @@ Permissions enforced server-side:
|
|
|
2525
2525
|
|
|
2526
2526
|
---
|
|
2527
2527
|
|
|
2528
|
-
### `baker mcp list | add | remove`
|
|
2528
|
+
### `baker mcp connected | list | add | remove`
|
|
2529
2529
|
|
|
2530
|
-
|
|
2530
|
+
See every third-party tool a chat can reach (managed integrations + custom servers) and manage **custom MCP servers** — point the agent at any remote HTTPS MCP endpoint. Registered tools appear as `mcp__<name>__*` on the next chat message.
|
|
2531
2531
|
|
|
2532
2532
|
```bash
|
|
2533
|
+
baker mcp connected
|
|
2533
2534
|
baker mcp list
|
|
2534
2535
|
baker mcp add --name weather --url https://mcp.example.com/mcp
|
|
2535
2536
|
baker mcp add --name acme --url https://acme.dev/mcp --header "Authorization: Bearer sk-…"
|
|
@@ -2616,6 +2617,8 @@ baker schema ads.google.query # Get query command schema
|
|
|
2616
2617
|
baker schema images.search # Get image search schema
|
|
2617
2618
|
```
|
|
2618
2619
|
|
|
2620
|
+
Not every command registers a schema. On `NOT_FOUND` the error carries a structured `fix` pointing at `--help` and the family's agent doc (`__tooling__/docs/tools/baker/<family>.md` in sandboxes). Every top-level family's `--help` also ends with a `Full guide:` line pointing at that doc; `packages/cli/__tests__/doc-coverage.test.ts` fails CI if a mounted command is missing from its family doc.
|
|
2621
|
+
|
|
2619
2622
|
## Creative Canvas
|
|
2620
2623
|
|
|
2621
2624
|
The creative canvas runs declarative JSON pipelines. You author a graph of nodes (text, image, video, audio, composition, control-flow), `baker canvas run` it, and every node's output drops to disk under `canvas/<run_id>/` so you can watch progress and consume the artifacts.
|
|
@@ -7,9 +7,9 @@ import {
|
|
|
7
7
|
__toESM
|
|
8
8
|
} from "./chunk-RK67WL4O.js";
|
|
9
9
|
|
|
10
|
-
//
|
|
10
|
+
// ../../.pnpm-store/v10/links/@/safe-stable-stringify/2.5.0/810146e81bae4e3a061fe487864f2fde80c4b03b886877dc0f1fffbc6480b67e/node_modules/safe-stable-stringify/index.js
|
|
11
11
|
var require_safe_stable_stringify = __commonJS({
|
|
12
|
-
"
|
|
12
|
+
"../../.pnpm-store/v10/links/@/safe-stable-stringify/2.5.0/810146e81bae4e3a061fe487864f2fde80c4b03b886877dc0f1fffbc6480b67e/node_modules/safe-stable-stringify/index.js"(exports, module) {
|
|
13
13
|
"use strict";
|
|
14
14
|
var { hasOwnProperty } = Object.prototype;
|
|
15
15
|
var stringify = configure2();
|
|
@@ -1070,7 +1070,7 @@ function resolveAdaptFormats(params) {
|
|
|
1070
1070
|
return params.formats ?? [];
|
|
1071
1071
|
}
|
|
1072
1072
|
|
|
1073
|
-
//
|
|
1073
|
+
// ../../.pnpm-store/v10/links/@/safe-stable-stringify/2.5.0/810146e81bae4e3a061fe487864f2fde80c4b03b886877dc0f1fffbc6480b67e/node_modules/safe-stable-stringify/esm/wrapper.js
|
|
1074
1074
|
var import__ = __toESM(require_safe_stable_stringify(), 1);
|
|
1075
1075
|
var configure = import__.default.configure;
|
|
1076
1076
|
var wrapper_default = import__.default;
|
|
@@ -7837,4 +7837,4 @@ export {
|
|
|
7837
7837
|
defaultRegistry,
|
|
7838
7838
|
createEngineFromEnv
|
|
7839
7839
|
};
|
|
7840
|
-
//# sourceMappingURL=chunk-
|
|
7840
|
+
//# sourceMappingURL=chunk-TXNOPO6P.js.map
|