Files
nexus/wiki/concepts/点-线-体-迭代.md
2026-04-17 08:38:12 +08:00

33 lines
952 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "点-线-体迭代"
type: concept
tags: [vibe-coding, workflow]
---
## 定义
一种逐级迭代的开发方法,从单个任务(点)开始,逐步扩展到任务链(线),最终形成完整系统(体)。
## 在 Vibe Coding 中的作用
对应使用范围内的任务,先打磨好单个基础任务,然后基于此进行批量执行。
## 迭代层次
1. **点Point**:单个基础任务
- 最小可执行单元
- 验证基本功能正确性
2. **线Line**:任务链
- 多个相关任务串联
- 验证任务间协作
3. **体System**:完整系统
- 任务链组合形成系统
- 验证整体功能
## 应用场景
- 新功能开发:先实现最小功能,验证后再扩展
- AI 代理任务:先处理单个请求,处理稳定后再批量执行
- 系统集成:先验证点对点通信,再构建完整网络
## 关联概念
- [[Vibe-Coding]]
- [[伪代码]]