[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-deepgram-oracle":3,"mdc--n2zqq4-key":32,"related-repo-deepgram-oracle":797,"related-org-deepgram-oracle":889},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":30,"mdContent":31},"oracle","use oracle CLI for agent tasks","Best practices for using the oracle CLI (prompt + file bundling, engines, sessions, and file attachment patterns).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"deepgram","Deepgram","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fdeepgram.png",[12,16,19],{"name":13,"slug":14,"type":15},"Automation","automation","tag",{"name":17,"slug":18,"type":15},"CLI","cli",{"name":20,"slug":21,"type":15},"Engineering","engineering",23,"https:\u002F\u002Fgithub.com\u002Fdeepgram\u002Fdglabs-deepclaw","2026-07-12T08:28:13.925235",null,9,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":25},[],"https:\u002F\u002Fgithub.com\u002Fdeepgram\u002Fdglabs-deepclaw\u002Ftree\u002FHEAD\u002Fskills\u002Foracle","---\nname: oracle\ndescription: Best practices for using the oracle CLI (prompt + file bundling, engines, sessions, and file attachment patterns).\nhomepage: https:\u002F\u002Faskoracle.dev\nmetadata:\n  {\n    \"openclaw\":\n      {\n        \"emoji\": \"🧿\",\n        \"requires\": { \"bins\": [\"oracle\"] },\n        \"install\":\n          [\n            {\n              \"id\": \"node\",\n              \"kind\": \"node\",\n              \"package\": \"@steipete\u002Foracle\",\n              \"bins\": [\"oracle\"],\n              \"label\": \"Install oracle (node)\",\n            },\n          ],\n      },\n  }\n---\n\n# oracle — best use\n\nOracle bundles your prompt + selected files into one “one-shot” request so another model can answer with real repo context (API or browser automation). Treat output as advisory: verify against code + tests.\n\n## Main use case (browser, GPT‑5.2 Pro)\n\nDefault workflow here: `--engine browser` with GPT‑5.2 Pro in ChatGPT. This is the common “long think” path: ~10 minutes to ~1 hour is normal; expect a stored session you can reattach to.\n\nRecommended defaults:\n\n- Engine: browser (`--engine browser`)\n- Model: GPT‑5.2 Pro (`--model gpt-5.2-pro` or `--model \"5.2 Pro\"`)\n\n## Golden path\n\n1. Pick a tight file set (fewest files that still contain the truth).\n2. Preview payload + token spend (`--dry-run` + `--files-report`).\n3. Use browser mode for the usual GPT‑5.2 Pro workflow; use API only when you explicitly want it.\n4. If the run detaches\u002Ftimeouts: reattach to the stored session (don’t re-run).\n\n## Commands (preferred)\n\n- Help:\n  - `oracle --help`\n  - If the binary isn’t installed: `npx -y @steipete\u002Foracle --help` (avoid `pnpx` here; sqlite bindings).\n\n- Preview (no tokens):\n  - `oracle --dry-run summary -p \"\u003Ctask>\" --file \"src\u002F**\" --file \"!**\u002F*.test.*\"`\n  - `oracle --dry-run full -p \"\u003Ctask>\" --file \"src\u002F**\"`\n\n- Token sanity:\n  - `oracle --dry-run summary --files-report -p \"\u003Ctask>\" --file \"src\u002F**\"`\n\n- Browser run (main path; long-running is normal):\n  - `oracle --engine browser --model gpt-5.2-pro -p \"\u003Ctask>\" --file \"src\u002F**\"`\n\n- Manual paste fallback:\n  - `oracle --render --copy -p \"\u003Ctask>\" --file \"src\u002F**\"`\n  - Note: `--copy` is a hidden alias for `--copy-markdown`.\n\n## Attaching files (`--file`)\n\n`--file` accepts files, directories, and globs. You can pass it multiple times; entries can be comma-separated.\n\n- Include:\n  - `--file \"src\u002F**\"`\n  - `--file src\u002Findex.ts`\n  - `--file docs --file README.md`\n\n- Exclude:\n  - `--file \"src\u002F**\" --file \"!src\u002F**\u002F*.test.ts\" --file \"!**\u002F*.snap\"`\n\n- Defaults (implementation behavior):\n  - Default-ignored dirs: `node_modules`, `dist`, `coverage`, `.git`, `.turbo`, `.next`, `build`, `tmp` (skipped unless explicitly passed as literal dirs\u002Ffiles).\n  - Honors `.gitignore` when expanding globs.\n  - Does not follow symlinks.\n  - Dotfiles filtered unless opted in via pattern (e.g. `--file \".github\u002F**\"`).\n  - Files > 1 MB rejected.\n\n## Engines (API vs browser)\n\n- Auto-pick: `api` when `OPENAI_API_KEY` is set; otherwise `browser`.\n- Browser supports GPT + Gemini only; use `--engine api` for Claude\u002FGrok\u002FCodex or multi-model runs.\n- Browser attachments:\n  - `--browser-attachments auto|never|always` (auto pastes inline up to ~60k chars then uploads).\n- Remote browser host:\n  - Host: `oracle serve --host 0.0.0.0 --port 9473 --token \u003Csecret>`\n  - Client: `oracle --engine browser --remote-host \u003Chost:port> --remote-token \u003Csecret> -p \"\u003Ctask>\" --file \"src\u002F**\"`\n\n## Sessions + slugs\n\n- Stored under `~\u002F.oracle\u002Fsessions` (override with `ORACLE_HOME_DIR`).\n- Runs may detach or take a long time (browser + GPT‑5.2 Pro often does). If the CLI times out: don’t re-run; reattach.\n  - List: `oracle status --hours 72`\n  - Attach: `oracle session \u003Cid> --render`\n- Use `--slug \"\u003C3-5 words>\"` to keep session IDs readable.\n- Duplicate prompt guard exists; use `--force` only when you truly want a fresh run.\n\n## Prompt template (high signal)\n\nOracle starts with **zero** project knowledge. Assume the model cannot infer your stack, build tooling, conventions, or “obvious” paths. Include:\n\n- Project briefing (stack + build\u002Ftest commands + platform constraints).\n- “Where things live” (key directories, entrypoints, config files, boundaries).\n- Exact question + what you tried + the error text (verbatim).\n- Constraints (“don’t change X”, “must keep public API”, etc).\n- Desired output (“return patch plan + tests”, “give 3 options with tradeoffs”).\n\n## Safety\n\n- Don’t attach secrets by default (`.env`, key files, auth tokens). Redact aggressively; share only what’s required.\n\n## “Exhaustive prompt” restoration pattern\n\nFor long investigations, write a standalone prompt + file set so you can rerun days later:\n\n- 6–30 sentence project briefing + the goal.\n- Repro steps + exact errors + what you tried.\n- Attach all context files needed (entrypoints, configs, key modules, docs).\n\nOracle runs are one-shot; the model doesn’t remember prior runs. “Restoring context” means re-running with the same prompt + `--file …` set (or reattaching a still-running stored session).\n",{"data":33,"body":46},{"name":4,"description":6,"homepage":34,"metadata":35},"https:\u002F\u002Faskoracle.dev",{"openclaw":36},{"emoji":37,"requires":38,"install":40},"🧿",{"bins":39},[4],[41],{"id":42,"kind":42,"package":43,"bins":44,"label":45},"node","@steipete\u002Foracle",[4],"Install oracle (node)",{"type":47,"children":48},"root",[49,58,64,71,85,90,127,133,173,179,318,331,341,502,508,601,607,686,692,705,733,739,755,761,766,784],{"type":50,"tag":51,"props":52,"children":54},"element","h1",{"id":53},"oracle-best-use",[55],{"type":56,"value":57},"text","oracle — best use",{"type":50,"tag":59,"props":60,"children":61},"p",{},[62],{"type":56,"value":63},"Oracle bundles your prompt + selected files into one “one-shot” request so another model can answer with real repo context (API or browser automation). Treat output as advisory: verify against code + tests.",{"type":50,"tag":65,"props":66,"children":68},"h2",{"id":67},"main-use-case-browser-gpt52-pro",[69],{"type":56,"value":70},"Main use case (browser, GPT‑5.2 Pro)",{"type":50,"tag":59,"props":72,"children":73},{},[74,76,83],{"type":56,"value":75},"Default workflow here: ",{"type":50,"tag":77,"props":78,"children":80},"code",{"className":79},[],[81],{"type":56,"value":82},"--engine browser",{"type":56,"value":84}," with GPT‑5.2 Pro in ChatGPT. This is the common “long think” path: ~10 minutes to ~1 hour is normal; expect a stored session you can reattach to.",{"type":50,"tag":59,"props":86,"children":87},{},[88],{"type":56,"value":89},"Recommended defaults:",{"type":50,"tag":91,"props":92,"children":93},"ul",{},[94,107],{"type":50,"tag":95,"props":96,"children":97},"li",{},[98,100,105],{"type":56,"value":99},"Engine: browser (",{"type":50,"tag":77,"props":101,"children":103},{"className":102},[],[104],{"type":56,"value":82},{"type":56,"value":106},")",{"type":50,"tag":95,"props":108,"children":109},{},[110,112,118,120,126],{"type":56,"value":111},"Model: GPT‑5.2 Pro (",{"type":50,"tag":77,"props":113,"children":115},{"className":114},[],[116],{"type":56,"value":117},"--model gpt-5.2-pro",{"type":56,"value":119}," or ",{"type":50,"tag":77,"props":121,"children":123},{"className":122},[],[124],{"type":56,"value":125},"--model \"5.2 Pro\"",{"type":56,"value":106},{"type":50,"tag":65,"props":128,"children":130},{"id":129},"golden-path",[131],{"type":56,"value":132},"Golden path",{"type":50,"tag":134,"props":135,"children":136},"ol",{},[137,142,163,168],{"type":50,"tag":95,"props":138,"children":139},{},[140],{"type":56,"value":141},"Pick a tight file set (fewest files that still contain the truth).",{"type":50,"tag":95,"props":143,"children":144},{},[145,147,153,155,161],{"type":56,"value":146},"Preview payload + token spend (",{"type":50,"tag":77,"props":148,"children":150},{"className":149},[],[151],{"type":56,"value":152},"--dry-run",{"type":56,"value":154}," + ",{"type":50,"tag":77,"props":156,"children":158},{"className":157},[],[159],{"type":56,"value":160},"--files-report",{"type":56,"value":162},").",{"type":50,"tag":95,"props":164,"children":165},{},[166],{"type":56,"value":167},"Use browser mode for the usual GPT‑5.2 Pro workflow; use API only when you explicitly want it.",{"type":50,"tag":95,"props":169,"children":170},{},[171],{"type":56,"value":172},"If the run detaches\u002Ftimeouts: reattach to the stored session (don’t re-run).",{"type":50,"tag":65,"props":174,"children":176},{"id":175},"commands-preferred",[177],{"type":56,"value":178},"Commands (preferred)",{"type":50,"tag":91,"props":180,"children":181},{},[182,220,246,263,280],{"type":50,"tag":95,"props":183,"children":184},{},[185,187],{"type":56,"value":186},"Help:",{"type":50,"tag":91,"props":188,"children":189},{},[190,199],{"type":50,"tag":95,"props":191,"children":192},{},[193],{"type":50,"tag":77,"props":194,"children":196},{"className":195},[],[197],{"type":56,"value":198},"oracle --help",{"type":50,"tag":95,"props":200,"children":201},{},[202,204,210,212,218],{"type":56,"value":203},"If the binary isn’t installed: ",{"type":50,"tag":77,"props":205,"children":207},{"className":206},[],[208],{"type":56,"value":209},"npx -y @steipete\u002Foracle --help",{"type":56,"value":211}," (avoid ",{"type":50,"tag":77,"props":213,"children":215},{"className":214},[],[216],{"type":56,"value":217},"pnpx",{"type":56,"value":219}," here; sqlite bindings).",{"type":50,"tag":95,"props":221,"children":222},{},[223,225],{"type":56,"value":224},"Preview (no tokens):",{"type":50,"tag":91,"props":226,"children":227},{},[228,237],{"type":50,"tag":95,"props":229,"children":230},{},[231],{"type":50,"tag":77,"props":232,"children":234},{"className":233},[],[235],{"type":56,"value":236},"oracle --dry-run summary -p \"\u003Ctask>\" --file \"src\u002F**\" --file \"!**\u002F*.test.*\"",{"type":50,"tag":95,"props":238,"children":239},{},[240],{"type":50,"tag":77,"props":241,"children":243},{"className":242},[],[244],{"type":56,"value":245},"oracle --dry-run full -p \"\u003Ctask>\" --file \"src\u002F**\"",{"type":50,"tag":95,"props":247,"children":248},{},[249,251],{"type":56,"value":250},"Token sanity:",{"type":50,"tag":91,"props":252,"children":253},{},[254],{"type":50,"tag":95,"props":255,"children":256},{},[257],{"type":50,"tag":77,"props":258,"children":260},{"className":259},[],[261],{"type":56,"value":262},"oracle --dry-run summary --files-report -p \"\u003Ctask>\" --file \"src\u002F**\"",{"type":50,"tag":95,"props":264,"children":265},{},[266,268],{"type":56,"value":267},"Browser run (main path; long-running is normal):",{"type":50,"tag":91,"props":269,"children":270},{},[271],{"type":50,"tag":95,"props":272,"children":273},{},[274],{"type":50,"tag":77,"props":275,"children":277},{"className":276},[],[278],{"type":56,"value":279},"oracle --engine browser --model gpt-5.2-pro -p \"\u003Ctask>\" --file \"src\u002F**\"",{"type":50,"tag":95,"props":281,"children":282},{},[283,285],{"type":56,"value":284},"Manual paste fallback:",{"type":50,"tag":91,"props":286,"children":287},{},[288,297],{"type":50,"tag":95,"props":289,"children":290},{},[291],{"type":50,"tag":77,"props":292,"children":294},{"className":293},[],[295],{"type":56,"value":296},"oracle --render --copy -p \"\u003Ctask>\" --file \"src\u002F**\"",{"type":50,"tag":95,"props":298,"children":299},{},[300,302,308,310,316],{"type":56,"value":301},"Note: ",{"type":50,"tag":77,"props":303,"children":305},{"className":304},[],[306],{"type":56,"value":307},"--copy",{"type":56,"value":309}," is a hidden alias for ",{"type":50,"tag":77,"props":311,"children":313},{"className":312},[],[314],{"type":56,"value":315},"--copy-markdown",{"type":56,"value":317},".",{"type":50,"tag":65,"props":319,"children":321},{"id":320},"attaching-files-file",[322,324,330],{"type":56,"value":323},"Attaching files (",{"type":50,"tag":77,"props":325,"children":327},{"className":326},[],[328],{"type":56,"value":329},"--file",{"type":56,"value":106},{"type":50,"tag":59,"props":332,"children":333},{},[334,339],{"type":50,"tag":77,"props":335,"children":337},{"className":336},[],[338],{"type":56,"value":329},{"type":56,"value":340}," accepts files, directories, and globs. You can pass it multiple times; entries can be comma-separated.",{"type":50,"tag":91,"props":342,"children":343},{},[344,379,396],{"type":50,"tag":95,"props":345,"children":346},{},[347,349],{"type":56,"value":348},"Include:",{"type":50,"tag":91,"props":350,"children":351},{},[352,361,370],{"type":50,"tag":95,"props":353,"children":354},{},[355],{"type":50,"tag":77,"props":356,"children":358},{"className":357},[],[359],{"type":56,"value":360},"--file \"src\u002F**\"",{"type":50,"tag":95,"props":362,"children":363},{},[364],{"type":50,"tag":77,"props":365,"children":367},{"className":366},[],[368],{"type":56,"value":369},"--file src\u002Findex.ts",{"type":50,"tag":95,"props":371,"children":372},{},[373],{"type":50,"tag":77,"props":374,"children":376},{"className":375},[],[377],{"type":56,"value":378},"--file docs --file README.md",{"type":50,"tag":95,"props":380,"children":381},{},[382,384],{"type":56,"value":383},"Exclude:",{"type":50,"tag":91,"props":385,"children":386},{},[387],{"type":50,"tag":95,"props":388,"children":389},{},[390],{"type":50,"tag":77,"props":391,"children":393},{"className":392},[],[394],{"type":56,"value":395},"--file \"src\u002F**\" --file \"!src\u002F**\u002F*.test.ts\" --file \"!**\u002F*.snap\"",{"type":50,"tag":95,"props":397,"children":398},{},[399,401],{"type":56,"value":400},"Defaults (implementation behavior):",{"type":50,"tag":91,"props":402,"children":403},{},[404,467,480,485,497],{"type":50,"tag":95,"props":405,"children":406},{},[407,409,415,417,423,424,430,431,437,438,444,445,451,452,458,459,465],{"type":56,"value":408},"Default-ignored dirs: ",{"type":50,"tag":77,"props":410,"children":412},{"className":411},[],[413],{"type":56,"value":414},"node_modules",{"type":56,"value":416},", ",{"type":50,"tag":77,"props":418,"children":420},{"className":419},[],[421],{"type":56,"value":422},"dist",{"type":56,"value":416},{"type":50,"tag":77,"props":425,"children":427},{"className":426},[],[428],{"type":56,"value":429},"coverage",{"type":56,"value":416},{"type":50,"tag":77,"props":432,"children":434},{"className":433},[],[435],{"type":56,"value":436},".git",{"type":56,"value":416},{"type":50,"tag":77,"props":439,"children":441},{"className":440},[],[442],{"type":56,"value":443},".turbo",{"type":56,"value":416},{"type":50,"tag":77,"props":446,"children":448},{"className":447},[],[449],{"type":56,"value":450},".next",{"type":56,"value":416},{"type":50,"tag":77,"props":453,"children":455},{"className":454},[],[456],{"type":56,"value":457},"build",{"type":56,"value":416},{"type":50,"tag":77,"props":460,"children":462},{"className":461},[],[463],{"type":56,"value":464},"tmp",{"type":56,"value":466}," (skipped unless explicitly passed as literal dirs\u002Ffiles).",{"type":50,"tag":95,"props":468,"children":469},{},[470,472,478],{"type":56,"value":471},"Honors ",{"type":50,"tag":77,"props":473,"children":475},{"className":474},[],[476],{"type":56,"value":477},".gitignore",{"type":56,"value":479}," when expanding globs.",{"type":50,"tag":95,"props":481,"children":482},{},[483],{"type":56,"value":484},"Does not follow symlinks.",{"type":50,"tag":95,"props":486,"children":487},{},[488,490,496],{"type":56,"value":489},"Dotfiles filtered unless opted in via pattern (e.g. ",{"type":50,"tag":77,"props":491,"children":493},{"className":492},[],[494],{"type":56,"value":495},"--file \".github\u002F**\"",{"type":56,"value":162},{"type":50,"tag":95,"props":498,"children":499},{},[500],{"type":56,"value":501},"Files > 1 MB rejected.",{"type":50,"tag":65,"props":503,"children":505},{"id":504},"engines-api-vs-browser",[506],{"type":56,"value":507},"Engines (API vs browser)",{"type":50,"tag":91,"props":509,"children":510},{},[511,539,552,571],{"type":50,"tag":95,"props":512,"children":513},{},[514,516,522,524,530,532,538],{"type":56,"value":515},"Auto-pick: ",{"type":50,"tag":77,"props":517,"children":519},{"className":518},[],[520],{"type":56,"value":521},"api",{"type":56,"value":523}," when ",{"type":50,"tag":77,"props":525,"children":527},{"className":526},[],[528],{"type":56,"value":529},"OPENAI_API_KEY",{"type":56,"value":531}," is set; otherwise ",{"type":50,"tag":77,"props":533,"children":535},{"className":534},[],[536],{"type":56,"value":537},"browser",{"type":56,"value":317},{"type":50,"tag":95,"props":540,"children":541},{},[542,544,550],{"type":56,"value":543},"Browser supports GPT + Gemini only; use ",{"type":50,"tag":77,"props":545,"children":547},{"className":546},[],[548],{"type":56,"value":549},"--engine api",{"type":56,"value":551}," for Claude\u002FGrok\u002FCodex or multi-model runs.",{"type":50,"tag":95,"props":553,"children":554},{},[555,557],{"type":56,"value":556},"Browser attachments:\n",{"type":50,"tag":91,"props":558,"children":559},{},[560],{"type":50,"tag":95,"props":561,"children":562},{},[563,569],{"type":50,"tag":77,"props":564,"children":566},{"className":565},[],[567],{"type":56,"value":568},"--browser-attachments auto|never|always",{"type":56,"value":570}," (auto pastes inline up to ~60k chars then uploads).",{"type":50,"tag":95,"props":572,"children":573},{},[574,576],{"type":56,"value":575},"Remote browser host:\n",{"type":50,"tag":91,"props":577,"children":578},{},[579,590],{"type":50,"tag":95,"props":580,"children":581},{},[582,584],{"type":56,"value":583},"Host: ",{"type":50,"tag":77,"props":585,"children":587},{"className":586},[],[588],{"type":56,"value":589},"oracle serve --host 0.0.0.0 --port 9473 --token \u003Csecret>",{"type":50,"tag":95,"props":591,"children":592},{},[593,595],{"type":56,"value":594},"Client: ",{"type":50,"tag":77,"props":596,"children":598},{"className":597},[],[599],{"type":56,"value":600},"oracle --engine browser --remote-host \u003Chost:port> --remote-token \u003Csecret> -p \"\u003Ctask>\" --file \"src\u002F**\"",{"type":50,"tag":65,"props":602,"children":604},{"id":603},"sessions-slugs",[605],{"type":56,"value":606},"Sessions + slugs",{"type":50,"tag":91,"props":608,"children":609},{},[610,630,660,673],{"type":50,"tag":95,"props":611,"children":612},{},[613,615,621,623,629],{"type":56,"value":614},"Stored under ",{"type":50,"tag":77,"props":616,"children":618},{"className":617},[],[619],{"type":56,"value":620},"~\u002F.oracle\u002Fsessions",{"type":56,"value":622}," (override with ",{"type":50,"tag":77,"props":624,"children":626},{"className":625},[],[627],{"type":56,"value":628},"ORACLE_HOME_DIR",{"type":56,"value":162},{"type":50,"tag":95,"props":631,"children":632},{},[633,635],{"type":56,"value":634},"Runs may detach or take a long time (browser + GPT‑5.2 Pro often does). If the CLI times out: don’t re-run; reattach.\n",{"type":50,"tag":91,"props":636,"children":637},{},[638,649],{"type":50,"tag":95,"props":639,"children":640},{},[641,643],{"type":56,"value":642},"List: ",{"type":50,"tag":77,"props":644,"children":646},{"className":645},[],[647],{"type":56,"value":648},"oracle status --hours 72",{"type":50,"tag":95,"props":650,"children":651},{},[652,654],{"type":56,"value":653},"Attach: ",{"type":50,"tag":77,"props":655,"children":657},{"className":656},[],[658],{"type":56,"value":659},"oracle session \u003Cid> --render",{"type":50,"tag":95,"props":661,"children":662},{},[663,665,671],{"type":56,"value":664},"Use ",{"type":50,"tag":77,"props":666,"children":668},{"className":667},[],[669],{"type":56,"value":670},"--slug \"\u003C3-5 words>\"",{"type":56,"value":672}," to keep session IDs readable.",{"type":50,"tag":95,"props":674,"children":675},{},[676,678,684],{"type":56,"value":677},"Duplicate prompt guard exists; use ",{"type":50,"tag":77,"props":679,"children":681},{"className":680},[],[682],{"type":56,"value":683},"--force",{"type":56,"value":685}," only when you truly want a fresh run.",{"type":50,"tag":65,"props":687,"children":689},{"id":688},"prompt-template-high-signal",[690],{"type":56,"value":691},"Prompt template (high signal)",{"type":50,"tag":59,"props":693,"children":694},{},[695,697,703],{"type":56,"value":696},"Oracle starts with ",{"type":50,"tag":698,"props":699,"children":700},"strong",{},[701],{"type":56,"value":702},"zero",{"type":56,"value":704}," project knowledge. Assume the model cannot infer your stack, build tooling, conventions, or “obvious” paths. Include:",{"type":50,"tag":91,"props":706,"children":707},{},[708,713,718,723,728],{"type":50,"tag":95,"props":709,"children":710},{},[711],{"type":56,"value":712},"Project briefing (stack + build\u002Ftest commands + platform constraints).",{"type":50,"tag":95,"props":714,"children":715},{},[716],{"type":56,"value":717},"“Where things live” (key directories, entrypoints, config files, boundaries).",{"type":50,"tag":95,"props":719,"children":720},{},[721],{"type":56,"value":722},"Exact question + what you tried + the error text (verbatim).",{"type":50,"tag":95,"props":724,"children":725},{},[726],{"type":56,"value":727},"Constraints (“don’t change X”, “must keep public API”, etc).",{"type":50,"tag":95,"props":729,"children":730},{},[731],{"type":56,"value":732},"Desired output (“return patch plan + tests”, “give 3 options with tradeoffs”).",{"type":50,"tag":65,"props":734,"children":736},{"id":735},"safety",[737],{"type":56,"value":738},"Safety",{"type":50,"tag":91,"props":740,"children":741},{},[742],{"type":50,"tag":95,"props":743,"children":744},{},[745,747,753],{"type":56,"value":746},"Don’t attach secrets by default (",{"type":50,"tag":77,"props":748,"children":750},{"className":749},[],[751],{"type":56,"value":752},".env",{"type":56,"value":754},", key files, auth tokens). Redact aggressively; share only what’s required.",{"type":50,"tag":65,"props":756,"children":758},{"id":757},"exhaustive-prompt-restoration-pattern",[759],{"type":56,"value":760},"“Exhaustive prompt” restoration pattern",{"type":50,"tag":59,"props":762,"children":763},{},[764],{"type":56,"value":765},"For long investigations, write a standalone prompt + file set so you can rerun days later:",{"type":50,"tag":91,"props":767,"children":768},{},[769,774,779],{"type":50,"tag":95,"props":770,"children":771},{},[772],{"type":56,"value":773},"6–30 sentence project briefing + the goal.",{"type":50,"tag":95,"props":775,"children":776},{},[777],{"type":56,"value":778},"Repro steps + exact errors + what you tried.",{"type":50,"tag":95,"props":780,"children":781},{},[782],{"type":56,"value":783},"Attach all context files needed (entrypoints, configs, key modules, docs).",{"type":50,"tag":59,"props":785,"children":786},{},[787,789,795],{"type":56,"value":788},"Oracle runs are one-shot; the model doesn’t remember prior runs. “Restoring context” means re-running with the same prompt + ",{"type":50,"tag":77,"props":790,"children":792},{"className":791},[],[793],{"type":56,"value":794},"--file …",{"type":56,"value":796}," set (or reattaching a still-running stored session).",{"items":798,"total":888},[799,811,825,837,849,861,872],{"slug":800,"name":800,"fn":801,"description":802,"org":803,"tags":804,"stars":22,"repoUrl":23,"updatedAt":810},"1password","manage secrets with 1Password CLI","Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading\u002Finjecting\u002Frunning secrets via op.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[805,806,807],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":808,"slug":809,"type":15},"Security","security","2026-07-12T08:28:49.991939",{"slug":812,"name":812,"fn":813,"description":814,"org":815,"tags":816,"stars":22,"repoUrl":23,"updatedAt":824},"apple-notes","manage Apple Notes on macOS","Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks OpenClaw to add a note, list notes, search notes, or manage note folders.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[817,818,821],{"name":17,"slug":18,"type":15},{"name":819,"slug":820,"type":15},"Knowledge Management","knowledge-management",{"name":822,"slug":823,"type":15},"macOS","macos","2026-07-12T08:29:01.538106",{"slug":826,"name":826,"fn":827,"description":828,"org":829,"tags":830,"stars":22,"repoUrl":23,"updatedAt":836},"apple-reminders","manage Apple Reminders via CLI","Manage Apple Reminders via the `remindctl` CLI on macOS (list, add, edit, complete, delete). Supports lists, date filters, and JSON\u002Fplain output.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[831,832,833],{"name":17,"slug":18,"type":15},{"name":822,"slug":823,"type":15},{"name":834,"slug":835,"type":15},"Task Management","task-management","2026-07-12T08:29:14.035414",{"slug":838,"name":838,"fn":839,"description":840,"org":841,"tags":842,"stars":22,"repoUrl":23,"updatedAt":848},"bear-notes","manage Bear notes via CLI","Create, search, and manage Bear notes via grizzly CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[843,844,845],{"name":17,"slug":18,"type":15},{"name":819,"slug":820,"type":15},{"name":846,"slug":847,"type":15},"Notes","notes","2026-07-12T08:28:51.246011",{"slug":850,"name":850,"fn":851,"description":852,"org":853,"tags":854,"stars":22,"repoUrl":23,"updatedAt":860},"blogwatcher","monitor blogs and RSS feeds","Monitor blogs and RSS\u002FAtom feeds for updates using the blogwatcher CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[855,856,857],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":858,"slug":859,"type":15},"Monitoring","monitoring","2026-07-12T08:29:02.762321",{"slug":862,"name":862,"fn":863,"description":864,"org":865,"tags":866,"stars":22,"repoUrl":23,"updatedAt":871},"blucli","control BluOS audio playback","BluOS CLI (blu) for discovery, playback, grouping, and volume.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[867,870],{"name":868,"slug":869,"type":15},"Audio","audio",{"name":17,"slug":18,"type":15},"2026-07-12T08:28:21.009637",{"slug":873,"name":873,"fn":874,"description":875,"org":876,"tags":877,"stars":22,"repoUrl":23,"updatedAt":887},"bluebubbles","send and manage iMessages","Use when you need to send or manage iMessages via BlueBubbles (recommended iMessage integration). Calls go through the generic message tool with channel=\"bluebubbles\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[878,881,884],{"name":879,"slug":880,"type":15},"Communications","communications",{"name":882,"slug":883,"type":15},"iMessage","imessage",{"name":885,"slug":886,"type":15},"Messaging","messaging","2026-07-12T08:28:57.517914",54,{"items":890,"total":997},[891,907,913,919,925,931,937,942,948,962,974,986],{"slug":892,"name":892,"fn":893,"description":894,"org":895,"tags":896,"stars":904,"repoUrl":905,"updatedAt":906},"deepclaw-voice","configure phone calls with Deepgram Voice","Set up phone calling to OpenClaw using Deepgram Voice Agent API",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[897,900,901],{"name":898,"slug":899,"type":15},"API Development","api-development",{"name":9,"slug":8,"type":15},{"name":902,"slug":903,"type":15},"Voice","voice",78,"https:\u002F\u002Fgithub.com\u002Fdeepgram\u002Fdeepclaw","2026-07-12T08:29:25.371332",{"slug":800,"name":800,"fn":801,"description":802,"org":908,"tags":909,"stars":22,"repoUrl":23,"updatedAt":810},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[910,911,912],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":808,"slug":809,"type":15},{"slug":812,"name":812,"fn":813,"description":814,"org":914,"tags":915,"stars":22,"repoUrl":23,"updatedAt":824},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[916,917,918],{"name":17,"slug":18,"type":15},{"name":819,"slug":820,"type":15},{"name":822,"slug":823,"type":15},{"slug":826,"name":826,"fn":827,"description":828,"org":920,"tags":921,"stars":22,"repoUrl":23,"updatedAt":836},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[922,923,924],{"name":17,"slug":18,"type":15},{"name":822,"slug":823,"type":15},{"name":834,"slug":835,"type":15},{"slug":838,"name":838,"fn":839,"description":840,"org":926,"tags":927,"stars":22,"repoUrl":23,"updatedAt":848},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[928,929,930],{"name":17,"slug":18,"type":15},{"name":819,"slug":820,"type":15},{"name":846,"slug":847,"type":15},{"slug":850,"name":850,"fn":851,"description":852,"org":932,"tags":933,"stars":22,"repoUrl":23,"updatedAt":860},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[934,935,936],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":858,"slug":859,"type":15},{"slug":862,"name":862,"fn":863,"description":864,"org":938,"tags":939,"stars":22,"repoUrl":23,"updatedAt":871},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[940,941],{"name":868,"slug":869,"type":15},{"name":17,"slug":18,"type":15},{"slug":873,"name":873,"fn":874,"description":875,"org":943,"tags":944,"stars":22,"repoUrl":23,"updatedAt":887},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[945,946,947],{"name":879,"slug":880,"type":15},{"name":882,"slug":883,"type":15},{"name":885,"slug":886,"type":15},{"slug":949,"name":949,"fn":950,"description":951,"org":952,"tags":953,"stars":22,"repoUrl":23,"updatedAt":961},"camsnap","capture frames and clips from cameras","Capture frames or clips from RTSP\u002FONVIF cameras.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[954,955,958],{"name":13,"slug":14,"type":15},{"name":956,"slug":957,"type":15},"Camera","camera",{"name":959,"slug":960,"type":15},"Media","media","2026-07-12T08:28:28.096134",{"slug":963,"name":963,"fn":964,"description":965,"org":966,"tags":967,"stars":22,"repoUrl":23,"updatedAt":973},"clawhub","manage agent skills with ClawHub","Use the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new\u002Fupdated skill folders with the npm-installed clawhub CLI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[968,971,972],{"name":969,"slug":970,"type":15},"Agents","agents",{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},"2026-07-12T08:28:30.589001",{"slug":975,"name":975,"fn":976,"description":977,"org":978,"tags":979,"stars":22,"repoUrl":23,"updatedAt":985},"coding-agent","run coding agents for programmatic control","Run Codex CLI, Claude Code, OpenCode, or Pi Coding Agent via background process for programmatic control.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[980,981,982],{"name":969,"slug":970,"type":15},{"name":13,"slug":14,"type":15},{"name":983,"slug":984,"type":15},"Coding","coding","2026-07-12T08:29:08.6658",{"slug":987,"name":987,"fn":988,"description":989,"org":990,"tags":991,"stars":22,"repoUrl":23,"updatedAt":996},"eightctl","control Eight Sleep pod settings","Control Eight Sleep pods (status, temperature, alarms, schedules).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[992,993],{"name":13,"slug":14,"type":15},{"name":994,"slug":995,"type":15},"Hardware","hardware","2026-07-12T08:28:39.322181",73]