Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By agent-sh
Unified static analysis via agent-analyzer - git history, AST symbols, project metadata, and doc-code sync
npx claudepluginhub agent-sh/agentsys --plugin repo-intelValidate repo-intel output for obvious errors and missing data. Use this agent after /repo-intel init or update.
Produce a 3-depth narrative description of a repository (1-line, 1-paragraph, 1-page) for AI agents and humans landing in the repo for the first time. Use after /repo-intel init or update to populate the summary field of the artifact.
Generate concrete one-sentence descriptors for source files so the repo-intel find scorer can match user concept queries (e.g. "auth flow", "queue worker") to the right files via substring search. Use after /repo-intel init or update to enrich the artifact with semantic-search signals.
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Analyze git history to understand a codebase before reading any code. Reveals hotspots, risk areas, team structure, and development momentum.
Codebase vital signs — hotspot detection, ROI-ranked diagnosis, co-change coupling, knowledge risk, and AI provenance tracking
Codebase intelligence for Claude Code. Indexes your codebase into five layers (Graph, Git, Docs, Decisions, Code Health) and exposes them through nine task-shaped MCP tools — so Claude understands architecture, ownership, hotspots, why code is built the way it is, and where the defect risk lives.
AI-powered codebase understanding assistant. Learn design patterns, analyze impact, trace code flows, and understand any codebase through information theory principles. Includes 6 Agent Skills for automatic analysis triggering.
Personal Claude Code + Codex dev stack: security hooks, AI-first code conventions, /security-review, /repo-map, /stack-check, portable statusline. Designed to complement other skills-based plugins, not replace them.
Analyze local repos for code health, complexity, test coverage gaps - multi-dimensional health analysis combining complexity + churn + coverage
Deep repository analysis to realign project plans with actual code reality - discovers drift, gaps, and produces prioritized reconstruction plans
Master workflow orchestrator with autonomous task-to-production automation, quality gates, and multi-agent review
Plugin structure and tool use analyzer - validates plugin.json, MCP tools, and security patterns
AI slop cleanup with minimal diffs and behavior preservation
Multi-agent iterative code review until zero issues remain
Unified static analysis for AI agents - git history, AST symbols, project metadata, doc-code sync, and (optionally) LLM-augmented file descriptors plus a 3-depth narrative summary, via a cached, incrementally-updatable Rust binary.
Part of the agentsys ecosystem.
Scan a repo once, cache the result, then query it repeatedly. The heavy lifting runs in the agent-analyzer Rust binary - this plugin provides the JavaScript interface, the skill layer that other plugins consume, and the orchestration that spawns Haiku subagents to enrich the artifact with semantic signals.
find <concept> and summary)agentsys install repo-intel
/repo-intel init # Scan repo (first time, deterministic)
/repo-intel enrich # OPTIONAL: spawn Haiku agents to add descriptors + summary
/repo-intel query hotspots # Most active files, recency-weighted
/repo-intel query find "auth flow" # Concept search across files (uses descriptors when present)
/repo-intel query summary --depth=1 # One-sentence repo description (needs enrich)
/repo-intel query ownership src/auth/ # Who owns a path
/repo-intel query bus-factor # Knowledge distribution risk
/repo-intel query painspots # Hot x buggy x complex
/repo-intel query entry-points # Where execution starts (binaries, mains, scripts)
/repo-intel query stale-docs # Docs with stale symbol references
After init, the artifact is cached as repo-intel.json in the platform state dir (.claude/, .opencode/, or .codex/). Subsequent queries are instant. Run /repo-intel update to add new commits incrementally.
| Action | What it does |
|---|---|
init | Full scan - git history, AST symbols, project metadata, doc-code sync |
update | Incremental update (only new commits since last scan) |
enrich | Spawn the repo-intel-summarizer and repo-intel-weighter Haiku subagents to populate summary (3 depths) and fileDescriptors (top-500 most-active files). Also runs the embedder when opted in (see below). Optional - all deterministic queries work without it. |
status | Check cache staleness - commits behind, last analyzed date |
query <type> | Run a specific analysis query |
embed status | Show embedder install state, variant + detail, sidecar info |
embed update | Delta re-embed of changed files only (CI-friendly) |
embed reset | Clear cached embedder preference; next enrich re-prompts |
| Query | Description |
|---|---|
hotspots | Most-changed files, recency-weighted |
coldspots | Least-changed files (unmaintained) |
file-history <file> | Change timeline for a specific file |
| Query | Description |
|---|---|
bugspots | Files with highest bug-fix density (fix commits / total) |
test-gaps | Hot source files without co-changing test files |
diff-risk <files> | Risk score for recently changed files |
painspots | Hotspot x (1 + bug rate) x (1 + complexity/30) - requires AST data |
| Query | Description |
|---|---|
ownership <path> | Who owns a path, with staleness flags |
contributors | All contributors with commit counts and AI ratio |
bus-factor | Knowledge concentration risk with at-risk areas |
| Query | Description |
|---|---|
coupling <file> | Files that always change together |
| Query | Description |
|---|---|
norms | Detected commit conventions (conventional, freeform, mixed) |
conventions | Commit style prefixes and scopes |
| Query | Description |
|---|---|
areas | Directory-level health (healthy / needs-attention / at-risk) |
health | Repo-wide health overview |
release-info | Release cadence and tag history |
/repo-intel enrich first)| Query | Description |
|---|---|
find <concept> | Concept-to-file search. With descriptors, catches synonyms (worker ↔ executor); without, falls back to deterministic substring scoring across paths/symbols/imports/doc-headers. |
summary [--depth=1|3|10] | Cached 3-depth narrative description: one sentence / one paragraph / one-page technical overview. |