runpane 2.3.2 → 2.3.4

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.
@@ -86,12 +86,33 @@ export declare const RUNPANE_CONTRACT: {
86
86
  readonly usage: readonly ["runpane repos add --path <path> [--name <name>] [--json] [--yes]"];
87
87
  readonly mutates: true;
88
88
  readonly jsonSchemas: readonly ["repoAddRequest", "repoAddResult"];
89
+ }, {
90
+ readonly name: "panes list";
91
+ readonly summary: "List Pane sessions in a saved repository.";
92
+ readonly usage: readonly ["runpane panes list [--repo <selector>] [--json]"];
93
+ readonly jsonSchemas: readonly ["paneListResult"];
89
94
  }, {
90
95
  readonly name: "panes create";
91
96
  readonly summary: "Create one or more Pane sessions in a saved repository and open a terminal-backed tool tab.";
92
97
  readonly usage: readonly ["runpane panes create --repo <selector> --name <name> --agent <codex|claude> [options]", "runpane panes create --from-json <path|-> [--yes] [--json]"];
93
98
  readonly mutates: true;
94
99
  readonly jsonSchemas: readonly ["paneCreateRequest", "paneCreateResult"];
100
+ }, {
101
+ readonly name: "panels list";
102
+ readonly summary: "List tool panels inside a Pane session.";
103
+ readonly usage: readonly ["runpane panels list --pane <pane-id> [--json]"];
104
+ readonly jsonSchemas: readonly ["panelListResult"];
105
+ }, {
106
+ readonly name: "panels output";
107
+ readonly summary: "Read recent terminal output from a panel.";
108
+ readonly usage: readonly ["runpane panels output --panel <panel-id> [--limit <count>] [--json]"];
109
+ readonly jsonSchemas: readonly ["panelOutputResult"];
110
+ }, {
111
+ readonly name: "panels input";
112
+ readonly summary: "Send input bytes to a terminal panel.";
113
+ readonly usage: readonly ["runpane panels input --panel <panel-id> (--text <text>|--input-file <path|->) --yes [--json]"];
114
+ readonly mutates: true;
115
+ readonly jsonSchemas: readonly ["panelInputRequest", "panelInputResult"];
95
116
  }];
96
117
  readonly flags: {
97
118
  readonly wrapper: readonly [{
@@ -165,6 +186,14 @@ export declare const RUNPANE_CONTRACT: {
165
186
  readonly name: "--repo";
166
187
  readonly value: "<selector>";
167
188
  readonly description: "Repository selector: active, id, exact path, or saved repository name.";
189
+ }, {
190
+ readonly name: "--pane";
191
+ readonly value: "<pane-id>";
192
+ readonly description: "Pane/session id to inspect.";
193
+ }, {
194
+ readonly name: "--panel";
195
+ readonly value: "<panel-id>";
196
+ readonly description: "Tool panel id to inspect or control.";
168
197
  }, {
169
198
  readonly name: "--path";
170
199
  readonly value: "<path>";
@@ -210,6 +239,18 @@ export declare const RUNPANE_CONTRACT: {
210
239
  readonly name: "--timeout-ms";
211
240
  readonly value: "<milliseconds>";
212
241
  readonly description: "Maximum time to wait for each pane creation job.";
242
+ }, {
243
+ readonly name: "--limit";
244
+ readonly value: "<count>";
245
+ readonly description: "Maximum number of output records to read.";
246
+ }, {
247
+ readonly name: "--text";
248
+ readonly value: "<text>";
249
+ readonly description: "Text bytes to send to a terminal panel.";
250
+ }, {
251
+ readonly name: "--input-file";
252
+ readonly value: "<path|->";
253
+ readonly description: "Read panel input from a file or stdin.";
213
254
  }];
214
255
  readonly localBoolean: readonly [{
215
256
  readonly name: "--json";
@@ -218,7 +259,7 @@ export declare const RUNPANE_CONTRACT: {
218
259
  };
219
260
  readonly help: {
220
261
  readonly npm: {
221
- readonly default: readonly ["Usage:", " runpane", " runpane setup", " runpane install [client|daemon] [options]", " runpane update [options]", " runpane version", " runpane doctor", " runpane agent-context [--json]", " runpane repos list [--json]", " runpane repos add --path <path> [--name <name>]", " runpane panes create --repo <selector> --name <name> --agent <codex|claude>", " runpane help [command]", "", "Quick start:", " npx --yes runpane@latest", " npm i -g runpane && runpane setup", "", "Advanced examples:", " npx --yes runpane@latest install client", " npx --yes runpane@latest install daemon --label \"My Server\"", " pnpm dlx runpane@latest", " pipx run runpane", "", "Run \"runpane agent-context\" when an agent needs Pane command context.", "Run \"runpane help panes create\" for pane orchestration options."];
262
+ readonly default: readonly ["Usage:", " runpane", " runpane setup", " runpane install [client|daemon] [options]", " runpane update [options]", " runpane version", " runpane doctor", " runpane agent-context [--json]", " runpane repos list [--json]", " runpane repos add --path <path> [--name <name>]", " runpane panes list [--repo <selector>] [--json]", " runpane panes create --repo <selector> --name <name> --agent <codex|claude>", " runpane panels list --pane <pane-id> [--json]", " runpane panels output --panel <panel-id> [--limit <count>] [--json]", " runpane panels input --panel <panel-id> --text <text> --yes", " runpane help [command]", "", "Quick start:", " npx --yes runpane@latest", " npm i -g runpane && runpane setup", "", "Advanced examples:", " npx --yes runpane@latest install client", " npx --yes runpane@latest install daemon --label \"My Server\"", " pnpm dlx runpane@latest", " pipx run runpane", "", "Run \"runpane agent-context\" when an agent needs Pane command context.", "Run \"runpane help panes create\" for pane orchestration options."];
222
263
  readonly install: readonly ["Usage:", " runpane install [client|daemon] [options]", "", "Examples:", " npx --yes runpane@latest install client", " npx --yes runpane@latest install daemon --label \"My Server\"", " pnpm dlx runpane@latest install daemon --prefer-tunnel ssh --label \"VM\"", "", "Wrapper options:", " --version <latest|vX.Y.Z> Pane release to install", " --format <auto|appimage|deb|dmg|zip|exe>", " --download-dir <path>", " --pane-path <path> Use an existing Pane executable", " --dry-run Print the plan without downloading", " --yes Skip interactive prompts where possible", " --verbose", "", "Daemon passthrough options:", " --label <name>", " --prefer-tunnel <tailscale|ssh|manual|auto>", " --channel <stable|nightly>", " --base-url <url>", " --pane-dir <path>", " --listen-port <port> / --port <port>", " --auto-listen-port", " --interactive-tailscale-setup", " --no-install-service", " --no-tailscale-serve", " --print-only", " --repo-ref <ref>"];
223
264
  readonly setup: readonly ["Usage:", " runpane setup", "", "Opens the guided setup for desktop install, remote host setup, update, and diagnostics.", "", "Quick start:", " npx --yes runpane@latest", " npm i -g runpane && runpane setup"];
224
265
  readonly update: readonly ["Usage:", " runpane update [options]", "", "Updates Pane using the same artifact selection as \"runpane install client\".", "", "Options:", " --version <latest|vX.Y.Z>", " --format <auto|appimage|deb|dmg|zip|exe>", " --download-dir <path>", " --pane-path <path>", " --dry-run", " --yes", " --verbose"];
@@ -226,11 +267,15 @@ export declare const RUNPANE_CONTRACT: {
226
267
  readonly doctor: readonly ["Usage:", " runpane doctor [--pane-path <path>] [--format <format>] [--verbose]"];
227
268
  readonly "repos list": readonly ["Usage:", " runpane repos list [--json] [--pane-dir <path>]", "", "Lists repositories saved in the running Pane app.", "", "Options:", " --json Print machine-readable output", " --pane-dir <path> Connect to a specific Pane data directory"];
228
269
  readonly "repos add": readonly ["Usage:", " runpane repos add --path <path> [--name <name>] [--json] [--yes]", "", "Registers an existing git repository with the running Pane app.", "", "Options:", " --path <path> Existing git repository path", " --name <name> Saved repository name; defaults to the directory name", " --pane-dir <path> Connect to a specific Pane data directory", " --json Print machine-readable output", " --dry-run Validate and preview without adding the repo", " --yes Skip confirmation for mutating commands"];
270
+ readonly "panes list": readonly ["Usage:", " runpane panes list [--repo <selector>] [--json]", "", "Lists Pane sessions. Pass --repo to limit results to one saved repository.", "", "Options:", " --repo <selector> active, id, exact path, or saved repository name", " --pane-dir <path> Connect to a specific Pane data directory", " --json Print machine-readable output"];
229
271
  readonly "panes create": readonly ["Usage:", " runpane panes create --repo <selector> --name <name> --agent <codex|claude> [options]", " runpane panes create --from-json <path|-> [--yes] [--json]", "", "Creates Pane sessions in a saved repository and opens a terminal-backed tool tab.", "", "Options:", " --repo <selector> active, id, exact path, or saved repository name", " --name <name> Pane/session name", " --worktree-name <name> Worktree name; defaults to --name", " --base-branch <branch> Base branch for the worktree", " --agent <codex|claude> Built-in terminal template", " --tool-command <command> Custom terminal command", " --title <title> Terminal tab title", " --initial-input <text> Text sent after the command is ready", " --prompt <text> Alias for --initial-input", " --initial-input-file <path|-> Read initial input from a file or stdin", " --from-json <path|-> Read a full request payload", " --timeout-ms <milliseconds> Pane creation timeout", " --pane-dir <path> Connect to a specific Pane data directory", " --json Print machine-readable output", " --dry-run Validate and preview without creating panes", " --yes Skip confirmation for mutating commands"];
272
+ readonly "panels list": readonly ["Usage:", " runpane panels list --pane <pane-id> [--json]", "", "Lists tool panels in a Pane session.", "", "Options:", " --pane <pane-id> Pane/session id", " --pane-dir <path> Connect to a specific Pane data directory", " --json Print machine-readable output"];
273
+ readonly "panels output": readonly ["Usage:", " runpane panels output --panel <panel-id> [--limit <count>] [--json]", "", "Reads recent terminal output records from a panel.", "", "Options:", " --panel <panel-id> Tool panel id", " --limit <count> Maximum output records to read", " --pane-dir <path> Connect to a specific Pane data directory", " --json Print machine-readable output"];
274
+ readonly "panels input": readonly ["Usage:", " runpane panels input --panel <panel-id> (--text <text>|--input-file <path|->) --yes [--json]", "", "Sends exact input bytes to a terminal panel. Include a newline in the input when you mean Enter.", "", "Options:", " --panel <panel-id> Terminal panel id", " --text <text> Text bytes to send", " --input-file <path|-> Read input from a file or stdin", " --pane-dir <path> Connect to a specific Pane data directory", " --json Print machine-readable output", " --yes Skip confirmation for mutating commands"];
230
275
  readonly "agent-context": readonly ["Usage:", " runpane agent-context [--json]", " runpane agent-context --command <command> [--json]", "", "Prints Pane command context for coding agents without requiring a running Pane app.", "", "Options:", " --command <command> Print the full definition for one runpane command", " --json Print machine-readable output", "", "Examples:", " runpane agent-context", " runpane agent-context --json", " runpane agent-context --command \"panes create\"", " runpane agent-context --command \"panes create\" --json"];
231
276
  };
232
277
  readonly pip: {
233
- readonly default: readonly ["Usage:", " runpane", " runpane setup", " runpane install [client|daemon] [options]", " runpane update [options]", " runpane version", " runpane doctor", " runpane agent-context [--json]", " runpane repos list [--json]", " runpane repos add --path <path> [--name <name>]", " runpane panes create --repo <selector> --name <name> --agent <codex|claude>", " runpane help [command]", "", "Quick start:", " pipx run runpane", " python -m pip install runpane && python -m runpane setup", "", "Advanced examples:", " pipx run runpane install client", " pipx run runpane install daemon --label \"My Server\"", " uvx runpane@latest", "", "Run \"runpane agent-context\" when an agent needs Pane command context.", "Run \"runpane help panes create\" for pane orchestration options."];
278
+ readonly default: readonly ["Usage:", " runpane", " runpane setup", " runpane install [client|daemon] [options]", " runpane update [options]", " runpane version", " runpane doctor", " runpane agent-context [--json]", " runpane repos list [--json]", " runpane repos add --path <path> [--name <name>]", " runpane panes list [--repo <selector>] [--json]", " runpane panes create --repo <selector> --name <name> --agent <codex|claude>", " runpane panels list --pane <pane-id> [--json]", " runpane panels output --panel <panel-id> [--limit <count>] [--json]", " runpane panels input --panel <panel-id> --text <text> --yes", " runpane help [command]", "", "Quick start:", " pipx run runpane", " python -m pip install runpane && python -m runpane setup", "", "Advanced examples:", " pipx run runpane install client", " pipx run runpane install daemon --label \"My Server\"", " uvx runpane@latest", "", "Run \"runpane agent-context\" when an agent needs Pane command context.", "Run \"runpane help panes create\" for pane orchestration options."];
234
279
  readonly install: readonly ["Usage:", " runpane install [client|daemon] [options]", "", "Examples:", " npx --yes runpane@latest install daemon --label \"My Server\"", " pnpm dlx runpane@latest install daemon --prefer-tunnel ssh --label \"VM\"", " pipx run runpane install daemon --label \"My Server\"", "", "Wrapper options:", " --version <latest|vX.Y.Z>", " --format <auto|appimage|deb|dmg|zip|exe>", " --download-dir <path>", " --pane-path <path>", " --dry-run", " --yes", " --verbose", "", "Daemon passthrough options:", " --label <name>", " --prefer-tunnel <tailscale|ssh|manual|auto>", " --channel <stable|nightly>", " --base-url <url>", " --pane-dir <path>", " --listen-port <port> / --port <port>", " --auto-listen-port", " --interactive-tailscale-setup", " --no-install-service", " --no-tailscale-serve", " --print-only", " --repo-ref <ref>"];
235
280
  readonly setup: readonly ["Usage:", " runpane setup", "", "Opens the guided setup for desktop install, remote host setup, update, and diagnostics.", "", "Quick start:", " pipx run runpane", " python -m pip install runpane && python -m runpane setup"];
236
281
  readonly update: readonly ["Usage:", " runpane update [--version <latest|vX.Y.Z>] [--dry-run] [--yes]"];
@@ -238,7 +283,11 @@ export declare const RUNPANE_CONTRACT: {
238
283
  readonly doctor: readonly ["Usage:", " runpane doctor [--pane-path <path>] [--format <format>] [--verbose]"];
239
284
  readonly "repos list": readonly ["Usage:", " runpane repos list [--json] [--pane-dir <path>]", "", "Lists repositories saved in the running Pane app.", "", "Options:", " --json", " --pane-dir <path>"];
240
285
  readonly "repos add": readonly ["Usage:", " runpane repos add --path <path> [--name <name>] [--json] [--yes]", "", "Registers an existing git repository with the running Pane app.", "", "Options:", " --path <path>", " --name <name>", " --pane-dir <path>", " --json", " --dry-run", " --yes"];
286
+ readonly "panes list": readonly ["Usage:", " runpane panes list [--repo <selector>] [--json]", "", "Lists Pane sessions. Pass --repo to limit results to one saved repository.", "", "Options:", " --repo <selector>", " --pane-dir <path>", " --json"];
241
287
  readonly "panes create": readonly ["Usage:", " runpane panes create --repo <selector> --name <name> --agent <codex|claude> [options]", " runpane panes create --from-json <path|-> [--yes] [--json]", "", "Creates Pane sessions in a saved repository and opens a terminal-backed tool tab.", "", "Options:", " --repo <selector>", " --name <name>", " --worktree-name <name>", " --base-branch <branch>", " --agent <codex|claude>", " --tool-command <command>", " --title <title>", " --initial-input <text>", " --prompt <text>", " --initial-input-file <path|->", " --from-json <path|->", " --timeout-ms <milliseconds>", " --pane-dir <path>", " --json", " --dry-run", " --yes"];
288
+ readonly "panels list": readonly ["Usage:", " runpane panels list --pane <pane-id> [--json]", "", "Lists tool panels in a Pane session.", "", "Options:", " --pane <pane-id>", " --pane-dir <path>", " --json"];
289
+ readonly "panels output": readonly ["Usage:", " runpane panels output --panel <panel-id> [--limit <count>] [--json]", "", "Reads recent terminal output records from a panel.", "", "Options:", " --panel <panel-id>", " --limit <count>", " --pane-dir <path>", " --json"];
290
+ readonly "panels input": readonly ["Usage:", " runpane panels input --panel <panel-id> (--text <text>|--input-file <path|->) --yes [--json]", "", "Sends exact input bytes to a terminal panel. Include a newline in the input when you mean Enter.", "", "Options:", " --panel <panel-id>", " --text <text>", " --input-file <path|->", " --pane-dir <path>", " --json", " --yes"];
242
291
  readonly "agent-context": readonly ["Usage:", " runpane agent-context [--json]", " runpane agent-context --command <command> [--json]", "", "Prints Pane command context for coding agents without requiring a running Pane app.", "", "Options:", " --command <command>", " --json", "", "Examples:", " runpane agent-context", " runpane agent-context --json", " runpane agent-context --command \"panes create\"", " runpane agent-context --command \"panes create\" --json"];
243
292
  };
244
293
  };
@@ -248,17 +297,17 @@ export declare const RUNPANE_CONTRACT: {
248
297
  readonly npmCommands: readonly ["npx --yes runpane@latest", "npx --yes runpane@latest setup", "npx --yes runpane@latest install client", "npx --yes runpane@latest install daemon --label \"My Server\"", "pnpm dlx runpane@latest", "pnpm dlx runpane@latest install daemon --label \"My Server\"", "npm i -g runpane && runpane", "npm i -g runpane && runpane setup", "npm i -g runpane && runpane install daemon --label \"My Server\"", "pnpm add -g runpane && runpane", "pnpm add -g runpane && runpane setup", "pnpm add -g runpane && runpane install daemon --label \"My Server\"", "yarn dlx runpane@latest install daemon --label \"My Server\"", "bunx runpane@latest install daemon --label \"My Server\""];
249
298
  readonly pythonCommands: readonly ["pipx run runpane", "pipx run runpane setup", "python -m pip install runpane", "runpane", "runpane setup", "python -m runpane setup", "runpane install daemon --label \"My Server\"", "pipx install runpane", "runpane", "runpane setup", "pipx run runpane install daemon --label \"My Server\"", "uvx runpane@latest", "uvx runpane@latest setup", "uvx runpane@latest install daemon --label \"My Server\"", "python -m runpane install daemon --label \"My Server\""];
250
299
  readonly packageManagerNotes: readonly ["Use `pnpm dlx` for one-shot pnpm execution and `pnpm add -g` for persistent CLI installation.", "Do not document `pnpm install runpane` as the public CLI install path."];
251
- readonly commandUsages: readonly ["runpane", "runpane setup", "runpane install", "runpane install client", "runpane install daemon", "runpane update", "runpane version", "runpane doctor", "runpane agent-context", "runpane agent-context --command \"panes create\" --json", "runpane repos list --json", "runpane repos add --path /path/to/repo --name Pane --yes --json", "runpane panes create --repo active --name issue-252 --agent codex --prompt \"Kick off the discussion skill for issue 252\" --yes", "runpane panes create --from-json panes.json --yes --json", "runpane help", "runpane <command> --help"];
252
- readonly commandDescriptions: readonly ["`runpane` with no arguments and `runpane setup` open an interactive wizard when stdin and stdout are TTYs. In non-interactive shells or CI, both forms must print help and exit successfully instead of waiting for input.", "`runpane install` is an alias for `runpane install client`.", "`runpane install client` downloads the selected Pane desktop artifact and installs, opens, or launches it for the current platform.", "`runpane install daemon` downloads or installs Pane, resolves a stable Pane executable path, and spawns `<pane executable> --remote-setup <forwarded remote setup args>`.", "The wrapper must stream Pane stdout/stderr without reformatting because `pane --remote-setup` prints the one-time `pane-remote://...` connection code.", "`runpane update` uses the same release resolution and installer path as `install client`.", "`runpane version` prints the wrapper package version, the installed Pane version when detectable, and the latest GitHub release version when reachable.", "`runpane doctor` checks platform support, release metadata reachability, download URL selection, installed Pane detection, and remote-daemon hints.", "`runpane agent-context` prints a brief, token-efficient command schema for coding agents without connecting to the Pane daemon.", "`runpane agent-context --command \"panes create\"` prints the detailed definition for one command. Add `--json` for machine-readable output.", "`runpane repos list` connects to the running local Pane daemon and prints saved repository records.", "`runpane repos add` registers an existing git repository with the running local Pane daemon. It does not create directories or initialize git repositories by default.", "`runpane panes create` connects to the running local Pane daemon, resolves the requested repository, creates Pane sessions, opens terminal-backed tool tabs, and optionally sends initial input to the started tool.", "`runpane panes create --prompt` is an alias for `--initial-input`; request JSON and daemon payloads should use the canonical `initialInput` field."];
300
+ readonly commandUsages: readonly ["runpane", "runpane setup", "runpane install", "runpane install client", "runpane install daemon", "runpane update", "runpane version", "runpane doctor", "runpane agent-context", "runpane agent-context --command \"panes create\" --json", "runpane repos list --json", "runpane repos add --path /path/to/repo --name Pane --yes --json", "runpane panes list --repo active --json", "runpane panes create --repo active --name issue-252 --agent codex --prompt \"Kick off the discussion skill for issue 252\" --yes", "runpane panes create --from-json panes.json --yes --json", "runpane panels list --pane <pane-id> --json", "runpane panels output --panel <panel-id> --limit 200 --json", "runpane panels input --panel <panel-id> --text \"Continue\\n\" --yes --json", "runpane help", "runpane <command> --help"];
301
+ readonly commandDescriptions: readonly ["`runpane` with no arguments and `runpane setup` open an interactive wizard when stdin and stdout are TTYs. In non-interactive shells or CI, both forms must print help and exit successfully instead of waiting for input.", "`runpane install` is an alias for `runpane install client`.", "`runpane install client` downloads the selected Pane desktop artifact and installs, opens, or launches it for the current platform.", "`runpane install daemon` downloads or installs Pane, resolves a stable Pane executable path, and spawns `<pane executable> --remote-setup <forwarded remote setup args>`.", "The wrapper must stream Pane stdout/stderr without reformatting because `pane --remote-setup` prints the one-time `pane-remote://...` connection code.", "`runpane update` uses the same release resolution and installer path as `install client`.", "`runpane version` prints the wrapper package version, the installed Pane version when detectable, and the latest GitHub release version when reachable.", "`runpane doctor` checks platform support, release metadata reachability, download URL selection, installed Pane detection, and remote-daemon hints.", "`runpane agent-context` prints a brief, token-efficient command schema for coding agents without connecting to the Pane daemon.", "`runpane agent-context --command \"panes create\"` prints the detailed definition for one command. Add `--json` for machine-readable output.", "`runpane repos list` connects to the running local Pane daemon and prints saved repository records.", "`runpane repos add` registers an existing git repository with the running local Pane daemon. It does not create directories or initialize git repositories by default.", "`runpane panes list` lists Pane sessions, optionally scoped to one saved repository.", "`runpane panes create` connects to the running local Pane daemon, resolves the requested repository, creates Pane sessions, opens terminal-backed tool tabs, and optionally sends initial input to the started tool.", "`runpane panels list` lists tool panels inside one Pane session.", "`runpane panels output` reads recent terminal output records from one panel.", "`runpane panels input` sends exact input bytes to one terminal panel. Include a newline in the input when the agent means Enter.", "`runpane panes create --prompt` is an alias for `--initial-input`; request JSON and daemon payloads should use the canonical `initialInput` field.", "When running from WSL while Pane is installed on Windows, the Linux wrapper may look for a missing `/tmp/pane-daemon.../daemon.sock`. In that case invoke the Windows wrapper through PowerShell, for example `powershell.exe -NoProfile -Command 'Set-Location $env:TEMP; runpane repos list --json'`."];
253
302
  readonly wrapperFlagNote: "The top-level `runpane --version` form prints the wrapper version. The install subcommand form `runpane install --version vX.Y.Z` selects a Pane release.";
254
- readonly localControlFlagNote: "`runpane repos list` and `runpane panes create` use the local framed daemon socket/pipe for a running Pane app. `--pane-dir` points the wrapper at a non-default Pane data directory, such as `PANE_DIR=~/.pane_test` in development. `runpane agent-context` is local/offline and can be used before Pane is running.";
303
+ readonly localControlFlagNote: "`runpane repos list`, `runpane panes list`, `runpane panes create`, and `runpane panels ...` commands use the local framed daemon socket/pipe for a running Pane app. `--pane-dir` points the wrapper at a non-default Pane data directory, such as `PANE_DIR=~/.pane_test` in development. `runpane agent-context` is local/offline and can be used before Pane is running. From WSL, if the user runs Windows Pane, call the Windows wrapper through `powershell.exe -NoProfile -Command 'Set-Location $env:TEMP; runpane ...'` so the command can reach the Windows named-pipe daemon.";
255
304
  readonly daemonFlagNote: "Unknown daemon flags should be forwarded rather than dropped so newer Pane versions can extend `--remote-setup` without requiring an immediate wrapper release. Unknown flags for non-daemon commands should fail clearly.";
256
305
  readonly downloadAttribution: readonly ["The npm package uses `source=npm` for all npm-registry consumers, including `npx`, `pnpm dlx`, `yarn dlx`, `bunx`, and global npm/pnpm installs.", "The PyPI package uses `source=pip` for all Python consumers, including pip, pipx, uvx, and `python -m runpane`.", "Wrappers should prefer `https://runpane.com/api/download?platform=<platform>&arch=<arch>&format=<format>&version=<version>&channel=<channel>&source=<npm|pip>`.", "If the website route cannot satisfy the download, wrappers may fall back to the matching GitHub release asset and print a warning that website attribution may be incomplete for that run."];
257
306
  readonly publishingCredentials: readonly ["Local implementation, build, and dry-run validation do not need npm or PyPI API tokens.", "Release publishing should prefer npm Trusted Publishing and PyPI Trusted Publishing from GitHub Actions.", "Fallback `NPM_TOKEN` or `PYPI_API_TOKEN` credentials may be used for first package reservation or manual publication only. They must be supplied through local environment variables or GitHub Actions secrets, never committed, and revoked or rotated after use."];
258
307
  };
259
308
  readonly testFixtures: {
260
- readonly parserSamples: readonly [readonly ["setup"], readonly ["install"], readonly ["install", "client", "--version", "v2.2.8", "--format", "dmg", "--download-dir", "/tmp/pane-downloads", "--dry-run", "--yes"], readonly ["install", "daemon", "--label", "VM", "--prefer-tunnel", "ssh", "--channel", "nightly", "--base-url", "https://example.test", "--pane-dir", "/tmp/pane", "--listen-port", "4555", "--auto-listen-port", "--print-only", "--repo-ref", "main", "--unknown-future-flag", "future-value", "--dry-run", "--verbose"], readonly ["update", "--version", "latest", "--format", "appimage", "--pane-path", "/usr/bin/pane", "--dry-run"], readonly ["doctor", "--pane-path", "/usr/bin/pane", "--format", "zip", "--verbose"], readonly ["agent-context"], readonly ["agent-context", "--command", "panes create", "--json"], readonly ["repos", "list", "--json", "--pane-dir", "/tmp/pane"], readonly ["repos", "add", "--path", "/tmp/repo", "--name", "Repo", "--dry-run", "--yes", "--json", "--pane-dir", "/tmp/pane"], readonly ["panes", "create", "--repo", "active", "--name", "issue-252", "--agent", "codex", "--prompt", "Kick off discussion", "--dry-run", "--yes", "--json"], readonly ["panes", "create", "--from-json", "-", "--yes", "--json"], readonly ["--version"]];
261
- readonly topLevelHelpIncludes: readonly ["runpane setup", "runpane install", "runpane update", "runpane version", "runpane doctor", "runpane agent-context", "runpane repos list", "runpane repos add", "runpane panes create"];
309
+ readonly parserSamples: readonly [readonly ["setup"], readonly ["install"], readonly ["install", "client", "--version", "v2.2.8", "--format", "dmg", "--download-dir", "/tmp/pane-downloads", "--dry-run", "--yes"], readonly ["install", "daemon", "--label", "VM", "--prefer-tunnel", "ssh", "--channel", "nightly", "--base-url", "https://example.test", "--pane-dir", "/tmp/pane", "--listen-port", "4555", "--auto-listen-port", "--print-only", "--repo-ref", "main", "--unknown-future-flag", "future-value", "--dry-run", "--verbose"], readonly ["update", "--version", "latest", "--format", "appimage", "--pane-path", "/usr/bin/pane", "--dry-run"], readonly ["doctor", "--pane-path", "/usr/bin/pane", "--format", "zip", "--verbose"], readonly ["agent-context"], readonly ["agent-context", "--command", "panes create", "--json"], readonly ["repos", "list", "--json", "--pane-dir", "/tmp/pane"], readonly ["repos", "add", "--path", "/tmp/repo", "--name", "Repo", "--dry-run", "--yes", "--json", "--pane-dir", "/tmp/pane"], readonly ["panes", "list", "--repo", "active", "--json"], readonly ["panes", "create", "--repo", "active", "--name", "issue-252", "--agent", "codex", "--prompt", "Kick off discussion", "--dry-run", "--yes", "--json"], readonly ["panes", "create", "--from-json", "-", "--yes", "--json"], readonly ["panels", "list", "--pane", "session-1", "--json"], readonly ["panels", "output", "--panel", "panel-1", "--limit", "200", "--json"], readonly ["panels", "input", "--panel", "panel-1", "--text", "Continue\\n", "--yes", "--json"], readonly ["--version"]];
310
+ readonly topLevelHelpIncludes: readonly ["runpane setup", "runpane install", "runpane update", "runpane version", "runpane doctor", "runpane agent-context", "runpane repos list", "runpane repos add", "runpane panes list", "runpane panes create", "runpane panels list", "runpane panels output", "runpane panels input"];
262
311
  readonly npmHelpIncludes: readonly ["pnpm dlx runpane@latest", "npx --yes runpane@latest"];
263
312
  readonly pipHelpIncludes: readonly ["pipx run runpane", "python -m pip install runpane && python -m runpane setup"];
264
313
  readonly installHelpIncludes: readonly ["--version <latest|vX.Y.Z>", "--format <auto|appimage|deb|dmg|zip|exe>", "--download-dir <path>", "--pane-path <path>", "--label <name>", "--prefer-tunnel <tailscale|ssh|manual|auto>", "--repo-ref <ref>"];
@@ -511,6 +560,9 @@ export declare const RUNPANE_CONTRACT: {
511
560
  readonly worktreePath: {
512
561
  readonly type: "string";
513
562
  };
563
+ readonly nextCommand: {
564
+ readonly type: "string";
565
+ };
514
566
  readonly tool: {
515
567
  readonly type: "object";
516
568
  readonly required: readonly ["title", "command"];
@@ -563,6 +615,204 @@ export declare const RUNPANE_CONTRACT: {
563
615
  };
564
616
  readonly additionalProperties: false;
565
617
  };
618
+ readonly paneListResult: {
619
+ readonly type: "object";
620
+ readonly required: readonly ["ok", "panes"];
621
+ readonly properties: {
622
+ readonly ok: {
623
+ readonly const: true;
624
+ };
625
+ readonly repo: {
626
+ readonly $ref: "#/jsonSchemas/repoListResult/properties/repos/items";
627
+ };
628
+ readonly panes: {
629
+ readonly type: "array";
630
+ readonly items: {
631
+ readonly type: "object";
632
+ readonly required: readonly ["id", "paneId", "name", "status", "worktreePath", "repoId", "panelCount"];
633
+ readonly properties: {
634
+ readonly id: {
635
+ readonly type: "string";
636
+ };
637
+ readonly paneId: {
638
+ readonly type: "string";
639
+ };
640
+ readonly name: {
641
+ readonly type: "string";
642
+ };
643
+ readonly status: {
644
+ readonly type: "string";
645
+ };
646
+ readonly worktreePath: {
647
+ readonly type: "string";
648
+ };
649
+ readonly repoId: {
650
+ readonly type: "number";
651
+ };
652
+ readonly repoName: {
653
+ readonly type: "string";
654
+ };
655
+ readonly panelCount: {
656
+ readonly type: "number";
657
+ };
658
+ readonly createdAt: {
659
+ readonly type: "string";
660
+ };
661
+ readonly lastActivity: {
662
+ readonly type: "string";
663
+ };
664
+ readonly archived: {
665
+ readonly type: "boolean";
666
+ };
667
+ };
668
+ readonly additionalProperties: false;
669
+ };
670
+ };
671
+ };
672
+ readonly additionalProperties: false;
673
+ };
674
+ readonly panelListResult: {
675
+ readonly type: "object";
676
+ readonly required: readonly ["ok", "paneId", "panels"];
677
+ readonly properties: {
678
+ readonly ok: {
679
+ readonly const: true;
680
+ };
681
+ readonly paneId: {
682
+ readonly type: "string";
683
+ };
684
+ readonly panels: {
685
+ readonly type: "array";
686
+ readonly items: {
687
+ readonly type: "object";
688
+ readonly required: readonly ["id", "panelId", "paneId", "type", "title", "active"];
689
+ readonly properties: {
690
+ readonly id: {
691
+ readonly type: "string";
692
+ };
693
+ readonly panelId: {
694
+ readonly type: "string";
695
+ };
696
+ readonly paneId: {
697
+ readonly type: "string";
698
+ };
699
+ readonly type: {
700
+ readonly type: "string";
701
+ };
702
+ readonly title: {
703
+ readonly type: "string";
704
+ };
705
+ readonly active: {
706
+ readonly type: "boolean";
707
+ };
708
+ readonly initialized: {
709
+ readonly type: "boolean";
710
+ };
711
+ readonly agentType: {
712
+ readonly type: "string";
713
+ };
714
+ readonly isCliPanel: {
715
+ readonly type: "boolean";
716
+ };
717
+ readonly position: {
718
+ readonly type: "number";
719
+ };
720
+ readonly createdAt: {
721
+ readonly type: "string";
722
+ };
723
+ readonly lastActiveAt: {
724
+ readonly type: "string";
725
+ };
726
+ };
727
+ readonly additionalProperties: false;
728
+ };
729
+ };
730
+ };
731
+ readonly additionalProperties: false;
732
+ };
733
+ readonly panelOutputResult: {
734
+ readonly type: "object";
735
+ readonly required: readonly ["ok", "panelId", "limit", "returnedCount", "hasMore", "outputs", "text"];
736
+ readonly properties: {
737
+ readonly ok: {
738
+ readonly const: true;
739
+ };
740
+ readonly panelId: {
741
+ readonly type: "string";
742
+ };
743
+ readonly paneId: {
744
+ readonly type: "string";
745
+ };
746
+ readonly limit: {
747
+ readonly type: "number";
748
+ };
749
+ readonly returnedCount: {
750
+ readonly type: "number";
751
+ };
752
+ readonly hasMore: {
753
+ readonly type: "boolean";
754
+ };
755
+ readonly outputs: {
756
+ readonly type: "array";
757
+ readonly items: {
758
+ readonly type: "object";
759
+ readonly required: readonly ["type", "data", "timestamp"];
760
+ readonly properties: {
761
+ readonly type: {
762
+ readonly type: "string";
763
+ };
764
+ readonly data: {};
765
+ readonly timestamp: {
766
+ readonly type: "string";
767
+ };
768
+ };
769
+ readonly additionalProperties: false;
770
+ };
771
+ };
772
+ readonly text: {
773
+ readonly type: "string";
774
+ };
775
+ };
776
+ readonly additionalProperties: false;
777
+ };
778
+ readonly panelInputRequest: {
779
+ readonly type: "object";
780
+ readonly required: readonly ["panelId", "input"];
781
+ readonly properties: {
782
+ readonly panelId: {
783
+ readonly type: "string";
784
+ };
785
+ readonly input: {
786
+ readonly type: "string";
787
+ };
788
+ };
789
+ readonly additionalProperties: false;
790
+ };
791
+ readonly panelInputResult: {
792
+ readonly type: "object";
793
+ readonly required: readonly ["ok", "panelId", "inputBytes", "sentAt"];
794
+ readonly properties: {
795
+ readonly ok: {
796
+ readonly const: true;
797
+ };
798
+ readonly panelId: {
799
+ readonly type: "string";
800
+ };
801
+ readonly paneId: {
802
+ readonly type: "string";
803
+ };
804
+ readonly inputBytes: {
805
+ readonly type: "number";
806
+ };
807
+ readonly sentAt: {
808
+ readonly type: "string";
809
+ };
810
+ readonly nextCommand: {
811
+ readonly type: "string";
812
+ };
813
+ };
814
+ readonly additionalProperties: false;
815
+ };
566
816
  readonly agentContextBriefResult: {
567
817
  readonly type: "object";
568
818
  readonly required: readonly ["ok", "mode", "source", "summary", "rules", "tools", "detailCommand"];
@@ -680,7 +930,7 @@ export declare const RUNPANE_CONTRACT: {
680
930
  readonly brief: {
681
931
  readonly title: "Pane agent context";
682
932
  readonly summary: "Pane lets a developer manage repositories and user-visible panes. Agents can use runpane to list/add Pane repositories and create panes with terminal-backed tools.";
683
- readonly rules: readonly ["Start with `runpane repos list --json` to find the saved repository when unsure.", "If the repository exists on disk but is not saved in Pane, use `runpane repos add --path <repo> --yes --json` before creating panes.", "Use `runpane panes create` to create a Pane session and open a built-in agent or custom terminal command.", "Use `runpane agent-context --command <command>` for detailed command definitions only when needed."];
933
+ readonly rules: readonly ["Start with `runpane repos list --json` to find the saved repository when unsure.", "If WSL cannot find `/tmp/pane-daemon.../daemon.sock`, the user may be running Windows Pane; try `powershell.exe -NoProfile -Command 'Set-Location $env:TEMP; runpane repos list --json'`.", "If the repository exists on disk but is not saved in Pane, use `runpane repos add --path <repo> --yes --json` before creating panes.", "Use `runpane panes create` to create a Pane session and open a built-in agent or custom terminal command.", "Use `runpane panels list`, `runpane panels output`, and `runpane panels input` when you need to inspect or drive an existing Pane terminal.", "After creating panes or sending terminal input, validate with bounded panel output before reporting success.", "Use `runpane agent-context --command <command>` for detailed command definitions only when needed."];
684
934
  readonly detailCommand: "runpane agent-context --command <command> [--json]";
685
935
  readonly tools: readonly [{
686
936
  readonly name: "agent-context";
@@ -694,10 +944,26 @@ export declare const RUNPANE_CONTRACT: {
694
944
  readonly name: "repos add";
695
945
  readonly summary: "Register an existing git repository with the running Pane app.";
696
946
  readonly arguments: readonly ["--path <path>", "--name <name>", "--yes", "--json", "--dry-run", "--pane-dir <path>"];
947
+ }, {
948
+ readonly name: "panes list";
949
+ readonly summary: "List Pane sessions, optionally scoped to a saved repository.";
950
+ readonly arguments: readonly ["--repo <selector>", "--json", "--pane-dir <path>"];
697
951
  }, {
698
952
  readonly name: "panes create";
699
953
  readonly summary: "Create one or more Pane sessions in a saved repository and open a terminal-backed tool tab.";
700
954
  readonly arguments: readonly ["--repo <selector>", "--name <name>", "--agent <codex|claude>", "--tool-command <command>", "--prompt <text>", "--from-json <path|->", "--yes", "--json"];
955
+ }, {
956
+ readonly name: "panels list";
957
+ readonly summary: "List tool panels inside a Pane session.";
958
+ readonly arguments: readonly ["--pane <pane-id>", "--json", "--pane-dir <path>"];
959
+ }, {
960
+ readonly name: "panels output";
961
+ readonly summary: "Read recent terminal output from a panel.";
962
+ readonly arguments: readonly ["--panel <panel-id>", "--limit <count>", "--json", "--pane-dir <path>"];
963
+ }, {
964
+ readonly name: "panels input";
965
+ readonly summary: "Send input bytes to a terminal panel.";
966
+ readonly arguments: readonly ["--panel <panel-id>", "--text <text>", "--input-file <path|->", "--yes", "--json", "--pane-dir <path>"];
701
967
  }];
702
968
  };
703
969
  readonly commands: {
@@ -851,7 +1117,7 @@ export declare const RUNPANE_CONTRACT: {
851
1117
  }];
852
1118
  readonly examples: readonly ["runpane repos list --json"];
853
1119
  readonly jsonSchemas: readonly ["repoListResult"];
854
- readonly notes: readonly ["Requires a running Pane app or daemon for the selected Pane data directory."];
1120
+ readonly notes: readonly ["Requires a running Pane app or daemon for the selected Pane data directory.", "If this fails from WSL with a missing `/tmp/pane-daemon.../daemon.sock`, the user may be running Windows Pane. Retry via `powershell.exe -NoProfile -Command 'Set-Location $env:TEMP; runpane repos list --json'`."];
855
1121
  };
856
1122
  readonly "repos add": {
857
1123
  readonly name: "repos add";
@@ -889,7 +1155,32 @@ export declare const RUNPANE_CONTRACT: {
889
1155
  }];
890
1156
  readonly examples: readonly ["runpane repos add --path /path/to/repo --yes --json"];
891
1157
  readonly jsonSchemas: readonly ["repoAddRequest", "repoAddResult"];
892
- readonly notes: readonly ["It does not create directories or initialize git repositories by default."];
1158
+ readonly notes: readonly ["It does not create directories or initialize git repositories by default.", "For a Windows Pane app managing WSL repositories, prefer a saved WSL repo from `repos list` when possible. Adding a brand-new WSL repo from Windows may require WSL-aware path handling."];
1159
+ };
1160
+ readonly "panes list": {
1161
+ readonly name: "panes list";
1162
+ readonly summary: "List Pane sessions, optionally scoped to a saved repository.";
1163
+ readonly details: "Use this after selecting a repository to find existing Pane sessions and their ids before inspecting panels.";
1164
+ readonly requiresPaneDaemon: true;
1165
+ readonly mutates: false;
1166
+ readonly arguments: readonly [{
1167
+ readonly name: "--repo";
1168
+ readonly value: "<selector>";
1169
+ readonly required: false;
1170
+ readonly description: "Optional repository selector: active, id, exact path, or saved repository name.";
1171
+ }, {
1172
+ readonly name: "--json";
1173
+ readonly required: false;
1174
+ readonly description: "Print machine-readable output.";
1175
+ }, {
1176
+ readonly name: "--pane-dir";
1177
+ readonly value: "<path>";
1178
+ readonly required: false;
1179
+ readonly description: "Connect to a specific Pane data directory.";
1180
+ }];
1181
+ readonly examples: readonly ["runpane panes list --repo active --json"];
1182
+ readonly jsonSchemas: readonly ["paneListResult"];
1183
+ readonly notes: readonly ["Without --repo, this lists sessions across saved Pane repositories."];
893
1184
  };
894
1185
  readonly "panes create": {
895
1186
  readonly name: "panes create";
@@ -943,10 +1234,104 @@ export declare const RUNPANE_CONTRACT: {
943
1234
  }];
944
1235
  readonly examples: readonly ["runpane panes create --repo active --name issue-257 --agent codex --prompt \"Plan this issue\" --yes", "runpane panes create --from-json panes.json --yes --json"];
945
1236
  readonly jsonSchemas: readonly ["paneCreateRequest", "paneCreateResult"];
946
- readonly notes: readonly ["At least one of --agent or --tool-command is required unless --from-json is used.", "The built-in agent templates come from the runpane contract; custom terminal commands can pass agent-specific flags when requested by the user."];
1237
+ readonly notes: readonly ["At least one of --agent or --tool-command is required unless --from-json is used.", "The built-in agent templates come from the runpane contract; custom terminal commands can pass agent-specific flags when requested by the user.", "When the JSON result includes nextCommand, run it to validate that the terminal produced output before reporting success.", "From WSL with Windows Pane, invoke through PowerShell and select the saved WSL repo by name or id, for example `powershell.exe -NoProfile -Command 'Set-Location $env:TEMP; runpane panes create --repo \"WSL Pane\" --name issue-123 --agent codex --prompt \"Plan this issue\" --yes --json'`."];
1238
+ };
1239
+ readonly "panels list": {
1240
+ readonly name: "panels list";
1241
+ readonly summary: "List tool panels inside a Pane session.";
1242
+ readonly details: "Use this to find the terminal panel id to inspect or control after creating or selecting a Pane session.";
1243
+ readonly requiresPaneDaemon: true;
1244
+ readonly mutates: false;
1245
+ readonly arguments: readonly [{
1246
+ readonly name: "--pane";
1247
+ readonly value: "<pane-id>";
1248
+ readonly required: true;
1249
+ readonly description: "Pane/session id.";
1250
+ }, {
1251
+ readonly name: "--json";
1252
+ readonly required: false;
1253
+ readonly description: "Print machine-readable output.";
1254
+ }, {
1255
+ readonly name: "--pane-dir";
1256
+ readonly value: "<path>";
1257
+ readonly required: false;
1258
+ readonly description: "Connect to a specific Pane data directory.";
1259
+ }];
1260
+ readonly examples: readonly ["runpane panels list --pane <pane-id> --json"];
1261
+ readonly jsonSchemas: readonly ["panelListResult"];
1262
+ readonly notes: readonly ["The ids returned here are stable inputs for `panels output` and `panels input`."];
1263
+ };
1264
+ readonly "panels output": {
1265
+ readonly name: "panels output";
1266
+ readonly summary: "Read recent terminal output from a panel.";
1267
+ readonly details: "Use this to inspect recent terminal output from a terminal-backed panel without loading the full history by default.";
1268
+ readonly requiresPaneDaemon: true;
1269
+ readonly mutates: false;
1270
+ readonly arguments: readonly [{
1271
+ readonly name: "--panel";
1272
+ readonly value: "<panel-id>";
1273
+ readonly required: true;
1274
+ readonly description: "Tool panel id.";
1275
+ }, {
1276
+ readonly name: "--limit";
1277
+ readonly value: "<count>";
1278
+ readonly required: false;
1279
+ readonly description: "Maximum output records to read. Defaults to 200.";
1280
+ }, {
1281
+ readonly name: "--json";
1282
+ readonly required: false;
1283
+ readonly description: "Print machine-readable output.";
1284
+ }, {
1285
+ readonly name: "--pane-dir";
1286
+ readonly value: "<path>";
1287
+ readonly required: false;
1288
+ readonly description: "Connect to a specific Pane data directory.";
1289
+ }];
1290
+ readonly examples: readonly ["runpane panels output --panel <panel-id> --limit 200 --json"];
1291
+ readonly jsonSchemas: readonly ["panelOutputResult"];
1292
+ readonly notes: readonly ["Default output is bounded to the latest 200 records. Use a larger --limit only when hasMore is true and more history is needed.", "Use --json when an agent needs timestamps, record types, returnedCount, or hasMore."];
1293
+ };
1294
+ readonly "panels input": {
1295
+ readonly name: "panels input";
1296
+ readonly summary: "Send input bytes to a terminal panel.";
1297
+ readonly details: "Use this to answer prompts or continue an agent inside an existing Pane terminal panel.";
1298
+ readonly requiresPaneDaemon: true;
1299
+ readonly mutates: true;
1300
+ readonly arguments: readonly [{
1301
+ readonly name: "--panel";
1302
+ readonly value: "<panel-id>";
1303
+ readonly required: true;
1304
+ readonly description: "Terminal panel id.";
1305
+ }, {
1306
+ readonly name: "--text";
1307
+ readonly value: "<text>";
1308
+ readonly required: false;
1309
+ readonly description: "Text bytes to send.";
1310
+ }, {
1311
+ readonly name: "--input-file";
1312
+ readonly value: "<path|->";
1313
+ readonly required: false;
1314
+ readonly description: "Read input from a file or stdin.";
1315
+ }, {
1316
+ readonly name: "--yes";
1317
+ readonly required: false;
1318
+ readonly description: "Skip confirmation for this mutating command.";
1319
+ }, {
1320
+ readonly name: "--json";
1321
+ readonly required: false;
1322
+ readonly description: "Print machine-readable output.";
1323
+ }, {
1324
+ readonly name: "--pane-dir";
1325
+ readonly value: "<path>";
1326
+ readonly required: false;
1327
+ readonly description: "Connect to a specific Pane data directory.";
1328
+ }];
1329
+ readonly examples: readonly ["runpane panels input --panel <panel-id> --text \"Continue\\n\" --yes --json", "printf 'Continue\\n' | runpane panels input --panel <panel-id> --input-file - --yes"];
1330
+ readonly jsonSchemas: readonly ["panelInputRequest", "panelInputResult"];
1331
+ readonly notes: readonly ["Input is sent exactly as provided. Include `\\n` or `\\r` when the terminal should receive Enter.", "After sending input, validate with `runpane panels output --panel <panel-id> --json` before reporting success.", "Runpane records action metadata and errors for observability, but should not log full input text by default."];
947
1332
  };
948
1333
  };
949
- readonly managedBlock: readonly ["## Pane", "", "The developer is using Pane for this repository. Pane can manage saved repositories and create user-visible panes with terminal-backed tools for planning, discussion, and implementation work.", "", "Use `runpane agent-context` for a brief Pane command schema. Use `runpane agent-context --command \"panes create\"` or another command name for the detailed schema only when needed.", "", "Common commands:", "- `runpane repos list --json`", "- `runpane repos add --path <repo> --yes --json`", "- `runpane panes create --repo active --name <name> --agent codex --prompt \"<task>\" --yes`"];
1334
+ readonly managedBlock: readonly ["## Pane", "", "The developer is using Pane for this repository. Pane can manage saved repositories and create user-visible panes with terminal-backed tools for planning, discussion, and implementation work.", "", "Use `runpane agent-context` for a brief Pane command schema. Use `runpane agent-context --command \"panes create\"` or another command name for the detailed schema only when needed.", "", "After creating panes or sending terminal input, validate with bounded panel output before reporting success.", "", "Common commands:", "- `runpane repos list --json`", "- `runpane repos add --path <repo> --yes --json`", "- `runpane panes create --repo active --name <name> --agent codex --prompt \"<task>\" --yes`", "- `runpane panels list --pane <pane-id> --json`", "- `runpane panels output --panel <panel-id> --limit 200 --json`", "- `runpane panels input --panel <panel-id> --text \"<input>\" --yes`", "", "WSL note: if `runpane repos list` cannot find `/tmp/pane-daemon.../daemon.sock`, Pane may be running on Windows. Try `powershell.exe -NoProfile -Command 'Set-Location $env:TEMP; runpane repos list --json'`, then create panes through the same PowerShell form using the saved WSL repo name or id."];
950
1335
  };
951
1336
  };
952
1337
  export type RunpaneCommand = typeof RUNPANE_CONTRACT.commands[number]['name'];
@@ -1 +1 @@
1
- {"version":3,"file":"contract.d.ts","sourceRoot":"","sources":["../../src/generated/contract.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwwDnB,CAAC;AAEX,MAAM,MAAM,cAAc,GAAG,OAAO,gBAAgB,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,CAAC;AAC9E,MAAM,MAAM,aAAa,GAAG,OAAO,gBAAgB,CAAC,KAAK,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC;AACjF,MAAM,MAAM,cAAc,GAAG,OAAO,gBAAgB,CAAC,KAAK,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC;AACnF,MAAM,MAAM,cAAc,GAAG,OAAO,gBAAgB,CAAC,KAAK,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;AAC5E,MAAM,MAAM,YAAY,GAAG,OAAO,gBAAgB,CAAC,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC"}
1
+ {"version":3,"file":"contract.d.ts","sourceRoot":"","sources":["../../src/generated/contract.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAk7EnB,CAAC;AAEX,MAAM,MAAM,cAAc,GAAG,OAAO,gBAAgB,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,CAAC;AAC9E,MAAM,MAAM,aAAa,GAAG,OAAO,gBAAgB,CAAC,KAAK,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC;AACjF,MAAM,MAAM,cAAc,GAAG,OAAO,gBAAgB,CAAC,KAAK,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC;AACnF,MAAM,MAAM,cAAc,GAAG,OAAO,gBAAgB,CAAC,KAAK,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;AAC5E,MAAM,MAAM,YAAY,GAAG,OAAO,gBAAgB,CAAC,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC"}