Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

vibe-coding-blueprint氛围编码蓝图

Agent Skill

vibe-coding-blueprint 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,163

周安装

177

GitHub Stars

公开资料未说明

下载量

1,458
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:vibe-coding-blueprint(氛围编码蓝图)
来源仓库:https://github.com/xiaoxiangxie/vibe-coding-blueprint
安装命令:
openclaw skills install vibe-coding-blueprint
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install vibe-coding-blueprint

简介

文档驱动的全生命周期编程方法,覆盖项目启动到维护。

  • 适合新项目开发、模块扩展与遗留代码调试场景。
  • 生成结构化文档与实现路径,降低沟通成本与理解偏差。
  • 安装命令:openclaw skills install vibe-coding-blueprint。
  • 建议结合团队规范定制模板,避免通用方案不适用。

SKILL.md

name
vibe-coding-blueprint
description
A document-driven AI programming methodology. Use when: (1) starting a new code project, (2) adding a new feature module, (3) debugging a bug, (4) code becomes messy and needs refactoring, (5) user mentions vibe coding, document-driven, small-step iteration. Core: plan-first, iterate in small steps, documents as memory, human in command.

Vibe Coding Blueprint

A document-driven AI programming methodology. AI is like a "highly capable but occasionally careless new hire." Your role is Architect and Decision Maker — not overseer.

  • AI handles high-speed code output
  • You handle judgment, decisions, and root cause diagnosis
  • The steering wheel stays in your hands

Core Philosophy

AI code generation is powerful but fragile. Without structure, it produces code that works once but becomes unmaintainable over time. This methodology solves that through documents as memory — a self-referential documentation system that lets AI resume from any state without losing context.


The Workflow

Phase 0: Check Project Documentation Status

Important: At the start of every conversation, check if the project already has documentation:

  1. Check if docs/README.md exists
  2. Check if docs/ARCHITECTURE.md exists
  3. Check if docs/PROJECT_STRUCTURE.md exists
  4. Check if main source folders have FOLDER.md

If documentation exists:

Project documentation detected:
- docs/README.md
- docs/ARCHITECTURE.md
- docs/PROJECT_STRUCTURE.md
- [list of FOLDER.md files]

I will read these docs first to understand the project context before starting work.

If no documentation:

No documentation structure found.
Please choose:
A) Initialize documentation (recommended) — generate a complete documentation structure
B) Skip initialization — start working directly without docs

Choose [A/B]:

Phase 1: Blueprint — Design the Architecture First

Goal: Think through the entire system architecture in your head, then output it to a formal document.

Steps:

  1. Define the core problem the system solves
  2. Break down core modules
  3. Map data flow and key dependencies
  4. Output to docs/ARCHITECTURE.md

Output file: docs/ARCHITECTURE.md


Phase 2: Establish Fractal Documentation Structure

Goal: Build a self-referential documentation system. AI can return to any prior state and continue working.

Three-Layer Documentation System

Layer 1 — Root documentation

docs/
├── README.md              # Root doc, declares update mechanism
├── ARCHITECTURE.md       # System architecture overview
├── PROJECT_STRUCTURE.md   # Project structure guide (quick navigation)
└── superpowers/
    └── DAILY.md           # Daily change log

Layer 2 — Folder-level docs (one FOLDER.md per folder, ≤3 lines)

# [Folder Name] Architecture

**Role:** [One-line description]
**Contains:** [file name] - [function], [file name] - [function]

> ⚠️ If this folder changes, update this document

Layer 3 — Code file header (3 lines)

// input:  [what this file depends on externally]
// output: [what this file provides to others]
// pos:    [this file's role in the local system]
// ⚠️ When this file is updated, update its header and the parent FOLDER.md

Self-reference mechanism: Local changes propagate to global; global changes propagate to local. When any file changes, it automatically triggers a cascade of documentation sync.


Phase 3: Develop Module by Module (Core Loop)

Each feature module follows these steps:

Step 1: Design the Plan First (Plan-Before-Code)

Do not write code immediately. Have AI output the technical implementation plan first, then you review and adjust.

Prompt template:

Before implementing [module name], please output the technical implementation plan:
1. Data model design (table schema or type definitions)
2. Core interfaces (function names, params, return values)
3. Dependencies on other modules
4. Key implementation details
5. Potential pitfalls

I will review and confirm before you start coding.

Your (human) responsibilities:

  • Review if the plan is sound
  • Adjust permission and boundary design
  • Confirm tech stack choices
  • Add missing edge cases

Step 2: Break Into Small Tasks

Split the module into small, independently completable tasks.

Each small task includes:

  • ✅ Clear objective
  • ✅ Technical approach
  • ✅ Implementation steps
  • ✅ Verification method

Step 3: Implement One Small Task at a Time

Order: Foundation → Business logic → UI layer

After completing each small task, immediately:

  1. Update the code file's header comments
  2. Update the parent folder's FOLDER.md
  3. Run verification (unit test, demo page, or manual test)

Prompt template (after verification):

Verification passed. Now please:
1. Update [filename] header comments (if implementation changed)
2. Update docs/[folder]/FOLDER.md (if interfaces changed)
3. If there are cross-folder dependencies, sync related docs

Step 4: End-to-End Integration

After all modules are complete, run end-to-end tests.


Phase 4: Debugging (Human-in-Command Moment)

Most important principle: When the same problem remains unfixed after 2–3 iterations, stop immediately. This signals the model is trapped in a wrong framework.

Debugging Steps

Step 1: Recognize danger signals

  • Model has modified the same issue 2–3+ times without resolution
  • Fixing one thing breaks another (patch on patch)
  • Code is getting messier, not cleaner

Step 2: Human diagnoses root cause

  • Read error messages, but don't stop at surface level
  • Use logs, breakpoints, and code tracing to find the real cause
  • Ask: Which module did the problem occur in? Why did it happen? What is the root cause?

Step 3: Tell the model the root cause explicitly

❌ Don't say: There's a bug here, please fix it ✅ Say: Your previous assumption was wrong. The real problem is: [specific description of root cause, including why]. Based on this understanding, please re-implement.

Step 4: Let the model re-generate based on correct understanding


Phase 5: Iteration

ScenarioEntry
New featureBack to Step 1 — treat it as a mini project; note existing stack in "System background"
Performance/UX issueDebugging mode — describe problem + paste relevant code
Messy codeRedesign module boundaries, then start adding features

Human-AI Role Table

PhaseYour RoleAI's Role
PlanningArchitecture decisions, permission boundaries, tech choicesPlan review, feasibility analysis, detail supplementation
CodePlan review, code review, key troubleshootingHeavy lifting (CRUD, interface docs, field sync)
Root causeRoot cause analysis, problem diagnosisFix based on your guidance
TestingTest design, edge case supplementationTest script generation, demo pages

Common AI Pitfalls & Solutions

1. API Hallucination

AI invents APIs, library functions, or interfaces that don't exist. Solution: Emphasize in prompts "use only APIs from official documentation." Verify against official docs when needed.

2. Repeated Patching on Wrong Assumptions

AI keeps modifying code based on a wrong foundational assumption, making things worse. Solution: Diagnose the root cause yourself, then explicitly tell AI what the wrong assumption was.

3. Over-Engineering

AI generates excessive design patterns, factory functions, and decorators. Solution: Delete freely during code review. Keep code simple.

4. Missing Edge Cases

AI only implements the happy path; null checks, exceptions, and concurrency are neglected. Solution: Enumerate edge cases in prompts upfront, or supplement during the testing phase.


Prompt Template Library

Start a New Project

I want to start a new project: [project description]
Please help me output the project architecture doc first:
1. Core module breakdown
2. Data flow relationships
3. Tech stack recommendations

I will confirm before you set up documentation structure and start coding.

Add a New Feature

I want to add [new feature] to [existing module].
Please output the technical implementation plan first.
I will confirm before you start coding.

Debugging Request

I'm encountering a problem:
- Symptom: [description]
- Expected: [expected behavior]
- Actual: [actual behavior]

I've tried: [attempts so far]

Before fixing, please analyze possible causes. I'll tell you the root cause and then we'll fix it.

Sync Docs After Update

[module name] is complete. Please sync:
1. Header comments in [filename] (if interfaces changed)
2. docs/[folder]/FOLDER.md
3. docs/ARCHITECTURE.md (if significant changes)
4. docs/PROJECT_STRUCTURE.md (if new modules added)

Initialize Documentation for Existing Project

This is an existing project without documentation. Please initialize its documentation structure.
Note: Initialization starts by exploring the actual project structure, not assuming a specific layout (like src/), then generates documentation matched to the real structure.

Efficiency Target

If this methodology is followed strictly, content you genuinely need to write yourself should be < 5%:

  • Minor wording adjustments
  • Root cause analysis and problem diagnosis
  • Boundary case decisions
  • Code review and architecture adjustments

AI handles the remaining 95%: heavy lifting, repetitive work, high-speed code generation.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

87.95%
按下载量换算1,282

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills