用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/wojons/skills --skill testing-level-poc命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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