From ftitos-claude-code
Research-before-coding workflow. Search for existing tools, libraries, and patterns before writing custom code.
npx claudepluginhub nassimbf/ftitos-claude-codeThis skill uses the workspace's default tool permissions.
Systematizes the "search for existing solutions before implementing" workflow.
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Systematizes the "search for existing solutions before implementing" workflow.
1. NEED ANALYSIS
Define what functionality is needed
Identify language/framework constraints
2. PARALLEL SEARCH
- npm / PyPI / package registries
- MCP servers and skills
- GitHub / open source
3. EVALUATE
Score candidates (functionality, maintenance,
community, docs, license, deps)
4. DECIDE
- Adopt as-is
- Extend / wrap
- Build custom
5. IMPLEMENT
Install package / Configure / Write minimal custom code
| Signal | Action |
|---|---|
| Exact match, well-maintained, MIT/Apache | Adopt -- install and use directly |
| Partial match, good foundation | Extend -- install + write thin wrapper |
| Multiple weak matches | Compose -- combine 2-3 small packages |
| Nothing suitable found | Build -- write custom, but informed by research |
Before writing a utility or adding functionality:
eslint, ruff, textlint, markdownlintprettier, black, gofmtjest, pytest, go testunstructured, pdfplumber, mammothhttpx (Python), ky/got (Node)zod (TS), pydantic (Python)