From scaffolding
Systematically gathers accurate, version-specific documentation before implementing libraries or APIs. Uses structured 5-step methodology for source prioritization, retrieval, verification, and citation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/scaffolding:research-methodologyThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Systematic approach for gathering accurate, version-specific documentation before implementation.
Systematic approach for gathering accurate, version-specific documentation before implementation.
package.json (Node.js)requirements.txt (Python)Cargo.toml (Rust)| Priority | Source | Trust Level |
|---|---|---|
| 1 | Official documentation | HIGH |
| 2 | Migration guides | HIGH |
| 3 | Release notes | HIGH |
| 4 | GitHub repos | MEDIUM |
| 5 | Blogs, tutorials | LOW |
| ❌ | Stack Overflow, AI content | AVOID |
Deliver ResearchPack format:
## ResearchPack: [Library/API Name]
### Quick Reference
- **Library**: name v1.2.3
- **Use Case**: [what we're implementing]
- **Confidence**: HIGH/MEDIUM/LOW
### Key APIs
| Function | Signature | Description |
|----------|-----------|-------------|
| func1 | `func1(arg: Type): Return` | Does X |
| func2 | `func2(arg: Type): Return` | Does Y |
### Setup Steps
1. Install: `npm install library`
2. Configure: ...
3. Import: ...
### Gotchas
- ⚠️ [Common mistake to avoid]
- ⚠️ [Version-specific caveat]
### Code Examples
```typescript
// Example usage
## Quality Standards
- **Accuracy**: API signatures match docs exactly
- **Citations**: Every claim has source URL
- **Version-aware**: Information matches project version
- **Actionable**: Clear implementation guidance
- **Time**: Under 2 minutes total
## Project-Specific Sources
### React/TypeScript
- https://react.dev/
- https://www.typescriptlang.org/docs/
### Material-UI
- https://mui.com/material-ui/
### Vite
- https://vitejs.dev/
### AI APIs
- https://docs.imagerouter.io/
- https://platform.openai.com/docs/
## Confidence Levels
| Level | Criteria |
|-------|----------|
| HIGH | Official docs, exact version, tested |
| MEDIUM | Official docs, close version |
| LOW | Community source, version uncertain |
| AVOID | No citation, speculation |
npx claudepluginhub komluk/scaffolding --plugin scaffoldingGuides doc lookup and web search workflow for investigating libraries, APIs, or unfamiliar patterns before implementation.
Fetches live documentation and implementation guidance for any library, framework, or API. Invoked when the user asks for documentation, examples, or best practices.
Enforces research of official documentation before implementing features in Django, FastAPI, React, Python, or TypeScript to verify best practices and deprecations.