ソース情報
- リポジトリ
- wojons/skills
- ソースの最終更新活動
- 2026年4月1日 15:16
- 検出された SKILL.md の言語
- 英語
- スター
- 4
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/wojons/skills --skill testing-smokeコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
SOC 職業分類に基づく
| 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