export declare const type = "grok_local"; export declare const label = "Grok Build"; export declare const DEFAULT_GROK_LOCAL_MODEL = "grok-build"; export declare const models: { id: string; label: string; }[]; export declare const agentConfigurationDoc = "# grok_local agent configuration\n\nAdapter: grok_local\n\nUse when:\n- You want Paperclip to run the native Grok Build CLI locally on the host machine\n- You want resumable Grok sessions across heartbeats via `--resume`\n- You want Paperclip-managed instructions and skills staged into the execution workspace using Grok's native discovery paths (`Agents.md` and `.claude/skills`)\n\nDon't use when:\n- You need a webhook-style external invocation (use http or openclaw_gateway)\n- You only need a one-shot script without an AI coding agent loop (use process)\n- Grok CLI is not installed or authenticated on the machine that runs Paperclip\n\nCore fields:\n- cwd (string, optional): default absolute working directory fallback for the agent process (created if missing when possible)\n- instructionsFilePath (string, optional): absolute path to a markdown instructions file. Paperclip stages it into the execution workspace as `Agents.md` when safe, otherwise falls back to `--rules @file`\n- promptTemplate (string, optional): run prompt template\n- model (string, optional): Grok model id. Defaults to grok-build.\n- permissionMode (string, optional): Grok permission mode. Defaults to `dontAsk`\n- reasoningEffort (string, optional): Grok reasoning effort passed via `--reasoning-effort`\n- maxTurns (number, optional): maximum agent turns for the run\n- command (string, optional): defaults to \"grok\"\n- extraArgs (string[], optional): additional CLI args\n- env (object, optional): KEY=VALUE environment variables\n\nOperational fields:\n- timeoutSec (number, optional): run timeout in seconds\n- graceSec (number, optional): SIGTERM grace period in seconds\n\nNotes:\n- Runs use `grok --single` with `--output-format streaming-json`.\n- Sessions resume with `--resume ` when the saved session cwd matches the current cwd.\n- Paperclip stages desired runtime skills into `.claude/skills` inside the execution workspace so Grok discovers them as project skills.\n- Use `grok models` to inspect authentication and available models on the host.\n"; //# sourceMappingURL=index.d.ts.map