Agent skill

System Diagnostician

Performs Codex-assisted project health diagnostics, identifies capability gaps, and produces prioritized improvement plans.

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill system-diagnostician --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 12 KB
Bundled scripts: none
Version: 1.0.0
Path: skills/analysis/system-diagnostician/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

# System Diagnostician **Analyze project health and recommend capabilities using Codex-powered system understanding** ## Purpose Performs comprehensive project health analysis to diagnose issues, identify missing capabilities, and recommend improvements. Uses Codex to understand project structure, detect anti-patterns, analyze dependencies, and suggest optimal capability additions based on project goals. ## When to Use - New project onboarding: "What does this project need?" - Health checks: "Is this project following best practices?" - Gap analysis: "What's missing to achieve X?" - Performance audits: "Why is this slow?" - Security audits: "What security risks exist?" - Dependency audits: "Are dependencies up to date and safe?" ## Key Capabilities - **Project Structure Analysis**: Understands project type, framework, architecture - **Capability Gap Detection**: Identifies missing or incomplete capabilities - **Health Scoring**: Quantifies project health across multiple dimensions - **Recommendation Engine**: Suggests capabilities with impact/effort estimates - **Dependency Analysis**: Checks for outdated, vulnerable, or unnecessary dependencies - **Anti-Pattern Detection**: Identi

What's inside
Steps it walks through
  1. Purpose
  2. When to Use
  3. Key Capabilities
  4. Inputs
  5. Process
  6. Step 1: Project Discovery
  7. Step 2: Health Assessment with Codex
  8. Step 3: Capability Gap Analysis
  9. Step 4: Generate Recommendations
  10. Step 5: Generate Action Plan
  11. Scoring System
  12. Health Dimensions
  13. Recommendation Priority
  14. Example Output
Ships with 1 file
  • metadata.json
Commands it runs
Analyze project structure
cd "$PROJECT_PATH"
echo "Discovering project structure..."
Detect project type
if [ -f "package.json" ]; then
if grep -q "\"next\"" package.json; then
elif grep -q "\"react\"" package.json; then
elif grep -q "\"express\"" package.json; then
fi
elif [ -f "requirements.txt" ] || [ -f "pyproject.toml" ]; then
More from claude-skill-registry
All skills →
About this skill
What does the System Diagnostician skill do?

Performs Codex-assisted project health diagnostics, identifies capability gaps, and produces prioritized improvement plans.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill system-diagnostician --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