在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
deploy
// Skill to automate the full deployment process including build, test, and release steps
$ git log --oneline --stat
stars:254
forks:163
updated:2026年4月9日 06:26
文件资源管理器
SKILL.md
// Skill to automate the full deployment process including build, test, and release steps
Five-axis code review for comprehensive quality assessment
Build features in thin vertical slices with continuous verification
Write tests before code using RED-GREEN-REFACTOR cycle
Skill to perform a thorough security audit of the codebase
| name | deploy |
| description | Skill to automate the full deployment process including build, test, and release steps |
Automate the deployment pipeline: build → test → deploy → verify.
git status
git pull origin main
npm test
If tests fail → STOP. Report failures.
npm run build
Development:
docker-compose -f docker-compose.dev.yml up -d --build
Production:
docker-compose -f docker-compose.prod.yml pull
docker-compose -f docker-compose.prod.yml up -d
curl -f http://localhost:3000/health || echo "Health check failed"
docker-compose logs --tail=50 -f app
git revert HEAD --no-edit
git push origin main
# Redeploy previous version