用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/wojons/skills --skill testing-smoke命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use when you need comprehensive accessibility auditing including WCAG compliance, legal requirements mapping, and user testing with disabilities
Apply systematic adversarial thinking patterns including devil's advocate, assumption busting, red teaming, and white hat security approaches
A 10-step methodology for building software with AI collaboration - from north star through automated Ralph loop execution with zero human-in-the-loop code writing
基于 SOC 职业分类
正在显示 SKILL.md
| name | testing-smoke |
| description | Run smoke tests to verify basic application functionality |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","category":"testing"} |
Run quick verification tests to ensure basic functionality works before committing to deeper testing (integration, e2e, regression).
Use this skill when:
Quick validation of critical functionality:
Coordinate with other test types:
Implementation approaches:
# Run smoke tests
npm run test:smoke # Full smoke test suite
npm run test:smoke:quick # Absolute minimum validation
# Deployment validation
npm run test:smoke:production # Production smoke tests
npm run test:smoke:staging # Staging environment checks
# Coordinate with other tests
npm run test:smoke && npm run test:integration
npm run test:smoke && npm run test:e2e
# Environment-specific smoke tests
npm run test:smoke:dev # Development environment
npm run test:smoke:ci # CI environment validation
Smoke Test Results:
──────────────────────────────
Execution Context: Post-deployment validation
Test Duration: 1m 23s (target < 3 minutes)
Critical Paths Verified:
✅ Application Server: Responds on port 3000
✅ Database Connection: Can query users table
✅ Authentication Service: Login endpoint works
✅ Core API: GET /api/health returns 200 OK
✅ Cache Layer: Redis connection established
Environment Checks:
✅ Environment variables loaded
✅ Configuration files valid
✅ External services reachable
✅ File permissions correct
Next Steps Recommended:
- Smoke tests passed ✅
- Proceed with integration testing
- If failed, investigate before deeper testing
Dependency Status:
- Unit tests not required for smoke (already fast)
- Integration tests can proceed if smoke passes
- E2E tests depend on smoke + integration passing
- Performance tests require stable environment