ME

measure-ai-proficiency

Assesses repository AI maturity and provides improvement recommendations.

Install

mkdir -p .claude/skills/measure-ai-proficiency && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/10717" && unzip -o skill.zip -d .claude/skills/measure-ai-proficiency && rm skill.zip

Installs to .claude/skills/measure-ai-proficiency

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Assess and improve repository AI coding proficiency and context engineering maturity. Use when users ask about: (1) AI readiness or AI maturity assessment, (2) context engineering quality or improvement, (3) CLAUDE.md, .cursorrules, or copilot-instructions files, (4) measuring how well a repo is prepared for AI coding assistants, (5) recommendations for improving AI collaboration, (6) what context files to add, or (7) comparing their repo to AI proficiency best practices.
476 chars✓ has a “when” triggerlonger than Claude Code's old 250-char listing cap (fine on current versions)
Intermediate

Key capabilities

  • Assess AI readiness
  • Scan GitHub repositories
  • Evaluate context engineering
  • Score AI instruction quality

How it works

It scans repositories for AI-specific context files and scores them based on quality indicators like sections, paths, and commands.

Inputs & outputs

You give it
Repository path or URL
You get back
AI proficiency report

When to use measure-ai-proficiency

  • Assessing AI readiness
  • Improving codebase context engineering
  • Comparing repo proficiency against best practices
  • Configuring ai assistance files

About this skill

Measure AI Proficiency

Assess repository context engineering maturity and provide actionable recommendations for improving AI collaboration.

This skill works with Claude Code, GitHub Copilot, Cursor, and OpenAI Codex (via the Agent Skills open standard).

Prerequisites

Install the measure-ai-proficiency tool:

pip install measure-ai-proficiency

Workflow

1. Choose Your Scanning Method

Option A: Scan GitHub Directly (No Cloning Required!)

Scan GitHub repositories without cloning them:

# Scan a single GitHub repository
measure-ai-proficiency --github-repo owner/repo

# Scan entire GitHub organization
measure-ai-proficiency --github-org your-org-name

# Limit number of repos scanned
measure-ai-proficiency --github-org your-org-name --limit 50

# Output to file
measure-ai-proficiency --github-org your-org --format json --output report.json

Requirements: GitHub CLI (gh) authenticated with gh auth login

How it works:

  • Uses GitHub API to fetch repository file tree
  • Downloads only AI proficiency files (CLAUDE.md, .cursorrules, skills, etc.)
  • Scans in temporary directories
  • Cleans up automatically
  • Much faster than cloning!

Option B: Discover Then Clone (Traditional Method)

For organizations wanting more control, first discover which repos have AI context artifacts:

# Find active repos (commits in last 90 days) with AI context files
./scripts/find-org-repos.sh your-org-name

# JSON output for automation
./scripts/find-org-repos.sh your-org-name --json > repos.json

What you get:

  • Total repos in organization
  • Active repos (with recent commits)
  • Repos with AI context artifacts (CLAUDE.md, AGENTS.md, .cursorrules, etc.)
  • Percentage baseline for your org
  • List of repos to scan

Requirements: GitHub CLI (gh) and jq

Then clone and scan the identified repos.

Option C: Scan Local Repositories

# Scan current directory
measure-ai-proficiency

# Scan specific repository
measure-ai-proficiency /path/to/repo

# Scan multiple repositories
measure-ai-proficiency /path/to/repo1 /path/to/repo2

# Scan all repos in directory (cloned org)
measure-ai-proficiency --org /path/to/org-repos

2. Run Assessment

Most common commands:

# Local scan
measure-ai-proficiency

# GitHub scan (recommended for orgs)
measure-ai-proficiency --github-org your-org-name

3. Interpret Results

Maturity Levels (aligned with Steve Yegge's 8-stage model):

LevelNameYegge StageIndicators
1Zero AIStage 1No AI-specific files (baseline)
2Basic InstructionsStage 2CLAUDE.md, .cursorrules exist
3Comprehensive ContextStage 3Architecture, conventions documented
4Skills & AutomationStage 4Hooks, commands, memory files, skills
5Multi-Agent ReadyStage 5Specialized agents, MCP configs
6Fleet InfrastructureStage 6Beads, shared context, workflows
7Agent FleetStage 7Governance, scheduling, 10+ agents
8Custom OrchestrationStage 8Gas Town, meta-automation, frontier

Score interpretation: File count matters more than percentage. The tool includes hundreds of patterns for comprehensive detection.

Understanding Quality Scoring

Each AI instruction file is scored 0-10 based on quality indicators:

SymbolIndicatorWhat It MeansPoints
§SectionsMarkdown headers (##)0-2
PathsFile/dir paths (/src/)0-2
$CommandsCLI in backticks0-2
!Constraintsnever/avoid/don't0-2
↻NCommitsGit history (N commits)0-2

Commit scoring: Files with 5+ commits get full points (indicates active maintenance). 3-4 commits = 1pt.

Cross-Reference Detection

The tool detects links between your AI instruction files:

  • Markdown links: [architecture](ARCHITECTURE.md)
  • File mentions: "CONVENTIONS.md" or `TESTING.md`
  • Relative paths: ./docs/API.md
  • Directory refs: skills/, .claude/commands/

Resolution tracking shows if referenced files exist (helps find broken links).

Bonus points: Up to +10 points from cross-references (5 pts) + quality (5 pts).

Content Validation

The tool validates that your documentation references real files:

  • Missing references: Files mentioned in docs that don't exist
  • Stale references: References to deleted files (detected via git history)
  • Template markers: Uncustomized content (TODO, PLACEHOLDER, etc.)

Validation penalty: Up to -4 points for validation issues.

Skip false positives: If your docs contain example file names (meta-tools, templates), configure skip_validation_patterns in .ai-proficiency.yaml:

skip_validation_patterns:
  - "COMPLIANCE.md"    # Example mentioned in docs
  - ".mcp.json"        # Best practice not yet adopted
  - "examples/*"       # All files under examples/

4. Provide Recommendations

After assessment, offer to create missing high-priority files:

Level 2 gaps: Create CLAUDE.md, .cursorrules, or .github/copilot-instructions.md

Level 3 gaps: Create ARCHITECTURE.md, CONVENTIONS.md, or TESTING.md

Level 4 gaps:

  • Create skills directories: .claude/skills/, .github/skills/, or .cursor/skills/
  • Add .claude/commands/ for slash commands
  • Create MEMORY.md or LEARNINGS.md
  • Consider SOUL.md or IDENTITY.md (ClawdBot pattern) for agent personality
  • Boris Cherny's key insight: Add verification loops (tests, linters) - this 2-3x quality

Level 5 gaps:

  • Create specialized agents in .github/agents/ or .claude/agents/
  • Set up .mcp.json at root (Boris Cherny pattern) for team-shared tool configs
  • Add agents/HANDOFFS.md for agent coordination

Level 6 gaps: Beads memory system, shared context, workflow pipelines

Level 7 gaps:

  • Add GOVERNANCE.md for agent permissions and policies
  • Set up convoys/ or molecules/ (Gas Town work decomposition)
  • Consider swarm/, wisps/, polecats/ for advanced agent patterns

Level 8 gaps:

  • Build custom orchestration in orchestration/
  • Consider .gastown/ for Kubernetes-like agent management
  • Add protocols: MAIL_PROTOCOL.md, FEDERATION.md, ESCALATION.md, watchdog/

5. Create Missing Files

When creating context files, include:

CLAUDE.md structure:

  • Project overview (what it does, who it's for)
  • Directory structure and key files
  • Important conventions and patterns
  • Common tasks and how to perform them
  • Things to avoid

ARCHITECTURE.md structure:

  • System overview and purpose
  • Key components and responsibilities
  • Data flow between components
  • Important design decisions

CONVENTIONS.md structure:

  • Naming conventions
  • Code organization patterns
  • Error handling approach
  • Testing conventions

Quick Reference

Common triggers for this skill:

  • "Assess my AI proficiency"
  • "How mature is my context engineering?"
  • "What context files should I add?"
  • "Help me improve for AI coding"
  • "Check my CLAUDE.md setup"
  • "Am I ready for AI-assisted development?"

Customization

Use the customize-measurement skill for guided configuration:

"Customize measurement for my repo"

Or see the manual guide: https://github.com/pskoett/measuring-ai-proficiency/blob/main/docs/CUSTOMIZATION.md

When not to use it

  • Non-code repositories
  • Repositories without AI assistant usage

Prerequisites

GitHub CLI (gh)pip install measure-ai-proficiency

Limitations

  • Requires GitHub authentication for remote scans

How it compares

It provides a quantitative maturity score based on a specific 8-stage model, rather than qualitative feedback alone.

Compared to similar skills

measure-ai-proficiency side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
measure-ai-proficiency (this skill)04moReviewIntermediate
command-development168moReviewIntermediate
skill-forge119moReviewIntermediate
codex-skill125moReviewAdvanced

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

command-development

anthropics

This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.

16133

skill-forge

WilliamSaysX

Automated skill creation workshop with intelligent source detection, smart path management, and end-to-end workflow automation. This skill should be used when users want to create a new skill or convert external resources (GitHub repositories, online documentation, or local directories) into a skill. Automatically fetches, organizes, and packages skills with proactive cleanup management.

11115

codex-skill

feiskyer

Use when user asks to leverage codex, gpt-5, or gpt-5.1 to implement something (usually implement a plan or feature designed by Claude). Provides non-interactive automation mode for hands-off task execution without approval prompts.

12110

agent-factory

alirezarezvani

Claude Code agent generation system that creates custom agents and sub-agents with enhanced YAML frontmatter, tool access patterns, and MCP integration support following proven production patterns

8109

subagent-driven-development

davila7

Use when executing implementation plans with independent tasks in the current session

1493

peekaboo

openclaw

Capture and automate macOS UI with the Peekaboo CLI.

1486

Search skills

Search the agent skills registry