Use when adding assessment checkpoints to a skill, evaluating checkpoint suitability, or generating checkpoint YAML from skill requirements. Activate on 'add checkpoints', 'generate checkpoints', or checkpoint schema tasks.
From automated-assessmentnpx claudepluginhub netresearch/claude-code-marketplace --plugin automated-assessmentThis skill uses the workspace's default tool permissions.
evals/evals.jsonGuides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Generates FastAPI project templates with async routes, dependency injection, Pydantic schemas, repository patterns, middleware, and config for PostgreSQL/MongoDB backends.
Analyze a skill and generate appropriate checkpoints.yaml for the automated-assessment framework.
/add-checkpoints # Analyze current skill directory
/add-checkpoints typo3-docs # Analyze a specific installed skill
/add-checkpoints --dry-run # Show what would be generated, don't write
checkpoints.yaml with mechanical checks and LLM reviewsscripts/run-checkpoints.sh against a sample project to verifyA skill is suitable for checkpoints if it defines:
A skill is NOT suitable if it only provides:
Report suitability with reasoning so the user can decide.
Extract from SKILL.md patterns like:
file_existsfile_not_exists or not_containscontains or regexjson_path or commandDerive from the skill's scope:
file_exists: ext_emconf.phpfile_exists: Dockerfilefile_exists: go.modfile_exists: .claude-plugin/plugin.jsonUse the skill's established prefix from references/migration-guide.md, or derive a 2-letter prefix from the skill name.
error: "must", "required", "never" → blocks releasewarning: "should", "recommended" → suggestioninfo: "consider", "nice to have" → optionalFor subjective requirements that can't be mechanically verified:
domain: code-qualitydomain: documentationdomain: architectureGroup by domain, provide clear rubric prompts.
Generates checkpoints.yaml in the skill's directory following the schema at references/checkpoints-schema.md. Also creates a copy in the automated-assessment assets directory.
references/checkpoints-schema.mdreferences/migration-guide.mdassets/*-checkpoints.yaml (as examples)