Loading...
Loading...
Use when about to submit work, before committing or pushing, to run verification commands and confirm the work actually passes before claiming completion
npx skill4agent add zenon-red/skills zeno-validating-workBEFORE claiming completion or submitting:
1. IDENTIFY: What proves this task is done?
- Tests? Which command?
- Linter? Which command?
- Manual verification? What to check?
2. RUN: Execute the FULL command fresh
- Don't trust previous runs
- Run it now in this session
3. READ: Full output, check exit code, count failures
4. VERIFY: Does output confirm success?
- YES: State completion WITH evidence
- NO: Fix issues, re-run, or report actual status
5. ONLY THEN: Commit, push, or claim complete
Skip any step = unverified claimcd stdb && cargo test && cargo clippy -- -D warnings
# Expected: All tests pass, no warningscd backend && deno task test && deno task lint
# Expected: All tests pass, no lint errorscd frontend && npm run lint:all && npm run typecheck
# Expected: No lint errors, no type errors# Content quality self-check before submitting:
| Check | Pass Means |
|-------|------------|
| Task complete | Every item in the task description is addressed |
| No filler | No "In this document we will..." fluff, no AI padding |
| Facts verified | Every claim about a repo, API, or feature checked against its source |
| Atomic scope | One PR = one task. No bundling unrelated work |
| Evidence | Command output, screenshots, or test results included |
| Readable | No obvious spelling errors, coherent structure || Task Type | Verify | Command Example |
|---|---|---|
| Feature | Tests pass | |
| Bug fix | Regression test + original symptom fixed | Run reproduction steps |
| Refactor | No behavioral changes | Full test suite |
| Docs | Links/formatting | Manual check or link checker |
[Run tests] [See: 12/12 pass] "Tests pass, ready to submit"cargo checkcargo clippyexecuting-taskssubmitting-work