agent-check
Use when mapping audit targets to appropriate config or domain agents. Analyzes file types, patterns, and content to determine which agents should audit each file/target. Returns agents[] needed for audit workflow.
npx skills add majiayu000/claude-skill-registry --skill agent-check --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.
# Agent Check Skill **Purpose:** Analyze audit targets and map them to the appropriate domain or config agents needed. **Input:** `targets` (string[]) - File paths or target repositories from scope-check **Output:** `agents: string[]` - List of agent names needed (e.g., `["eslint-agent", "typescript-agent", "react-component-agent"]`) --- ## How to Execute This is a FILE CLASSIFICATION task - analyze target files and determine which agents are needed: 1. Scan each target file/directory for file patterns and content indicators 2. Match patterns to agent mapping tables below 3. Collect all matching agents into array 4. Remove duplicates 5. Return ONLY: `agents: [...]` 6. Complete in under 300 tokens **Expected output format:** ``` agents: ["eslint-agent", "prettier-agent", "typescript-agent"] ``` --- ## File Pattern Matching ### Step 1: Detect File Types Scan target files for these patterns and map to agents: | File Pattern | Agent | Category | | ------------ | ----- | -------- | | `eslint.config.js`, `.eslintrc*`, `eslint.json` | `eslint-agent` | Config | | `prettier.config.*`, `.prettierrc*`, `.prettierignore` | `prettier-agent` | Config | | `tsconfig.json`, `tsconfig.*.json` | `typ
- How to Execute
- File Pattern Matching
- Step 1: Detect File Types
- Step 2: Detect Code Content
- Step 3: Detect Domain Context
- Agent Mapping Reference
- Config Agents (28 total)
- Domain Agents (12 total)
- Selection Algorithm
- Examples
- Example 1: ESLint Config File
- Example 2: React Component Files
- Example 3: Full Package Audit
- Example 4: Prisma Database Setup
What does the agent-check skill do?
Use when mapping audit targets to appropriate config or domain agents. Analyzes file types, patterns, and content to determine which agents should audit each file/target. Returns agents[] needed for audit workflow.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill agent-check --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.
