Agent skill

validate-delivery

Use when user asks to \"validate delivery\", \"check readiness\", or \"verify completion\". Runs tests, build, and requirement checks with pass/fail instructions.

agent-sh404★ · +29/wk · 2 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add agent-sh/agentsys --skill validate-delivery --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Version: 5.1.0
Path: .kiro/skills/validate-delivery/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 923
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# validate-delivery Autonomously validate that a task is complete and ready to ship. ## Validation Checks ### Check 1: Review Status ```javascript function checkReviewStatus(reviewResults) { if (!reviewResults) return { passed: false, reason: 'No review results' }; if (reviewResults.approved) return { passed: true }; if (reviewResults.override) return { passed: true, override: true }; return { passed: false, reason: 'Review not approved' }; } ``` ### Check 2: Tests Pass ```bash # Detect test runner and run if grep -q '"test"' package.json; then npm test; TEST_EXIT_CODE=$? elif [ -f "pytest.ini" ]; then pytest; TEST_EXIT_CODE=$? elif [ -f "Cargo.toml" ]; then cargo test; TEST_EXIT_CODE=$? elif [ -f "go.mod" ]; then go test ./...; TEST_EXIT_CODE=$? else TEST_EXIT_CODE=0 # No tests fi ``` ### Check 3: Build Passes ```bash if grep -q '"build"' package.json; then npm run build; BUILD_EXIT_CODE=$? elif [ -f "Cargo.toml" ]; then cargo build --release; BUILD_EXIT_CODE=$? elif [ -f "go.mod" ]; then go build ./...; BUILD_EXIT_CODE=$? else BUILD_EXIT_CODE=0 # No build step fi ``` ### Check 4: Requirements Met ```javascript async function checkRequirementsMet(task, changedFiles) { const requir

What's inside
Steps it walks through
  1. Validation Checks
  2. Check 1: Review Status
  3. Check 2: Tests Pass
  4. Check 3: Build Passes
  5. Check 4: Requirements Met
  6. Check 5: No Regressions
  7. Aggregate Results
  8. Decision and Output
  9. If All Pass
  10. If Any Fail
  11. Fix Instructions Generator
  12. Output Format
  13. Constraints
Commands it runs
Detect test runner and run
if grep -q '"test"' package.json; then
npm test; TEST_EXIT_CODE=$?
elif [ -f "pytest.ini" ]; then
elif [ -f "Cargo.toml" ]; then
cargo test; TEST_EXIT_CODE=$?
elif [ -f "go.mod" ]; then
go test ./...; TEST_EXIT_CODE=$?
else
fi
More from agentsys
All skills →
About this skill
What does the validate-delivery skill do?

Use when user asks to \"validate delivery\", \"check readiness\", or \"verify completion\". Runs tests, build, and requirement checks with pass/fail instructions.

How do I install it?

Run `npx skills add agent-sh/agentsys --skill validate-delivery --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From agent-sh/agentsys, a repository with 923 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going