deep-research

deep-research is a skill for Claude Code, Codex from zilliztech/mfs. It costs 219 tokens per session (1,727 once invoked), scanned A, original, Apache-2.0.

A research workflow that searches indexed private sources in several rounds before producing a cited report. It breaks a broad question into smaller questions, checks whether the evidence is sufficient, and follows up where needed.

In plain words
What is it for?
Use it to investigate topics across MFS-indexed documents, identify evidence gaps, and combine search results into a sourced report.
Why use it?
It helps answer open-ended or multi-part questions when one search is unlikely to find all the relevant information.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/zilliztech/mfs/deep-research
Any agent
npx skills add zilliztech/mfs --skill deep-research
Clone the repo
git clone --depth 1 https://github.com/zilliztech/mfs

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for deep-research

README.md
[![agentmods](https://agentmods.dev/badge/skills/zilliztech/mfs/deep-research.svg)](https://agentmods.dev/skills/zilliztech/mfs/deep-research)
Your own site
<a href="https://agentmods.dev/skills/zilliztech/mfs/deep-research"><img src="https://agentmods.dev/badge/skills/zilliztech/mfs/deep-research.svg" alt="Measured on agentmods" height="20"></a>
Per session 219 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,727 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00219 $0.01727
Opus 5 $0.00110 $0.00864
Sonnet 5 $0.00044 $0.00345
Haiku 4.5 $0.00022 $0.00173

Measured 5d ago against content hash 47513bf2f957, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

deep-research scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

examples/deep-research-skill/deep-research/SKILL.md · 135 lines

How it starts

The opening of the file, as written. The whole thing — 135 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Deep research over MFS-indexed sources

1. What this is (and what it replaces)

deep-searcher is an open-source framework that reasons over private data: it decomposes a question, iteratively searches a vector database, evaluates whether the evidence is sufficient, and synthesizes a cited report. Built before agentic coding tools existed, it had to hand-roll every piece itself — document loaders, a multi-provider LLM/embedding/vector-DB matrix, and a custom iterative-retrieval orchestration loop in Python.

None of that orchestration is needed anymore. MFS already does ingestion + hybrid search over many source types, and an agent's own reasoning loop already does "search, judge, follow up, repeat" natively once it has a search tool. This skill is that missing piece: not new retrieval code, just the strategy for running deep-searcher's decompose → search → evaluate → synthesize loop through mfs search / mfs cat.

This skill assumes mfs-find for the actual command mechanics (search modes, locators, --peek/--skim, index-status diagnosis). Read that skill for those details — this one only adds the multi-round strategy on top.

2. Precondition: sources must be indexed

Same as mfs-find: mfs status / mfs connector inspect <uri> first. If nothing relevant is indexed yet, redirect to mfs-ingest — don't run a research loop against an empty index.

3. The loop

 decompose            search rounds              evaluate           synthesize
┌───────────┐   ┌───────────────────────┐   ┌──────────────────┐   ┌───────────┐
│ 2-4 angles│ → │ mfs search per angle,  │ → │ enough coverage? │ → │  cited    │
│ on the Q  │   │ semantic + keyword     │   │ gaps → new angles│   │  report   │
└───────────┘   └───────────────────────┘   └──────┬───────────┘   └───────────┘
                        ▲                            │ not enough
                        └────────────────────────────┘ (max ~4 rounds)

Read the full file on GitHub · 135 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 135 lines · 219 tokens per session scan A 47513bf2f957

Subscribe to this mod's changes

deep-research is a skill published in the GitHub repository zilliztech/mfs (135 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 219 tokens to every session and 1,727 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.