Claude-skill-registry Deep Analysis
Advanced problem-solving skill using sequential thinking. Use for complex architectural decisions, debugging hard problems, or planning.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/deep-analysis-verridian-ai-life-os-pulse-banner" ~/.claude/skills/majiayu000-claude-skill-registry-deep-analysis-e74fd2 && rm -rf "$T"
manifest:
skills/data/deep-analysis-verridian-ai-life-os-pulse-banner/SKILL.mdsource content
Deep Analysis Skill
This skill grants access to the
sequentialthinking tool. Use this when you need to "break down" a problem before acting.
When to use
- Debugging a complex race condition or "impossible" bug.
- Planning a large-scale refactor.
- Analyzing security implications of a change.
- When the user asks "What do you think?" or "Analyze this".
Available Tools (Context Loaded)
: A tool that allows you to have an internal monologue/thought process. You can update your hypothesis, revise thoughts, and branch your thinking.mcp_sequential-thinking_sequentialthinking
Best Practices
- Don't rush: Use multiple thought steps (
> 5) for hard problems.totalThoughts - Revise: If a thought turns out to be wrong, use the
flag to correct yourself.isRevision - Hypothesis: Always state a working hypothesis early in the thought chain.
Example Workflow
- User: "Why is the auth service crashing?"
- Agent: Calls
withsequentialthinking
.thought="Initial hypothesis: DB connection pool exhaustion..." - Agent: Calls
withsequentialthinking
andthought="Checking logs..."
.needsMoreThoughts=true - ... (After 5-10 thoughts) ...
- Agent: "The issue is a deadlock in the transaction manager..."