en un clic
mcp-implementation
// Use when implementing features that use external libraries or APIs — ensures docs-first approach before writing code
// Use when implementing features that use external libraries or APIs — ensures docs-first approach before writing code
Use when querying, modifying, or investigating database state — enforces schema-first approach and mutation safety
Use when debugging issues that involve external services, database state, or API behavior — complements superpowers:systematic-debugging with MCP tool usage
Use when investigating libraries, APIs, or unfamiliar patterns before implementation — guides doc lookup and web search workflow
| name | mcp-implementation |
| description | Use when implementing features that use external libraries or APIs — ensures docs-first approach before writing code |
Use this workflow when implementing features that involve external libraries or APIs you're not 100% certain about.
Gateway instructions handle tool routing. This skill teaches the implementation sequence that avoids wasted effort from wrong assumptions.
Before writing any implementation code:
If official examples exist, use them as your starting point rather than writing from scratch.
Use native Grep/Glob tools (not Gateway) to:
If the codebase already uses this library, follow the established pattern.
With documentation and existing patterns in hand:
| Situation | Action |
|---|---|
| Using a library for the first time | Full workflow: docs → patterns → implement → verify |
| Library already used in codebase | Skip docs, follow existing patterns |
| API call to external service | Always check docs for auth, rate limits, error codes |
| Uncertain about behavior | Check docs first, don't guess |