npx skills add majiayu000/claude-skill-registry --skill ado-repo-analysis --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Repo Analysis Skill Analyze local repositories to find the best match for a work item based on context. ## Process 1. **List sibling repos**: Find all directories with `.git` in REPOS_BASE_DIR 2. **For each repo**: - Pull latest from origin master/main - Read README.md and CLAUDE.md if they exist - Extract keywords and project descriptions 3. **Score against context**: Compare repo descriptions against: - Work item title - Work item description/body - PR URL hints (if any) - Project name from ADO 4. **Output ranked list**: Show repos sorted by confidence score ## Usage ``` /repo-analysis <work-item-context> ``` Example: ``` /repo-analysis "Fix video player buffering issue - relates to player SDK" ``` ## Output Format ``` Repo Analysis Results: 1. video-player-sdk (95% match) - Keywords: video, player, SDK, streaming - Reason: Title mentions "player SDK" 2. media-services (60% match) - Keywords: media, transcoding, delivery - Reason: Related to video infrastructure 3. web-frontend (30% match) - Keywords: React, UI, components - Reason: May embed player ``` ## Implementation Steps When invoked: 1. Read REPOS_BASE_DIR from environment or use default `../` 2. List all directories, ch
- Process
- Usage
- Output Format
- Implementation Steps
What does the ado-repo-analysis skill do?
Analyze sibling repos to find best match for a work item
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill ado-repo-analysis --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.
