
Repo Intel
- 41 installs
- 931 repo stars
- Updated July 26, 2026
- avifenesh/agentsys
repo-intel is a skill that produces unified static analysis (git history, AST symbols, project metadata) as repo-map JSON for coding agents.
About
repo-intel runs unified static analysis over a repository, combining git-history intelligence, AST symbol mapping, and project metadata via an agent-analyzer. A developer runs it to initialize or incrementally update a repo map, query hotspots and ownership, and check for stale data. It writes repo-intel and repo-map JSON into the agent platform's state directory for other skills to consume.
- Unified static analysis: git-history intelligence, AST symbol mapping, and project metadata
- Stores repo-intel and repo-map JSON per platform (.claude, .opencode, .codex)
- Supports init, incremental update, hotspot queries, and staleness status
Repo Intel by the numbers
- 41 all-time installs (skills.sh)
- Ranked #863 of 1,879 Documentation skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
repo-intel capabilities & compatibility
- Capabilities
- repo map · static analysis · git hotspots · ast symbol map
- Use cases
- documentation · refactoring · code review
- Pricing
- Free
What repo-intel says it does
Unified static analysis - git history intelligence, AST symbol mapping, and project metadata via agent-analyzer.
npx skills add https://github.com/avifenesh/agentsys --skill repo-intelAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 41 |
|---|---|
| repo stars | ★ 931 |
| Last updated | July 26, 2026 |
| Repository | avifenesh/agentsys ↗ |
What it does
Build and query a static-analysis repo map (git hotspots, symbols, ownership) for coding agents.
Who is it for?
Generating a static-analysis repo map that other skills (sync-docs, deslop) can consume.
Skip if: Applying code changes or installing dependencies without consent.
When should I use this skill?
When asked to run repo intel, generate a repo map, analyze a repo, query hotspots, or check ownership/bus factor.
What you get
A validated repo-map/repo-intel dataset queryable for hotspots, ownership, and staleness.
- repo-intel.json and repo-map.json datasets
By the numbers
- 5 primary responsibilities
- 3 platform state dirs (.claude/.opencode/.codex)
Files
Repo Intel Skill
Unified static analysis - git history intelligence, AST symbol mapping, and project metadata via agent-analyzer.
Parse Arguments
const args = '$ARGUMENTS'.split(' ').filter(Boolean);
const action = args.find(a => !a.startsWith('--')) || 'status';
const force = args.includes('--force');Primary Responsibilities
1. Initialize on demand (/repo-intel init) 2. Update incrementally (/repo-intel update) 3. Query git history data (/repo-intel query hotspots) 4. Check status and staleness (/repo-intel status) 5. Validate output with the map-validator agent
Core Data Contract
Repo intel data is stored in the platform state directory:
- Claude Code:
.claude/repo-intel.json,.claude/repo-map.json - OpenCode:
.opencode/repo-intel.json,.opencode/repo-map.json - Codex CLI:
.codex/repo-intel.json,.codex/repo-map.json
Behavior Rules
- Never install dependencies without explicit user consent
- Always validate output with
map-validatorafter init/update - Prefer incremental update unless data is stale or history rewritten
When to Suggest Repo Intel
If a user asks for drift detection, documentation alignment, or repo analysis and repo-intel data is missing:
Repo intel data not found. For better analysis, run:
/repo-intel initStaleness Signals
- Data commit not found (rebased)
- Branch changed
- Git hooks marked stale
- Commits behind HEAD
Output Expectations
Keep outputs concise:
- init/update: file count, symbol count, commit, warnings
- query: formatted query results
- status: staleness, commits behind, last updated