maestro/skills/completion-check/SKILL.md
Completion Check: Verify Infrastructure Is Wired
npx skillsauth add scooter-lacroix/maestro completion-checkInstall 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.
When building infrastructure, verify it's actually connected to the system before marking as complete.
Infrastructure is not done when the code is written - it's done when it's wired into the system and actively used. Dead code (built but never called) is wasted effort.
Trace the execution path - Follow from user intent to actual code execution:
# Example: Verify Task tool spawns correctly
grep -r "claude -p" src/
grep -r "Task(" src/
Check hooks are registered, not just implemented:
# Hook exists?
ls -la .maestro/hooks/my-hook.sh
# Hook registered in settings?
grep "my-hook" .maestro/settings.json
Verify database connections - Ensure infrastructure uses the right backend:
# Check connection strings
grep -r "sqlite:///" src/
grep -r "duckdb" src/
Test end-to-end - Run the feature and verify infrastructure is invoked:
# Add debug logging
echo "DEBUG: UnifiedStorageBackend initialized" >> /tmp/debug.log
# Trigger feature
uv run python -m my_feature
# Verify infrastructure was called
cat /tmp/debug.log
Search for orphaned implementations:
# Find functions defined but never called
ast-grep --pattern 'async function $NAME() { $$$ }' | \
xargs -I {} grep -r "{}" src/
Before declaring infrastructure complete:
Wrong approach:
✓ Built BeadsTaskGraph class
✓ Implemented DAG dependencies
✓ Added spawn logic
✗ Never wired - Task tool still runs instead
✗ Used SQLite instead of PostgreSQL
Right approach:
✓ Built BeadsTaskGraph class
✓ Wired into Task tool execution path
✓ Verified claude -p spawn is called
✓ Confirmed PostgreSQL backend in use
✓ Tested: user calls Task() → DAG spawns → beads execute
✓ No parallel implementations found
tools
Wiring Verification
tools
Create and configure Maestro sub-agents with custom prompts, tools, and models
data-ai
Create and use Maestro slash commands - quick prompts, bash execution, file references
development
Upgrade any skill to v5 Hybrid format using decision theory + modal logic