deep-research
Multi-agent parallel investigation for complex VCV Rack problems
Install
mkdir -p .claude/skills/deep-research && curl -L -o skill.zip "https://mcp.directory/api/skills/download/44" && unzip -o skill.zip -d .claude/skills/deep-research && rm skill.zipInstalls to .claude/skills/deep-research
About this skill
deep-research Skill
Purpose: Multi-level autonomous investigation for complex VCV Rack module development problems using graduated research depth protocol.
Overview
This skill performs thorough research on technical problems by consulting multiple knowledge sources with automatic escalation based on confidence. Starts fast (5 min local lookup) and escalates as needed (up to 60 min parallel investigation).
Why graduated protocol matters:
Most problems have known solutions (Level 1: 5 min). Complex problems need deep research (Level 3: 60 min). Graduated protocol prevents over-researching simple problems while ensuring complex problems get thorough investigation.
Key innovation: Stops as soon as confident answer found. User controls depth via decision menus.
Read-Only Protocol
CRITICAL: This skill is read-only and advisory only. It NEVER:
- Edits code files
- Runs builds
- Modifies contracts or configurations
- Implements solutions
Workflow handoff:
- Research completes and presents findings with decision menu
- User selects "Apply solution"
- Output routing instruction: "User selected: Apply solution. Next step: Invoke module-improve skill."
- Main conversation (orchestrator) sees routing instruction and invokes module-improve skill
- module-improve reads research findings from conversation history
- module-improve handles all implementation (with versioning, backups, testing)
Note: The routing instruction is a directive to the main conversation. When the orchestrator sees "Invoke module-improve skill", it will use the Skill tool to invoke module-improve. This is the standard handoff protocol.
Why separation matters:
- Research uses Opus + extended thinking (expensive)
- Implementation needs codebase context (different focus)
- Clear decision gate between "here are options" and "making changes"
- Research can't break anything (safe exploration)
Entry Points
Invoked by:
- troubleshooter agent (Level 4 investigation)
- User manual:
/research [topic] - build-automation "Investigate" option
- Natural language: "research [topic]", "investigate [problem]"
Entry parameters:
- Topic/question: What to research
- Context (optional): Module name, stage, error message
- Starting level (optional): Skip to Level 2/3 if explicitly requested
Level 1: Quick Check (5-10 min, Sonnet, no extended thinking)
Goal: Find solution in local knowledge base or basic Rack SDK docs
Process
-
Parse research topic/question
- Extract keywords
- Identify VCV Rack components involved
- Classify problem type (build, runtime, API usage, panel, CV, etc.)
-
Search local troubleshooting docs:
# Search by keywords grep -r "[topic keywords]" troubleshooting/ # Check relevant categories ls troubleshooting/[category]/ # Search for module-specific or general issues -
Check Rack SDK documentation for direct answers:
- Query for relevant class/API
- Check method signatures
- Review basic usage examples
- Look for known limitations
-
Assess confidence:
- HIGH: Exact match in local docs OR clear API documentation
- MEDIUM: Similar issue found but needs adaptation
- LOW: No relevant matches or unclear documentation
-
Decision point:
If HIGH confidence:
✓ Level 1 complete (found solution) Solution: [Brief description] Source: [Local doc or Rack SDK API] What's next? 1. Apply solution (recommended) 2. Review details - See full explanation 3. Continue deeper - Escalate to Level 2 for more options 4. OtherIf MEDIUM/LOW confidence: Auto-escalate to Level 2 with notification:
Level 1: No confident solution found Escalating to Level 2 (moderate investigation)...
Level 2: Moderate Investigation (15-30 min, Sonnet, no extended thinking)
Goal: Find authoritative answer through comprehensive documentation and community knowledge
Process
-
Rack SDK deep-dive:
- Full module documentation
- Code examples and patterns
- Related classes and methods
- Best practices sections
- Migration guides (if version-related)
-
VCV Rack community forum search via WebSearch:
Query: "site:community.vcvrack.com [topic]" Look for: - Recent threads (last 2 years) - Accepted solutions - VCV team responses - Multiple user confirmations -
GitHub issue search:
Query: "site:github.com/VCVRack/Rack [topic]" Look for: - Closed issues with solutions - Pull requests addressing problem - Code examples in discussions - Version-specific fixes -
Synthesize findings:
- Compare multiple sources
- Verify version compatibility (Rack SDK 2.x)
- Assess solution quality (proper fix vs workaround)
- Identify common recommendations
-
Decision point:
If HIGH/MEDIUM confidence:
✓ Level 2 complete (found N solutions) Investigated sources: - Rack SDK docs: [Finding] - VCV Community: [N threads] - GitHub: [N issues] Solutions found: 1. [Solution 1] (recommended) 2. [Solution 2] (alternative) What's next? 1. Apply recommended solution 2. Review all options - Compare approaches 3. Continue deeper - Escalate to Level 3 (parallel investigation) 4. OtherIf LOW confidence OR novel problem: Auto-escalate to Level 3 with notification:
Level 2: Complex problem detected (requires original implementation) Escalating to Level 3 (deep research with parallel investigation)... Switching to Opus model + extended thinking (may take up to 60 min)
Level 3: Deep Research (30-60 min, Opus, extended thinking 15k budget)
Goal: Comprehensive investigation with parallel subagent research for novel/complex problems
Process
-
Switch to Opus model with extended thinking:
extended_thinking: true thinking_budget: 15000 timeout: 3600 # 60 min -
Identify research approaches:
Analyze problem and determine 2-3 investigation paths:
For DSP algorithm questions:
- Algorithm A investigation (e.g., anti-aliasing methods)
- Algorithm B investigation (e.g., oversampling approach)
- Commercial implementation research (industry standards)
For novel feature implementation:
- VCV Rack native approach (using built-in APIs)
- External library approach (e.g., integration patterns)
- Custom implementation approach (from scratch)
For performance optimization:
- Algorithm optimization (better complexity)
- Caching/pre-computation (trade memory for CPU)
- SIMD/parallel processing (vectorization)
-
Spawn parallel research subagents:
Use Task tool to spawn 2-3 specialized research agents in fresh contexts:
// Example: CV scaling research for V/Oct tracking Task( (subagent_type = "general-purpose"), (description = "Research V/Oct standard"), (prompt = ` Investigate 1V/octave CV standard for pitch tracking in VCV Rack. Research: 1. Voltage-to-frequency conversion formula 2. VCV Rack API support (dsp::FREQ_* constants?) 3. Implementation complexity (1-5 scale) 4. Common pitfalls and edge cases 5. Reference implementations 6. Code examples Return structured findings: { "approach": "V/Oct conversion", "rack_support": "description", "complexity": 2, "formula": "...", "pros": ["...", "..."], "cons": ["...", "..."], "references": ["...", "..."] } `) ); Task( (subagent_type = "general-purpose"), (description = "Research exponential FM"), (prompt = ` Investigate exponential frequency modulation for VCV Rack oscillators. Research: 1. Linear vs exponential FM differences 2. VCV Rack conventions (how much FM range?) 3. Implementation complexity (1-5 scale) 4. CPU performance characteristics 5. Code examples or references Return structured findings: { "approach": "Exponential FM", "rack_conventions": "description", "complexity": 3, "typical_range": "...", "pros": ["...", "..."], "cons": ["...", "..."], "references": ["...", "..."] } `) ); Task( (subagent_type = "general-purpose"), (description = "Research polyphony implementation"), (prompt = ` Research polyphonic voice allocation for VCV Rack modules. Investigate: 1. VCV Rack polyphony API (16 channels max) 2. Voice allocation strategies 3. Common patterns from existing modules 4. Performance considerations Return structured findings: { "approach": "Polyphony", "max_channels": 16, "allocation_strategy": "...", "rack_patterns": "...", "references": ["...", "..."] } `) );Each subagent:
- Runs in fresh context (no accumulated conversation)
- Has focused research goal
- Returns structured findings
- Takes 10-20 minutes
- Runs in parallel (3 agents = 20 min total, not 60 min)
-
Main context synthesis (extended thinking):
After all subagents return, use extended thinking to synthesize:
- Aggregate findings from all subagents
- Compare approaches:
- Pros/cons for each
- Implementation complexity (1-5 scale)
- CPU cost vs quality trade-offs
- VCV Rack integration ease
- Recommend best fit:
- For this specific use case
- Considering complexity budget
- Balancing CPU and quality
- Implementation roadmap:
- Step-by-step approach
- VCV Rack APIs to use
- Potential pitfal
Content truncated.
You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
pdf-to-markdown
aliceisjustplaying
Convert entire PDF documents to clean, structured Markdown for full context loading. Use this skill when the user wants to extract ALL text from a PDF into context (not grep/search), when discussing or analyzing PDF content in full, when the user mentions "load the whole PDF", "bring the PDF into context", "read the entire PDF", or when partial extraction/grepping would miss important context. This is the preferred method for PDF text extraction over page-by-page or grep approaches.
Related MCP Servers
Browse all serversOrchestrate complex problem-solving with our multi agent system—specialized agents offer deep, structured, and parallel
TaskManager streamlines project tracking and time management with efficient task queues, ideal for managing projects sof
TaskQueue is a project tracking software for managing complex projects, featuring progress tracking and approval checkpo
Consult LLM escalates complex reasoning tasks to advanced models with code context, git diffs, and detailed cost trackin
Agent Collaboration MCP Server — orchestrate AI agents via tmux sessions for parallel task delegation, real-time monitor
SuperAgent is artificial intelligence development software that orchestrates AI agents for efficient, parallel software
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.