@agentproto/cli 0.3.0 → 0.4.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.
package/dist/index.d.ts CHANGED
@@ -49,7 +49,7 @@ declare function runRun(args: readonly string[]): Promise<number>;
49
49
  * `--connect <url>` is set. With or without the tunnel:
50
50
  *
51
51
  * - HTTP /sessions, /sessions/agent, /sessions/:id/* routes work
52
- * - MCP tools (start_agent_session, prompt_agent_session, …) are
52
+ * - MCP tools (agent_start, agent_prompt, …) are
53
53
  * reachable via the daemon's /mcp transport
54
54
  * - the LocalDaemonSessionsCard in guilde-web sees every spawn
55
55
  *
@@ -105,7 +105,7 @@ interface ResolvedAdapter {
105
105
  /**
106
106
  * Compact metadata about an installed adapter — the shape returned
107
107
  * by `listInstalledAdapters()` and exposed via the daemon's
108
- * `GET /adapters` route + `list_adapters` MCP tool. Only fields
108
+ * `GET /adapters` route + `adapter_list` MCP tool. Only fields
109
109
  * safe to surface in a UI list (no install scripts, no env keys).
110
110
  * For full handle access call `resolveAdapter(slug)`.
111
111
  */
@@ -129,7 +129,7 @@ interface AdapterInfo {
129
129
  /** Known-valid model identifiers for this adapter, drawn from the
130
130
  * adapter manifest's `models.allowed` field. Empty when the adapter
131
131
  * doesn't declare a model list (accepts whatever the underlying
132
- * binary accepts). Pass one of these as `model` in `start_agent_session`
132
+ * binary accepts). Pass one of these as `model` in `agent_start`
133
133
  * to avoid trial-and-error validation errors. */
134
134
  models: string[];
135
135
  }
@@ -137,7 +137,7 @@ declare function resolveAdapter(slug: string): Promise<ResolvedAdapter>;
137
137
  /**
138
138
  * Enumerate every `@agentproto/adapter-*` package reachable from the
139
139
  * current node module-resolution path. Used by the daemon's
140
- * `GET /adapters` route and `list_adapters` MCP tool so UIs (web
140
+ * `GET /adapters` route and `adapter_list` MCP tool so UIs (web
141
141
  * spawn dialog) and operators can pick from the installed set
142
142
  * without trial-and-error against `resolveAdapter(slug)`.
143
143
  *