agent-management
Create, manage, and orchestrate AI agents using the AI Maestro CLI. Use when the user asks to "create agent", "list agents", "delete agent", "hibernate agent",…
Run autonomous research tasks that plan, search, read, and synthesize information into comprehensive reports.
$ npx -y skills add davila7/claude-code-templates --skill deep-research --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/deep-researchContext preview
The summary Claude sees to decide when to auto-load this skill.
Run autonomous research tasks that plan, search, read, and synthesize information into comprehensive reports.
name: deep-research description: "Run autonomous research tasks that plan, search, read, and synthesize information into comprehensive reports." risk: safe source: "https://github.com/sanjay3290/ai-skills/tree/main/skills/deep-research" date_added: "2026-02-27"
Run autonomous research tasks that plan, search, read, and synthesize information into comprehensive reports.
Use this skill when:
1. Get a Gemini API key from [Google AI Studio](https://aistudio.google.com/) 2. Set the environment variable:
export GEMINI_API_KEY=your-api-key-here
Or create a `.env` file in the skill directory.
python3 scripts/research.py --query "Research the history of Kubernetes"
python3 scripts/research.py --query "Compare Python web frameworks" \ --format "1. Executive Summary\n2. Comparison Table\n3. Recommendations"
python3 scripts/research.py --query "Analyze EV battery market" --stream
python3 scripts/research.py --query "Research topic" --no-wait
python3 scripts/research.py --status <interaction_id>
python3 scripts/research.py --wait <interaction_id>
python3 scripts/research.py --query "Elaborate on point 2" --continue <interaction_id>
python3 scripts/research.py --list
| Metric | Value | |--------|-------| | Time | 2-10 minutes per task | | Cost | $2-5 per task (varies by complexity) | | Token usage | ~250k-900k input, ~60k-80k output |
1. User requests research → Run `--query "..."` 2. Inform user of estimated time (2-10 minutes) 3. Monitor with `--stream` or poll with `--status` 4. Return formatted results 5. Use `--continue` for follow-up questions
Ready-to-use configurations for Anthropic's Claude Code. A comprehensive collection of AI agents, custom commands, settings, hooks, external integrations (MCPs), and project templates to enhance your development workflow.
Repo: davila7/claude-code-templates
Create, manage, and orchestrate AI agents using the AI Maestro CLI. Use when the user asks to "create agent", "list agents", "delete agent", "hibernate agent",…
Send and receive cryptographically signed messages between AI agents using the Agent Messaging Protocol (AMP). Use when the user asks to "send a message to an…
Search auto-generated codebase documentation for function signatures, API docs, class definitions, and code comments. Use when the user asks to "search docs",…
Query the code graph database to understand component relationships, dependencies, and change impact. Use when the user asks to "find callers", "check…
Search conversation history and semantic memory to recall previous discussions, decisions, and context. Use when the user asks to "search memory", "what did we…