Claude-skill-registry deep-analyze
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-analyze" ~/.claude/skills/majiayu000-claude-skill-registry-deep-analyze && rm -rf "$T"
manifest:
skills/data/deep-analyze/SKILL.mdsource content
Deep Analyze
Extract full content and learnings from your documentation.
What It Does
Runs
kodo analyze --deep --auto which:
- Standard Analysis - All normal analyzers (tech-stack, architecture, etc.)
- Content Extraction - Parses all
files in.mddocs/ - Learning Extraction - Finds patterns:
- Rules: "always/never/must" statements
- Decisions: "we chose X because..."
- Tech Stack: "uses X for..."
- Workflows: step sequences
- Domain: entity definitions
- Conventions: naming patterns
Output
- Context entries with YAML frontmatter.kodo/context-tree/
- Learnings grouped by category:.kodo/learnings/rules.mddecisions.mdtech-stack.mdworkflows.mddomain.mdconventions.md
Confidence Levels
- HIGH - Your design docs (
)docs/plans/ - MEDIUM - Inherited/pre-existing documentation
Usage
Just invoke this skill - it runs automatically:
# This skill runs: kodo analyze --deep --auto
When to Use
- Starting a new project with existing docs
- After writing design documents
- When onboarding to capture institutional knowledge
- Before major refactoring to preserve context
Single File Extraction
For extracting from a single file:
kodo extract docs/plans/your-design.md # or kodo x docs/plans/your-design.md