prototype

prototype is a skill for Claude Code from lttr/claude-marketplace. It costs 76 tokens per session (1,143 once invoked), scanned A, original, MIT.

A throwaway prototype is a small HTML, CSS, and JavaScript experiment that answers one design question. It can run by itself or inside the real app when layout and data matter.

In plain words
What is it for?
Use it to explore a user interface, test a state model, or compare how a design looks in the real application.
Why use it?
It lets you test an idea without polishing or changing production code. Writing down one question keeps the work focused.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Part of the aiwork plugin — 11 skills, 2 hooks shipped together

Good fit Use it to explore a user interface, test a state model, or compare how a design looks in the real application.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lttr/claude-marketplace/prototype
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add lttr/claude-marketplace --skill prototype
Clone the repo
git clone --depth 1 https://github.com/lttr/claude-marketplace

Made for: Claude Code.

Or install aiwork, the plugin that ships this one along with the rest of its 11 skills, 2 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for prototype

README.md
[![agentmods](https://agentmods.dev/badge/skills/lttr/claude-marketplace/prototype/github.svg)](https://agentmods.dev/skills/lttr/claude-marketplace/prototype)
Your own site
<a href="https://agentmods.dev/skills/lttr/claude-marketplace/prototype"><img src="https://agentmods.dev/badge/skills/lttr/claude-marketplace/prototype/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for prototype

Your own site · 80×15
<a href="https://agentmods.dev/skills/lttr/claude-marketplace/prototype"><img src="https://agentmods.dev/badge/skills/lttr/claude-marketplace/prototype.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,143 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00076 $0.01143
Opus 5 $0.00038 $0.00571
Sonnet 5 $0.00015 $0.00229
Haiku 4.5 $0.00008 $0.00114

Measured yesterday against content hash 06c032368dff, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

prototype scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/aiwork/skills/prototype/SKILL.md · 54 lines

How it starts

The opening of the file, as written. The whole thing — 54 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Prototype

A prototype is throwaway code that answers one question. Write the question down first, in one paragraph at the top of the prototype where the reader sees it. Then build the smallest thing that answers it.

Two modes

Pick by asking: does the prototype need the real app around it to be judged?

  • Standalone (default). Plain HTML/CSS/JS, no framework, no bundler, no server. One file per prototype, saved in the task folder per the aiwork-protocol skill: prototype/index.html, or prototype/{name}.html for several. Everything inline so it opens by double-click and can be sent to anyone. Use for logic and state models, and for UI ideas that can be judged in isolation.
  • Integrated. Variants rendered inside the project's framework, on a real route with the real header, data and density, because a variant in a vacuum always looks fine. Work on a dedicated prototype/{name} branch that is never merged. Follow the project's conventions (Nuxt: pages/, components/, its CSS system) and name files so they are obviously prototypes: components/prototype/, pages/prototype/{name}.vue. Start it with the project's normal dev command.

Rules

  • No polish. No tests, no error handling beyond what makes it run, no abstractions, no generalising for later.
  • No persistence. State lives in memory. Persistence is something a prototype checks, not something it depends on.
  • Surface the state. After every action or variant switch, show the full relevant state and what just changed.
  • Read-only against the real app. Integrated variants never call real mutations. Stub them.

Logic prototype

For "does this state machine / data model / API shape hold up". One HTML file a non-developer can drive.

  • Keep the logic in one <script> block as a pure module: a reducer (state, action) => state, an explicit state machine when "which actions are legal now" is part of the question, or a few pure functions over plain data. No DOM inside it. The page calls it, never the reverse.
  • Page layout, top to bottom:
    1. Title and the question.
    2. Current state as labelled fields, not raw JSON, re-rendered after every click.
    3. Free-play: one button per action, always available, any order.
    4. Guided scenarios as tabs. Each has a short plain-language description (the situation and what to watch for) and its steps as real buttons that run in order. Starting a scenario resets to a known initial state.
  • Scenarios cover what is hard to reason about on paper: the happy path, an awkward edge case, an attempt at something that should be illegal.
  • Domain language everywhere. Buttons and labels read like the business, not like the code.
  • Clean and restrained: readable typography, generous spacing, one accent colour, no animation.

Read the full file on GitHub · 54 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 54 lines · 76 tokens per session scan A 06c032368dff

Subscribe to this mod's changes

prototype is a skill published in the GitHub repository lttr/claude-marketplace (2 stars, last pushed 2d ago), licensed MIT. It adds 76 tokens to every session and 1,143 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-08.

Related

Other skills, from other repositories

glassmorphism

Glassmorphism design system skill. Use when building frosted-glass UI components with blur, transparency, and layered depth effects.

fengshao1227/ccg-workflow · 30 tokens

liquid-glass

Apple Liquid Glass design system. Use when building UI with translucent, depth-aware glass morphism following Apple's design language. Provides CSS tokens, component patterns, dark/light mode, and animation specs.

fengshao1227/ccg-workflow · 43 tokens

frontend-design

Frontend design skill fused from Impeccable + custom extensions. Covers design philosophy, anti-AI-slop patterns, typography, color (OKLCH), spatial design, motion, interaction, responsive, UX writing, state management, engineering, and 4 style variants. Includes 20 command skills for audit/critique/polish/animate/etc.

fengshao1227/ccg-workflow · 75 tokens

adapt

Adapt designs to work across different screen sizes, devices, contexts, or platforms. Implements breakpoints, fluid layouts, and touch targets. Use when the user mentions responsive design, mobile layouts, breakpoints, viewport adaptation, or cross-device compatibility.

fengshao1227/ccg-workflow · 51 tokens

extract

Extract and consolidate reusable components, design tokens, and patterns into your design system. Identifies opportunities for systematic reuse and enriches your component library. Use when the user asks to create components, refactor repeated UI patterns, build a design system, or extract tokens.

fengshao1227/ccg-workflow · 55 tokens

normalize

Audits and realigns UI to match design system standards, spacing, tokens, and patterns. Use when the user mentions consistency, design drift, mismatched styles, tokens, or wants to bring a feature back in line with the system.

fengshao1227/ccg-workflow · 50 tokens