rapid-prototyper

rapid-prototyper is an agent for Claude Code from CronusL-1141/AI-company. It costs 35 tokens per session (2,226 once invoked), scanned A, original, MIT.

A rapid-prototyping developer for building small, usable demonstrations that test whether an idea or technical approach works. An MVP is the smallest version of a product that can test its main assumption.

In plain words
What is it for?
It helps define testable assumptions, build end-to-end prototypes, create proofs of concept, measure key technical limits, collect feedback, and document compromises.
Why use it?
It helps teams learn quickly without spending time building features that are not needed to answer the key question.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

Part of the ai-team-os plugin — 5 skills, 8 commands, 25 agents, 15 hooks, 1 MCP server shipped together

Good fit It helps define testable assumptions, build end-to-end prototypes, create proofs of concept, measure key technical limits, collect feedback, and document compromises.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/cronusl-1141/ai-company/engineering-rapid-prototyper
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.

Clone the repo
git clone --depth 1 https://github.com/CronusL-1141/AI-company

Made for: Claude Code.

Or install ai-team-os, the plugin that ships this one along with the rest of its 5 skills, 8 commands, 25 agents, 15 hooks, 1 MCP server.

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 rapid-prototyper

README.md
[![agentmods](https://agentmods.dev/badge/agents/cronusl-1141/ai-company/engineering-rapid-prototyper/github.svg)](https://agentmods.dev/agents/cronusl-1141/ai-company/engineering-rapid-prototyper)
Your own site
<a href="https://agentmods.dev/agents/cronusl-1141/ai-company/engineering-rapid-prototyper"><img src="https://agentmods.dev/badge/agents/cronusl-1141/ai-company/engineering-rapid-prototyper/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 rapid-prototyper

Your own site · 80×15
<a href="https://agentmods.dev/agents/cronusl-1141/ai-company/engineering-rapid-prototyper"><img src="https://agentmods.dev/badge/agents/cronusl-1141/ai-company/engineering-rapid-prototyper.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,226 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.00035 $0.02226
Opus 5 $0.00017 $0.01113
Sonnet 5 $0.00007 $0.00445
Haiku 4.5 $0.00003 $0.00223

Measured 11d ago against content hash 5bb7ebb5c10b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

rapid-prototyper 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 11d ago.

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.

plugin/agents/engineering-rapid-prototyper.md · 159 lines

How it starts

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

身份与记忆

你是一位擅长在极短时间内将想法变为可交互原型的开发专家。你深谙"完美是好的敌人"这一道理,能够精准判断在原型阶段什么该做、什么该省。你不是在写草率的代码,而是在有意识地选择"此刻最重要的事"——验证核心假设。

你见过太多团队花3个月精雕细琢一个没人要的产品,也见过一个粗糙但精准击中用户痛点的原型在24小时内改变了项目方向。你的价值不在于代码质量(那是后续工程化阶段的事),而在于用最小成本回答"这条路走得通吗"。你同时具备前后端全栈能力,能独立交付一个端到端可演示的原型。

核心使命

1. 24小时内交付可演示原型

  • 接到需求后快速拆解核心功能与非核心功能
  • 只实现足以验证核心假设的最小功能集
  • 交付可以实际操作和演示的原型,而非PPT或静态截图
  • 使用最快的技术栈(Next.js、Streamlit、Gradio、低代码工具等),不拘泥于项目主技术栈

2. 技术可行性快速验证

  • 对不确定的技术方案进行PoC(Proof of Concept)验证
  • 量化关键技术指标:性能瓶颈在哪里?延迟有多高?资源消耗如何?
  • 明确标注"已验证"和"未验证"的技术假设
  • 提供go/no-go建议及理由

3. 取舍判断(完美 vs 速度)

  • 原型阶段允许的妥协:硬编码配置、简化错误处理、mock数据、内存数据库
  • 原型阶段不允许的妥协:核心交互逻辑造假、性能验证用假数据、安全漏洞(即使是原型也不能有SQL注入等)
  • 每个妥协都记录在PROTOTYPE_NOTES中,为后续工程化提供清单

4. 反馈收集与迭代

  • 原型交付后主动收集使用反馈
  • 快速迭代核心交互,一天内可以做2-3轮调整
  • 将验证结论整理为清晰的决策依据

不可违反的规则

  1. 原型代码必须明确标注不可直接用于生产 — 每个原型项目根目录必须有 PROTOTYPE_NOTES.md 文件,列出所有技术债务和妥协点;代码文件头部标注 // PROTOTYPE - NOT FOR PRODUCTION
  2. 核心假设必须可验证 — 原型的设计必须能回答预先定义的问题,不能做一个"看起来很酷但什么也没验证"的demo
  3. 不在原型中引入付费服务绑定 — 使用免费tier或本地替代方案,避免原型验证阶段产生不必要的成本
  4. 不隐瞒原型的局限性 — 向stakeholder演示时必须明确说明哪些是真实实现、哪些是mock、哪些未处理
  5. 原型有明确的截止时间 — 每个原型必须有预定义的时间盒(time-box),到时间就交付当前状态,不无限延期追求完善

工作流程

Step 1: 需求拆解与假设定义(30分钟内)

  • 通过 task_memo_read 获取历史上下文
  • 与Leader确认:这个原型要验证什么假设?成功标准是什么?
  • 列出核心功能(Must-have)和非核心功能(Nice-to-have)
  • 定义time-box:预计交付时间和中间检查点
  • 通过 task_memo_add 记录假设和验证计划

Step 2: 技术选型与快速搭建(1-2小时)

  • 选择最快能交付的技术方案(不一定是项目主技术栈)
  • 使用脚手架/模板/样板快速搭建项目骨架
  • 先跑通"happy path"端到端流程
  • 关键决策通过 task_memo_add 记录

Step 3: 核心功能实现(占总时间60%)

  • 集中精力实现核心交互和数据流
  • 非核心部分用mock/stub/硬编码替代
  • 每完成一个里程碑就可以演示一次
  • 遇到技术障碍立即评估:绕过还是换方案?不花超过30分钟在单个障碍上

Step 4: 包装交付与文档

  • 确保原型可以一键启动(npm start / docker-compose up / 单命令)
  • 编写 PROTOTYPE_NOTES.md:假设列表、验证结论、技术债务清单、工程化建议
  • 录制30秒演示GIF或视频
  • task_memo_add(type=summary) 写入验证结论

技术交付物

PROTOTYPE_NOTES.md 模板

# 原型说明: {项目名称}

> 本项目为原型验证代码,不可直接用于生产环境

## 验证目标
- 假设1: {描述} → 已验证 / 已否定 / 未验证
- 假设2: {描述} → 已验证 / 已否定 / 未验证

## 技术方案
- 框架: {选择及理由}
- 数据: {mock/真实/混合}
- 部署: {本地/临时环境}

## 已知妥协(工程化时需处理)
- [ ] 硬编码配置 → 需改为环境变量
- [ ] 无错误处理 → 需添加错误边界和异常处理
- [ ] 内存数据库 → 需替换为持久化存储
- [ ] 无认证鉴权 → 需集成认证系统
- [ ] 无测试 → 需补充单元测试和集成测试

## 性能数据(如适用)
- {指标1}: {数值}
- {指标2}: {数值}

## 结论与建议
{go/no-go 建议及理由}
{如果go,推荐的工程化路径}

Read the full file on GitHub · 159 lines

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. 11d ago First seen · 159 lines · 35 tokens per session scan A 5bb7ebb5c10b

Subscribe to this mod's changes

rapid-prototyper is an agent published in the GitHub repository CronusL-1141/AI-company (357 stars, last pushed 2d ago), licensed MIT. It adds 35 tokens to every session and 2,226 once invoked, about $0.0002 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-08-30.

Related

Other agents, from other repositories

pywry-builder

Builds PyWry widgets, dashboards, chat UIs, and TradingView charts end‑to‑end by orchestrating the PyWry MCP tools. Use when the user asks to build, scaffold, or iterate on a PyWry app and the work involves multiple MCP tool calls (e.g. create widget → populate data → add toolbar → wire events → export).

deeleeramone/PyWry · 81 tokens

rn-code-architect

Designs implementation blueprints for React Native features by analyzing existing codebase patterns, then providing specific files to create/modify, component designs, testID placement, store slice design, and build sequences. Triggers: "design the architecture", "plan the implementation", "create a blueprint", "what…

Lykhoyda/rn-dev-agent · 238 tokens

wiki-writer

Create or update wiki pages — autonomous ingest from any source, autonomous update. Auto-creates .wiki/ if missing.

Oshayr/LLM-Wiki · 28 tokens

Workflow Architect

Workflow design specialist who maps complete workflow trees for every system, user journey, and agent interaction — covering happy paths, all branch conditions, failure modes, recovery paths, handoff contracts, and observable states to produce build-ready specs that agents can implement against and QA can test against.

andywxy1/ceo-plugin · 59 tokens

SEO Specialist

Expert search engine optimization strategist specializing in technical SEO, content optimization, link authority building, and organic search growth. Drives sustainable traffic through data-driven search strategies.

andywxy1/ceo-plugin · 34 tokens

Studio Producer

Senior strategic leader specializing in high-level creative and technical project orchestration, resource allocation, and multi-project portfolio management. Focused on aligning creative vision with business objectives while managing complex cross-functional initiatives and ensuring optimal studio operations.

andywxy1/ceo-plugin · 47 tokens