← ClaudeAtlas

deep-researchlisted

Run a deep agentic research task using anakin-cli that autonomously explores the web and returns a comprehensive report. Use for comprehensive research — comparisons, market analysis, technical deep-dives, or questions requiring multiple sources. Takes 1-5 minutes.
Anakin-Inc/anakin-claude-plugin · ★ 0 · AI & Automation · score 75
Install: claude install-skill Anakin-Inc/anakin-claude-plugin
# Deep research ## Trigger Comprehensive research on a topic — comparisons, market analysis, technical deep-dives, or questions requiring multiple sources. ## Workflow 1. Verify anakin-cli is authenticated by running `anakin status`. 2. Create the output directory if it doesn't exist: ```bash mkdir -p .anakin ``` 3. Generate a descriptive filename from the topic: - "React vs Vue comparison" -> `.anakin/research-react-vs-vue.json` - "AI startup funding 2025" -> `.anakin/research-ai-funding-2025.json` 4. Inform the user that deep research takes 1-5 minutes and runs autonomously. 5. Run the research: ```bash anakin research "$ARGUMENTS" -o .anakin/research-<topic>.json ``` For complex topics that may take longer: ```bash anakin research "$ARGUMENTS" --timeout 900 -o .anakin/research-<topic>.json ``` 6. Once complete, extract and present the key findings: ```bash wc -l .anakin/research-<topic>.json && head -100 .anakin/research-<topic>.json jq -r '.generatedJson.summary' .anakin/research-<topic>.json ``` 7. Present to the user: - Executive summary - Key findings and structured data - Cited sources - Offer to scrape any cited URLs for deeper analysis ## Commands ```bash # Deep agentic research (1-5 minutes) anakin research "<topic>" -o .anakin/research-topic.json # Extended timeout for complex topics anakin research "<topic>" --timeout 900 -o .anakin/research-topic.json ``` ### Options - `--timeout <seconds>` — M