Back to Skills

context-audit

majiayu000
Updated Today
1 views
58
9
58
View on GitHub
Otherai

About

The context-audit skill performs comprehensive quality checks on CLAUDE.md context files, validating structure, efficiency, and standards compliance. It analyzes token optimization, verifies design doc references, and generates detailed audit reports with prioritized recommendations. Developers should use it when preparing releases, ensuring context efficiency, or performing thorough quality validations.

Quick Install

Claude Code

Recommended
Plugin CommandRecommended
/plugin add https://github.com/majiayu000/claude-skill-registry
Git CloneAlternative
git clone https://github.com/majiayu000/claude-skill-registry.git ~/.claude/skills/context-audit

Copy and paste this command in Claude Code to install this skill

Documentation

LLM Context Comprehensive Audit

Performs deep quality audits of CLAUDE.md context files, checking structure, content quality, efficiency, design doc references, and compliance with standards.

Overview

This skill provides comprehensive quality auditing for LLM context files by running all validation checks, analyzing content efficiency, verifying design doc pointers, checking line limits, and generating detailed audit reports with prioritized recommendations.

Quick Start

Audit all context files:

/context-audit

Audit specific file:

/context-audit CLAUDE.md

Audit package context:

/context-audit pkgs/effect-type-registry/CLAUDE.md

Quick audit (non-strict):

/context-audit --strict=false

Parameters

Optional

  • target: Path to CLAUDE.md file or "all" (default: all)
  • strict: Enable strict mode with additional checks (default: true)
  • check-refs: Validate design doc references exist (default: true)
  • output: Output file path for audit report

Workflow

High-level audit process:

  1. Parse parameters to determine audit scope and strictness
  2. Load design.config.json to get quality standards (line limits, etc.)
  3. Discover CLAUDE.md files using Glob (root + package-level)
  4. Run validation checks (structure, formatting, markdown quality)
  5. Analyze content quality (efficiency, organization, token usage)
  6. Check design doc pointers (existence, validity, coverage)
  7. Verify line limits (root: 500, child: 300 from config)
  8. Calculate health scores (file, package, overall)
  9. Identify issues by severity (critical, high, medium, low)
  10. Generate recommendations prioritized by impact
  11. Output audit report with actionable improvements

Instructions

IMPORTANT: Follow the detailed step-by-step instructions in instructions.md to perform the audit correctly.

For usage examples and common scenarios, see examples.md.

Output Format

The audit generates a structured report with:

Summary Section

  • Total files audited
  • Overall health score (0-100)
  • Critical/high/medium/low issue counts
  • Pass/fail status

File-Level Details

For each CLAUDE.md file:

  • File path and role (root vs child)
  • Line count vs limit
  • Structure validation results
  • Content quality score
  • Design doc pointer status
  • Specific issues found

Recommendations

Prioritized list of improvements:

  1. Critical issues (must fix)
  2. High priority (should fix)
  3. Medium priority (nice to have)
  4. Low priority (optional)

Quality Metrics

  • Average line count
  • Design doc pointer coverage
  • Content efficiency score
  • Token optimization score

Success Criteria

The audit passes when:

  • All files under line limits (root: 500, child: 300)
  • No critical or high severity issues
  • All design doc pointers valid and exist
  • Content is lean imperative instructions (not implementation details)
  • Proper separation between root and child contexts

Related Skills

  • /context-validate - Basic structure and formatting validation
  • /context-review - Quality and efficiency review
  • /context-update - Update context files based on audit findings
  • /context-split - Split large files that exceed limits
  • /design-audit - Similar comprehensive audit for design docs

GitHub Repository

majiayu000/claude-skill-registry
Path: skills/context-audit

Related Skills

sglang

Meta

SGLang is a high-performance LLM serving framework that specializes in fast, structured generation for JSON, regex, and agentic workflows using its RadixAttention prefix caching. It delivers significantly faster inference, especially for tasks with repeated prefixes, making it ideal for complex, structured outputs and multi-turn conversations. Choose SGLang over alternatives like vLLM when you need constrained decoding or are building applications with extensive prefix sharing.

View skill

evaluating-llms-harness

Testing

This Claude Skill runs the lm-evaluation-harness to benchmark LLMs across 60+ standardized academic tasks like MMLU and GSM8K. It's designed for developers to compare model quality, track training progress, or report academic results. The tool supports various backends including HuggingFace and vLLM models.

View skill

langchain

Meta

LangChain is a framework for building LLM applications using agents, chains, and RAG pipelines. It supports multiple LLM providers, offers 500+ integrations, and includes features like tool calling and memory management. Use it for rapid prototyping and deploying production systems like chatbots, autonomous agents, and question-answering services.

View skill

llamaguard

Other

LlamaGuard is Meta's 7-8B parameter model for moderating LLM inputs and outputs across six safety categories like violence and hate speech. It offers 94-95% accuracy and can be deployed using vLLM, Hugging Face, or Amazon SageMaker. Use this skill to easily integrate content filtering and safety guardrails into your AI applications.

View skill