96SEO 2026-08-02 18:18 1
早期使用 AI 编程时人们习惯直接在聊天框里说一句“给登录页加个验证码”,接下来让模型开始改代码。这种方式很快,也很刺激,所以被称为 Vibe Coding。但项目稍微复杂一点,问题就出现了:模型不知道哪些行为不能破坏。不记得十轮之前确认过什么也分不清一句需求是在描述业务目标还是暗示技术方法。它可能飞快地交付一套完整实现,只是实现了错误的东西。

使用者痛点:缺乏上下文记忆导致需求漂移,模型频繁产生误解。
SDD 正是针对这种失控感出现的。它的基本主张并不复杂:不要让 Agent 收到一句模糊指令就立刻写代码,先把要做什么写清楚。 一套常见流程大致如下:
不同工具给这些文件起了不同名字。但结构大同小异,Kiro 常见的是 requirements.md → design.md → tasks.md;GitHub spec‑kit 会生成 Spec、计划、研究和任务等一组文件;OpenSpec 则用 proposal、delta spec、design、tasks 组织一次变更,并在归档时把增量需求合并进长期 Spec。
它的出发点是合理的。Coding Agent 的能力越强,理解偏差的破坏力越大。人手写错十行代码,评审时往往能看出来;不过,Agent 在错误前提上一次生成几十个文件。表面上却可能结构完整、测试齐全。先明确目标、约束和验收条件,可以让人和模型在付出实现成本之前发现分歧。
使用者痛点:缺少统一的需求表达导致反复返工,团队难以追踪谁负责哪些信息。
SDD 也顺应了一个很有吸引力的想象:既然大模型已经能把自然语言翻译成代码。开发者是否可以从代码细节中进一步抽身,转而维护更高层的业务意图?Spec 成为人和 AI 的共同语言,代码退化为可生成的“最终一公里”。需求变了就改 Spec,Agent 自动传播到设计、任务、测试和实现。不再围绕代码展开,而是围绕意图展开。
This narrative hits several real pains in AI coding: context loss across chat turns,ambiguous prompts yielding random results,need for task decomposition,multi‑person review,and verification of agent output. After tools like GitHub spec‑kit。AWS Kiro,OpenSpec,Tessl appeared,SDD quickly morphed from a prompt‑organization trick into a touted new development paradigm.
使用者痛点:团队缺乏可复用的高层意图文档,使得每次迭代都要重新解释需求。
问题也恰好出在这里。 "编码前把需求写清楚"是一个朴素而正确的建议。但它并不能自然推出"Spec 应该成为长期事实来源",更不能推出"多数项目都需要一套 SDD 工作流”。
使用者痛点:Spec 的维护成本与收益之间缺乏明确衡量标准。其实,
每隔一段时间。软件领域都会重新发明一次“只要把需求写得足够清楚,代码就会自然出现”。以前叫 CASE、MDD、DSL、低代码,现在叫 Spec‑Driven Development。新故事里的关键角色从确定性代码生成器换成了大模型,旧问题却一个没少:谁来保证描述正确。谁来维护描述与实现的一致,需求变化后谁负责同步,还有这份描述究竟给谁看。 说起来,
使用者痛点:治理责任模糊导致文档与实现脱钩。
我的判断很直接:Spec‑first 在部分任务中有价值;Spec‑anchored 需要极强的治理能力;Spec‑as‑source 对多数业务项目仍接近一场昂贵的信仰实验。把三者统称为 SDD,再把最理想化的收益宣传给所有项目,是问题所在。
Birgitta Böckeler 是 Thoughtworks 的杰出工程师,拥有二十多年的软件开发、架构与技术领导经验。不过, 她在 Martin Fowler 的个人网站发表《Understanding Spec-Driven-Development: Kiro。spec-kit,and Tessl》,结合对 Kiro、spec-kit 和 Tessl 的实际试用,对 SDD 的定义与现实适用性提出了程序质疑。怎么说呢,她把当前简单讲 SDD 分成了三层:
This three‑tier view looks like degrees of commitment but actually represents three fundamentally different engineering contracts.
Spec 本身也没有稳定定义。它可能是使用者故事、验收标准、PRD、技术设计、接口契约、任务清单、领域规则…一个词同时装下“为什么做、做什么、怎么做、如何验证”。得到的不是统一语言,而是一只没有所有者的文档泥潭。
| 合格工程产物必须回答的问题 | |
|---|---|
|
If se questions remain unanswered,“Spec is single source of truth” is just a marketing slogan.
A one‑off spec that only serves current Coding Agent and can be discarded after task is essentially a templated Prompt. Structured format brings clarity—fixed goals,constraints and acceptance criteria—but does not magically grant factual authority.
The more honest approach is “planning-with-files”: #task_plan.md。#findings.md,#progress.md. These files record **state** rar than **truth**,can be archived or deleted once irrelevant,and avoid building an unnecessary parallel knowledge base.
If a spec is intended to live long term for product & engineering review—defining business behavior and acceptance—n it overlaps with existing artifacts:
The core question becomes: **Who is this spec for?**
A mature codebase already has many knowledge carriers: PRDs,ADRs,code,tests,schemas,monitoring/logs。Issues & Git history .
Add a long‑living spec on top of m and you don’t replace anything—you create an extra artifact that must be kept in sync. Every change now asks “Which documents need updating?” increasing risk of divergence.
User Pain: Document drift multiplies maintenance effort without improving safety.If first inference is wrong,subsequent cycles reinforce mistake across both docs—a classic “context corruption”. Code still benefits from compilers & tests;natural language specs lack such automatic checks.
User Pain: The verification bottleneck shifts from compile errors to human review of lengthy natural language documents.The difficulty in legacy systems isn’t lack of description—it’s contradictory existing artifacts. Code may reflect outdated requirements;tests protect accidental behaviours;comments may be years old;configuration may have diverged from source control;话说回来,veterans remember exception rules after incidents.
If you ask an agent to reverse engineer a full spec from such a system you face an unsolvable semantic problem: Is generated text describing **business intent** or merely **current behaviour**?
User Pain: The risk of “documenting away” technical debt by reclassifying quirks as official requirements.An effort to backfill Specs across millions of lines equals re‑understanding entire system—a costly digital archaeology exercise that rarely yields ROI. Even when tools like OpenSpec advocate incremental delta Specs instead of full backfills,y still inherit core contradictions:
User Pain: The team ends up with some specs y trust too much while ignoring large undocumented zones.
User Pain: Overinvesting in detailed specs creates “documentation tax”。slowing iteration.
If tomorrow’s decision flips today’s written proposal/spec/design/tasks — you’ve just wasted effort on paperwork rar than learning from experiments. Teams eir become bogged down maintaining specs or abandon m entirely – ending up with stale “source of truth” artifacts that nobody trusts.
User Pain: The “formal context” gives illusion of control while actual risk migrates into hard-to-verify natural language.
| 内容 | 合适载体 | 原因 |
|---|---|---|
| 当前任务目标/计划/发现/进度 | planning-with-files 或类似任务文件 | |
| 产品目标与验收边界 | PRD / Issue / 使用者故事 | 有明确业务 Owner,可随产品决策演进 |
| 关键且长期技术决策 | ADR | 记录背景、“为什么”、代价及备选方案 |
| API / 数据跨服务契约 | /OpenAPI,Protobuf,Schema,类型 | |
| 稳定业务行为 | ;自动化测试 / 合约测试 / 示例 | ;可执行,失败即给出明确反馈 |
| 当前实现 & 实际调用链 | ;代码 / 运行结果 / 日志 / Tracing | ;证明程序现在真的做了什么 |
| 临时假设与探索结论 | ;对话稿件 / findings.md | |
User Pain: Lack of explicit rationale makes future teams repeat past mistakes or make uninformed changes.
作为专业的SEO优化服务提供商,我们致力于通过科学、系统的搜索引擎优化策略,帮助企业在百度、Google等搜索引擎中获得更高的排名和流量。我们的服务涵盖网站结构优化、内容优化、技术SEO和链接建设等多个维度。
| 服务项目 | 基础套餐 | 标准套餐 | 高级定制 |
|---|---|---|---|
| 关键词优化数量 | 10-20个核心词 | 30-50个核心词+长尾词 | 80-150个全方位覆盖 |
| 内容优化 | 基础页面优化 | 全站内容优化+每月5篇原创 | 个性化内容策略+每月15篇原创 |
| 技术SEO | 基本技术检查 | 全面技术优化+移动适配 | 深度技术重构+性能优化 |
| 外链建设 | 每月5-10条 | 每月20-30条高质量外链 | 每月50+条多渠道外链 |
| 数据报告 | 月度基础报告 | 双周详细报告+分析 | 每周深度报告+策略调整 |
| 效果保障 | 3-6个月见效 | 2-4个月见效 | 1-3个月快速见效 |
我们的SEO优化服务遵循科学严谨的流程,确保每一步都基于数据分析和行业最佳实践:
全面检测网站技术问题、内容质量、竞争对手情况,制定个性化优化方案。
基于用户搜索意图和商业目标,制定全面的关键词矩阵和布局策略。
解决网站技术问题,优化网站结构,提升页面速度和移动端体验。
创作高质量原创内容,优化现有页面,建立内容更新机制。
获取高质量外部链接,建立品牌在线影响力,提升网站权威度。
持续监控排名、流量和转化数据,根据效果调整优化策略。
基于我们服务的客户数据统计,平均优化效果如下:
我们坚信,真正的SEO优化不仅仅是追求排名,而是通过提供优质内容、优化用户体验、建立网站权威,最终实现可持续的业务增长。我们的目标是与客户建立长期合作关系,共同成长。
Demand feedback