Skip to main content
Back to registry

completion-check

parcadei/continuous-claude-v3

When building infrastructure, verify it's actually connected to the system before marking as complete.

Installs167
Install command
npx skills add https://github.com/parcadei/continuous-claude-v3 --skill completion-check
Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
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: Check hooks are registered , not just implemented: Verify database connections - Ensure infrastructure uses the right backend: Test end-to-end - Run the feature and verify infrastructure is invoked: Search for orphaned implementations : Before declaring infrastructure complete: Wrong approach: Right approach: - 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 .claude/hooks/my-hook.sh # Hook registered in settings? grep "my-hook" .claude/settings.json - Verify database connections - Ensure infrastructure uses the right backend: # Check connection strings grep -r "postgresql://" src/ grep -r "sqlite:" src/ # Should NOT find if PostgreSQL expected - Test end-to-end - Run the feature and verify infrastructure is invoked: # Add debug logging echo "DEBUG: DAG spawn invoked" >> /tmp/debug.log # Trigger feature uv run python -m my_feature # Verify...

Source description provided by the upstream skill listing. Community reviews and install context appear in the sections below.

Community Reviews

Latest reviews

Sign in to review

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does completion-check do?

When building infrastructure, verify it's actually connected to the system before marking as complete.

Is completion-check good?

completion-check does not have approved reviews yet, so SkillJury cannot publish a community verdict.

What agent does completion-check work with?

completion-check currently lists compatibility with codex, gemini-cli, opencode, cursor, amp, github-copilot.

What are alternatives to completion-check?

Skills in the same category include telegram-bot-builder, flutter-app-size, sharp-edges, iterative-retrieval.

How do I install completion-check?

npx skills add https://github.com/parcadei/continuous-claude-v3 --skill completion-check

Related skills

More from parcadei/continuous-claude-v3

Related skills

Alternatives in Software Engineering