quality-verify-integration
Verifies components are integrated into the system, not just created. Detects orphaned code (exists but never imported). Use BEFORE marking features complete, moving ADRs to completed/, or claiming integration work done. Enforces Creation-Connection-Verification (CCV) principle.
What this skill does
# Verify Integration ## Purpose Prevent "done but not integrated" failures where: - Code exists ✓ - Unit tests pass ✓ - Quality gates pass ✓ - **But code is never called at runtime** ✗ ## When to Use **MANDATORY before:** - Moving ADR to `3_completed/` - Marking todo tasks complete for integration work - Claiming a feature is "done" or "working" - Creating a PR for integration changes ## The CCV Principle ``` COMPLETE = CREATION + CONNECTION + VERIFICATION ``` | Phase | What It Proves | Required Evidence | |-------|----------------|-------------------| | **CREATION** | Artifact exists | File, tests, types | | **CONNECTION** | Wired into system | Import, registration | | **VERIFICATION** | Works at runtime | Logs, output | **Missing any phase = NOT complete** ## The Four Questions Test Before "done", answer ALL FOUR: 1. **How do I trigger this?** (entry point) 2. **What connects it to the system?** (import/registration) 3. **What proves it runs?** (logs/traces) 4. **What shows it works?** (outcome) Cannot answer all four? → **NOT COMPLETE** ## Quick Verification ### Step 1: Check for Orphaned Modules ```bash # Run orphan detection script ./scripts/verify_integration.sh # Or manual check for specific module grep -r "from.*module_name import\|import.*module_name" src/ --include="*.py" | grep -v test ``` **If no matches → Module NOT integrated** ### Step 2: Verify Call-Sites ```bash # Check if function/class is actually called grep -r "function_name\|ClassName" src/ --include="*.py" | grep -v "^def \|^class " | grep -v test ``` **If no matches → Code never called** ### Step 3: Check Context-Specific Integration **LangGraph Nodes:** ```bash grep -n "from.*nodes import\|add_node.*name" src/temet_run/coordination/graph/builder.py ``` **DI Services:** ```bash grep -n "providers.Singleton\|providers.Factory" src/temet_run/container.py ``` **CLI Commands:** ```bash grep -n "add_command\|@app.command" src/temet_run/cli/app.py ``` ### Step 4: Demand Runtime Proof Require one of: - Integration test output showing component exists - Logs from execution showing code ran - State inspection showing fields populated ## Connection Patterns See [references/connection-patterns.md](references/connection-patterns.md) for: - LangGraph node integration - Dependency Injection patterns - CLI command registration - API endpoint wiring - Configuration loading ## Verification Report Template ```markdown ## Integration Verification: [Feature Name] ### CCV Status **CREATION:** ✅ / ❌ - Files: [list] - Tests: [count] passing - Types: mypy passes **CONNECTION:** ✅ / ❌ - Import location: [file:line] - Registration: [how wired] - Entry point: [how triggered] **VERIFICATION:** ✅ / ❌ - Integration test: [pass/fail] - Runtime logs: [attached/missing] - Expected outcome: [observed/not observed] ### Four Questions 1. Trigger: [answer or UNANSWERED] 2. Connection: [answer or UNANSWERED] 3. Execution proof: [answer or UNANSWERED] 4. Outcome proof: [answer or UNANSWERED] ### Verdict **APPROVED ✅** — All phases complete, evidence attached OR **BLOCKED ❌** — Missing: [list what's missing] ``` ## Supporting Files - [references/connection-patterns.md](references/connection-patterns.md) - Integration patterns by artifact type ## Success Criteria - [ ] No orphaned modules (verify_integration.sh passes) - [ ] All imports verified with grep - [ ] All call-sites verified - [ ] Context-specific checks passed - [ ] Four Questions answered - [ ] Runtime proof attached
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.