.claude/skills/implementation-readiness/SKILL.md
Gate for HIGH/EPIC tasks that validates plan completeness and architecture compliance before implementation begins
npx skillsauth add oimiragieo/agent-studio implementation-readinessInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Validates that a plan is ready for implementation before agents are spawned. Prevents wasted compute from incomplete plans, missing acceptance criteria, or architectural misalignment.
Skill({ skill: 'implementation-readiness' });
Invoke when:
Skip when:
READINESS_GATE=offEvery task in the plan must have:
Pass: All tasks have all required fields. Fail: Tasks missing acceptance criteria or file paths.
Verify that planned changes align with framework conventions:
.claude/skills/<name>/SKILL.md path pattern.claude/agents/<category>/<name>.md path pattern.claude/hooks/<category>/<name>.cjs path patternPass: All planned paths follow conventions. Fail: Non-standard paths or direct writes to creator-managed paths.
Pass: DAG is valid with no cycles. Fail: Circular dependencies or dangling references.
For HIGH/EPIC tasks:
Pass: Risk section present in plan. Fail: Missing risk assessment for HIGH/EPIC task.
Pass: Test strategy present. Fail: No test strategy for implementation tasks.
{
"verdict": "PASS",
"complexity": "HIGH",
"checks": [
{ "name": "plan-completeness", "passed": true, "details": "8/8 tasks complete" },
{
"name": "architecture-compliance",
"passed": true,
"details": "All paths follow conventions"
},
{ "name": "dependency-graph", "passed": true, "details": "DAG valid, critical path: 4 tasks" },
{ "name": "risk-assessment", "passed": true, "details": "Rollback strategy documented" },
{ "name": "test-strategy", "passed": false, "details": "Task 3 missing test file path" }
],
"blockers": ["Task 3 missing test file path"],
"warnings": []
}
This gate integrates into router-decision.md Step 7 as a pre-implementation check:
Skill({ skill: 'implementation-readiness' })Environment variable override: READINESS_GATE=off disables the gate.
tools
Comprehensive biosignal processing toolkit for analyzing physiological data including ECG, EEG, EDA, RSP, PPG, EMG, and EOG signals. Use this skill when processing cardiovascular signals, brain activity, electrodermal responses, respiratory patterns, muscle activity, or eye movements. Applicable for heart rate variability analysis, event-related potentials, complexity measures, autonomic nervous system assessment, psychophysiology research, and multi-modal physiological signal integration.
tools
Comprehensive toolkit for creating, analyzing, and visualizing complex networks and graphs in Python. Use when working with network/graph data structures, analyzing relationships between entities, computing graph algorithms (shortest paths, centrality, clustering), detecting communities, generating synthetic networks, or visualizing network topologies. Applicable to social networks, biological networks, transportation systems, citation networks, and any domain involving pairwise relationships.
data-ai
Molecular featurization for ML (100+ featurizers). ECFP, MACCS, descriptors, pretrained models (ChemBERTa), convert SMILES to features, for QSAR and molecular ML.
development
Run Python code in the cloud with serverless containers, GPUs, and autoscaling. Use when deploying ML models, running batch processing jobs, scheduling compute-intensive tasks, or serving APIs that require GPU acceleration or dynamic scaling.