From code-exam
Show your Code Exam transcript: GPA, streak, per-module grades, and codebase coverage. Run /exam-status to see your progress.
How this skill is triggered — by the user, by Claude, or both
Slash command
/code-exam:exam-statusThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Display the user's exam transcript with codebase coverage analysis.
Display the user's exam transcript with codebase coverage analysis.
node scripts/store.js stats
Scan the project for all source files using Glob: **/*.{ts,js,py,go,rs,java,rb,tsx,jsx}. Exclude node_modules/, dist/, build/, *.test.*, *.spec.*, __tests__/, *.lock, *.generated.*.
Parse the stats JSON. Compare examinedFiles against the total source files found to calculate codebase coverage.
Display in this format:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Code Exam — Transcript
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
GPA: {gpa}/4.0 · {totalExams} exams completed
🔥 Streak: {streak} days (longest: {longestStreak})
Codebase Coverage: {examinedFiles.length}/{totalSourceFiles} files ({pct}%)
[{coverage bar, 20 chars, █/░}]
Module Grades:
{module}: GPA {moduleGPA}/4.0 · {accuracy}% accuracy · {examinedFiles}/{totalModuleFiles} files
(show all modules sorted by exam count descending)
Unexamined Modules:
{list of modules with source files but no exams taken}
(group by directory, show file count per module)
Grading: A (85%+) · B (65-84%) · C (45-64%) · D (30-44%) · F (<30%)
Run /exam to take an exam.
Run /exam-achievements to see your badges.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Coverage calculation:
examinedFiles from stats.json = files that have been part of at least one examModule GPA: Average of the grades array for each module entry in moduleStats.
Accuracy: round(correct / total * 100) per module.
If no exams yet, show: "No exams taken yet. Run /exam to get started!"
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub czaacza/code-exam --plugin code-exam