From mateonunez-skills
Builds throwaway prototypes: terminal apps for state/business-logic validation or toggleable UI variants for design exploration. Use to sanity-check models or mock UIs before committing.
npx claudepluginhub mateonunez/skillsThis skill uses the workspace's default tool permissions.
A prototype is **throwaway code that answers a question**. The question decides the shape.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Processes PDFs: extracts text/tables/images, merges/splits/rotates pages, adds watermarks, creates/fills forms, encrypts/decrypts, OCRs scans. Activates on PDF mentions or output requests.
Share bugs, ideas, or general feedback.
A prototype is throwaway code that answers a question. The question decides the shape.
"Build to learn, not to ship."
Identify which question is being answered — from context, surrounding code, or by asking the user:
Getting this wrong wastes the whole prototype. If genuinely ambiguous and user isn't reachable, default to whichever branch better matches the surrounding code (backend module → logic; page/component → UI).
Throwaway from day one, clearly marked as such. Locate prototype code close to where it will actually be used (next to the module or page it's prototyping for) so context is obvious — but name it so any reader can see it's a prototype, not production. For UI routes, obey whatever routing convention the project already uses; don't invent new structure.
One command to run. Whatever the project supports — pnpm <name>, node <path>, tsx <path>, etc. User must start it without thinking.
No persistence by default. State lives in memory. Persistence is the thing the prototype is checking, not something it should depend on. If the question explicitly involves a database, hit a scratch DB or local file with a clear "PROTOTYPE — wipe me" name.
Skip the polish. No tests, no error handling beyond what makes the prototype runnable, no abstractions. Point is to learn something fast and then delete it.
Surface the state. After every action (logic) or on every variant switch (UI), print or render the full relevant state so the user can see what changed.
Delete or absorb when done. When the prototype has answered its question, either delete it or fold the validated decision into real code — don't leave it rotting in the repo.
The answer is the only thing worth keeping. Capture it somewhere durable (commit message, ADR, issue, or a NOTES.md next to the prototype) along with the question it was answering. If user is around, that capture is a quick conversation; if not, leave a placeholder so they (or you, on next pass) can fill in the verdict before deleting the prototype.