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.
npx claudepluginhub 45ck/prompt-language --plugin prompt-languageThis skill is limited to using the following tools:
Run a full pre-deployment verification pipeline: lint, test, build. Fix any failures automatically.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
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 prerequisite