run-deep-research
Run citation-bearing deep research with deep-research-client across OpenAI, Perplexity, Edison/Falcon, Cyberian, and site-specific providers such as OpenScientist. Use when a user asks for research reports, literature reviews, source-backed synthesis, or provider/model trade-off guidance.
What this skill does
# run-deep-research Use `deep-research-client` for source-backed research tasks that should produce a report with citations and provider metadata. Canonical project: https://github.com/monarch-initiative/deep-research-client Do not add a skill `README.md`. The operative agent instructions belong in this `SKILL.md`; the main repository is the human-facing source of broader project context. ## Command Prefix Select the command form from the current environment: - In the `deep-research-client` repository, use `uv run deep-research-client ...`. - If the package is already installed, use `deep-research-client ...`. - If it is not installed and `uv` is available, use `uvx deep-research-client ...`. Before hard-coding a provider or model, prefer checking local availability: ```bash deep-research-client providers deep-research-client models ``` Provider names and aliases can vary by installed version or local deployment. Trust the CLI output over stale examples. ## Provider Selection Be explicit about speed, depth, cost, and source type. If the user has not already made that trade-off clear, ask before using expensive or long-running providers. Use this default selection logic: | Need | Provider guidance | | --- | --- | | Fast current/web answer | Perplexity `sonar` or `sonar-pro` | | Deeper current/web synthesis | Perplexity `sonar-deep-research` | | Comprehensive general report | OpenAI deep research | | Scientific literature review | Edison/Falcon | | Iterative agent-based deep research | Cyberian | | Site-specific scientific agent workflow | OpenScientist, only when `providers` reports it | ### Edison/FutureHouse/Falcon Context Edison Scientific is the successor/spinoff context for the old FutureHouse Falcon integration. The client and older examples may still use the provider name `falcon` for compatibility, while newer docs may say `edison`. Use whichever provider name the installed CLI reports. Prefer `EDISON_API_KEY`; treat `FUTUREHOUSE_API_KEY` as a legacy fallback if the client supports it. ### Cyberian Context Cyberian is not a simple hosted API provider. It runs a local agent workflow through `agentapi` using agents such as Claude, Codex, Aider, Cursor, or Goose. Use it when the user wants an exhaustive, iterative research pass and is comfortable with a slow, visible local-agent workflow. For testing or cost control, consider limiting iterations if the installed Cyberian version supports it: ```bash deep-research-client research "query" --provider cyberian \ --param agent_type=codex \ --param max_iterations=2 ``` ### OpenScientist Context OpenScientist may be exposed by site-specific or newer `deep-research-client` deployments for scientific research workflows. Do not assume the provider name, model name, or setup from memory; use `providers`, `models`, and local docs to confirm availability before invoking it. ## Research Workflow 1. Clarify speed/depth/cost if ambiguous. 2. Check available providers and models when provider availability is uncertain. 3. Choose the provider/model according to the user's goal. 4. Run the research, saving to an output file when the user asks for an artifact or the result will be reused. 5. Review the result for citations, cache status, provider metadata, and obvious provider failure modes before presenting it. Minimal command pattern: ```bash deep-research-client research "research question" \ --provider perplexity \ --model sonar-pro \ --output research.md ``` Use `--input-file` for long prompts. Use `--template` and `--var` only when the user supplies a template or when using a bundled template intentionally, such as `examples/gene_research.md`. ## Cache Safety Treat `~/.deep_research_cache/` as valuable user data. It can contain expensive prior research results and provenance. - Use the cache by default. - Use `list-cache` or `search-cache` freely for non-destructive inspection. - Use `--no-cache` only when the user asks for a fresh result or the task clearly requires bypassing stale results. - Never run `clear-cache`, delete cache files, or remove `~/.deep_research_cache/` unless the user explicitly asks for cache deletion and confirms they understand it removes saved research. ## Output Expectations Prefer reports with: - a clear research question - provider/model metadata - citations or source links - enough synthesis to be useful without rerunning the query If the selected provider is unavailable, report the exact missing requirement, such as an API key, `agentapi`, Cyberian installation, or an unavailable local provider such as OpenScientist.
Related in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts — single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score ≥ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.