Agent skill · Security

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.

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

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

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Path: skills/agent/agent-check/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

# 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

What's inside
Steps it walks through
  1. How to Execute
  2. File Pattern Matching
  3. Step 1: Detect File Types
  4. Step 2: Detect Code Content
  5. Step 3: Detect Domain Context
  6. Agent Mapping Reference
  7. Config Agents (28 total)
  8. Domain Agents (12 total)
  9. Selection Algorithm
  10. Examples
  11. Example 1: ESLint Config File
  12. Example 2: React Component Files
  13. Example 3: Full Package Audit
  14. Example 4: Prisma Database Setup
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going