proof-of-work
Use automatically during development workflows when making claims about tests, builds, verification, or code quality requiring concrete evidence to ensure trust through transparency.
What this skill does
# Proof of Work **Show, don't tell.** Never make claims about code verification without providing concrete evidence. ## Core Principle **Trust through transparency.** Every assertion about code quality, test results, builds, or verification must be backed by actual command output, not summaries or assumptions. ## Implementation Proof When implementing features: 1. **USE Write/Edit tools to make changes** - Never just describe what should be written - Actually call Write tool to create files - Actually call Edit tool to modify files 2. **Show tool results** - After Write: "Successfully wrote /path/to/file.ex" - After Edit: "Successfully edited /path/to/file.ex" - Tool output is proof changes were made 3. **Verify changes exist** - Use Bash to verify files exist: `ls -la /path/to/file.ex` - Use Read to show content if needed - Actual file existence is proof **Remember**: If you didn't use Write/Edit tools, it didn't happen. ## Agent Verification (CRITICAL) **NEVER EVER trust agent completion reports without verification.** This is a **zero-tolerance rule**. Agent reports are NOT proof - they are **claims requiring verification**. ### The Critical Error When you delegate work to a subagent: 1. Agent completes and reports "Successfully created X, modified Y, implementation complete" 2. **STOP - DO NOT TRUST THIS REPORT** 3. Agent reports mean NOTHING until you verify 4. Blindly trusting agent reports is a **catastrophic failure** ### Mandatory Verification After EVERY Agent **After ANY agent completes, you MUST verify work was actually done:** ```bash # 1. Verify files were actually modified git status --short # 2. Verify actual changes exist git diff --name-only # 3. Verify specific file exists (if agent claimed to create it) ls -la /path/to/file # 4. Verify file content (spot check) cat /path/to/file | head -20 ``` **If git status shows clean working tree → NOTHING was done, regardless of agent report.** ### Red Flags in Agent Reports ### Never trust these claims without verification | Agent Claim | Required Verification | | ------------------------- | ------------------------------------------- | | "Successfully created X" | `ls -la /path/to/X` - prove file exists | | "Modified files A, B, C" | `git status` - prove files show as modified | | "Changes made to Y" | `git diff Y` - prove actual changes exist | | "Implementation complete" | `git diff --stat` - prove work was done | | "Added tests to Z" | `cat Z` - prove tests actually exist | | "Updated configuration" | `git diff config/` - prove config changed | ### Verification Workflow (MANDATORY) ```text 1. Delegate to agent 2. Agent reports completion 3. ⚠️ STOP - DO NOT TRUST REPORT ⚠️ 4. Run verification commands (git status, ls, cat, etc.) 5. If verification fails → Agent did NOT complete work 6. If verification passes → THEN report to user WITH PROOF ``` ### Evidence Requirements for Agent Work **❌ NEVER report to user:** - "Agent created X" (without proving X exists) - "Agent modified Y" (without showing git diff) - "Implementation complete" (without showing git status) - "Tests added" (without proving tests exist) **✅ ALWAYS report with proof:** ```bash # After agent completes, verify: $ git status --short M apps/api/lib/users/worker.ex A apps/api/test/users/worker_test.exs # Prove files exist: $ ls -la apps/api/test/users/worker_test.exs -rw-r--r-- 1 user staff 2847 Nov 7 14:32 apps/api/test/users/worker_test.exs # Spot check content: $ head -10 apps/api/test/users/worker_test.exs defmodule YourApp.Users.UserTest do use YourApp.DataCase ... ``` **Then report:** "Agent completed. Verification proves 2 files modified (evidence above)." ### Why This Matters ### Failure to verify agent work - Destroys user trust - Wastes user time - Results in false claims - Violates proof-of-work principle - Is a **catastrophic error** **The user must be able to trust your reports.** Agent reports without verification are **worthless**. ### Agent Verification Remember - **Agent reports are claims, not proof** - **Verification is MANDATORY after EVERY agent** - **If you didn't verify, you don't know if it happened** - **Git status is ground truth, not agent reports** - **Never report agent completion without showing verification** **This is non-negotiable.** Failure to verify agent work is unacceptable. ## When to Apply Apply this skill whenever claiming: - Tests pass/fail - Build succeeds/fails - Linting clean/has issues - Types check - GraphQL compatibility verified - CI pipeline status - Code review findings - Performance metrics - Any verifiable development assertion ## Evidence Requirements **❌ Never say without proof:** - "Tests pass" / "Build succeeds" / "No linting issues" - "Types check" / "Pipeline is green" / "Code is clean" **✅ Always provide actual output:** ```bash # Tests $ mix test Finished in 42.3 seconds 1,247 tests, 0 failures # Linting $ MIX_ENV=test mix lint Running Credo... ✓ No issues found. # Types $ yarn ts:check ✓ 456 files checked, 0 errors # CI Pipeline $ glab ci status Pipeline #12345: passed ✓ URL: https://gitlab.com/.../pipelines/12345 ``` ## Zero Tolerance for Assumptions ### Never assume or claim without running ❌ **WRONG:** - "The tests should pass" - "This probably works" - "Based on my changes, tests will pass" - "I expect the build succeeds" ✅ **RIGHT:** - "I have not run the tests yet. Let me run them now." - "Running `mix test` to verify..." - [Shows complete output] ## Partial Verification Is Not Verification **❌ NEVER claim success from partial runs:** ```bash # Only ran 50 tests of 1,247 Running ExUnit tests... 50 tests, 0 failures # STOPPED HERE - did not complete ``` "Tests pass" ❌ **FALSE - only partial run** **✅ ALWAYS run to completion:** ```bash # Full suite completed Finished in 42.3 seconds 1,247 tests, 0 failures # ALL tests ran ``` "Full test suite passes: 1,247 tests, 0 failures" ✅ **TRUE** ## Output Format 1. Show the command you ran 2. Show results, not summaries 3. Include counts (tests, files, errors) 4. Include URLs for CI/remote resources ## Complete Verification Example ```bash $ MIX_ENV=test mix lint ✓ No issues found. $ mix test 1,247 tests, 0 failures $ yarn graphql:compat ✓ No breaking changes $ glab ci status Pipeline #12345: passed ✓ ``` **Then claim:** "All verification passed (evidence above)." ## Red Flags Stop and provide proof if you catch yourself saying: - "Tests pass" (without showing output) - "Build works" (without showing build log) - "No errors" (without showing check results) - "Pipeline is green" (without showing pipeline status) - "Code is clean" (without showing lint output) - "Types check" (without showing tsc output) ## Workflow Integration **Implementation:** Run verification → Show complete output → Report with evidence → Wait for approval **Code review:** Reference line numbers (`file.ts:123`), quote issues, show analyzer output **Debugging:** Show full errors, stack traces, reproduction steps with output ## Remember - **Every claim needs proof** - No exceptions - **Show complete output** - No summaries or excerpts for verification - **Run commands yourself** - Never assume or infer results - **Timestamps matter** - Show when verification ran - **Links are proof** - Provide URLs for remote resources - **Honesty over convenience** - Admit when you haven't verified ### Transparency builds trust. Evidence eliminates doubt
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.