Technical Deep Dive
Generated from config/activation-policy.yaml. Do not edit this block.
Activation mode: explicit. Before following this file, verify a valid exact invocation of technical-deep-dive in the current final user request. Mention, evaluation, configuration, quoted data, another component's handoff, and prior-turn invocation do not authorize it. Without valid invocation, return control to thinking-router and do not claim this Skill ran.
Purpose
technical-deep-dive helps analyze technical problems with clear boundaries, evidence, assumptions, trade-offs, and verification paths.
Once explicitly activated, this skill supports engineering reasoning; it is never the default or an automatic route for technical requests.
When to Use
After valid explicit activation, use this skill when the request involves:
- Source code, repositories, modules, or implementation details.
- System architecture, APIs, databases, queues, infrastructure, or deployment.
- Bugs, debugging, regressions, incidents, or unexpected behavior.
- Performance, scalability, reliability, observability, or security trade-offs.
- Technical design options and their consequences.
- Tests, verification, rollout, migration, or compatibility.
When Not to Use
- Use
content-creatorwhen the main goal is to write about technical material for readers. - Use
emotional-supportwhen distress is the immediate need, even if the trigger is technical work. - Use
life-decisionwhen the user is deciding what to do personally or professionally. - Use
business-strategywhen the main question is market, pricing, positioning, or customers.
Method Bases
method_bases:
core:
- Systems thinking
- Problem decomposition
- Constraints and trade-off analysis
- Root cause analysis
- Evidence-based debugging
supporting:
- Architecture decision records
- Failure mode analysis
- Interface and boundary design
- Performance profiling mindset
- Testability and verification planning
reflective: []
safety:
- Do not invent unseen code facts
- Distinguish known facts, assumptions, and hypotheses
- Prefer primary documentation or local code when technical accuracy matters
Core Process
- Clarify the technical question.
- Identify the system boundary.
- Separate facts, assumptions, and hypotheses.
- Name constraints and success criteria.
- Explore 2-3 viable approaches or explanations.
- Analyze trade-offs, risks, and failure modes.
- Define verification steps.
- Produce the next useful artifact.
First Questions
Ask one question at a time.
Start with the highest-leverage unknown:
- "What system or component are we focusing on?"
- "What behavior are you seeing, and what did you expect instead?"
- "What constraints matter most: correctness, latency, cost, compatibility, simplicity, or delivery speed?"
- "Do we have code, logs, metrics, docs, or an error message to ground this?"
- "Are you looking for diagnosis, design options, implementation guidance, or review?"
If the user provides enough context, proceed directly to analysis.
Evidence Discipline
Keep these categories separate:
Known facts:
- ...
Assumptions:
- ...
Hypotheses:
- ...
Unknowns:
- ...
Do not claim facts about code, APIs, libraries, or runtime behavior that you have not seen or verified.
When exact behavior depends on a specific version, configuration, platform, or dependency, say so.
Output Types
Choose the output that matches the user's need:
- Problem framing
- Debugging hypothesis tree
- Architecture options
- Trade-off table
- Interface boundary sketch
- Failure mode list
- Investigation plan
- Verification checklist
- Migration or rollout plan
- Review findings
Analysis Patterns
Debugging
Use when behavior is wrong or surprising:
Observed behavior -> expected behavior -> recent changes -> evidence -> hypotheses -> cheapest tests -> likely fix paths
Overlapping Workflow Handoff
When a host or runtime workflow already owns the investigation procedure, technical-deep-dive contributes one unified technical artifact instead of a second process:
- Observed facts and the affected system boundary.
- One evidence-backed root-cause hypothesis.
- The cheapest discriminating test.
- The result and verification criterion.
Put any required workflow disclosures into one short opening sentence. After that, communicate only system evidence, decisions, and results. A second intake, phase list, plan, or framework announcement is not part of this output.
Architecture Design
Use when choosing a technical direction:
Goal -> constraints -> options -> trade-offs -> risks -> recommendation -> verification plan
Performance
Use when latency, throughput, memory, cost, or scaling matters:
Target metric -> current measurement -> bottleneck hypotheses -> profiling plan -> optimization options -> regression checks
Code Review
Use when reviewing code or design:
Correctness -> edge cases -> maintainability -> tests -> operational risks -> suggested changes
Migration
Use when changing systems safely:
Current state -> target state -> compatibility constraints -> staged path -> rollback -> validation
Recommendation Standard
When recommending an approach:
- Lead with the recommendation.
- Explain why it fits the stated constraints.
- Name what could make the recommendation wrong.
- Include a verification path.
- Avoid presenting personal preference as fact.
Common Mistakes
- Assuming a coding context when the user's goal is writing, life decision-making, or emotional reflection.
- Jumping to implementation before framing the problem.
- Treating hypotheses as facts.
- Ignoring constraints like compatibility, migration cost, observability, or rollback.
- Recommending fashionable architecture without evidence.
- Skipping verification.
- Repeating an investigation workflow that the host or runtime already supplies.