Audit Standards
Audits the current project against the personal development standards loaded from ~/.claude/CLAUDE.md.
Generates actionable GitHub issues and a prioritised fix plan.
The development standards from the user's global ~/.claude/CLAUDE.md are already loaded into context.
The key principles to audit against are:
- Codify, Don't Document — manual steps should be executable scripts
- Bash Script UX with pfb — terminal output uses pfb with correct visual hierarchy
- Markdown Standards — all markdown passes markdownlint with zero warnings
- Professional Documentation Tone — formal docs are objective, not personal
- Version Control Everything — correct files committed, secrets excluded
- Fail Fast, Pivot Early — (process principle, skip for static audit)
- Behavioral Integrity — (process principle, skip for static audit)
Step 0: Pre-flight check
gh auth status 2>&1 || { echo "ERROR: gh is not authenticated. Run: gh auth login"; exit 1; }
Step 1: Inventory the project
find . -not -path './.git/*' -type f | sort
Also read:
README.md— documentation tone and completenessCLAUDE.md— project AI context file exists and is current- Any
.env,.env.template,.gitignore— secrets handling - Any
*.shfiles — bash scripting standards - Any
*.mdfiles — markdown quality
Step 2: Audit each principle
Principle 1 — Codify, Don't Document
- Does the README describe manual steps that should instead be scripts?
- Do bash scripts use
#!/usr/bin/env bashshebang? - Do scripts have Google-Style header docs (name, description, author, version, usage, dependencies)?
- Do functions have
@param,@return,@exampledoc comments? - Is author attribution derived from
git config user.name/git config user.email? - Are scripts idempotent (safe to run multiple times)?
Run: grep -rn "#!/" --include="*.sh" . to find all scripts.
Principle 2 — Bash Script UX with pfb
For each .sh file:
- Is pfb used for terminal output (not plain
echofor status messages)? - Are emojis passed as a parameter, not embedded in the message string?
- Are log levels (
pfb info/success/warn/error) used for single-line status only? - Is visual hierarchy consistent (heading → subheading, not mixed)?
Run: grep -rn "pfb\|echo" --include="*.sh" . and compare usage patterns.
Principle 3 — Markdown Standards
Check for a .markdownlint.json at the repo root:
cat .markdownlint.json 2>/dev/null || echo "MISSING"
Run markdownlint if available:
markdownlint '**/*.md' 2>&1 | head -50
Check:
- Blank lines around headings, lists, code blocks, tables
- Code blocks specify a language (no bare triple-backtick fences)
- Prose lines ≤ 120 characters
- URLs wrapped in
<>or link syntax - Consistent list numbering (1. 2. 3.)
- YAML frontmatter description fields are single unbroken lines
Principle 4 — Professional Documentation Tone
Read README.md and any formal docs. Flag:
- Second-person language ("you", "your") in formal technical docs (README intro, architecture sections)
- Conversational phrasing in formal sections
- User-specific references that should be generic
Note: READMEs and tutorials may use "you" in instructional sections — this is acceptable.
Principle 5 — Version Control Everything
cat .gitignore 2>/dev/null || echo "MISSING .gitignore"
ls .env* 2>/dev/null
Check:
.gitignoreexists and excludes.env, secrets, build artifacts, IDE files.env.templateexists if the project requires environment configuration- No
.envwith real values present - AI context files (
CLAUDE*.md,AGENTS*.md,GEMINI*.md) are gitignored and symlinked
AI context file check
Find all AI context files in the project (excluding .git):
find . -not -path './.git/*' \( -name 'CLAUDE*.md' -o -name 'AGENTS*.md' -o -name 'GEMINI*.md' \) | sort
For each file found, verify two things:
Gitignored — the pattern appears in
.gitignore:git check-ignore -v <file>Symlink — the file is a symbolic link (pointing to the private
ai-contextrepo), not a regular tracked file:[ -L "<file>" ] && echo "SYMLINK" || echo "REGULAR FILE — should be a symlink"
A finding is raised for any AI context file that is not gitignored OR is not a symlink. The expected
pattern is: file is listed in .gitignore, stored in the private ai-context repo, and symlinked back into
the project directory so local AI tooling finds it normally (see extract-ai-context.sh in that repo).
Step 3: Generate GitHub issues
First, fetch all open issues to avoid creating duplicates:
gh issue list --state open --limit 100 --json title --jq '.[].title'
For each finding, check whether an open issue with a matching title already exists. If one does, skip it. Only create an issue if no existing open issue covers the same finding.
For each distinct finding with no existing open issue, create a GitHub issue:
gh issue create \
--title "<principle>: <brief description of violation>" \
--body "$(cat <<'EOF'
## Principle
<which standard this relates to>
## Finding
<description of the non-compliance>
## Expected
<what the standard requires>
## Current state
<what was found in the project>
## Suggested fix
<concrete change to make>
EOF
)" \
--label "enhancement"
Use --label "bug" for missing required files or broken standards; --label "enhancement" for
improvements and style compliance.
Note each issue number as you go.
Step 4: Write prioritised fix plan to CLAUDE.md
Append or update a section in the project CLAUDE.md under the heading
## Standards Audit — <today's date>:
## Standards Audit — YYYY-MM-DD
Issues generated from `/audit-standards` review against ~/.claude/CLAUDE.md.
Suggested fix order:
### Group 1 — Correctness (fix first)
- #N: <title>
- #N: <title>
### Group 2 — Standards Compliance
- #N: <title>
- #N: <title>
### Group 3 — Quality Improvements
- #N: <title>
- #N: <title>
Order: missing required files first, then standards violations, then style improvements.
Step 5: Report summary
Output a brief summary:
- Total issues created (with links)
- Which principle had the most findings
- Top-priority fix
- Link to the CLAUDE.md section added