Asi depth-search
Deep multi-source research combining academic MCPs (arxiv, semantic-scholar, paper-search, deepwiki), Exa semantic search, and local ~/.topos knowledge base. Use for comprehensive research requiring multiple sources. NEVER fall back to web_search - ask user for help instead.
git clone https://github.com/plurigrid/asi
T=$(mktemp -d) && git clone --depth=1 https://github.com/plurigrid/asi "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/depth-search" ~/.claude/skills/plurigrid-asi-depth-search-81774b && rm -rf "$T"
skills/depth-search/SKILL.mdDepth Search
Comprehensive multi-source research skill. Searches across academic databases, semantic web search, and local knowledge before asking the user for help.
Search Order
Execute searches in this order, using parallel subagents where possible:
1. Local Knowledge Base (~/.topos)
Search
~/.topos directory first for existing research, notes, and cached data:
- Use
andglob
to find relevant filesGrep - Check
,.md
,.org
,.jl
,.py
files.json - Look in subdirectories:
,skills/
,archived/
, etc.Gay.jl/
2. Academic MCPs (parallel)
Launch parallel subagents to search all 4 academic sources:
| MCP | Tools | Best For |
|---|---|---|
| arxiv | , , | Preprints, CS/physics/math papers |
| semantic-scholar | , , | Citation analysis, author profiles |
| paper-search | , , , etc. | Multi-source aggregation |
| deepwiki | , , | GitHub repo documentation |
3. Exa Semantic Search
Use Exa MCP for high-quality web search:
- Semantic web searchweb_search_exa
- Extract web contentcrawling_exa
- Company researchcompany_research_exa
/deep_researcher_start
- Deep research tasksdeep_researcher_check
4. Ask User for Help
If all sources fail to find what's needed:
- DO NOT fall back to
- it's basic keyword matching onlyweb_search - Instead, ask the user:
- "I couldn't find [X] in academic databases, Exa, or local files. Can you provide a link, paper title, or more context?"
- Suggest specific sources they might check manually
- Offer to try different search terms
Critical Rules
- NEVER use
as a fallback - it's not equivalent to Exaweb_search - NEVER use
in Task subagents - use Exa tools insteadweb_search - Always search local ~/.topos first - may have cached/annotated versions
- Use parallel subagents for academic MCPs to maximize speed
- Ask user for help rather than guessing or using inferior search
Example Workflow
User: "Find papers on world models for LLMs" 1. Search ~/.topos for existing notes/papers 2. Launch 4 parallel Task subagents: - arxiv: search_papers("world models LLM") - semantic-scholar: paper_relevance_search("world models language models") - paper-search: search across all sources - deepwiki: check relevant GitHub repos 3. If needed, use Exa: web_search_exa("world models LLM research") 4. Synthesize results from all sources 5. If still not found: ask user for clarification
Parallel Subagent Template
When searching academic sources, use this pattern:
Launch 4 parallel Task subagents: - Task 1: Use arxiv MCP to search for [query] - Task 2: Use semantic-scholar MCP to search for [query] - Task 3: Use paper-search MCP to search for [query] - Task 4: Use deepwiki MCP to find related repos/docs
What NOT To Do
❌
web_search as fallback when Exa fails❌ Single-source search when multiple are available
❌ Skipping local ~/.topos search
❌ Guessing answers without exhausting sources
❌ Sequential searches when parallel is possible
What TO Do
✅ Search ~/.topos first for cached knowledge
✅ Parallel subagents for academic MCPs
✅ Exa for semantic web search
✅ Ask user when sources are exhausted
✅ Synthesize results from multiple sources