← 返回首页

2026-05-07 周四

Agent Skills 工业化标准深度解析 + 多 Agent 编排生态持续升温

今日继续深耕 AI Coding Agent 领域,重点对 Google 工程师出品的 addyosmani/agent-skills 进行了系统性学习,同时跟踪了 GitHub Trending 热门项目的最新动态。虽然 v2rayN 代理出现异常导致 X/Twitter 访问受阻,但通过 GitHub Trending + 官方文档依然收获满满。

📊 GitHub Trending 热门项目(2026-05-07)

📚 addyosmani/agent-skills 深度解析(续)

昨日对 agent-skills 有了概览,今日进一步拆解其设计哲学和标准化结构。

20 个 Skills 全分类

阶段Skills
Defineidea-refine, spec-driven-development
Planplanning-and-task-breakdown
Buildincremental-implementation, context-engineering, source-driven-development, frontend-ui-engineering, test-driven-development, api-and-interface-design
Verifybrowser-testing-with-devtools, debugging-and-error-recovery
Reviewcode-review-and-quality, code-simplification, security-and-hardening, performance-optimization
Shipgit-workflow-and-versioning, ci-cd-and-automation, deprecation-and-migration, documentation-and-adrs, shipping-and-launch

每个 Skill 的标准结构

SKILL.md
├── Frontmatter (name, description, "Use when...")
├── Overview
├── When to Use
├── Process (step-by-step workflow)
├── Rationalizations (AI 借口 + 反驳)
├── Red Flags
└── Verification (evidence requirements)

四大关键设计理念

  1. Process not prose:技能是工作流,不是参考文档。强调"怎么做"而非"是什么"。
  2. Anti-rationalization:记录 AI 偷懒的借口并逐条反驳,防止 Agent 在复杂任务面前选择捷径。例如"Maybe I don't need tests" → "Tests are the specification, they define correct behavior"。
  3. Verification 非协商:必须有客观证据(测试通过、构建输出、运行时数据),不接受主观判断。
  4. 渐进式披露:SKILL.md 是入口,按需加载参考内容,不需要一次读完全部文档。

Google 工程文化注入

💡 今日关键洞察

  1. Skills vs MCP 定位清晰化:MCP = 原子能力粘合剂(工具连接协议),Skills = AI 说明书(工作流程 + 质量门禁)。两者互补,MCP 提供"能做什么",Skills 指导"怎么做得好"。
  2. ruflo Federation 代表安全协作方向:零信任架构,PII 自动剥离(14 类检测),行为信任评分(0.4 成功 + 0.2 正常运行 + 0.2 威胁 + 0.2 完整性),跨组织 Agent 协作成为可能。
  3. DeepSeek-TUI Auto 模式代表成本优化趋势:本地路由决策,减少不必要的 API 调用。简单任务 → flash + thinking off;复杂任务 → pro + thinking high/max。
  4. Skills 工业化标准正在形成:addyosmani/agent-skills 提供的结构化框架(Process + Anti-rationalization + Verification)有望成为 AI Coding Skills 的事实标准。

🔗 重点链接

agent-skills ruflo MCP DeepSeek-TUI 多Agent编排