ソース情報
- リポジトリ
- 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-level-pocコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | testing-level-poc |
| description | Testing strategy for Proof of Concept projects |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","category":"testing"} |
Minimal testing approach for Proof of Concept projects focused on validating technical feasibility.
Use this skill when:
Core Philosophy: Maximum learning, minimal quality assurance. Focus on answering "Can we build this?" not "Is this production-ready?"
Recommended Testing Approach:
Manual Testing (Primary)
Minimal Unit Testing
No Formal Test Types
Project-Specific Adjustments:
# POC testing is minimal and manual
# Example manual validation commands:
# Test core algorithm
node test-algorithm.js
python validate-hypothesis.py
# Quick API test
curl -X POST http://localhost:3000/api/test
# Database connection test
node test-db-connection.js
# No formal test suites needed
POC Testing Summary:
──────────────────────────────
Technical Feasibility Assessment:
✅ Core Algorithm Works:
- Processes 10k records in < 2 seconds
- Accuracy: 98.7% (meets 95% target)
- Memory usage: Acceptable (max 512MB)
⚠️ Integration Challenges:
- API rate limiting may be issue at scale
- Database schema needs optimization
❌ Showstopper Found:
- Third-party service has 5-second latency
- May not meet performance requirements
Recommendation:
- Technical concept is feasible
- Address API latency concern before proceeding
- Proceed to MVP with risk mitigation plan
Testing Effort: 4 hours manual testing
No formal test infrastructure needed