From verified-development
Audit a project against verified-development standards and produce a gap analysis.
How this skill is triggered — by the user, by Claude, or both
Slash command
/verified-development:assessThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Analyze the current project against verified development standards. Produces a gap analysis showing what verification layers exist, what's missing, and what needs to change.
Analyze the current project against verified development standards. Produces a gap analysis showing what verification layers exist, what's missing, and what needs to change.
If language is provided as argument, use it. Otherwise detect:
.go files + go.mod -> Gotsconfig.json or package.json with TypeScript -> TypeScriptpom.xml or build.gradle -> JavaCargo.toml -> RustMap the project structure:
Check for each verification layer:
Build system:
verify or equivalent meta-targetLinting:
.golangci.yml, .eslintrc, etc.)Testing:
-race)-shuffle=on)-count=1)Coverage:
Security:
Dead code:
Specifications:
.verified/ directory existsSample existing tests (read up to 5 test files) and assess:
Write the report to .verified/assessment.md:
# Project Assessment
**Project:** {name}
**Language:** {language}
**Date:** {YYYY-MM-DD}
## Current State
| Layer | Status | Details |
|-------|--------|---------|
| Build system | {present/partial/missing} | {what exists} |
| Linting | {present/partial/missing} | {rules count, thresholds} |
| Testing | {present/partial/missing} | {flags, patterns} |
| Coverage | {present/partial/missing} | {threshold, CI gates} |
| Security | {present/partial/missing} | {scanners} |
| Dead code | {present/partial/missing} | {detector} |
| Specifications | {present/partial/missing} | {spec format} |
## Gaps
### Critical (blocks verified development)
- {what's missing and why it matters}
### Important (significantly reduces verification quality)
- {what's missing and why it matters}
### Nice-to-have (incremental improvements)
- {what could be better}
## Test Quality Assessment
- Pattern: {behavior-driven / implementation-coupled / mixed}
- Boundary coverage: {good / weak / absent}
- Property tests: {yes / no}
- Tautological tests found: {yes / no -- with examples if yes}
- Estimated test-to-code ratio: {X:Y}
## Recommended Actions
1. {Highest priority action}
2. {Next priority}
3. ...
Run `/init` to scaffold missing configurations.
Show the user:
/init to scaffold missing pieces.verified/assessment.md is the only file writtennpx claudepluginhub mikemyl/verified-development --plugin verified-developmentProvides 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.