Agent-first Engineering OS

Yousa Driven Development (YDD)

面向 AI 协作编程的实践手记

把自己在腾讯的一线工程经验 + AI 协作实验都放进一册「YDD」。不卖课,只是把真实的工程笔记、踩坑、工具链迭代写清楚。

  • Infra Notes

    Golang、K8S、OpenResty、APISIX、Istio、Envoy 的落地记录

  • AI Pairing

    让模型当队友的 Prompt/Agent/工具链实验手记

  • Personal Stack

    写作、知识管理、Dev Workflow 的自定义脚本与仪式感

YDD Sprint

最近在写些什么

聚焦「AI 协作编程」&「云原生基础设施」的真实进展。

  • APISIX / Envoy 的插件实践 & 边车策略
  • 把 LLM 接入工作流:Prompt 合同、工具协议、回放机制
  • 如何把写作、产品、工程节奏融合成一个长期栈

Working with AI, or, The Amplifier of Thought

Recently, I needed to write a recommendation for a drawing tutorial. This small task brought me face to face with a fundamental question: a good recommendation must be honest—it needs to present both strengths and limitations. Any recommendation that’s nothing but praise is a form of deception. When faced with this situation, most people might simply tell AI: “Write a sincere recommendation.” This is a mistake. You’ll likely get text that “looks sincere,” filled with just-right praise and harmless flaws. This output is mediocre garbage because it misunderstands the nature of AI from the very beginning. ...

July 19, 2025 · 3 min · 3089 字 · Miss-you

Hugo 文章目录管理教程

Hugo 文章目录管理教程 这篇文章演示了如何为每个Hugo文章创建独立的目录结构。 优势 便于管理:每个文章有自己的目录 资源整理:图片、附件等资源放在同一目录 版本控制:便于跟踪文章的变更历史 SEO友好:目录名可以作为URL的一部分 目录结构 1 2 3 4 5 6 7 8 9 10 content/posts/ ├── 20250715-hugo-tutorial/ │ ├── index.md # 文章内容 │ ├── cover.jpg # 封面图片 │ └── images/ # 文章图片 │ └── diagram.png └── another-post/ ├── index.md └── assets/ └── file.pdf 使用方法 1. 创建文章目录 1 hugo new posts/文章名称/index.md 2. 或者手动创建 1 2 mkdir -p content/posts/20250715-my-article touch content/posts/20250715-my-article/index.md 这样每个文章都有自己的独立空间了! ...

July 15, 2025 · 1 min · 483 字 · Miss-you