documentation-research
1
总安装量
1
周安装量
#44670
全站排名
安装命令
npx skills add https://github.com/jpoutrin/product-forge --skill documentation-research
Agent 安装分布
windsurf
1
amp
1
opencode
1
kimi-cli
1
codex
1
github-copilot
1
Skill 文档
Documentation Research Skill
This skill enforces documentation research before any technical implementation to ensure code follows current best practices.
Core Principle
NO IMPLEMENTATION WITHOUT DOCUMENTATION RESEARCH
Before writing ANY code:
- Search official documentation online
- Verify current best practices
- Check for deprecated patterns
- Report findings to user
- Only then proceed
Documentation Sources
| Technology | Primary Documentation |
|---|---|
| Django | docs.djangoproject.com |
| FastAPI | fastapi.tiangolo.com |
| React | react.dev |
| Python | docs.python.org |
| TypeScript | typescriptlang.org/docs |
Research Protocol
- Search Official Docs – Use WebSearch/WebFetch
- Verify Version – Check latest stable release
- Review Best Practices – Note recommended patterns
- Check Deprecations – Avoid outdated APIs
- Document Findings – Summarize before implementing
Report Format
ð Documentation Research Summary
ââââââââââââââââââââââââââââââââââ
ð Technology: [Framework]
ð¦ Version: [Version]
â
CURRENT BEST PRACTICES
⢠[Practice 1]
⢠[Practice 2]
â ï¸ DEPRECATED PATTERNS (Avoid)
⢠[Pattern] - Use [alternative] instead
ð SOURCES
⢠[URL]
Ready to proceed? (yes/no)
Enforcement Rules
- Documentation research is non-negotiable
- Always verify which version is being used
- Check for deprecated APIs before using
- Follow security best practices from docs