intent-labs-pack
v0.1.0Intent Solutions labs skills for the nightly eval roster: audit-tests and validate-skillmd — the dogfood surface for running our own gates on our own marketplace.
by Jeremy LongshoreMIT2.6kupdated 2 hours ago
Source
git clone https://github.com/jeremylongshore/claude-code-plugins-plus-skillsClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/productivity/intent-labs-pack/ inside the repository.
Layout
├── .claude-plugin/plugin.json├── skills/audit-tests/SKILL.md└── skills/validate-skillmd/SKILL.md
Skills2
Diagnostic-only test suite auditor. Classifies repo type, maps against 7-layer testing taxonomy (git hooks → static → unit → integration → system → E2E → acceptance), runs deterministic quality gates (coverage, mutation, CRAP, architecture, escape-scan), builds RTM / personas / journeys traceability, produces TEST_AUDIT.md, updates tests/TESTING.md, and mandatorily hands off to implement-tests when gaps are found. Use when auditing test quality, finding test gaps, or running the full 7-layer sweep. Trigger with "audit tests", "find gaps", "test audit", "check test quality", "full sweep", "7-layer audit", "rtm check".
Validate a SKILL.md file against the four-tier validation system: Tier 0 (locate), Tier 1 (standard or marketplace grading per the IS 100-point rubric), Tier 2 (static production gate — allowed-tools accuracy, auth protocol, dead code, tool safety, orchestration bounds), and Tier 3 (JRig 7-layer behavioral eval, opt-in via --thorough). Use when creating a new skill, checking skill quality, preparing for marketplace submission, running deep quality analysis, or gating a skill for production. Trigger with "validate this skill", "grade my skill", "deep eval", "check SKILL.md", "validate thorough", "/validate-skillmd".
Manifests1
{
"name": "intent-labs-pack",
"version": "0.1.0",
"description": "Intent Solutions labs skills for the nightly eval roster: audit-tests and validate-skillmd — the dogfood surface for running our own gates on our own marketplace.",
"author": {
"name": "Jeremy Longshore",
"email": "jeremy@intentsolutions.io"
},
"repository": "https://github.com/jeremylongshore/claude-code-plugins-plus-skills",
"homepage": "https://tonsofskills.com/plugins/intent-labs-pack",
"license": "MIT",
"keywords": [
"audit-tests",
"validate-skillmd",
"testing",
"skill-validation",
"intent-eval",
"dogfood"
]
}