Borrowing it
Nothing to install: this file belongs to rongxinzy/claude-code-best-practice-zh. 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/rongxinzy/claude-code-best-practice-zh/main/.claude/skills/presentation/vibe-to-agentic-framework/SKILL.mdgit clone --depth 1 https://github.com/rongxinzy/claude-code-best-practice-zhWrote 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/rongxinzy/claude-code-best-practice-zh/vibe-to-agentic-framework)<a href="https://agentmods.dev/skills/rongxinzy/claude-code-best-practice-zh/vibe-to-agentic-framework"><img src="https://agentmods.dev/badge/skills/rongxinzy/claude-code-best-practice-zh/vibe-to-agentic-framework/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/rongxinzy/claude-code-best-practice-zh/vibe-to-agentic-framework"><img src="https://agentmods.dev/badge/skills/rongxinzy/claude-code-best-practice-zh/vibe-to-agentic-framework.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.00056 | $0.03478 |
| Opus 5 | $0.00028 | $0.01739 |
| Sonnet 5 | $0.00011 | $0.00696 |
| Haiku 4.5 | $0.00006 | $0.00348 |
Grade A, and why
vibe-to-agentic-framework 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 12d 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 — 171 lines — stays where its author put it; the contents beside it link to each section on GitHub.
"从 Vibe 编码到智能体工程"框架
本技能教授演示文稿背后的概念模型。每张幻灯片和每个章节的存在都是为了讲述一个故事:开发者如何逐步从无结构的"Vibe 编码"(低等级)发展到高水平的智能体工程(高等级)。
核心概念
**Vibe 编码(低等级)**是指开发者在没有任何结构的情况下使用 Claude Code —— 没有项目上下文、没有规范、没有可复用的知识。每次提示都是在碰运气。Claude 可能会创建随机的端点、忽略现有模式、跳过测试,并产生不一致的代码。每次交互都会使代码库趋向混乱。
**智能体工程(高等级)**是指 Claude Code 作为一个完全配置好的工程系统运行。它了解项目架构(CLAUDE.md),遵循有范围的规范(Rules),按需加载领域专业知识(Skills),委派给专业工作者(Agents),编排多步骤工作流(Commands),自动化生命周期事件(Hooks),并连接外部工具(MCP 服务器)。每次提示都能产生一致、经过测试、生产级的代码。
这两个极端之间的旅程是渐进和累积的。每个最佳实践都建立在前一个之上,演示文稿按照开发者应该采用的顺序教授它们。
4 级旅程系统
演示使用 4 级评分系统而非百分比进度条:
| 等级 | 顺序 | 颜色 | 旅程栏高度 | 描述 |
|---|---|---|---|---|
| 低 | 1 | 红色/橙色 (hsl(0, 70%, 45%)) |
25% | Vibe 编码领域 —— 无结构 |
| 中 | 2 | 黄色 (hsl(40, 70%, 45%)) |
50% | 结构化工作流,一定程度的自动化 |
| 高 | 3 | 浅绿色 (hsl(80, 70%, 45%)) |
75% | 领域知识、技能、自定义智能体 |
| 专业 | 4 | 深绿色 (hsl(120, 70%, 45%)) |
100% | 完整的智能体工程,多智能体团队 |
旅程栏在第 1 张幻灯片(标题幻灯片)上隐藏,从第 2 张幻灯片开始显示。等级通过在关键过渡幻灯片上设置 data-level 属性来设定,并由后续幻灯片继承,直到下一个等级变化。当等级变化时,.level-badge 会被 JS 注入到幻灯片的 h1 中(请勿在 HTML 中硬编码这些)。
贯穿示例:TodoApp 单体仓库
每种技术都通过真实的全栈项目演示。演示展示了从普通项目(Vibe 编码)到具有完整 Claude Code 配置的项目(智能体工程)的转换:
之前(Vibe 编码):
todoapp/
├── backend/ # FastAPI (Python)
│ ├── main.py
│ ├── routes/
│ ├── models/
│ └── tests/
└── frontend/ # Next.js (TypeScript)
├── components/
├── pages/
└── lib/
之后(智能体工程):
todoapp/
├── .claude/ # Claude Code 配置
│ ├── agents/ # 自定义子智能体
│ ├── skills/ # 领域知识
│ ├── commands/ # 斜杠命令
│ ├── hooks/ # 生命周期脚本
│ ├── rules/ # 模块化指令
│ ├── settings.json # 团队设置
│ └── settings.local.json # 个人设置
├── backend/
│ └── CLAUDE.md # 后端指令
├── frontend/
│ └── CLAUDE.md # 前端指令
├── .mcp.json # 托管 MCP 服务器
└── CLAUDE.md # 项目指令
**为什么选择 TodoApp?**它足够小可以放在幻灯片上,但又足够复杂可以展示真实问题:具有路由模式和测试约定的后端、具有组件层次结构和设计令牌的前端,以及需要跨后端和前端协调的单体仓库结构。
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.
- 12d ago First seen · 171 lines · 56 tokens per session scan A 02050f3cfbaa
vibe-to-agentic-framework is a skill published in the GitHub repository rongxinzy/claude-code-best-practice-zh (6 stars, last pushed 5mo ago), licensed MIT. It adds 56 tokens to every session and 3,478 once invoked, about $0.0003 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…
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
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…