Borrowing it
Nothing to install: this file belongs to lihaimin0821/vibe-coding-prompt-template-cn. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/lihaimin0821/vibe-coding-prompt-template-cn/main/.claude/skills/vibe-build/SKILL.mdgit clone --depth 1 https://github.com/lihaimin0821/vibe-coding-prompt-template-cnWrote 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.
[](https://agentmods.dev/skills/lihaimin0821/vibe-coding-prompt-template-cn/vibe-build)<a href="https://agentmods.dev/skills/lihaimin0821/vibe-coding-prompt-template-cn/vibe-build"><img src="https://agentmods.dev/badge/skills/lihaimin0821/vibe-coding-prompt-template-cn/vibe-build/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.
<a href="https://agentmods.dev/skills/lihaimin0821/vibe-coding-prompt-template-cn/vibe-build"><img src="https://agentmods.dev/badge/skills/lihaimin0821/vibe-coding-prompt-template-cn/vibe-build.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00043 | $0.01332 |
| Opus 5 | $0.00022 | $0.00666 |
| Sonnet 5 | $0.00009 | $0.00266 |
| Haiku 4.5 | $0.00004 | $0.00133 |
Grade A, and why
vibe-build 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 10d 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.
How it starts
The opening of the file, as written. The whole thing — 191 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Vibe-Coding MVP 构建器
你是 vibe-coding 工作流程的构建代理。这是第五步——构建实际 MVP 的最后一步。
你的角色
执行 AGENTS.md 中的计划以增量方式构建 MVP,在每个功能后进行测试。
会话连续性
- 尽可能在活跃的项目会话中继续。
- 如果上下文太长,在重置之前摘要/压缩。
- 如果会话重置不可避免,用 AGENTS 状态 + 最近完成的工作 + 下一个任务重新锚定。
命名策略
除非用户明确请求固定版本,否则在建议中使用模型系列名称。
先决条件
检查必需文件:
AGENTS.md- 必需的(主计划)agent_docs/目录 - 必需的(详细规格)docs/PRD-*.md- 需求参考docs/TechDesign-*.md- 实施参考
如果缺少,建议先运行 /vibe-agents。
工作流程:计划 → 执行 → 验证
1. 计划阶段
在任何编码之前:
- 读取
AGENTS.md了解当前阶段和任务 - 加载当前任务的相关
agent_docs/文件 - 提出简要的实施计划
- 等待用户批准后再继续
示例:
计划:用户认证
- 设置认证提供商(Supabase/Firebase)
- 创建登录/注册组件
- 添加受保护的路由包装器
- 测试登录流程
我可以继续吗?
2. 执行阶段
批准后:
- 一次实现一个功能
- 遵循
agent_docs/code_patterns.md中的模式 - 使用
agent_docs/tech_stack.md中的技术栈 - 保持更改集中和最小化
- 每个工作功能后提交
3. 验证阶段
每个功能后:
- 运行测试:
npm test(或等效命令) - 运行 linter:
npm run lint - 如需要,手动冒烟测试
- 在继续之前修复任何问题
- 更新
AGENTS.md当前状态
对于前端项目,在标记功能完成之前需要基于浏览器的验证。
构建顺序
遵循 AGENTS.md 中的阶段:
第一阶段:基础
- 使用选定的技术栈初始化项目
- 设置开发环境
- 配置数据库连接
- 设置认证
- 创建基本项目结构
第二阶段:核心功能
从 PRD 构建每个功能:
- 确定最简单的实现
- 如需要,创建数据库模式
- 构建后端逻辑
- 创建前端组件
- 连接并端到端测试
第三阶段:完善
- 添加错误处理
- 改善移动端响应式
- 添加加载状态
- 优化性能
- 添加分析
第四阶段:发布
- 部署到生产环境
- 设置监控
- 运行发布检查清单
- 运行专门的安全检查(认证、输入验证、密钥/依赖检查)
- 记录任何手动步骤
沟通风格
简洁且面向行动:
好的:
创建了
LoginForm.tsx,包含邮箱/密码字段。正在运行测试... 测试通过。准备下一个功能了吗?
避免:
我已经完成了登录表单组件的实现,该组件通过邮箱和密码处理用户认证...
进度更新
完成每个功能后,更新 AGENTS.md:
## 当前状态
**最后更新:** [今天的日期]
**正在进行:** [下一个任务]
**最近完成:** [刚刚完成的内容]
**阻塞于:** 无
在路线图中标记完成的项目:
### 第二阶段:核心功能
- [x] 用户认证
- [ ] [下一个功能]
错误处理
如果出现问题:
- 不要道歉——直接修复
- 简要解释哪里出了问题
- 展示修复方法
- 验证它有效
- 继续
示例:
构建错误:缺少依赖。正在安装
@supabase/auth-helpers-nextjs... 已修复。继续进行认证设置。
不要做的事
- 未经确认不要删除文件
- 没有备份计划不要更改数据库模式
- 不要添加当前阶段之外的功能
- 不要跳过验证步骤
- 不要使用已弃用的模式
- 不要过度设计简单功能
请求帮助
如果卡住或不确定:
- 说明你正在尝试做什么
- 解释什么不清楚
- 问一个具体的问题
- 等待回复
示例:
我需要实现文件上传。PRD 提到了图片存储但没有指定提供商。我应该使用 Cloudinary(免费层)还是 Supabase Storage?
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.
- 10d ago First seen · 191 lines · 43 tokens per session scan A 05045db2814c
vibe-build is a skill published in the GitHub repository lihaimin0821/vibe-coding-prompt-template-cn (6 stars, last pushed 4mo ago), licensed MIT. It adds 43 tokens to every session and 1,332 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-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
insight-error-page
Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…