wiring
SolidWiring Verification
AI & Automation 501 stars
42 forks Updated yesterday MIT
Install
Quality Score: 93/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Wiring Verification
When building infrastructure components, ensure they're actually invoked in the execution path.
## Pattern
Every module needs a clear entry point. Dead code is worse than no code - it creates maintenance burden and false confidence.
## The Four-Step Wiring Check
Before marking infrastructure "done", verify:
1. **Entry Point Exists**: How does user action trigger this code?
2. **Call Graph Traced**: Can you follow the path from entry to execution?
3. **Integration Tested**: Does an end-to-end test exercise this path?
4. **No Dead Code**: Is every built component actually reachable?
## DO
### Verify Entry Points
```bash
# Hook registered?
grep -r "orchestration" .claude/settings.json
# Skill activated?
grep -r "skill-name" .claude/skill-rules.json
# Script executable?
ls -la scripts/orchestrate.py
# Module imported?
grep -r "from orchestration_layer import" .
```
### Trace Call Graphs
```python
# Entry point (hook)
.claude/hooks/pre-tool-use.sh
↓
# Shell wrapper calls TypeScript
npx tsx pre-tool-use.ts
↓
# TypeScript calls Python script
spawn('scripts/orchestrate.py')
↓
# Script imports module
from orchestration_layer import dispatch
↓
# Module executes
dispatch(agent_type, task)
```
### Test End-to-End
```bash
# Don't just unit test the module
pytest tests/unit/orchestration_layer_test.py # NOT ENOUGH
# Test the full invocation path
echo '{"tool": "Task"}' | .claude/hoo...
Details
- Author
- vibeeval
- Repository
- vibeeval/vibecosystem
- Created
- 2 months ago
- Last Updated
- yesterday
- Language
- C#
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
wiring
Wiring Verification
3,809 Updated 4 months ago
parcadei AI & Automation Solid
completion-check
Completion Check: Verify Infrastructure Is Wired
501 Updated yesterday
vibeeval AI & Automation Listed
completion-check
Completion Check: Verify Infrastructure Is Wired
3,809 Updated 4 months ago
parcadei