Imported from Hellblazer/nexus (
conexus/skills/deep-analysis/SKILL.md). Install upstream withnpx skills add Hellblazer/nexus --skill deep-analysis. Copyright stays with the author.
Tier-aware discipline — before starting, check T3 (search), T2 (memory_search), and T1 (scratch search) widest to narrowest so you don't duplicate work already done; reuse a matching plan via plan_search before dispatching multiple agents. Before returning, write findings back at the tier matching their audience (scratch for siblings this session, memory_put for this project, store_put for permanent cross-project knowledge). Full checklist: resources/tier-discipline.md (shared across every skill that prescribes it — nexus-cnzei.6).
Deep Analysis Skill
Delegates to the deep-analyst agent.
Model Selection
Default: sonnet. Escalate via model parameter on the Agent tool:
| Task Shape | Model | When |
|---|---|---|
| Single-module or focused question | sonnet (default) | Most analysis tasks |
| >3 modules, system-level, or novel architecture | opus | Cross-cutting investigations |
When This Skill Activates
- When investigating performance mysteries
- When debugging multi-component interactions
- When understanding complex system behavior
- When surface-level analysis is insufficient
- When root cause analysis requires deep investigation
- After debugger if issue is cross-cutting
Pre-Dispatch: Seed Link Context
Before dispatching the deep-analyst agent, seed T1 scratch with link targets so the auto-linker can create catalog links when the agent stores findings:
- If the task references an RDR (pattern
RDR-\d+) or a known document, resolve it:mcp__plugin_conexus_nexus-catalog__search(query="RDR-NNN or document title") - Check T1 scratch for
rdr-planning-context - Write link context to scratch:
mcp__plugin_conexus_nexus__scratch(action="put", content='{"targets": [{"tumbler": "<resolved-tumbler>", "link_type": "relates"}], "source_agent": "deep-analyst"}', tags="link-context") - If no RDR/document reference found, skip seeding (the auto-linker handles empty context gracefully)
Agent Invocation
Use the Agent tool to invoke deep-analyst:
## Relay: deep-analyst
**Task**: [what needs to be done]
**Bead**: [ID] or 'none'
### Input Artifacts
- Files: [relevant files]
### Deliverable
Analysis report with findings and recommendations
### Quality Criteria
- [ ] Multiple hypotheses explored
- [ ] Root cause(s) identified with confidence
- [ ] Recommendations are actionable
For full relay structure and optional fields, see RELAY_TEMPLATE.md.
Investigation Methodology
The deep-analyst uses mcp__plugin_conexus_sequential-thinking__sequentialthinking:
- Form initial hypothesis about the problem
- Identify evidence needed to validate/refute
- Gather evidence systematically — use
query(question=..., subtree=..., follow_links="cites")for citation-aware evidence gathering, orquery(question=..., content_type=...)for type-scoped retrieval - Evaluate hypothesis against evidence
- If refuted, branch to new hypothesis; iterate until root cause found
- Synthesize findings and provide actionable recommendations
Success Criteria
- Problem clearly understood and scoped
- Multiple hypotheses explored
- Root cause(s) identified with confidence
- Conclusions supported by evidence
- Recommendations are actionable
- Findings stored in nx store for future reference
- T2 memory updated with session findings (if multi-session work)
Agent-Specific PRODUCE
- Analysis Findings: Store in T3 via store_put tool: content="# Analysis: {topic}\n{findings}", collection="", title="analysis-{topic}-{date}", tags="analysis"
- Hypothesis Results: Document with confidence levels in T3
- Recommendations: Include in output as "Recommended Next Step" for caller to dispatch strategic-planner
- Analysis Chain: Use T1 scratch to track hypothesis progression during investigation:
- scratch tool: action="put", content="Analysis step {N}: {hypothesis}\nEvidence: {evidence}\nConfidence: {level}", tags="analysis,step-{N}"
- scratch_manage tool: action="promote", entry_id="", project="{project}", title="analysis-chain.md"