From prompt-language
This skill should be used when the user asks to 'check if ready to deploy', 'pre-deploy check', 'verify before deploying', 'deployment readiness', 'is it ready to ship', or wants pre-deployment verification.
How this skill is triggered — by the user, by Claude, or both
Slash command
/prompt-language:deploy-checkinheritThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run a full pre-deployment verification pipeline: lint, test, build. Fix any failures automatically.
Run a full pre-deployment verification pipeline: lint, test, build. Fix any failures automatically.
flow:
retry max 5
run: npm run lint && npm test && npm run build
if command_failed
prompt: The pipeline failed. Read the error output, fix the issue, and try again.
end
end
done when:
tests_pass
lint_pass
When the repo uses a non-Node stack, substitute equivalent commands:
ruff check . && pytest && python -m buildgo test ./... && go vet ./...cargo test && cargo clippy -- -D warnings && cargo buildUse project-native commands if scripts are already defined in package/tooling config.
Before declaring ready:
lint failures: style/static correctness; fix first.test failures: behavior regressions; isolate smallest failing unit first.build failures: integration/packaging/runtime typing.If failures are flaky or environment-specific, report the exact command and stderr fragment.
Lint: pass/failTests: pass/failBuild: pass/failReady: yes/noNotes: any remaining risk or prerequisiteCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub 45ck/prompt-language --plugin prompt-language