Install
openclaw skills install deepthinkliteLocal-first deep research like OpenAI Deep Research: generates questions.md + response.md artifacts and enforces a time budget.
openclaw skills install deepthinkliteDeepthinkLite gives you local-first deep research in a repeatable shape — inspired by the Deep Research / deepthink workflow.
Every run produces two artifacts you can keep, diff, and reuse:
questions.md — the investigation map (what to ask, what to look up, what to verify)response.md — the final answer (clean, structured, decision-ready)If you want an agent to think deeply without losing the work to chat scrollback, use DeepthinkLite.
Create a new run directory:
# Allow raw source snippets (default)
deepthinklite query "<your deep research question>" --out ./deepthinklite --source-mode raw
# Strict mode: summaries only unless user explicitly approves raw snippets
deepthinklite query "<your deep research question>" --out ./deepthinklite --source-mode summary-only
This creates:
./deepthinklite/<slug>/
questions.md
response.md
meta.json
DeepthinkLite is designed to be prompt-injection resistant when working with untrusted sources.
DeepthinkLite assumes the agent may use tools for research:
But: before doing any web browsing or accessing non-obvious local paths, the agent must ask the user explicitly for permission and state exactly what it plans to access.
Security rules (non-negotiable):
Examples:
~/Projects/<repo> to inspect the code. OK?”Default budget:
If the user specifies a budget, respect it. If not specified, use the default.
questions.md + response.md--source-mode raw (default): raw snippets allowed (still treated as untrusted data)--source-mode summary-only: summaries only unless user explicitly approves raw snippetsquestions.mdInclude:
Collect evidence. Prefer primary sources.
response.mdWrite:
Hi — I’m Viraj. I built this because I wanted a local-first, security-conscious deep research workflow that’s actually usable day-to-day.
If you hit an issue or want an enhancement:
Contributors are welcome — PRs encouraged; maintainers handle merges.
If you like this workflow, also check out RAGLite (open source): a local-first document distillation + indexing approach that pairs well with Deepthink-style research.
deepthinklite query ... creates the run directory + boilerplate.