AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Prototyping

skill-mateonunez-skills-prototyping · by mateonunez

Build a throwaway prototype to flush out a design before committing. Routes between two branches — a runnable terminal app for state/business-logic questions, or several radically different UI variations toggleable from one route. Use when you want to prototype, sanity-check a data model or state machine, mock up a UI, explore design options, or says "prototype this", "let me play with it", "try…

No reviews yet
0 installs
24 views
0.0% view→install

Install

$ agentstack add skill-mateonunez-skills-prototyping

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-mateonunez-skills-prototyping)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Prototyping? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Prototyping

A prototype is throwaway code that answers a question. The question decides the shape.

> "Build to learn, not to ship."

Pick a branch

Identify which question is being answered — from context, surrounding code, or by asking the user:

  • "Does this logic / state model feel right?" → Build a tiny interactive terminal app that pushes the state machine through cases hard to reason about on paper. Surface the state after every action.
  • "What should this look like?" → Generate several radically different UI variations on a single route, switchable via a URL search param and a floating bottom bar. Surface state changes on every variant switch.

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).

Rules that apply to both

  1. 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.
  1. One command to run. Whatever the project supports — pnpm , node , tsx , etc. User must start it without thinking.
  1. 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.
  1. 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.
  1. 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.
  1. 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.

When done

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.

Anti-patterns

  • Prototype that grows into production code. I've watched prototypes escape the "delete me" mindset and become technical debt. If it's still around after 2 weeks, it's not a prototype anymore.
  • Answering the wrong question. User asks "does this state machine work?" and I build a UI. Wrong branch. Clarify first.
  • Prototype with abstraction or error handling. Defeats the point. Messy temporary code is fine. Polish it later if it survives.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.