Agent skill · AI & Agents

codanna-codebase-intelligence

Use codanna MCP tools for semantic code search, call graphs, and impact analysis before grep/find.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill codanna-codebase-intelligence --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/analysis/codanna-codebase-intelligence/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Codanna Codebase Intelligence Codanna indexes your codebase and provides semantic search, call graphs, and dependency analysis via MCP tools. **Use codanna before grep/find** - it understands code structure, not just text patterns. ## When to Use - **Finding code**: "Where do we handle authentication?" → `semantic_search_docs` - **Understanding dependencies**: "What calls this function?" → `find_callers` - **Impact analysis**: "What breaks if I change this?" → `analyze_impact` - **Exploring symbols**: "Show me the Parser struct" → `find_symbol` ## Core Tools ### Discovery ``` # Natural language search - finds code by intent, not keywords semantic_search_docs query:"error handling patterns" limit:5 # Search symbols by name/pattern search_symbols query:"parse" kind:"function" # Get full details on a specific symbol find_symbol name:"process_file" ``` ### Relationships ``` # Who calls this function? (upstream) find_callers symbol:"validate_input" # What does this function call? (downstream) get_calls symbol:"process_request" # Full dependency graph - what breaks if I change this? analyze_impact symbol:"DatabaseConnection" depth:3 ``` ### Documentation (RAG) ``` # Search indexed mark

What's inside
Steps it walks through
  1. When to Use
  2. Core Tools
  3. Discovery
  4. Relationships
  5. Documentation (RAG)
  6. Tool Selection Guide
  7. Workflow Patterns
  8. Before Refactoring
  9. Understanding Unfamiliar Code
  10. Finding Where to Add Code
  11. Why Codanna Over Grep
  12. Integration with Agent-Loops
  13. Pre-review impact analysis
  14. Multi-specialist review support
Ships with 1 file
  • metadata.json
Commands it runs
Gather impact data for changed symbols
codanna mcp find_callers process_request --watch
codanna mcp analyze_impact DatabaseConnection --watch --json
More from claude-skill-registry
All skills →
About this skill
What does the codanna-codebase-intelligence skill do?

Use codanna MCP tools for semantic code search, call graphs, and impact analysis before grep/find.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill codanna-codebase-intelligence --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going