Deploy checklist
Skill wchen02/cursor-agent-learning/.cursor/skills/deploy-checklist
A hands-on project to learn Cursor’s agent customization: rules, skills, subagents, commands, hooks, and AGENTS.md. Everything is set up with examples and docs so you can try things and tweak them.
npx -y skills add wchen02/cursor-agent-learning --skill deploy-checklistAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Run a pre-deploy checklist (tests, build, env). Use when the user asks to deploy, prepare for release, or run a deploy checklist.
SKILL.md
1.0 KB, as published. Nobody here has run it
Deploy Checklist
When the user wants to deploy or run a pre-deploy check, follow this workflow.
Steps
-
Run tests
- Execute the project test command (e.g.
npm testorpytest). - If tests fail, report failures and do not proceed until they pass (unless the user says otherwise).
- Execute the project test command (e.g.
-
Build
- Run the build command (e.g.
npm run build). - Note any build errors or warnings.
- Run the build command (e.g.
-
Environment
- Remind the user to confirm env vars and secrets are set for the target environment.
- Do not print secrets; only remind to verify they exist.
-
Report
- Summarize: tests (pass/fail), build (success/fail), and a short reminder about env/secrets.
Notes
- If the project has no test or build script, say so and skip that step.
- This is an example skill for learning; adapt commands to the actual project.