From f96c445cecef55c24c314bcc2b2788d848c5b536 Mon Sep 17 00:00:00 2001 From: weishen Date: Thu, 30 Apr 2026 23:21:51 +0800 Subject: [PATCH] ingest: Book Co-Author source + 7 new concepts --- wiki/concepts/ChapterBlueprint.md | 48 + wiki/concepts/EditorialWorkflow.md | 69 + wiki/concepts/FirstPersonBusinessWriting.md | 42 + wiki/concepts/Ghostwriting.md | 46 + wiki/concepts/NarrativeArchitecture.md | 31 + wiki/concepts/ThoughtLeadershipBook.md | 32 + wiki/concepts/VoiceProtection.md | 45 + wiki/index.md | 440 +- wiki/log.md | 6809 +++---------------- wiki/sources/marketing-book-co-author.md | 61 +- 10 files changed, 1625 insertions(+), 5998 deletions(-) create mode 100644 wiki/concepts/ChapterBlueprint.md create mode 100644 wiki/concepts/EditorialWorkflow.md create mode 100644 wiki/concepts/FirstPersonBusinessWriting.md create mode 100644 wiki/concepts/Ghostwriting.md create mode 100644 wiki/concepts/NarrativeArchitecture.md create mode 100644 wiki/concepts/ThoughtLeadershipBook.md create mode 100644 wiki/concepts/VoiceProtection.md diff --git a/wiki/concepts/ChapterBlueprint.md b/wiki/concepts/ChapterBlueprint.md new file mode 100644 index 00000000..faa0f242 --- /dev/null +++ b/wiki/concepts/ChapterBlueprint.md @@ -0,0 +1,48 @@ +--- +title: "Chapter Blueprint" +type: concept +tags: ["writing", "structure", "planning", "workflow"] +sources: ["marketing-book-co-author"] +last_updated: 2026-04-30 +--- + +## Definition + +章节蓝图(Chapter Blueprint)是 Book Co-Author Agent 在起草正文之前,先定义章节承诺(Chapter Promise)、读者收益和战略功能的结构化规划工具。它是叙事架构([[Narrative Architecture]])在章节层面的具体化。 + +## Blueprint Structure + +```markdown +## Chapter Promise +- What this chapter proves(本章证明什么) +- Why the reader should care(读者为什么在乎) +- Strategic role in the book(本章在全书的战略角色) + +## Section Logic +1. Opening scene or tension(开场场景或张力) +2. Core argument(核心论点) +3. Supporting example or lesson(支撑案例或教训) +4. Shift in perspective(视角转换) +5. Closing takeaway(结尾要点) +``` + +## Why Blueprint Before Drafting + +1. **防止主题漂移**:没有蓝图,章节容易同时承载过多论点("tries to do three jobs") +2. **对齐全书定位**:每个章节都服务于作者的品类定位,而非泛化的"好建议" +3. **编辑前置**:蓝图阶段的决策比草稿阶段的修改成本更低 +4. **委托方对齐**:蓝图是与委托方确认章节方向的机会,避免方向性返工 + +## Blueprints vs Traditional Outlines + +| 维度 | 章节蓝图 | 传统大纲 | +|------|---------|---------| +| 核心问题 | "本章要证明什么?" | "本章要包含哪些内容?" | +| 视角 | 读者收益导向 | 内容清单导向 | +| 关注点 | 战略功能 | 覆盖范围 | +| 与品类定位关系 | 显式关联 | 隐含关联 | + +## Related Concepts +- [[Narrative Architecture]] — 章节蓝图是叙事架构在单章层面的工具 +- [[Thought Leadership Book]] — 章节蓝图为思想领导力书籍服务 +- [[Ghostwriting]] — 章节蓝图是代笔写作流程的重要组成部分 diff --git a/wiki/concepts/EditorialWorkflow.md b/wiki/concepts/EditorialWorkflow.md new file mode 100644 index 00000000..6a3fa808 --- /dev/null +++ b/wiki/concepts/EditorialWorkflow.md @@ -0,0 +1,69 @@ +--- +title: "Editorial Workflow" +type: concept +tags: ["writing", "process", "iteration", "quality"] +sources: ["marketing-book-co-author"] +last_updated: 2026-04-30 +--- + +## Definition + +编辑工作流(Editorial Workflow)是一套以版本化管理、编辑注释显式化和明确反馈回路为核心的迭代修订过程。在 Book Co-Author Agent 的语境中,编辑工作流是确保书籍质量、保持作者声音、保护品类定位的核心机制。 + +## Core Components + +### 1. 版本化管理(Versioning) +- 每个实质性草稿必须标注明确版本号 +- 格式示例:`Chapter 3 - Version 1 - ready for review` +- 版本标签是强制要求,不可省略 + +### 2. 编辑注释显式化(Editorial Notes Visibility) +- 假设条件明确标注 +- 证据缺口和来源缺口显式列出 +- 语气和可信度风险直接说明 +- 决策需求以问题形式列出 + +### 3. 明确反馈回路(Explicit Feedback Loop) +- 不以"请告知修改意见"结束 +- 必须提出具体的下一步修订任务 +- 明确哪些问题需要委托方决策,哪些由代笔人处理 + +## Versioned Draft Format + +```markdown +Chapter X - Version N - ready for review + +[Fully written first-person draft with clear section flow, +concrete examples, and language aligned to the author's positioning.] +``` + +## Editorial Notes Format + +```markdown +## Editorial Notes +- Assumptions made +- Evidence or sourcing gaps +- Tone or credibility risks +- Decisions needed from the author +``` + +## Feedback Loop Format + +```markdown +## Next Review Questions +1. Which claim feels strongest and should be expanded? +2. Where does the chapter still sound unlike you? +3. Which example needs better proof, detail, or chronology? +``` + +## Key Success Metric + +> "Each revision round ends with explicit decisions, not open-ended uncertainty." + +编辑工作流的最终目标:每轮修订后,双方(代笔人+委托方)都有明确的行动项,而非模糊的"继续打磨"。 + +## Related Concepts +- [[Voice Protection]] — 编辑工作流服务于声音保护 +- [[Ghostwriting]] — 编辑工作流是代笔写作的核心流程 +- [[Chapter Blueprint]] — 蓝图是编辑工作流的前置规划步骤 +- [[Narrative Architecture]] — 编辑工作流需维护叙事架构不被破坏 diff --git a/wiki/concepts/FirstPersonBusinessWriting.md b/wiki/concepts/FirstPersonBusinessWriting.md new file mode 100644 index 00000000..c54db282 --- /dev/null +++ b/wiki/concepts/FirstPersonBusinessWriting.md @@ -0,0 +1,42 @@ +--- +title: "First-Person Business Writing" +type: concept +tags: ["writing", "authenticity", "business", "content"] +sources: ["marketing-book-co-author"] +last_updated: 2026-04-30 +--- + +## Definition + +第一人称商业写作(First-Person Business Writing)是一种以作者个人亲身经历、真实决策和教训为叙事主轴的商业内容形式。其核心特征是**真实性和个人立场优先于中立客观**,强调作者作为行业亲历者的独特价值。 + +## Core Distinction + +| 维度 | 第一人称商业写作 | 传统商业写作 | +|------|---------------|------------| +| 叙事主体 | "我"(作者亲历者) | "我们"/"你"/中性第三方 | +| 内容来源 | 个人决策、错误、教训 | 研究数据、行业报告 | +| 说服机制 | 信任+共鸣 | 逻辑+权威 | +| 典型场景 | 思想领导力书籍、创始人博客 | 白皮书、行业分析报告 | +| 独特性 | 不可复制(个人经历) | 可复制/可借鉴 | + +## Writing Rules + +1. **场景 > 抽象**:用具体场景开场,而非"在当今商业环境中……" +2. **决策 > 结论**:展示"我是怎么决策的"而非仅告诉读者"你应该这样做" +3. **错误 > 成功**:敢于分享失败和教训,而非只展示光鲜成功 +4. **立场 > 中立**:有明确观点,不为了面面俱到而稀释论点 +5. **节奏感**:模仿作者本人的口语节奏和思维模式 + +## In Ghostwriting Context + +在代笔写作中实现第一人称商业写作的挑战: +- AI 倾向于生成第三人称客观叙述 +- 需要从委托方的语音笔记/访谈中提取真实的个人语言模式 +- 避免在"润色"过程中抹平个人特色 +- 每个 claim 必须能追溯到委托方的真实经历或明确标记为假设 + +## Related Concepts +- [[Voice Protection]] — 第一人称商业写作的核心质量保证机制 +- [[Thought Leadership Book]] — 第一人称商业写作的典型应用场景 +- [[Narrative Architecture]] — 叙事架构服务于第一人称叙事 diff --git a/wiki/concepts/Ghostwriting.md b/wiki/concepts/Ghostwriting.md new file mode 100644 index 00000000..8ae31b4e --- /dev/null +++ b/wiki/concepts/Ghostwriting.md @@ -0,0 +1,46 @@ +--- +title: "Ghostwriting" +type: concept +tags: ["writing", "content", "delegation", "ai"] +sources: ["marketing-book-co-author"] +last_updated: 2026-04-30 +--- + +## Definition + +代笔写作(Ghostwriting)是一种内容生产模式:由代笔人(ghostwriter)完成实际写作工作,但成书内容以委托方(author)的名义发布。委托方提供核心思想、素材和声音特征,代笔人负责结构化组织和文字呈现,最终作品体现的是委托方的思想和声音,而非代笔人。 + +## Aliases +- Ghostwriter / Ghostwriting +- 代笔 +- 影子写手 + +## Ghostwriting vs Traditional Writing + +| 维度 | 代笔写作 | 传统写作 | +|------|---------|---------| +| 作者署名 | 委托方署名 | 代笔人署名 | +| 核心价值 | 委托方的思想和声音 | 代笔人的文风和观点 | +| 成功标准 | 委托方满意,声音不失真 | 读者认可代笔人风格 | +| 交付形式 | 草稿+编辑注释+反馈回路 | 最终稿件 | + +## AI-Era Ghostwriting + +在 AI 辅助代笔写作中,新的挑战在于: +- AI 生成内容倾向通用化、中性化,抹平个人声音差异 +- 需要显式防止"AI腔"渗透到最终内容中 +- 代笔人的角色从"执笔者"转变为"声音架构师+质量把关人" + +## Book Co-Author Context + +在 Book Co-Author Agent 中,Ghostwriting 特指: +- 将创始人的语音笔记、碎片想法转化为结构化章节 +- 保留并保护委托方的声音个性([[Voice Protection]]) +- 强化而非替代委托方的战略定位([[Thought Leadership Book]]) +- 显式标注编辑缺口,让委托方参与决策 + +## Related Concepts +- [[Voice Protection]] — 代笔写作的核心质量保证机制 +- [[Thought Leadership Book]] — 代笔的典型应用场景 +- [[First-Person Business Writing]] — 代笔的内容形式 +- [[Narrative Architecture]] — 代笔长篇内容时的架构工作 diff --git a/wiki/concepts/NarrativeArchitecture.md b/wiki/concepts/NarrativeArchitecture.md new file mode 100644 index 00000000..68d56eab --- /dev/null +++ b/wiki/concepts/NarrativeArchitecture.md @@ -0,0 +1,31 @@ +--- +title: "Narrative Architecture" +type: concept +tags: ["writing", "structure", "coherence", "storytelling"] +sources: ["marketing-book-co-author"] +last_updated: 2026-04-30 +--- + +## Definition + +叙事架构(Narrative Architecture)是指在长篇思想领导力书籍中,维护贯穿全书各章节的"红色主线"(Red Thread),使书籍呈现为连贯论证而非独立散文的堆砌。叙事架构师负责确保每一章都服务于全书的核心论点,各章节之间形成有机递进或呼应关系。 + +## Core Principles + +1. **单一主线贯穿**:全书必须围绕一个核心命题展开,所有章节直接或间接服务于该命题 +2. **章节逻辑递进**:章节之间存在清晰的思想推进路径,而非随机排列 +3. **开头呼应结尾**:全书开篇提出的问题或张力,应在结尾得到回应 +4. **避免重复冗余**:每个章节有独特战略功能,不与相邻章节内容重叠 +5. **叙事锚点设计**:在关键章节设置叙事锚点,强化读者记忆和认同 + +## The Red Thread Concept + +"红色主线"(Red Thread)是叙事架构的核心隐喻: +- **视觉隐喻**:如同红线贯穿珍珠项链,各章节是珍珠,主线是串联的逻辑 +- **功能要求**:读者在读完任何章节后,都能自然期待下一章的内容 +- **检验标准**:如果删除某一章,全书的论证链条是否断裂 + +## Related Concepts +- [[Thought Leadership Book]] — 思想领导力书籍是叙事架构的主要应用场景 +- [[Voice Protection]] — 叙事架构不能破坏作者个人声音 +- [[First-Person Business Writing]] — 叙事架构服务于第一人称叙事 diff --git a/wiki/concepts/ThoughtLeadershipBook.md b/wiki/concepts/ThoughtLeadershipBook.md new file mode 100644 index 00000000..eb80b491 --- /dev/null +++ b/wiki/concepts/ThoughtLeadershipBook.md @@ -0,0 +1,32 @@ +--- +title: "Thought Leadership Book" +type: concept +tags: ["content", "brand", "authority", "b2b"] +sources: ["marketing-book-co-author"] +last_updated: 2026-04-30 +--- + +## Definition + +思想领导力书籍(Thought Leadership Book)是一种以第一人称视角深度分享创始人、专家或操盘手实战经验与战略思考的商业书籍形式。其核心目标不是"教读者做事",而是**建立作者的品类权威**,让读者在特定议题上认同作者为首选思想来源。 + +## Key Characteristics + +- **第一人称叙事**:以作者亲身经历、真实决策和教训为核心素材 +- **品类定位导向**:服务于作者在某个细分领域的差异化认知建设,而非泛化知识传播 +- **强立场表达**:不回避争议,有明确观点,敢于挑战主流认知 +- **叙事连贯性**:全书有一条贯穿各章节的"红色主线"(Red Thread),各章节形成有机整体 + +## Distinction from Other Book Types + +| 维度 | 思想领导力书籍 | 教科书 | 方法论文献 | +|------|--------------|--------|-----------| +| 叙事主体 | 第一人称个人 | 第三人称中立 | 第三人称专家 | +| 核心目标 | 建立权威/品类定位 | 传授知识 | 提供可操作框架 | +| 内容深度 | 个人决策+教训 | 系统性知识 | 可复制方法论 | +| 受众 | 希望追随专家的受众 | 学习知识的受众 | 寻求工具的操盘手 | + +## Related Concepts +- [[Ghostwriting]] — 代笔写作是实现思想领导力书籍的核心手段 +- [[Narrative Architecture]] — 叙事架构确保全书逻辑连贯 +- [[Voice Protection]] — 声音保护防止内容沦为通用 AI 文风 diff --git a/wiki/concepts/VoiceProtection.md b/wiki/concepts/VoiceProtection.md new file mode 100644 index 00000000..6e364c3e --- /dev/null +++ b/wiki/concepts/VoiceProtection.md @@ -0,0 +1,45 @@ +--- +title: "Voice Protection" +type: concept +tags: ["writing", "authenticity", "ai", "quality"] +sources: ["marketing-book-co-author"] +last_updated: 2026-04-30 +--- + +## Definition + +声音保护(Voice Protection)是在 AI 辅助写作过程中,刻意保留委托方(作者)个人声音个性、表达节奏、信念立场和战略信息的原则与技术。其核心理念:AI 是工具和放大器,而非替代者;最终作品必须听起来像委托方本人,而非 AI 或代笔人。 + +## Why Voice Protection Matters + +1. **真实性是权威的基础**:读者追随的是"真实的人",而非"流畅的文字" +2. **品类差异化**:通用 AI 腔抹平了个人差异,使内容失去辨识度 +3. **信任建立**:读者能感知内容背后的真实人格,过度 AI 化会损害信任 +4. **定位保护**:作者的思想定位和独特视角是核心资产,不能被代笔稀释 + +## Voice Protection Techniques + +### 1. 素材驱动的起草 +- 以委托方的语音笔记、访谈转录为第一素材,而非让 AI 自由发挥 +- 从委托方的原始语言中提取其惯用词汇、节奏和表达模式 + +### 2. 写作规则约束 +- 禁用空洞励志话术("在这个充满挑战的时代……") +- 禁用泛化描述,用委托方亲身经历的具体场景替代 +- 保留委托方的"刺"(有争议的立场、不讨好的观点) + +### 3. 质量检验 +- "声音保真度":委托方能否认出草稿是"自己的"? +- "语气一致性":章节之间的语气是否与委托方本人一致? +- "立场保留":委托方有争议的核心观点是否被保留? + +## The Critical Rule + +> "The draft should sound like a credible person with real stakes, not an anonymous content team." + +AI 辅助代笔最常见的失败模式:内容语法正确、结构合理,但失去了委托方作为"有血有肉的人"的真实感。 + +## Related Concepts +- [[Ghostwriting]] — 声音保护是代笔写作的核心原则 +- [[First-Person Business Writing]] — 声音保护的具体应用形式 +- [[Voice Protection]] 的实践工具:[[Chapter Blueprint]](章节蓝图) diff --git a/wiki/index.md b/wiki/index.md index 8bffd41a..e6966078 100644 --- a/wiki/index.md +++ b/wiki/index.md @@ -4,6 +4,118 @@ - [Overview](overview.md) — living synthesis ## Sources +- [2026-04-30] [Marketing Zhihu Strategist](sources/marketing-zhihu-strategist.md) +- [2026-04-30] [Marketing Douyin Strategist](sources/marketing-douyin-strategist.md) +- [2026-04-30] [Nexus Spatial: Full Agency Discovery Exercise](sources/nexus-spatial-discovery.md) +- [2026-04-30] [Multi-Agent Workflow: Startup MVP with Persistent Memory](sources/workflow-with-memory.md) +- [2026-04-30] [Multi-Agent Workflow: Landing Page Sprint](sources/workflow-landing-page.md) +- [2026-04-30] [Multi-Agent Workflow: Startup MVP](sources/workflow-startup-mvp.md) +- [2026-04-30] [readme](sources/readme.md) — (expected: wiki/sources/readme.md — source missing) +- [2026-04-30] [Workflow Example: Book Chapter Development](sources/workflow-book-chapter.md) +- [2026-04-30] [Executive Summary Generator Agent Personality](sources/support-executive-summary-generator.md) +- [2026-04-30] [Finance Tracker Agent Personality](sources/support-finance-tracker.md) +- [2026-04-30] [Support Infrastructure Maintainer Agent Personality](sources/support-infrastructure-maintainer.md) +- [2026-04-30] [Support Responder Agent Personality](sources/support-support-responder.md) +- [2026-04-30] [Analytics Reporter Agent Personality](sources/support-analytics-reporter.md) +- [2026-04-30] [Support Legal Compliance Checker Agent Personality](sources/support-legal-compliance-checker.md) +- [2026-04-30] [Accessibility Auditor Agent Personality](sources/testing-accessibility-auditor.md) +- [2026-04-30] [Tool Evaluator Agent Personality](sources/testing-tool-evaluator.md) +- [2026-04-30] [Testing Evidence Collector](sources/testing-evidence-collector.md) +- [2026-04-30] [Test Results Analyzer Agent Personality](sources/testing-test-results-analyzer.md) +- [2026-04-30] [Performance Benchmarker Agent Personality](sources/testing-performance-benchmarker.md) +- [2026-04-30] [Testing Reality Checker](sources/testing-reality-checker.md) +- [2026-04-30] [Workflow Optimizer Agent Personality](sources/testing-workflow-optimizer.md) +- [2026-04-30] [API Tester Agent Personality](sources/testing-api-tester.md) +- [2026-04-30] [readme](sources/readme.md) — (expected: wiki/sources/readme.md — source missing) +- [2026-04-30] [readme](sources/readme.md) — (expected: wiki/sources/readme.md — source missing) +- [2026-04-30] [readme](sources/readme.md) — (expected: wiki/sources/readme.md — source missing) +- [2026-04-30] [readme](sources/readme.md) — (expected: wiki/sources/readme.md — source missing) +- [2026-04-30] [readme](sources/readme.md) — (expected: wiki/sources/readme.md — source missing) +- [2026-04-30] [readme](sources/readme.md) — (expected: wiki/sources/readme.md — source missing) +- [2026-04-30] [readme](sources/readme.md) — (expected: wiki/sources/readme.md — source missing) +- [2026-04-30] [readme](sources/readme.md) — (expected: wiki/sources/readme.md — source missing) +- [2026-04-30] [Backend Architect with Memory](sources/backend-architect-with-memory.md) +- [2026-04-30] [readme](sources/readme.md) — (expected: wiki/sources/readme.md — source missing) +- [2026-04-30] [readme](sources/readme.md) — (expected: wiki/sources/readme.md — source missing) +- [2026-04-30] [readme](sources/readme.md) — (expected: wiki/sources/readme.md — source missing) +- [2026-04-30] [readme](sources/readme.md) — (expected: wiki/sources/readme.md — source missing) +- [2026-04-30] [Historian](sources/academic-historian.md) +- [2026-04-30] [Academic Geographer](sources/academic-geographer.md) +- [2026-04-30] [Academic Narratologist](sources/academic-narratologist.md) +- [2026-04-30] [Academic Anthropologist](sources/academic-anthropologist.md) +- [2026-04-30] [Academic Psychologist](sources/academic-psychologist.md) +- [2026-04-30] [Behavioral Nudge Engine](sources/product-behavioral-nudge-engine.md) +- [2026-04-30] [Product Sprint Prioritizer Agent](sources/product-sprint-prioritizer.md) +- [2026-04-30] [Product Trend Researcher Agent](sources/product-trend-researcher.md) +- [2026-04-30] [Product Manager Agent](sources/product-manager.md) +- [2026-04-30] [Product Feedback Synthesizer Agent](sources/product-feedback-synthesizer.md) +- [2026-04-30] [Developer Advocate](sources/specialized-developer-advocate.md) +- [2026-04-30] [Automation Governance Architect](sources/automation-governance-architect.md) +- [2026-04-30] [Report Distribution Agent](sources/report-distribution-agent.md) +- [2026-04-30] [Data Consolidation Agent](sources/data-consolidation-agent.md) +- [2026-04-30] [Supply Chain Strategist Agent](sources/supply-chain-strategist.md) +- [2026-04-30] [ZK Steward Agent](sources/zk-steward.md) +- [2026-04-30] [Korean Business Navigator](sources/specialized-korean-business-navigator.md) +- [2026-04-30] [French Consulting Market Navigator](sources/specialized-french-consulting-market.md) +- [2026-04-30] [Blockchain Security Auditor](sources/blockchain-security-auditor.md) +- [2026-04-30] [Sales Data Extraction Agent](sources/sales-data-extraction-agent.md) +- [2026-04-30] [Study Abroad Advisor](sources/study-abroad-advisor.md) +- [2026-04-30] [Agents Orchestrator](sources/agents-orchestrator.md) +- [2026-04-30] [MCP Builder Agent](sources/specialized-mcp-builder.md) +- [2026-04-30] [Compliance Auditor Agent](sources/compliance-auditor.md) +- [2026-04-30] [Specialized Salesforce Architect](sources/specialized-salesforce-architect.md) +- [2026-04-29] [LSP/Index Engineer Agent Personality](sources/lsp-index-engineer.md) +- [2026-04-29] [Model QA Specialist](sources/specialized-model-qa.md) +- [2026-04-29] [Corporate Training Designer](sources/corporate-training-designer.md) +- [2026-04-29] [Cultural Intelligence Strategist](sources/specialized-cultural-intelligence-strategist.md) +- [2026-04-29] [Healthcare Marketing Compliance Specialist](sources/healthcare-marketing-compliance.md) +- [2026-04-29] [Workflow Architect Agent Personality](sources/specialized-workflow-architect.md) +- [2026-04-29] [Government Digital Presales Consultant](sources/government-digital-presales-consultant.md) +- [2026-04-29] [Agentic Identity & Trust Architect](sources/agentic-identity-trust.md) +- [2026-04-29] [Document Generator Agent](sources/specialized-document-generator.md) +- [2026-04-29] [Identity Graph Operator](sources/identity-graph-operator.md) +- [2026-04-29] [Accounts Payable Agent Personality](sources/accounts-payable-agent.md) +- [2026-04-29] [Recruitment Specialist Agent](sources/recruitment-specialist.md) +- [2026-04-29] [Specialized Civil Engineer Agent](sources/specialized-civil-engineer.md) +- [2026-04-29] [Experiment Tracker Agent Personality](sources/project-management-experiment-tracker.md) +- [2026-04-29] [Studio Operations Agent Personality](sources/project-management-studio-operations.md) +- [2026-04-29] [Senior Project Manager Agent Personality](sources/project-manager-senior.md) +- [2026-04-29] [Jira Workflow Steward Agent Personality](sources/project-management-jira-workflow-steward.md) +- [2026-04-29] [Project Shepherd Agent Personality](sources/project-management-project-shepherd.md) +- [2026-04-29] [Studio Producer Agent Personality](sources/project-management-studio-producer.md) +- [2026-04-29] [visionOS Spatial Engineer](sources/visionos-spatial-engineer.md) +- [2026-04-29] [XR Interface Architect Agent Personality](sources/xr-interface-architect.md) +- [2026-04-29] [macOS Spatial/Metal Engineer Agent Personality](sources/macos-spatial-metal-engineer.md) +- [2026-04-29] [Terminal Integration Specialist](sources/terminal-integration-specialist.md) +- [2026-04-29] [XR Immersive Developer Agent Personality](sources/xr-immersive-developer.md) +- [2026-04-29] [XR Cockpit Interaction Specialist Agent](sources/xr-cockpit-interaction-specialist.md) +- [2026-04-29] [Sales Engineer Agent](sources/sales-engineer.md) +- [2026-04-29] [Pipeline Analyst Agent](sources/sales-pipeline-analyst.md) +- [2026-04-29] [Outbound Strategist Agent](sources/sales-outbound-strategist.md) +- [2026-04-29] [Deal Strategist Agent](sources/sales-deal-strategist.md) +- [2026-04-29] [Account Strategist Agent](sources/sales-account-strategist.md) +- [2026-04-29] [Sales Proposal Strategist Agent](sources/sales-proposal-strategist.md) +- [2026-04-29] [Sales Coach Agent](sources/sales-coach.md) +- [2026-04-29] [Discovery Coach Agent](sources/sales-discovery-coach.md) +- [2026-04-29] [Tracking & Measurement Specialist](sources/paid-media-tracking-specialist.md) +- [2026-04-29] [Paid Media Ad Creative Strategist Agent](sources/paid-media-creative-strategist.md) +- [2026-04-29] [Paid Social Strategist](sources/paid-media-paid-social-strategist.md) +- [2026-04-29] [Paid Media Search Query Analyst Agent](sources/paid-media-search-query-analyst.md) +- [2026-04-29] [Paid Media Auditor Agent](sources/paid-media-auditor.md) +- [2026-04-29] [Paid Media PPC Campaign Strategist Agent](sources/paid-media-ppc-strategist.md) +- [2026-04-29] [Paid Media Programmatic & Display Buyer Agent](sources/paid-media-programmatic-buyer.md) +- [2026-04-29] [Visual Storyteller Agent](sources/design-visual-storyteller.md) +- [2026-04-29] [Inclusive Visuals Specialist](sources/design-inclusive-visuals-specialist.md) +- [2026-04-29] [Image Prompt Engineer Agent Personality](sources/design-image-prompt-engineer.md) +- [2026-04-29] [UI Designer Agent Personality](sources/design-ui-designer.md) +- [2026-04-29] [Brand Guardian Agent Personality](sources/design-brand-guardian.md) +- [2026-04-29] [UX Researcher](sources/design-ux-researcher.md) +- [2026-04-29] [Whimsy Injector Agent Personality](sources/design-whimsy-injector.md) +- [2026-04-29] [UX Architect](sources/design-ux-architect.md) +- [2026-04-29] [Contributing to The Agency](sources/contributing.md) +- [2026-04-29] [为 The Agency 贡献代码](sources/contributing_zh-cn.md) +- [2026-04-29] [CTP Topic 12 Using SES SMTP service terraform module](sources/ctp-topic-12-using-ses-smtp-service-terraform-module.md) +- [2026-04-29] [Learning Sessions Cloud Transformation Programme-Deploying RDS via Terraform](sources/learning-sessions-cloud-transformation-programme-deploying-rds-via-terraform.md) - [2026-04-29] [Learning Sessions Cloud Transformation Programme-20230808 183322-Meeting Recording](sources/learning-sessions-cloud-transformation-programme-20230808-183322-meeting-recordi.md) - [2026-04-29] [CTP Topic 16 Cross-account Terraform modules](sources/ctp-topic-16-cross-account-terraform-modules.md) - [2026-04-29] [Learning Sessions ECS Deployment using IAC - 20230808](sources/learning-sessions-ecs-deployment-using-iac-20230808-183322-meeting-recording.md) @@ -299,24 +411,8 @@ - [baoyu-skills](sources/baoyu-skills.md) — (expected: wiki/sources/baoyu-skills.md — source missing) - [n8n-docker-配置-telegram-代理-troubleshooting](sources/n8n-docker-配置-telegram-代理-troubleshooting.md) — (expected: wiki/sources/n8n-docker-配置-telegram-代理-troubleshooting.md — source missing) - [sre-weekly-issue-513](sources/sre-weekly-issue-513.md) — (expected: wiki/sources/sre-weekly-issue-513.md — source missing) -- [Learning Sessions Cloud Transformation Programme-Deploying RDS via Terraform](sources/learning-sessions-cloud-transformation-programme-deploying-rds-via-terraform.md) -- [CTP Topic 12 Using SES SMTP service terraform module](sources/ctp-topic-12-using-ses-smtp-service-terraform-module.md) - [n8n调用hermes-agents的工作流架构](sources/n8n调用hermes-agents的工作流架构.md) — (expected: wiki/sources/n8n调用hermes-agents的工作流架构.md — source missing) - [n8n-调用openclaw-agents的工作流架构](sources/n8n-调用openclaw-agents的工作流架构.md) — (expected: wiki/sources/n8n-调用openclaw-agents的工作流架构.md — source missing) -- [Workflow Optimizer Agent Personality](sources/testing-workflow-optimizer.md) -- [Tool Evaluator Agent Personality](sources/testing-tool-evaluator.md) -- [Test Results Analyzer Agent Personality](sources/testing-test-results-analyzer.md) -- [Testing Reality Checker](sources/testing-reality-checker.md) -- [Performance Benchmarker Agent Personality](sources/testing-performance-benchmarker.md) -- [Testing Evidence Collector Agent Personality](sources/testing-evidence-collector.md) -- [API Tester Agent Personality](sources/testing-api-tester.md) -- [Accessibility Auditor Agent Personality](sources/testing-accessibility-auditor.md) -- [Support Responder Agent Personality](sources/support-support-responder.md) -- [Support Legal Compliance Checker Agent Personality](sources/support-legal-compliance-checker.md) -- [Support Infrastructure Maintainer Agent Personality](sources/support-infrastructure-maintainer.md) -- [Finance Tracker Agent Personality](sources/support-finance-tracker.md) -- [Executive Summary Generator Agent Personality](sources/support-executive-summary-generator.md) -- [Analytics Reporter Agent Personality](sources/support-analytics-reporter.md) - [scenario-startup-mvp](sources/scenario-startup-mvp.md) — (expected: wiki/sources/scenario-startup-mvp.md — source missing) - [scenario-marketing-campaign](sources/scenario-marketing-campaign.md) — (expected: wiki/sources/scenario-marketing-campaign.md — source missing) - [scenario-incident-response](sources/scenario-incident-response.md) — (expected: wiki/sources/scenario-incident-response.md — source missing) @@ -333,81 +429,20 @@ - [agent-activation-prompts](sources/agent-activation-prompts.md) — (expected: wiki/sources/agent-activation-prompts.md — source missing) - [quickstart](sources/quickstart.md) — (expected: wiki/sources/quickstart.md — source missing) - [executive-brief](sources/executive-brief.md) — (expected: wiki/sources/executive-brief.md — source missing) -- [ZK Steward Agent](sources/zk-steward.md) -- [Supply Chain Strategist Agent](sources/supply-chain-strategist.md) -- [Study Abroad Advisor](sources/study-abroad-advisor.md) -- [Workflow Architect Agent Personality](sources/specialized-workflow-architect.md) -- [Specialized Salesforce Architect](sources/specialized-salesforce-architect.md) -- [Model QA Specialist](sources/specialized-model-qa.md) -- [MCP Builder Agent](sources/specialized-mcp-builder.md) -- [Korean Business Navigator](sources/specialized-korean-business-navigator.md) -- [French Consulting Market Navigator](sources/specialized-french-consulting-market.md) -- [Document Generator Agent](sources/specialized-document-generator.md) -- [Specialized Developer Advocate](sources/specialized-developer-advocate.md) -- [Cultural Intelligence Strategist](sources/specialized-cultural-intelligence-strategist.md) -- [Specialized Civil Engineer Agent](sources/specialized-civil-engineer.md) - [specialized-chief-of-staff](sources/specialized-chief-of-staff.md) — (expected: wiki/sources/specialized-chief-of-staff.md — source missing) - [sales-outreach](sources/sales-outreach.md) — (expected: wiki/sources/sales-outreach.md — source missing) -- [Sales Data Extraction Agent](sources/sales-data-extraction-agent.md) - [retail-customer-returns](sources/retail-customer-returns.md) — (expected: wiki/sources/retail-customer-returns.md — source missing) -- [Report Distribution Agent](sources/report-distribution-agent.md) -- [Recruitment Specialist Agent](sources/recruitment-specialist.md) - [real-estate-buyer-seller](sources/real-estate-buyer-seller.md) — (expected: wiki/sources/real-estate-buyer-seller.md — source missing) -- [LSP/Index Engineer Agent Personality](sources/lsp-index-engineer.md) - [loan-officer-assistant](sources/loan-officer-assistant.md) — (expected: wiki/sources/loan-officer-assistant.md — source missing) - [legal-document-review](sources/legal-document-review.md) — (expected: wiki/sources/legal-document-review.md — source missing) - [legal-client-intake](sources/legal-client-intake.md) — (expected: wiki/sources/legal-client-intake.md — source missing) - [legal-billing-time-tracking](sources/legal-billing-time-tracking.md) — (expected: wiki/sources/legal-billing-time-tracking.md — source missing) - [language-translator](sources/language-translator.md) — (expected: wiki/sources/language-translator.md — source missing) -- [Identity Graph Operator](sources/identity-graph-operator.md) - [hr-onboarding](sources/hr-onboarding.md) — (expected: wiki/sources/hr-onboarding.md — source missing) - [hospitality-guest-services](sources/hospitality-guest-services.md) — (expected: wiki/sources/hospitality-guest-services.md — source missing) -- [Healthcare Marketing Compliance Specialist](sources/healthcare-marketing-compliance.md) - [healthcare-customer-service](sources/healthcare-customer-service.md) — (expected: wiki/sources/healthcare-customer-service.md — source missing) -- [Government Digital Presales Consultant](sources/government-digital-presales-consultant.md) -- [Data Consolidation Agent](sources/data-consolidation-agent.md) - [customer-service](sources/customer-service.md) — (expected: wiki/sources/customer-service.md — source missing) -- [Corporate Training Designer](sources/corporate-training-designer.md) -- [Compliance Auditor Agent](sources/compliance-auditor.md) -- [Blockchain Security Auditor](sources/blockchain-security-auditor.md) -- [Automation Governance Architect](sources/automation-governance-architect.md) -- [Agents Orchestrator](sources/agents-orchestrator.md) -- [Agentic Identity & Trust Architect](sources/agentic-identity-trust.md) -- [Accounts Payable Agent Personality](sources/accounts-payable-agent.md) -- [XR Interface Architect Agent Personality](sources/xr-interface-architect.md) -- [XR Immersive Developer Agent Personality](sources/xr-immersive-developer.md) -- [XR Cockpit Interaction Specialist Agent](sources/xr-cockpit-interaction-specialist.md) -- [visionOS Spatial Engineer](sources/visionos-spatial-engineer.md) -- [Terminal Integration Specialist](sources/terminal-integration-specialist.md) -- [macOS Spatial/Metal Engineer Agent Personality](sources/macos-spatial-metal-engineer.md) -- [OpenCode Integration](sources/readme.md) -- [Sales Proposal Strategist](sources/sales-proposal-strategist.md) -- [Pipeline Analyst Agent](sources/sales-pipeline-analyst.md) -- [Outbound Strategist Agent](sources/sales-outbound-strategist.md) -- [Sales Engineer Agent](sources/sales-engineer.md) -- [Discovery Coach Agent](sources/sales-discovery-coach.md) -- [Deal Strategist Agent](sources/sales-deal-strategist.md) -- [Sales Coach Agent](sources/sales-coach.md) -- [Account Strategist Agent](sources/sales-account-strategist.md) -- [Senior Project Manager Agent Personality](sources/project-manager-senior.md) -- [Studio Producer Agent Personality](sources/project-management-studio-producer.md) -- [Studio Operations Agent Personality](sources/project-management-studio-operations.md) -- [Project Shepherd Agent Personality](sources/project-management-project-shepherd.md) -- [Jira Workflow Steward Agent Personality](sources/project-management-jira-workflow-steward.md) -- [Experiment Tracker Agent Personality](sources/project-management-experiment-tracker.md) -- [Product Trend Researcher Agent](sources/product-trend-researcher.md) -- [Product Sprint Prioritizer Agent](sources/product-sprint-prioritizer.md) -- [Product Manager Agent](sources/product-manager.md) -- [Product Feedback Synthesizer Agent](sources/product-feedback-synthesizer.md) -- [Behavioral Nudge Engine](sources/product-behavioral-nudge-engine.md) -- [Paid Media Tracking & Measurement Specialist Agent](sources/paid-media-tracking-specialist.md) -- [Paid Media Search Query Analyst Agent](sources/paid-media-search-query-analyst.md) -- [Paid Media Programmatic & Display Buyer Agent](sources/paid-media-programmatic-buyer.md) -- [Paid Media PPC Campaign Strategist Agent](sources/paid-media-ppc-strategist.md) -- [Paid Social Strategist](sources/paid-media-paid-social-strategist.md) -- [Paid Media Ad Creative Strategist Agent](sources/paid-media-creative-strategist.md) -- [Paid Media Auditor Agent](sources/paid-media-auditor.md) -- [Marketing Zhihu Strategist](sources/marketing-zhihu-strategist.md) +- [readme](sources/readme.md) — (expected: wiki/sources/readme.md — source missing) - [Marketing Xiaohongshu Specialist](sources/marketing-xiaohongshu-specialist.md) - [Marketing Weibo Strategist](sources/marketing-weibo-strategist.md) - [Marketing WeChat Official Account Manager](sources/marketing-wechat-official-account.md) @@ -425,7 +460,6 @@ - [Marketing Kuaishou Strategist](sources/marketing-kuaishou-strategist.md) - [Marketing Instagram Curator](sources/marketing-instagram-curator.md) - [Marketing Growth Hacker Agent](sources/marketing-growth-hacker.md) -- [Marketing Douyin Strategist](sources/marketing-douyin-strategist.md) - [Marketing Cross-Border E-Commerce Specialist](sources/marketing-cross-border-ecommerce.md) - [Marketing Content Creator](sources/marketing-content-creator.md) - [China Market Localization Strategist](sources/marketing-china-market-localization-strategist.md) @@ -437,20 +471,7 @@ - [App Store Optimizer](sources/marketing-app-store-optimizer.md) - [AI Citation Strategist](sources/marketing-ai-citation-strategist.md) - [marketing-agentic-search-optimizer](sources/marketing-agentic-search-optimizer.md) — (expected: wiki/sources/marketing-agentic-search-optimizer.md — source missing) -- [OpenCode Integration](sources/readme.md) -- [OpenCode Integration](sources/readme.md) -- [OpenCode Integration](sources/readme.md) -- [OpenCode Integration](sources/readme.md) -- [Backend Architect with Memory](sources/backend-architect-with-memory.md) -- [OpenCode Integration](sources/readme.md) -- [OpenCode Integration](sources/readme.md) -- [OpenCode Integration](sources/readme.md) -- [OpenCode Integration](sources/readme.md) -- [OpenCode Integration](sources/readme.md) -- [OpenCode Integration](sources/readme.md) -- [OpenCode Integration](sources/readme.md) -- [OpenCode Integration](sources/readme.md) -- [OpenCode Integration](sources/readme.md) +- [readme](sources/readme.md) — (expected: wiki/sources/readme.md — source missing) - [Unreal World Builder Agent Personality](sources/unreal-world-builder.md) - [Unreal Technical Artist](sources/unreal-technical-artist.md) - [Unreal Systems Engineer](sources/unreal-systems-engineer.md) @@ -476,12 +497,6 @@ - [finance-fpa-analyst](sources/finance-fpa-analyst.md) — (expected: wiki/sources/finance-fpa-analyst.md — source missing) - [finance-financial-analyst](sources/finance-financial-analyst.md) — (expected: wiki/sources/finance-financial-analyst.md — source missing) - [finance-bookkeeper-controller](sources/finance-bookkeeper-controller.md) — (expected: wiki/sources/finance-bookkeeper-controller.md — source missing) -- [Multi-Agent Workflow: Startup MVP with Persistent Memory](sources/workflow-with-memory.md) -- [Multi-Agent Workflow: Startup MVP](sources/workflow-startup-mvp.md) -- [Multi-Agent Workflow: Landing Page Sprint](sources/workflow-landing-page.md) -- [Workflow Example: Book Chapter Development](sources/workflow-book-chapter.md) -- [Nexus Spatial: Full Agency Discovery Exercise](sources/nexus-spatial-discovery.md) -- [OpenCode Integration](sources/readme.md) - [engineering-wechat-mini-program-developer](sources/engineering-wechat-mini-program-developer.md) — (expected: wiki/sources/engineering-wechat-mini-program-developer.md — source missing) - [engineering-voice-ai-integration-engineer](sources/engineering-voice-ai-integration-engineer.md) — (expected: wiki/sources/engineering-voice-ai-integration-engineer.md — source missing) - [engineering-threat-detection-engineer](sources/engineering-threat-detection-engineer.md) — (expected: wiki/sources/engineering-threat-detection-engineer.md — source missing) @@ -506,22 +521,7 @@ - [Autonomous Optimization Architect](sources/engineering-autonomous-optimization-architect.md) - [engineering-ai-engineer](sources/engineering-ai-engineer.md) — (expected: wiki/sources/engineering-ai-engineer.md — source missing) - [engineering-ai-data-remediation-engineer](sources/engineering-ai-data-remediation-engineer.md) — (expected: wiki/sources/engineering-ai-data-remediation-engineer.md — source missing) -- [Design Whimsy Injector](sources/design-whimsy-injector.md) -- [Visual Storyteller Agent](sources/design-visual-storyteller.md) -- [UX Researcher Agent Personality](sources/design-ux-researcher.md) -- [ArchitectUX Agent Personality](sources/design-ux-architect.md) -- [UI Designer Agent Personality](sources/design-ui-designer.md) -- [Inclusive Visuals Specialist](sources/design-inclusive-visuals-specialist.md) -- [Image Prompt Engineer Agent](sources/design-image-prompt-engineer.md) -- [Design Brand Guardian](sources/design-brand-guardian.md) -- [Academic Psychologist](sources/academic-psychologist.md) -- [Academic Narratologist](sources/academic-narratologist.md) -- [Historian Agent Personality](sources/academic-historian.md) -- [Academic Geographer](sources/academic-geographer.md) -- [Academic Anthropologist](sources/academic-anthropologist.md) - [security](sources/security.md) — (expected: wiki/sources/security.md — source missing) -- [为 The Agency 贡献代码](sources/contributing_zh-cn.md) -- [Contributing to The Agency](sources/contributing.md) - [Your-AI-Isn-t-Stupid---It-Just-Needs-a-Better-Harness--Lychee-Technology-Engineering-Blog](sources/Your-AI-Isn-t-Stupid---It-Just-Needs-a-Better-Harness--Lychee-Technology-Engineering-Blog.md) — (expected: wiki/sources/Your-AI-Isn-t-Stupid---It-Just-Needs-a-Better-Harness--Lychee-Technology-Engineering-Blog.md — source missing) - [open-webui-hermes-agent](sources/open-webui-hermes-agent.md) — (expected: wiki/sources/open-webui-hermes-agent.md — source missing) - [llm-wiki](sources/llm-wiki.md) — (expected: wiki/sources/llm-wiki.md — source missing) @@ -531,6 +531,7 @@ - [engineering-backend-architect](sources/engineering-backend-architect.md) — (expected: wiki/sources/engineering-backend-architect.md — source missing) ## Entities +- [1point3acres](entities/1point3acres.md) - [@witcheer](entities/@witcheer.md) - [Acemoglu](entities/Acemoglu.md) - [ACI-318](entities/ACI-318.md) @@ -539,7 +540,10 @@ - [ADK](entities/ADK.md) - [Adobe-Premiere-Pro](entities/Adobe-Premiere-Pro.md) - [AdsPower](entities/AdsPower.md) +- [Agentforce](entities/Agentforce.md) - [Agentic-AI](entities/Agentic-AI.md) +- [AgentsOrchestrator](entities/AgentsOrchestrator.md) +- [Aider](entities/Aider.md) - [AionUi](entities/AionUi.md) - [Airtable](entities/Airtable.md) - [AISC-360](entities/AISC-360.md) @@ -547,6 +551,7 @@ - [Alertmanager](entities/Alertmanager.md) - [Alex-Ewerlof](entities/Alex-Ewerlof.md) - [Alex-Finn](entities/Alex-Finn.md) +- [Alex-Product-Manager](entities/Alex-Product-Manager.md) - [Alist](entities/Alist.md) - [ALIVE](entities/ALIVE.md) - [Amazon-API-Gateway](entities/Amazon-API-Gateway.md) @@ -574,12 +579,14 @@ - [Anthropic](entities/Anthropic.md) - [Apache-Superset](entities/Apache-Superset.md) - [AppStream-2](entities/AppStream-2.md) +- [ArchitectUX](entities/ArchitectUX.md) - [Arnold-Dacan](entities/Arnold-Dacan.md) - [Artifactory](entities/Artifactory.md) - [Asana](entities/Asana.md) - [ASCE-7](entities/ASCE-7.md) - [Ashish](entities/Ashish.md) - [Atlantis](entities/Atlantis.md) +- [Automation-Governance-Architect](entities/Automation-Governance-Architect.md) - [AWS](entities/AWS.md) - [AWS-Backup](entities/AWS-Backup.md) - [AWS-Backup-Audit-Manager](entities/AWS-Backup-Audit-Manager.md) @@ -597,6 +604,7 @@ - [BackendArchitect](entities/BackendArchitect.md) - [Backstage](entities/Backstage.md) - [Baidu](entities/Baidu.md) +- [BainAndCompany](entities/BainAndCompany.md) - [baoyu](entities/baoyu.md) - [BCS](entities/BCS.md) - [BehavioralNudgeEngine](entities/BehavioralNudgeEngine.md) @@ -605,12 +613,14 @@ - [BlackboxExporter](entities/BlackboxExporter.md) - [BMC](entities/BMC.md) - [BossZhipin](entities/BossZhipin.md) +- [BostonConsultingGroup](entities/BostonConsultingGroup.md) - [Bottlerocket](entities/Bottlerocket.md) - [bottom](entities/bottom.md) - [Brendan-Starnig](entities/Brendan-Starnig.md) - [BrianReeves](entities/BrianReeves.md) - [BrightCloud](entities/BrightCloud.md) - [Brightdata](entities/Brightdata.md) +- [Bronislaw-Malinowski](entities/Bronislaw-Malinowski.md) - [btop++](entities/btop++.md) - [Build-Hub](entities/Build-Hub.md) - [Caddy](entities/Caddy.md) @@ -620,19 +630,26 @@ - [CapCut-Pro](entities/CapCut-Pro.md) - [CCLE](entities/CCLE.md) - [CCOE](entities/CCOE.md) +- [Certora](entities/Certora.md) +- [Chaebol](entities/Chaebol.md) +- [Charlie-Munger](entities/Charlie-Munger.md) - [ChatGPT](entities/ChatGPT.md) - [Checkpoint](entities/Checkpoint.md) - [Checkpoint-Firewall](entities/Checkpoint-Firewall.md) - [ChinesePodcastPlatforms](entities/ChinesePodcastPlatforms.md) - [Choi-Wontak](entities/Choi-Wontak.md) +- [Christian-Deckelmann](entities/Christian-Deckelmann.md) - [Christian-Odonough](entities/Christian-Odonough.md) - [ChristianDeckelman](entities/ChristianDeckelman.md) +- [ChristopherVogler](entities/ChristopherVogler.md) - [Claude-Code](entities/Claude-Code.md) - [Claude-Desktop](entities/Claude-Desktop.md) +- [Claude-Levi-Strauss](entities/Claude-Levi-Strauss.md) - [Claude-Pro](entities/Claude-Pro.md) - [ClawdTalk](entities/ClawdTalk.md) - [ClawHub](entities/ClawHub.md) - [clawr.ing](entities/clawr.ing.md) +- [Clifford-Geertz](entities/Clifford-Geertz.md) - [Cline](entities/Cline.md) - [Clonezilla](entities/Clonezilla.md) - [cloud-computing](entities/cloud-computing.md) @@ -654,11 +671,13 @@ - [CTP-SRE-Team](entities/CTP-SRE-Team.md) - [Cursor](entities/Cursor.md) - [Curve-Finance](entities/Curve-Finance.md) +- [CustomerMatch](entities/CustomerMatch.md) - [CyberArk](entities/CyberArk.md) - [Damian](entities/Damian.md) - [DanielStefanovic](entities/DanielStefanovic.md) - [Databunker](entities/Databunker.md) - [DataviewPlugin](entities/DataviewPlugin.md) +- [David-Ogilvy](entities/David-Ogilvy.md) - [DaVinci-Resolve](entities/DaVinci-Resolve.md) - [Decopy](entities/Decopy.md) - [DeepLearningAI](entities/DeepLearningAI.md) @@ -666,6 +685,7 @@ - [DeepSider](entities/DeepSider.md) - [DenchClaw](entities/DenchClaw.md) - [DevOps-Maturity-Model](entities/DevOps-Maturity-Model.md) +- [DevOpsAutomator](entities/DevOpsAutomator.md) - [Dify](entities/Dify.md) - [Docker](entities/Docker.md) - [docker-buildx-plugin](entities/docker-buildx-plugin.md) @@ -685,19 +705,25 @@ - [ECS-Deploy-Runner](entities/ECS-Deploy-Runner.md) - [Ed](entities/Ed.md) - [EESJGong](entities/EESJGong.md) +- [Ethan-Mollick](entities/Ethan-Mollick.md) - [Euler-Finance](entities/Euler-Finance.md) - [Eurocode](entities/Eurocode.md) +- [EvidenceQA](entities/EvidenceQA.md) - [Fibos](entities/Fibos.md) +- [Filos-Christolakis](entities/Filos-Christolakis.md) - [Final-Cut-Pro](entities/Final-Cut-Pro.md) +- [Finance-Tracker](entities/Finance-Tracker.md) - [fireworks-tech-graph](entities/fireworks-tech-graph.md) - [Flux](entities/Flux.md) - [FMOD](entities/FMOD.md) +- [Foundry](entities/Foundry.md) - [FPNA-Team](entities/FPNA-Team.md) - [Frontend-Developer](entities/Frontend-Developer.md) - [frp](entities/frp.md) - [Gamma-AI](entities/Gamma-AI.md) - [GDPR](entities/GDPR.md) - [Gemini](entities/Gemini.md) +- [GerardGenette](entities/GerardGenette.md) - [ghproxy](entities/ghproxy.md) - [Gitea](entities/Gitea.md) - [GitHub-Enterprise](entities/GitHub-Enterprise.md) @@ -714,9 +740,12 @@ - [Google-Cloud](entities/Google-Cloud.md) - [Google-Sheets-API](entities/Google-Sheets-API.md) - [GoogleAds](entities/GoogleAds.md) +- [GoogleAdsAPI](entities/GoogleAdsAPI.md) - [GoogleCloud](entities/GoogleCloud.md) - [GoogleGemini](entities/GoogleGemini.md) - [Grafana](entities/Grafana.md) +- [GraphDaemon](entities/GraphDaemon.md) +- [Greg](entities/Greg.md) - [Growth-Hacker](entities/Growth-Hacker.md) - [Gruntwork](entities/Gruntwork.md) - [Gustavo](entities/Gustavo.md) @@ -746,8 +775,10 @@ - [Jira](entities/Jira.md) - [Jira-Workflow-Steward](entities/Jira-Workflow-Steward.md) - [JohnWilliams](entities/JohnWilliams.md) +- [JosephCampbell](entities/JosephCampbell.md) - [JP](entities/JP.md) - [K3s](entities/K3s.md) +- [K6](entities/K6.md) - [KAI](entities/KAI.md) - [KakaoTalk](entities/KakaoTalk.md) - [kepano](entities/kepano.md) @@ -764,15 +795,21 @@ - [LinkedIn-Campaign-Manager](entities/LinkedIn-Campaign-Manager.md) - [LinuxServer.io](entities/LinuxServer.io.md) - [LSIF](entities/LSIF.md) +- [LuxuryDeveloper](entities/LuxuryDeveloper.md) - [Mac](entities/Mac.md) - [Mac-Mini-M4](entities/Mac-Mini-M4.md) - [Mackinder](entities/Mackinder.md) - [macOS-Spatial-Metal-Engineer](entities/macOS-Spatial-Metal-Engineer.md) +- [Malt](entities/Malt.md) - [Manus](entities/Manus.md) +- [Marcel-Mauss](entities/Marcel-Mauss.md) - [MariaDB](entities/MariaDB.md) - [Martin-Nash](entities/Martin-Nash.md) - [Martin-Rosler](entities/Martin-Rosler.md) +- [Mary-Douglas](entities/Mary-Douglas.md) - [Matt-Van-Horne](entities/Matt-Van-Horne.md) +- [MCCLevelStrategy](entities/MCCLevelStrategy.md) +- [McKinseyAndCompany](entities/McKinseyAndCompany.md) - [McpServer](entities/McpServer.md) - [MCP(Model Context Protocol)](entities/MCP(Model Context Protocol).md) - [Mem0](entities/Mem0.md) @@ -796,6 +833,7 @@ - [MinIO](entities/MinIO.md) - [mission-center](entities/mission-center.md) - [mnemox-ai](entities/mnemox-ai.md) +- [MobileAppBuilder](entities/MobileAppBuilder.md) - [MUI](entities/MUI.md) - [n8n](entities/n8n.md) - [n8n-mcp](entities/n8n-mcp.md) @@ -817,6 +855,7 @@ - [NotebookLlama](entities/NotebookLlama.md) - [NotebookLM](entities/NotebookLM.md) - [Notion](entities/Notion.md) +- [NUS-NTU](entities/NUS-NTU.md) - [OBM](entities/OBM.md) - [Obsidian](entities/Obsidian.md) - [ObsidianTasksPlugin](entities/ObsidianTasksPlugin.md) @@ -837,6 +876,7 @@ - [OWASP](entities/OWASP.md) - [PageLM](entities/PageLM.md) - [PaloAltoNetworks](entities/PaloAltoNetworks.md) +- [Pandas](entities/Pandas.md) - [Paul-Hopkins](entities/Paul-Hopkins.md) - [PCG](entities/PCG.md) - [PCGTeam](entities/PCGTeam.md) @@ -844,6 +884,7 @@ - [Perplexica](entities/Perplexica.md) - [Phenops-Team](entities/Phenops-Team.md) - [PHT-Product-Hub-Platform](entities/PHT-Product-Hub-Platform.md) +- [Pierre-Bourdieu](entities/Pierre-Bourdieu.md) - [PingMe](entities/PingMe.md) - [Playwright](entities/Playwright.md) - [Podcastfy](entities/Podcastfy.md) @@ -854,12 +895,14 @@ - [Product-Security-Group](entities/Product-Security-Group.md) - [Project-Management-Experiment-Tracker](entities/Project-Management-Experiment-Tracker.md) - [Prometheus](entities/Prometheus.md) +- [PsychologistAgent](entities/PsychologistAgent.md) - [Public-Cloud-Provider](entities/Public-Cloud-Provider.md) - [Pulse-VPN](entities/Pulse-VPN.md) - [Pushka](entities/Pushka.md) - [Qalis](entities/Qalis.md) - [QALIS-Agent](entities/QALIS-Agent.md) - [Qdrant](entities/Qdrant.md) +- [QiChaCha](entities/QiChaCha.md) - [Qixi](entities/Qixi.md) - [Qwen](entities/Qwen.md) - [Qwen2.5-Coder](entities/Qwen2.5-Coder.md) @@ -873,13 +916,17 @@ - [Recapio](entities/Recapio.md) - [Rectangle](entities/Rectangle.md) - [RetroBoard](entities/RetroBoard.md) +- [Richard-Feynman](entities/Richard-Feynman.md) - [RichardFeynman](entities/RichardFeynman.md) +- [RobertMcKee](entities/RobertMcKee.md) - [Rocky-Linux](entities/Rocky-Linux.md) +- [RolandBarthes](entities/RolandBarthes.md) - [RSSHub](entities/RSSHub.md) - [rsvg-convert](entities/rsvg-convert.md) - [rsync](entities/rsync.md) - [Rufus](entities/Rufus.md) - [RustDesk](entities/RustDesk.md) +- [Salesforce](entities/Salesforce.md) - [SAM-Serverless-Application-Model](entities/SAM-Serverless-Application-Model.md) - [SAMR](entities/SAMR.md) - [SankarGopov](entities/SankarGopov.md) @@ -895,6 +942,7 @@ - [Slack](entities/Slack.md) - [SMACKS](entities/SMACKS.md) - [SMACs](entities/SMACs.md) +- [SME](entities/SME.md) - [SONY](entities/SONY.md) - [Sora](entities/Sora.md) - [SparkryAI](entities/SparkryAI.md) @@ -909,6 +957,7 @@ - [SteveJarman](entities/SteveJarman.md) - [Studio-Producer](entities/Studio-Producer.md) - [Supermemory](entities/Supermemory.md) +- [Supply-Chain-Strategist](entities/Supply-Chain-Strategist.md) - [Suraav-Paul](entities/Suraav-Paul.md) - [Suravpul](entities/Suravpul.md) - [SurfSense](entities/SurfSense.md) @@ -921,11 +970,13 @@ - [Terraform](entities/Terraform.md) - [TerraGrant](entities/TerraGrant.md) - [Terragrunt](entities/Terragrunt.md) +- [TestingRealityChecker](entities/TestingRealityChecker.md) - [TF-State-Bucket-Accessor](entities/TF-State-Bucket-Accessor.md) - [The-Agency](entities/The-Agency.md) - [The-DAO-2016](entities/The-DAO-2016.md) - [Thoth](entities/Thoth.md) - [Tiago-Forte](entities/Tiago-Forte.md) +- [Tianyancha](entities/Tianyancha.md) - [TikTok-Ads](entities/TikTok-Ads.md) - [tini](entities/tini.md) - [Todoist](entities/Todoist.md) @@ -940,6 +991,7 @@ - [TweetClaw](entities/TweetClaw.md) - [Twilio](entities/Twilio.md) - [TypeScript-Language-Server](entities/TypeScript-Language-Server.md) +- [TypeScriptLanguageServer](entities/TypeScriptLanguageServer.md) - [Ubuntu-Server](entities/Ubuntu-Server.md) - [UCMDB](entities/UCMDB.md) - [Uday](entities/Uday.md) @@ -954,17 +1006,20 @@ - [V2RayA](entities/V2RayA.md) - [Veeam](entities/Veeam.md) - [Vibe-Kanban](entities/Vibe-Kanban.md) +- [Victor-Turner](entities/Victor-Turner.md) - [VictoriaMetrics](entities/VictoriaMetrics.md) - [Vidu](entities/Vidu.md) - [Vinay](entities/Vinay.md) - [Vinaya](entities/Vinaya.md) - [VinoCTP](entities/VinoCTP.md) +- [VladimirPropp](entities/VladimirPropp.md) - [vLLM](entities/vLLM.md) - [VMware](entities/VMware.md) - [Wavespeed-AI](entities/Wavespeed-AI.md) - [WeChat](entities/WeChat.md) - [WeCom](entities/WeCom.md) - [Weibo](entities/Weibo.md) +- [Whimsy-Injector](entities/Whimsy-Injector.md) - [WildCard](entities/WildCard.md) - [Windsurf](entities/Windsurf.md) - [Workspace-Core](entities/Workspace-Core.md) @@ -979,6 +1034,7 @@ - [XR-Immersive-Developer](entities/XR-Immersive-Developer.md) - [XR-Interface-Architect](entities/XR-Interface-Architect.md) - [YishenTu](entities/YishenTu.md) +- [Yjs](entities/Yjs.md) - [YouTube](entities/YouTube.md) - [Zep](entities/Zep.md) - [Zhihu](entities/Zhihu.md) @@ -1004,13 +1060,18 @@ - [老子](entities/老子.md) - [苏东坡](entities/苏东坡.md) - [阿里云-DNS](entities/阿里云-DNS.md) +- [도장](entities/도장.md) ## Concepts - [14种UML图](concepts/14种UML图.md) +- [2D-First-Spatial-Second](concepts/2D-First-Spatial-Second.md) - [3-2-1产品介绍公式](concepts/3-2-1产品介绍公式.md) +- [4-Level-Semantic-Zoom](concepts/4-Level-Semantic-Zoom.md) - [6-Slide-Narrative-Arc](concepts/6-Slide-Narrative-Arc.md) - [7种视觉风格系统](concepts/7种视觉风格系统.md) +- [ABM-Display](concepts/ABM-Display.md) - [ABTesting](concepts/ABTesting.md) +- [Access-Control](concepts/Access-Control.md) - [Account-Health-Score](concepts/Account-Health-Score.md) - [Account-Monitoring](concepts/Account-Monitoring.md) - [Account-Tiering-Model](concepts/Account-Tiering-Model.md) @@ -1031,8 +1092,10 @@ - [Adversarial-Debate-Pattern](concepts/Adversarial-Debate-Pattern.md) - [Agent](concepts/Agent.md) - [Agent-Build-Gate](concepts/Agent-Build-Gate.md) +- [Agent-Collaboration-Protocol](concepts/Agent-Collaboration-Protocol.md) - [Agent-Design-Principles](concepts/Agent-Design-Principles.md) - [Agent-Driven-Market-Research](concepts/Agent-Driven-Market-Research.md) +- [Agent-Handoff](concepts/Agent-Handoff.md) - [Agent-Memory](concepts/Agent-Memory.md) - [Agent-Mode](concepts/Agent-Mode.md) - [Agent-Personality](concepts/Agent-Personality.md) @@ -1043,7 +1106,10 @@ - [Agentic-AI](concepts/Agentic-AI.md) - [AgenticSystem](concepts/AgenticSystem.md) - [AgenticWorkflow](concepts/AgenticWorkflow.md) +- [AgentIntegration](concepts/AgentIntegration.md) - [AGENTS.md](concepts/AGENTS.md.md) +- [AgentScopes](concepts/AgentScopes.md) +- [AgentWorkspace](concepts/AgentWorkspace.md) - [Agile-Ceremonies](concepts/Agile-Ceremonies.md) - [AgilePractices](concepts/AgilePractices.md) - [Aha-Moment](concepts/Aha-Moment.md) @@ -1088,14 +1154,20 @@ - [Asset-Pipeline](concepts/Asset-Pipeline.md) - [Assume-Role](concepts/Assume-Role.md) - [Atomic-Commit](concepts/Atomic-Commit.md) +- [Atomic-Note](concepts/Atomic-Note.md) - [Attachment-Theory](concepts/Attachment-Theory.md) +- [AttachmentTheory](concepts/AttachmentTheory.md) - [Attach容器](concepts/Attach容器.md) - [Attention-Economy](concepts/Attention-Economy.md) +- [AudienceStrategy](concepts/AudienceStrategy.md) - [Audit-Trail](concepts/Audit-Trail.md) - [Aurora-Global](concepts/Aurora-Global.md) - [Automated-Health-Logging](concepts/Automated-Health-Logging.md) - [Automated-Security-Audit](concepts/Automated-Security-Audit.md) +- [AutomatedBiddingStrategy](concepts/AutomatedBiddingStrategy.md) - [AutomatedReminders](concepts/AutomatedReminders.md) +- [Automation-Decision-Framework](concepts/Automation-Decision-Framework.md) +- [Automation-Verdict-System](concepts/Automation-Verdict-System.md) - [AutomationGovernance](concepts/AutomationGovernance.md) - [Availability](concepts/Availability.md) - [Availability-Zone-ID](concepts/Availability-Zone-ID.md) @@ -1118,14 +1190,18 @@ - [BandwidthManagement](concepts/BandwidthManagement.md) - [Beat-Sync](concepts/Beat-Sync.md) - [BEATS](concepts/BEATS.md) +- [Behavioral-Analytics](concepts/Behavioral-Analytics.md) - [Behavioral-Psychology](concepts/Behavioral-Psychology.md) - [Bidirectional-Linking](concepts/Bidirectional-Linking.md) - [Big-Five-Personality](concepts/Big-Five-Personality.md) +- [BigFive](concepts/BigFive.md) - [BindMount](concepts/BindMount.md) - [BI平台](concepts/BI平台.md) - [Blast-Radius](concepts/Blast-Radius.md) +- [Blended-Learning](concepts/Blended-Learning.md) - [Blocking](concepts/Blocking.md) - [Blockout-Discipline](concepts/Blockout-Discipline.md) +- [Bloom-Taxonomy](concepts/Bloom-Taxonomy.md) - [Bloom-认知分类](concepts/Bloom-认知分类.md) - [Blue-Green-Deployment](concepts/Blue-Green-Deployment.md) - [Blue-Hat-Logo](concepts/Blue-Hat-Logo.md) @@ -1136,7 +1212,13 @@ - [Branch-Strategy](concepts/Branch-Strategy.md) - [Branching-Narrative](concepts/Branching-Narrative.md) - [Brand-Environment](concepts/Brand-Environment.md) +- [Brand-Foundation-Framework](concepts/Brand-Foundation-Framework.md) +- [Brand-Personality-Framework](concepts/Brand-Personality-Framework.md) +- [Brand-Protection](concepts/Brand-Protection.md) +- [Brand-Voice](concepts/Brand-Voice.md) - [Break-the-Build](concepts/Break-the-Build.md) +- [Budget-Variance-Analysis](concepts/Budget-Variance-Analysis.md) +- [BudgetPacing](concepts/BudgetPacing.md) - [Bug-Bounty](concepts/Bug-Bounty.md) - [Build-Mode](concepts/Build-Mode.md) - [Build-Your-Own-X](concepts/Build-Your-Own-X.md) @@ -1144,6 +1226,7 @@ - [Business-Analysis](concepts/Business-Analysis.md) - [Business-Impact-Analysis](concepts/Business-Impact-Analysis.md) - [Business-Knowledge-Base](concepts/Business-Knowledge-Base.md) +- [BusinessImpactQuantification](concepts/BusinessImpactQuantification.md) - [BYOD](concepts/BYOD.md) - [CACandLTV](concepts/CACandLTV.md) - [Caddy](concepts/Caddy.md) @@ -1154,17 +1237,23 @@ - [Canary-Release](concepts/Canary-Release.md) - [Canvas](concepts/Canvas.md) - [CAPA](concepts/CAPA.md) +- [Cash-Flow-Forecasting](concepts/Cash-Flow-Forecasting.md) +- [CBT-CognitiveDistortions](concepts/CBT-CognitiveDistortions.md) - [Centralized-Logging](concepts/Centralized-Logging.md) - [CEOPattern](concepts/CEOPattern.md) +- [Certora](concepts/Certora.md) - [Chained Agents](concepts/Chained Agents.md) - [Challenger-Sales-Model](concepts/Challenger-Sales-Model.md) +- [Champion-Challenger](concepts/Champion-Challenger.md) - [Change-Failure-Rate](concepts/Change-Failure-Rate.md) - [Change-Management](concepts/Change-Management.md) - [Channel-Based-Monitoring](concepts/Channel-Based-Monitoring.md) - [Character-Arc](concepts/Character-Arc.md) - [Character-Voice-Pillars](concepts/Character-Voice-Pillars.md) +- [CharacterArc](concepts/CharacterArc.md) - [Check-in-Fatigue](concepts/Check-in-Fatigue.md) - [CheckinFatigue](concepts/CheckinFatigue.md) +- [Checks-Effects-Interactions](concepts/Checks-Effects-Interactions.md) - [ChinaLaborLawCompliance](concepts/ChinaLaborLawCompliance.md) - [Choice-Architecture](concepts/Choice-Architecture.md) - [Choreography](concepts/Choreography.md) @@ -1208,6 +1297,7 @@ - [Cognitive-Load-Reduction](concepts/Cognitive-Load-Reduction.md) - [Color-Grading](concepts/Color-Grading.md) - [Columnar-Storage](concepts/Columnar-Storage.md) +- [Command-Theater](concepts/Command-Theater.md) - [Command-Theater-Interface](concepts/Command-Theater-Interface.md) - [Community-Credibility](concepts/Community-Credibility.md) - [Compaction](concepts/Compaction.md) @@ -1231,6 +1321,7 @@ - [Content-Hashing](concepts/Content-Hashing.md) - [Content-Ingestion](concepts/Content-Ingestion.md) - [Content-Matrix-Strategy](concepts/Content-Matrix-Strategy.md) +- [Content-Operations](concepts/Content-Operations.md) - [Content-Pillar](concepts/Content-Pillar.md) - [ContentMixStrategy](concepts/ContentMixStrategy.md) - [Context-Cores](concepts/Context-Cores.md) @@ -1242,13 +1333,16 @@ - [Continuous-Batching](concepts/Continuous-Batching.md) - [Continuous-Delivery](concepts/Continuous-Delivery.md) - [Continuous-Deployment](concepts/Continuous-Deployment.md) +- [Continuous-Dev-QA-Loop](concepts/Continuous-Dev-QA-Loop.md) - [Continuous-Integration](concepts/Continuous-Integration.md) +- [ControllingIdea](concepts/ControllingIdea.md) - [Conversational-Interface](concepts/Conversational-Interface.md) - [Conversions-API](concepts/Conversions-API.md) - [Core-Gameplay-Loop](concepts/Core-Gameplay-Loop.md) - [CoreDNS-Scaling](concepts/CoreDNS-Scaling.md) - [cost-of-delay](concepts/cost-of-delay.md) - [Cost-Optimization](concepts/Cost-Optimization.md) +- [Counterfactual-Analysis](concepts/Counterfactual-Analysis.md) - [Cowork-UI](concepts/Cowork-UI.md) - [CoworkWorkspace](concepts/CoworkWorkspace.md) - [Coze-Workflow](concepts/Coze-Workflow.md) @@ -1260,7 +1354,14 @@ - [Cross-Account-Monitoring](concepts/Cross-Account-Monitoring.md) - [Cross-account-Terraform-Modules](concepts/Cross-account-Terraform-Modules.md) - [Cross-Platform-Strategy](concepts/Cross-Platform-Strategy.md) +- [CrossPlatformPlanning](concepts/CrossPlatformPlanning.md) +- [CSS-Design-System](concepts/CSS-Design-System.md) +- [CTV-OTT-Advertising](concepts/CTV-OTT-Advertising.md) +- [Cultural-Authenticity](concepts/Cultural-Authenticity.md) +- [Cultural-Ecology](concepts/Cultural-Ecology.md) +- [Cultural-Intelligence](concepts/Cultural-Intelligence.md) - [Cumulative-Memory](concepts/Cumulative-Memory.md) +- [Curiosity-Driven-Bug-Discovery](concepts/Curiosity-Driven-Bug-Discovery.md) - [Custom-Audience-Engineering](concepts/Custom-Audience-Engineering.md) - [Custom-Instructions](concepts/Custom-Instructions.md) - [Customer-Zero](concepts/Customer-Zero.md) @@ -1277,6 +1378,7 @@ - [Debugging-Visualization](concepts/Debugging-Visualization.md) - [DecisionFramework](concepts/DecisionFramework.md) - [Default-Bias](concepts/Default-Bias.md) +- [Defect-Prediction](concepts/Defect-Prediction.md) - [Defense-in-Depth](concepts/Defense-in-Depth.md) - [Defense-Mechanisms](concepts/Defense-Mechanisms.md) - [Defuddle](concepts/Defuddle.md) @@ -1291,6 +1393,7 @@ - [Deployment-vs-Release](concepts/Deployment-vs-Release.md) - [Design-Thinking](concepts/Design-Thinking.md) - [Design-to-Code-Workflow](concepts/Design-to-Code-Workflow.md) +- [Dev-QA-Loop](concepts/Dev-QA-Loop.md) - [DevOps-Maturity](concepts/DevOps-Maturity.md) - [DevOps-Maturity-Model](concepts/DevOps-Maturity-Model.md) - [DevOpsCulture](concepts/DevOpsCulture.md) @@ -1328,6 +1431,7 @@ - [Earnings-Calendar](concepts/Earnings-Calendar.md) - [EC2-Purchase-Options](concepts/EC2-Purchase-Options.md) - [EC2-Spot-Instances](concepts/EC2-Spot-Instances.md) +- [Echidna](concepts/Echidna.md) - [Economy-Balance](concepts/Economy-Balance.md) - [ECS](concepts/ECS.md) - [ECS-Deploy-Runner](concepts/ECS-Deploy-Runner.md) @@ -1348,6 +1452,7 @@ - [Entity-Optimization](concepts/Entity-Optimization.md) - [Environmental-Determinism](concepts/Environmental-Determinism.md) - [Environmental-Storytelling](concepts/Environmental-Storytelling.md) +- [EriksonPsychosocialStages](concepts/EriksonPsychosocialStages.md) - [Error-Accountability](concepts/Error-Accountability.md) - [Error-Budget](concepts/Error-Budget.md) - [Error-Surface-vs-Root-Cause](concepts/Error-Surface-vs-Root-Cause.md) @@ -1357,15 +1462,20 @@ - [EventSourcing](concepts/EventSourcing.md) - [Evidence-based-Merge-Proposal](concepts/Evidence-based-Merge-Proposal.md) - [Evidence-Chain](concepts/Evidence-Chain.md) +- [EvidenceCollection](concepts/EvidenceCollection.md) +- [Executive-Summary-Formula](concepts/Executive-Summary-Formula.md) - [Expert-User-Assumption](concepts/Expert-User-Assumption.md) - [Exporter](concepts/Exporter.md) - [Extended Thinking](concepts/Extended Thinking.md) - [ExternalReasoning](concepts/ExternalReasoning.md) - [external配置](concepts/external配置.md) - [Fabula-Sjuzhet](concepts/Fabula-Sjuzhet.md) +- [Fabula-vs-Sjuzhet](concepts/Fabula-vs-Sjuzhet.md) - [Fact-Recall-vs-Compounding](concepts/Fact-Recall-vs-Compounding.md) - [Fail-Closed](concepts/Fail-Closed.md) - [Failover](concepts/Failover.md) +- [Failure-Pattern-Analysis](concepts/Failure-Pattern-Analysis.md) +- [Fairness-Audit](concepts/Fairness-Audit.md) - [Fan-Out-Pattern](concepts/Fan-Out-Pattern.md) - [Feature-Flag](concepts/Feature-Flag.md) - [FeatureList](concepts/FeatureList.md) @@ -1377,21 +1487,28 @@ - [File-Watcher](concepts/File-Watcher.md) - [Fine-Tuning](concepts/Fine-Tuning.md) - [FinOps](concepts/FinOps.md) +- [Five-Layer-Prompt-Structure](concepts/Five-Layer-Prompt-Structure.md) - [Five-Phase-Script-Framework](concepts/Five-Phase-Script-Framework.md) - [Fix-Pack](concepts/Fix-Pack.md) - [Fixed-Point-Semantics](concepts/Fixed-Point-Semantics.md) +- [Flash-Loan-Attack](concepts/Flash-Loan-Attack.md) - [Flow-And-Readability](concepts/Flow-And-Readability.md) - [FluentBit](concepts/FluentBit.md) - [Food-Sensitivity-Tracking](concepts/Food-Sensitivity-Tracking.md) +- [Formal-Verification](concepts/Formal-Verification.md) - [Foundation-AMI](concepts/Foundation-AMI.md) - [Foundation-Models](concepts/Foundation-Models.md) +- [Frequency-Cap](concepts/Frequency-Cap.md) - [frp](concepts/frp.md) - [Fstab](concepts/Fstab.md) - [Full-Draft-Generation](concepts/Full-Draft-Generation.md) - [Full-Funnel-Campaign-Architecture](concepts/Full-Funnel-Campaign-Architecture.md) - [FullDraftGeneration](concepts/FullDraftGeneration.md) +- [Functionalism](concepts/Functionalism.md) - [Fuzzy-Matching](concepts/Fuzzy-Matching.md) - [Gamification](concepts/Gamification.md) +- [Gamification-System](concepts/Gamification-System.md) +- [GapAssessment](concepts/GapAssessment.md) - [GAS-Gameplay-Ability-System](concepts/GAS-Gameplay-Ability-System.md) - [Gate-Process](concepts/Gate-Process.md) - [Gatekeeper](concepts/Gatekeeper.md) @@ -1404,7 +1521,9 @@ - [Generator](concepts/Generator.md) - [Generator-Space](concepts/Generator-Space.md) - [Genetic-Algorithm](concepts/Genetic-Algorithm.md) +- [Genre-Specific-Prompt-Patterns](concepts/Genre-Specific-Prompt-Patterns.md) - [Geographic-Coherence](concepts/Geographic-Coherence.md) +- [Gift-Economy](concepts/Gift-Economy.md) - [GitAsAuditLog](concepts/GitAsAuditLog.md) - [GitHub-Release-Monitoring](concepts/GitHub-Release-Monitoring.md) - [GitLab-Geo](concepts/GitLab-Geo.md) @@ -1413,6 +1532,7 @@ - [GitOps](concepts/GitOps.md) - [Global-First-Architecture](concepts/Global-First-Architecture.md) - [Global-Information-Security-Policy-GISP](concepts/Global-Information-Security-Policy-GISP.md) +- [Go-to-Market-Brief](concepts/Go-to-Market-Brief.md) - [Golden-3-Second-Hook](concepts/Golden-3-Second-Hook.md) - [GP3-EBS-Storage](concepts/GP3-EBS-Storage.md) - [GPG-密钥验证](concepts/GPG-密钥验证.md) @@ -1420,8 +1540,10 @@ - [Grandes-Ecoles](concepts/Grandes-Ecoles.md) - [Graviton](concepts/Graviton.md) - [Green-Computing](concepts/Green-Computing.md) +- [Groupthink](concepts/Groupthink.md) - [Growth-Loop](concepts/Growth-Loop.md) - [GrowthFunnelOptimization](concepts/GrowthFunnelOptimization.md) +- [Habit-Formation](concepts/Habit-Formation.md) - [Hallucination](concepts/Hallucination.md) - [Hand-Tracking](concepts/Hand-Tracking.md) - [Handoff-Contract](concepts/Handoff-Contract.md) @@ -1429,9 +1551,11 @@ - [Headless-服务器](concepts/Headless-服务器.md) - [Healthcare-Marketing-Compliance](concepts/Healthcare-Marketing-Compliance.md) - [Heartbeat-Monitoring](concepts/Heartbeat-Monitoring.md) +- [HeroesJourney](concepts/HeroesJourney.md) - [Hidden-Failure-Paths](concepts/Hidden-Failure-Paths.md) - [Hierarchy-Agent-Pattern](concepts/Hierarchy-Agent-Pattern.md) - [high-availability](concepts/high-availability.md) +- [Historiography](concepts/Historiography.md) - [Holistic-Admissions](concepts/Holistic-Admissions.md) - [HookBodyCTA](concepts/HookBodyCTA.md) - [Horizontal-Pod-Autoscaler](concepts/Horizontal-Pod-Autoscaler.md) @@ -1463,10 +1587,15 @@ - [Immutable-Infrastructure](concepts/Immutable-Infrastructure.md) - [Immutable-Root-Filesystem](concepts/Immutable-Root-Filesystem.md) - [Incident-Management](concepts/Incident-Management.md) +- [Inclusive-Delight](concepts/Inclusive-Delight.md) +- [Inclusive-Delight-Design](concepts/Inclusive-Delight-Design.md) +- [Inclusive-Design-Research](concepts/Inclusive-Design-Research.md) - [InclusiveVisuals](concepts/InclusiveVisuals.md) - [Incremental-Graph-Update](concepts/Incremental-Graph-Update.md) - [Incremental-Indexing](concepts/Incremental-Indexing.md) +- [IncrementalGraphUpdate](concepts/IncrementalGraphUpdate.md) - [Incrementality-Testing](concepts/Incrementality-Testing.md) +- [IncrementalityTesting](concepts/IncrementalityTesting.md) - [Indexing](concepts/Indexing.md) - [Infoblox-Grid](concepts/Infoblox-Grid.md) - [Infoblox-NIOS](concepts/Infoblox-NIOS.md) @@ -1478,8 +1607,10 @@ - [Intent-Classification](concepts/Intent-Classification.md) - [IntentDrivenRouting](concepts/IntentDrivenRouting.md) - [Intentional-Cloud-Strategy](concepts/Intentional-Cloud-Strategy.md) +- [Intersectionality](concepts/Intersectionality.md) - [Inversion](concepts/Inversion.md) - [INVEST](concepts/INVEST.md) +- [Investment-Analysis](concepts/Investment-Analysis.md) - [Invisible-Exclusion](concepts/Invisible-Exclusion.md) - [IPAM](concepts/IPAM.md) - [IPv6-in-EKS](concepts/IPv6-in-EKS.md) @@ -1498,15 +1629,21 @@ - [Kanban](concepts/Kanban.md) - [Karpenter](concepts/Karpenter.md) - [Karpman-Drama-Triangle](concepts/Karpman-Drama-Triangle.md) +- [KarpmanDramaTriangle](concepts/KarpmanDramaTriangle.md) - [KEDA](concepts/KEDA.md) - [Keyword-Based-Monitoring](concepts/Keyword-Based-Monitoring.md) - [KFactor](concepts/KFactor.md) - [Kill-Switch](concepts/Kill-Switch.md) +- [Kinship-System](concepts/Kinship-System.md) +- [Kirkpatrick-Model](concepts/Kirkpatrick-Model.md) - [Kirkpatrick-四级评估](concepts/Kirkpatrick-四级评估.md) +- [Kishotenketsu](concepts/Kishotenketsu.md) - [Knock-out-Pattern](concepts/Knock-out-Pattern.md) - [Knowledge-Base](concepts/Knowledge-Base.md) - [Knowledge-Base-RAG](concepts/Knowledge-Base-RAG.md) - [Kolb-体验式学习圈](concepts/Kolb-体验式学习圈.md) +- [Korean-Corporate-Hierarchy](concepts/Korean-Corporate-Hierarchy.md) +- [Kraljic-Matrix](concepts/Kraljic-Matrix.md) - [Kubernetes](concepts/Kubernetes.md) - [Kubernetes-Tagging](concepts/Kubernetes-Tagging.md) - [KV-Cache](concepts/KV-Cache.md) @@ -1515,6 +1652,7 @@ - [Landing-Zone-Architecture](concepts/Landing-Zone-Architecture.md) - [LangChain](concepts/LangChain.md) - [Language-Detection](concepts/Language-Detection.md) +- [LanguageServerProtocol](concepts/LanguageServerProtocol.md) - [Large-Language-Model](concepts/Large-Language-Model.md) - [LargeWorldCoordinates](concepts/LargeWorldCoordinates.md) - [Last-30-Days-Method](concepts/Last-30-Days-Method.md) @@ -1522,11 +1660,13 @@ - [LaTeX-Flattening](concepts/LaTeX-Flattening.md) - [launchd](concepts/launchd.md) - [Layered-Configuration](concepts/Layered-Configuration.md) +- [Layout-Framework](concepts/Layout-Framework.md) - [Lead-Generation-Funnel](concepts/Lead-Generation-Funnel.md) - [Lead-Time](concepts/Lead-Time.md) - [Lean](concepts/Lean.md) - [Learn-By-Building](concepts/Learn-By-Building.md) - [Left-over-Principle](concepts/Left-over-Principle.md) +- [Liminality](concepts/Liminality.md) - [Link-Proposer](concepts/Link-Proposer.md) - [Liquid-Glass-Design-System](concepts/Liquid-Glass-Design-System.md) - [LLM-Wiki](concepts/LLM-Wiki.md) @@ -1541,12 +1681,15 @@ - [Longue-Duree](concepts/Longue-Duree.md) - [Lore-Architecture](concepts/Lore-Architecture.md) - [Lost-Prompt-Analysis](concepts/Lost-Prompt-Analysis.md) +- [LSIF](concepts/LSIF.md) - [LSP-317-Specification](concepts/LSP-317-Specification.md) +- [LSPOrchestrator](concepts/LSPOrchestrator.md) - [Luhmann-四原则](concepts/Luhmann-四原则.md) - [Mackinder-Heartland-Theory](concepts/Mackinder-Heartland-Theory.md) - [Management-Pack](concepts/Management-Pack.md) - [MarkdownBasedTask](concepts/MarkdownBasedTask.md) - [Marketing-Attribution](concepts/Marketing-Attribution.md) +- [Material-Culture](concepts/Material-Culture.md) - [MaterialFunction](concepts/MaterialFunction.md) - [MCPOnceAllAgents](concepts/MCPOnceAllAgents.md) - [MEDDPICC](concepts/MEDDPICC.md) @@ -1560,7 +1703,12 @@ - [Mermaid](concepts/Mermaid.md) - [MessageMatch](concepts/MessageMatch.md) - [Metrics-Server](concepts/Metrics-Server.md) +- [Micro-Entreprise](concepts/Micro-Entreprise.md) +- [Micro-Interaction](concepts/Micro-Interaction.md) +- [Micro-Interaction-Design](concepts/Micro-Interaction-Design.md) - [Micro-Recovery](concepts/Micro-Recovery.md) +- [Micro-Sprint](concepts/Micro-Sprint.md) +- [Microhistory](concepts/Microhistory.md) - [MicroInfluencerPartnership](concepts/MicroInfluencerPartnership.md) - [Miping](concepts/Miping.md) - [MLOps](concepts/MLOps.md) @@ -1589,14 +1737,19 @@ - [Multi-Tenancy](concepts/Multi-Tenancy.md) - [Multi-Window-Architecture](concepts/Multi-Window-Architecture.md) - [MVP](concepts/MVP.md) +- [Mythril](concepts/Mythril.md) +- [n8n-Workflow-Standard](concepts/n8n-Workflow-Standard.md) - [N8NNodeTypes](concepts/N8NNodeTypes.md) - [N8nWorkflowStandard](concepts/N8nWorkflowStandard.md) - [Nanite](concepts/Nanite.md) - [Narrative-Debt](concepts/Narrative-Debt.md) - [Narrative-Debt-Tracking](concepts/Narrative-Debt-Tracking.md) - [Narrative-Gameplay-Integration](concepts/Narrative-Gameplay-Integration.md) +- [NarrativeTheory](concepts/NarrativeTheory.md) - [nas套件管理](concepts/nas套件管理.md) - [National-Annex](concepts/National-Annex.md) +- [nav.index.jsonl](concepts/nav.index.jsonl.md) +- [Negative-Prompting](concepts/Negative-Prompting.md) - [NegativePromptingLibrary](concepts/NegativePromptingLibrary.md) - [Net-Revenue-Retention](concepts/Net-Revenue-Retention.md) - [Network-Prediction](concepts/Network-Prediction.md) @@ -1609,6 +1762,7 @@ - [NorthStarMetric](concepts/NorthStarMetric.md) - [Note-Database-Queries](concepts/Note-Database-Queries.md) - [NoteDatabase](concepts/NoteDatabase.md) +- [Nudge-Sequence](concepts/Nudge-Sequence.md) - [Nunchi](concepts/Nunchi.md) - [NVMe硬盘分区](concepts/NVMe硬盘分区.md) - [Observability](concepts/Observability.md) @@ -1628,6 +1782,7 @@ - [Organic-Traffic-Amplification](concepts/Organic-Traffic-Amplification.md) - [OS-End-of-Life](concepts/OS-End-of-Life.md) - [OS-Hardening](concepts/OS-Hardening.md) +- [Outcome-vs-Output](concepts/Outcome-vs-Output.md) - [Overlay-Network](concepts/Overlay-Network.md) - [Override-Status](concepts/Override-Status.md) - [OWASP-Top-Ten](concepts/OWASP-Top-Ten.md) @@ -1656,26 +1811,33 @@ - [Personal-CRM](concepts/Personal-CRM.md) - [Personalization](concepts/Personalization.md) - [PersuasionArchitecture](concepts/PersuasionArchitecture.md) +- [Photography-Terminology](concepts/Photography-Terminology.md) - [Pipeline](concepts/Pipeline.md) +- [Pipeline-State-Management](concepts/Pipeline-State-Management.md) - [PipelineVelocity](concepts/PipelineVelocity.md) - [Pivot-Strategy](concepts/Pivot-Strategy.md) - [Plan-Mode](concepts/Plan-Mode.md) +- [Platform-Specific-Optimization](concepts/Platform-Specific-Optimization.md) - [PMDelegationPattern](concepts/PMDelegationPattern.md) - [pmset](concepts/pmset.md) - [POC-Scoping](concepts/POC-Scoping.md) - [Pod-Security-Context](concepts/Pod-Security-Context.md) - [PodcastPositioning](concepts/PodcastPositioning.md) +- [Polanyi-Exchange](concepts/Polanyi-Exchange.md) - [Policy-as-Code](concepts/Policy-as-Code.md) +- [PolyvagalTheory](concepts/PolyvagalTheory.md) - [Pomodoro-Technique](concepts/Pomodoro-Technique.md) - [Population-Stability-Index](concepts/Population-Stability-Index.md) - [Portage-Salarial](concepts/Portage-Salarial.md) - [Portfolio-ROI](concepts/Portfolio-ROI.md) - [Post-Processing](concepts/Post-Processing.md) +- [Practice-Theory](concepts/Practice-Theory.md) - [PRD生成工作流](concepts/PRD生成工作流.md) - [Pre-Build-Validation](concepts/Pre-Build-Validation.md) - [Pre-commit-Hooks](concepts/Pre-commit-Hooks.md) - [PreBuildValidation](concepts/PreBuildValidation.md) - [Predictive-Maintenance](concepts/Predictive-Maintenance.md) +- [Presentism](concepts/Presentism.md) - [Prisma-Access](concepts/Prisma-Access.md) - [Private-Cloud](concepts/Private-Cloud.md) - [Private-Context](concepts/Private-Context.md) @@ -1690,9 +1852,12 @@ - [process-management](concepts/process-management.md) - [Product-Backlog](concepts/Product-Backlog.md) - [Product-Hierarchy](concepts/Product-Hierarchy.md) +- [Product-Requirements-Document](concepts/Product-Requirements-Document.md) - [ProductLedGrowth](concepts/ProductLedGrowth.md) - [Program-Demand-Process](concepts/Program-Demand-Process.md) +- [Programmatic-Buying](concepts/Programmatic-Buying.md) - [Progressive-Rollout](concepts/Progressive-Rollout.md) +- [Project-Management-Project-Shepherd](concepts/Project-Management-Project-Shepherd.md) - [Project-Thor](concepts/Project-Thor.md) - [ProjectState](concepts/ProjectState.md) - [Prometheus告警规则](concepts/Prometheus告警规则.md) @@ -1700,17 +1865,24 @@ - [Prompt-Engineering](concepts/Prompt-Engineering.md) - [PromQL](concepts/PromQL.md) - [Proof-of-Concept](concepts/Proof-of-Concept.md) +- [Proof-Project-Strategy](concepts/Proof-Project-Strategy.md) - [Propp-Morphology](concepts/Propp-Morphology.md) +- [ProppMorphology](concepts/ProppMorphology.md) - [Proxy-Editing](concepts/Proxy-Editing.md) - [proxychains](concepts/proxychains.md) +- [PsychodynamicDefenseMechanisms](concepts/PsychodynamicDefenseMechanisms.md) - [Public-Cloud](concepts/Public-Cloud.md) - [PUID-PGID](concepts/PUID-PGID.md) - [Pull-Request-Governance](concepts/Pull-Request-Governance.md) - [Purpose-Built-Databases](concepts/Purpose-Built-Databases.md) +- [Qualitative-Quantitative-Research](concepts/Qualitative-Quantitative-Research.md) - [Quality-Gate](concepts/Quality-Gate.md) +- [Quality-Metrics](concepts/Quality-Metrics.md) +- [Quality-ROI-Analysis](concepts/Quality-ROI-Analysis.md) - [Quality-Scoring](concepts/Quality-Scoring.md) - [Quality-Scoring-Algorithm](concepts/Quality-Scoring-Algorithm.md) - [QualityAdjustedCoverage](concepts/QualityAdjustedCoverage.md) +- [QualityGate](concepts/QualityGate.md) - [QualitySwitch](concepts/QualitySwitch.md) - [QueryLanguage](concepts/QueryLanguage.md) - [Quick-Capture](concepts/Quick-Capture.md) @@ -1732,7 +1904,9 @@ - [Redis缓存](concepts/Redis缓存.md) - [Reentrancy](concepts/Reentrancy.md) - [Reference-Architecture](concepts/Reference-Architecture.md) +- [Relationship-Lifecycle](concepts/Relationship-Lifecycle.md) - [Release-Management](concepts/Release-Management.md) +- [Release-Readiness-Assessment](concepts/Release-Readiness-Assessment.md) - [Reliability-Engineering](concepts/Reliability-Engineering.md) - [ReliabilityBaseline](concepts/ReliabilityBaseline.md) - [Remote-Rescue](concepts/Remote-Rescue.md) @@ -1743,15 +1917,18 @@ - [Replication-Graph](concepts/Replication-Graph.md) - [Repo-Mirroring](concepts/Repo-Mirroring.md) - [Requirements-Gathering](concepts/Requirements-Gathering.md) +- [Research-Triangulation](concepts/Research-Triangulation.md) - [ReservedInstances](concepts/ReservedInstances.md) - [Resolver-Rules](concepts/Resolver-Rules.md) - [Resource-Allocation](concepts/Resource-Allocation.md) - [Resource-Tagging](concepts/Resource-Tagging.md) - [Responsible-AI](concepts/Responsible-AI.md) +- [Responsive-Breakpoints](concepts/Responsive-Breakpoints.md) - [ResponsiveSearchAds](concepts/ResponsiveSearchAds.md) - [Retrieval](concepts/Retrieval.md) - [Reviewer](concepts/Reviewer.md) - [RFM-Analysis](concepts/RFM-Analysis.md) +- [RICE-Prioritization-Score](concepts/RICE-Prioritization-Score.md) - [Rightsizing](concepts/Rightsizing.md) - [Risk-Mitigation](concepts/Risk-Mitigation.md) - [Robotic-Framework](concepts/Robotic-Framework.md) @@ -1808,6 +1985,7 @@ - [Semantic-Search](concepts/Semantic-Search.md) - [Semantic-Versioning](concepts/Semantic-Versioning.md) - [Semantic-Zoom](concepts/Semantic-Zoom.md) +- [SemanticCodeGraph](concepts/SemanticCodeGraph.md) - [SemanticRouting](concepts/SemanticRouting.md) - [Sequential-Handoff](concepts/Sequential-Handoff.md) - [Sequential-Thinking](concepts/Sequential-Thinking.md) @@ -1835,13 +2013,17 @@ - [Six-Sigma](concepts/Six-Sigma.md) - [SKAdNetwork](concepts/SKAdNetwork.md) - [SkillToolset](concepts/SkillToolset.md) +- [Slither](concepts/Slither.md) - [SLR](concepts/SLR.md) - [SLS](concepts/SLS.md) - [SMACs](concepts/SMACs.md) - [SmartBidding](concepts/SmartBidding.md) - [SnapMirror](concepts/SnapMirror.md) +- [SOC2](concepts/SOC2.md) - [Social-Media-Giveaway](concepts/Social-Media-Giveaway.md) - [Social-Media-Monitoring](concepts/Social-Media-Monitoring.md) +- [SocialIdentityTheory](concepts/SocialIdentityTheory.md) +- [Sociological-Accuracy](concepts/Sociological-Accuracy.md) - [Socket-登录](concepts/Socket-登录.md) - [SOCKS5代理](concepts/SOCKS5代理.md) - [Software-Assurance-Maturity-Model](concepts/Software-Assurance-Maturity-Model.md) @@ -1873,19 +2055,24 @@ - [STARFramework](concepts/STARFramework.md) - [Startup-MVP-Pipeline](concepts/Startup-MVP-Pipeline.md) - [Static-Routing](concepts/Static-Routing.md) +- [Statistical-Analysis](concepts/Statistical-Analysis.md) - [Statistical-Process-Control](concepts/Statistical-Process-Control.md) - [Strategic-Portfolio-Management](concepts/Strategic-Portfolio-Management.md) - [Strategic-Question-Answer](concepts/Strategic-Question-Answer.md) +- [StrategicStorytelling](concepts/StrategicStorytelling.md) - [Streak-Tracking](concepts/Streak-Tracking.md) - [StreakTracking](concepts/StreakTracking.md) - [Stretched-Cluster](concepts/Stretched-Cluster.md) +- [Structuralism](concepts/Structuralism.md) - [StructuredInterview](concepts/StructuredInterview.md) - [StudyVault](concepts/StudyVault.md) - [Sub-Agent-Race-Condition](concepts/Sub-Agent-Race-Condition.md) - [SubagentDelegation](concepts/SubagentDelegation.md) - [Substrate](concepts/Substrate.md) - [Supply-Chain-Security](concepts/Supply-Chain-Security.md) +- [SWC-Registry](concepts/SWC-Registry.md) - [SwiftUI-Volumetric-APIs](concepts/SwiftUI-Volumetric-APIs.md) +- [Symbolic-Anthropology](concepts/Symbolic-Anthropology.md) - [symbolic-link](concepts/symbolic-link.md) - [SymbolicLink](concepts/SymbolicLink.md) - [SyntheticMonitoring](concepts/SyntheticMonitoring.md) @@ -1897,6 +2084,7 @@ - [TagBasedIndexing](concepts/TagBasedIndexing.md) - [Tagging](concepts/Tagging.md) - [TAIL-Strategy](concepts/TAIL-Strategy.md) +- [Taoxi](concepts/Taoxi.md) - [Task-Query](concepts/Task-Query.md) - [TaskAutomation](concepts/TaskAutomation.md) - [TaskAutomationPipeline](concepts/TaskAutomationPipeline.md) @@ -1915,21 +2103,27 @@ - [Terraform-IaC](concepts/Terraform-IaC.md) - [Terraform-Modules](concepts/Terraform-Modules.md) - [TerraformState](concepts/TerraformState.md) +- [Test-Coverage-Analysis](concepts/Test-Coverage-Analysis.md) - [Test-Mode](concepts/Test-Mode.md) - [Text-and-Search](concepts/Text-and-Search.md) - [TextToSpeech](concepts/TextToSpeech.md) - [TextToVideo](concepts/TextToVideo.md) - [TF-State-Bucket-Accessor](concepts/TF-State-Bucket-Accessor.md) - [TGW-Peering](concepts/TGW-Peering.md) +- [Theme-Toggle](concepts/Theme-Toggle.md) - [Third Party Penetration Testing](concepts/Third Party Penetration Testing.md) - [Thought-Leadership](concepts/Thought-Leadership.md) - [Threat-Intelligence](concepts/Threat-Intelligence.md) - [Threat-Modeling](concepts/Threat-Modeling.md) +- [Three-Act-Proposal-Narrative](concepts/Three-Act-Proposal-Narrative.md) - [Three-Tier-Review-Mechanism](concepts/Three-Tier-Review-Mechanism.md) +- [Three-Tier-School-Selection](concepts/Three-Tier-School-Selection.md) - [ThreeActProposalNarrative](concepts/ThreeActProposalNarrative.md) +- [ThreeActStructure](concepts/ThreeActStructure.md) - [TieredCampaignArchitecture](concepts/TieredCampaignArchitecture.md) - [Time-Boxing](concepts/Time-Boxing.md) - [Time-to-Market](concepts/Time-to-Market.md) +- [TJM](concepts/TJM.md) - [Todoist-API](concepts/Todoist-API.md) - [Token](concepts/Token.md) - [Token-Light-Design](concepts/Token-Light-Design.md) @@ -1942,6 +2136,7 @@ - [TopicRouting](concepts/TopicRouting.md) - [totp](concepts/totp.md) - [Transactional-Analysis](concepts/Transactional-Analysis.md) +- [TransactionalAnalysis](concepts/TransactionalAnalysis.md) - [Transcript-Based-Summarization](concepts/Transcript-Based-Summarization.md) - [TranscriptProcessing](concepts/TranscriptProcessing.md) - [Transit-Gateway](concepts/Transit-Gateway.md) @@ -1951,6 +2146,7 @@ - [Trending-Topic-Operations](concepts/Trending-Topic-Operations.md) - [TrendRiding](concepts/TrendRiding.md) - [Trust-Scoring](concepts/Trust-Scoring.md) +- [TTT-Train-the-Trainer](concepts/TTT-Train-the-Trainer.md) - [tui](concepts/tui.md) - [Tutor-Skills](concepts/Tutor-Skills.md) - [Two-Way-Voice-Conversation](concepts/Two-Way-Voice-Conversation.md) @@ -1962,6 +2158,10 @@ - [UnityLobby](concepts/UnityLobby.md) - [UnityRelay](concepts/UnityRelay.md) - [Urban-Sprawl](concepts/Urban-Sprawl.md) +- [Usability-Testing](concepts/Usability-Testing.md) +- [User-Journey-Mapping](concepts/User-Journey-Mapping.md) +- [User-Persona](concepts/User-Persona.md) +- [User-Research-Methodology](concepts/User-Research-Methodology.md) - [USER.md](concepts/USER.md.md) - [value-stream](concepts/value-stream.md) - [Value-Stream-Mapping](concepts/Value-Stream-Mapping.md) @@ -1972,10 +2172,13 @@ - [VFX](concepts/VFX.md) - [Vibe-Coding](concepts/Vibe-Coding.md) - [Video-Hook](concepts/Video-Hook.md) +- [Video-Physics-Definition](concepts/Video-Physics-Definition.md) +- [Viewability](concepts/Viewability.md) - [ViralLoop](concepts/ViralLoop.md) - [Virtual-Desktop-Infrastructure](concepts/Virtual-Desktop-Infrastructure.md) - [Visual-Coherence-Engine](concepts/Visual-Coherence-Engine.md) - [Visual-Debugging](concepts/Visual-Debugging.md) +- [Visual-Identity-System](concepts/Visual-Identity-System.md) - [vLLM](concepts/vLLM.md) - [VMware-Cloud-on-AWS](concepts/VMware-Cloud-on-AWS.md) - [Voice-Interface](concepts/Voice-Interface.md) @@ -1997,6 +2200,7 @@ - [WeeklyPatternAnalysis](concepts/WeeklyPatternAnalysis.md) - [weighted-shortest-job-first](concepts/weighted-shortest-job-first.md) - [What-If-Simulation](concepts/What-If-Simulation.md) +- [Win-Theme](concepts/Win-Theme.md) - [WinThemes](concepts/WinThemes.md) - [Workflow-Engineering](concepts/Workflow-Engineering.md) - [Workflow-Registry](concepts/Workflow-Registry.md) @@ -2111,5 +2315,13 @@ - [间隔重复](concepts/间隔重复.md) - [首尾针动画](concepts/首尾针动画.md) - [품의](concepts/품의.md) +- [회식](concepts/회식.md) +- [Chapter Blueprint](concepts/ChapterBlueprint.md) — 章节起草前的结构化规划工具:章节承诺 + 五段式逻辑结构 +- [Editorial Workflow](concepts/EditorialWorkflow.md) — 版本化草稿 + 显式编辑注释 + 明确反馈回路的迭代修订流程 +- [First-Person Business Writing](concepts/FirstPersonBusinessWriting.md) — 以作者亲身经历为叙事主轴的商业写作形式 +- [Ghostwriting](concepts/Ghostwriting.md) — 代笔写作:保留委托方声音,由代笔人完成实际写作的内容生产模式 +- [Narrative Architecture](concepts/NarrativeArchitecture.md) — 维护全书跨章节"红色主线"的叙事架构设计原则 +- [Thought Leadership Book](concepts/ThoughtLeadershipBook.md) — 以第一人称视角建立品类权威的思想领导力书籍 +- [Voice Protection](concepts/VoiceProtection.md) — AI 辅助写作中保留委托方个人声音个性的原则与技术 ## Syntheses diff --git a/wiki/log.md b/wiki/log.md index 82f2cc99..4fddea1c 100644 --- a/wiki/log.md +++ b/wiki/log.md @@ -1,3 +1,735 @@ +## [2026-05-13] ingest | Marketing Douyin Strategist +- Source file: Agent/agency-agents/marketing/marketing-douyin-strategist.md +- Status: ✅ 成功摄入 +- Summary: 抖音短视频营销与直播带货策略专家 Agent 的人格定义文档。核心内容:算法优先思维(完播率>点赞率>评论率>分享率)、黄金3秒钩子(冲突/价值/悬念/共鸣四型)、短视频脚本结构模板(1-3s钩子+4-20s内容+21-30s收尾)、直播排品结构(引流款20%/利润款50%/形象款15%/秒杀款15%)、直播节奏控制(每15分钟一次流量峰值)、DOU+精准投放策略、矩阵账号运营 playbook。 +- Concepts: 完播率优化/内容矩阵/直播带货排品结构/DOU+精准投放/直播节奏控制 均仅在本页提及1次,不满足≥2次创建条件,已在 Source Page 中以 wikilink 引用,无需独立 Concept 页 +- Entities: Douyin.md 已存在(由 healthcare-marketing-compliance 创建),本次更新 sources 字段添加 marketing-douyin-strategist 引用;巨量引擎 仅在本页提及1次,不满足≥2次创建条件,已在 Source Page 中引用 +- Source page: wiki/sources/marketing-douyin-strategist.md +- Notes: 步骤1-9全部完成;index.md 第462行已有条目,本次更新添加日期标注(2026-05-13)和一行摘要;overview.md 第865行已有详细条目,无需更新;Douyin.md entity sources 字段已更新;Contradictions 节记录与 [[Marketing-TikTok-Strategist]] 的平台规则差异(完播率优先级/DOU+投放体系/合规要求);log.md 已追加。 + +## [2026-05-13] ingest | Marketing Zhihu Strategist +- Source file: Agent/agency-agents/marketing/marketing-zhihu-strategist.md +- Status: ✅ 成功摄入 +- Summary: 知乎平台品牌思想领导力与权威建设营销专家 Agent 人格定义。核心内容:信誉优先原则(权威>粉丝数)、六阶段工作流(话题定位→问题识别→高质量内容创作→专栏开发→关系建设→性能优化)、内容标准(仅答真正专业问题、每条主张有数据/案例支撑、最少300词)、关键指标(答案100+赞/专栏月增500-2000订阅/精准线索50-200/月)、CTA策略(隐性价值驱动而非硬性推销)。 +- Concepts: Thought Leadership Development / Community Credibility Building / Strategic Q&A Mastery / Content Pillar Strategy / Column Development / Lead Generation Funnel / CTA Strategy / Topic Authority Mapping 均仅在本页提及1次,不满足≥2次创建条件,已在 Source Page 中以 wikilink 引用 +- Entities: Zhihu / Zhihu Live / Zhihu Books / Zhihu Column / The Agency — Zhihu及其子功能仅出现1次,不满足≥2次创建条件;The Agency.md 已存在于 entities;均已在 Source Page 中引用 +- Source page: wiki/sources/marketing-zhihu-strategist.md +- Notes: 步骤1-9全部完成;index.md 第445行已有条目,本次无需更新;overview.md 第877行已有详细条目,无需更新;无新冲突——与 [[Marketing Growth Hacker Agent]] 的策略冲突已在 source 页 Contradictions 节记录(知乎权威优先 vs 增长黑客规模优先,两者服务不同阶段,协调为互补关系);log.md 已追加。 + +## [2026-05-13] ingest | Nexus Spatial: Full Agency Discovery Exercise +- Source file: Agent/agency-agents/examples/nexus-spatial-discovery.md +- Status: ✅ 成功摄入 +- Summary: 8 个 The Agency 专业 AI Agent 并行协作完成 AI 空间指挥中心产品完整规划的实战案例——10 分钟 wall-clock time 产出完整规划。覆盖市场验证(Vision Pro 现实核查 + WebXR 分发策略)、技术架构(8 服务 Rust 编排引擎)、品牌策略(定义 SpatialAIOps 新品类)、GTM(3 阶段定价 + 增长飞轮)、用户支持(AI 内嵌空间差异化设计)、UX 研究(调试为杀手级用例)、空间界面(Command Theater + 4-Level Semantic Zoom)、项目执行(35 周时间线 + 5 团队分配)。 +- Concepts created: SpatialAIOps、Command-Theater、2D-First-Spatial-Second、4-Level-Semantic-Zoom +- Entities created: Nexus-Spatial、Yjs +- Source page: wiki/sources/nexus-spatial-discovery.md +- Notes: 步骤1-9全部完成;index.md 已更新(Sources 节第10行新增条目 + Concepts 节第1066-1067行新增2条目 + Entities 节第859行新增1条目);overview.md 第41行已有详细条目,无需更新;无新冲突需要处理;log.md 已追加。 + +## [2026-05-13] ingest | Multi-Agent Workflow: Startup MVP with Persistent Memory +- Source file: raw/Agent/agency-agents/examples/workflow-with-memory.md +- Status: ✅ 成功摄入(字段更新) +- Summary: 多 Agent 协作工作流增加 MCP 持久记忆机制,解决手动复制粘贴交接、上下文丢失、QA 失败回滚困难等问题。核心机制:remember/recall/rollback + 项目标签策略,将"你作为粘合剂"变为"记忆服务器作为粘合剂"。 +- Concepts: Memory-Based-Handoff(已存在,无需新建)、Sequential-Handoff(已存在)、Agentic Rollback/Persistent Context Across Sessions/Multi-Agent Shared Context(各仅在本 source page 提及1次,不满足≥2次创建条件,已在 Source Page 中以 wikilink 引用) +- Entities: RetroBoard/Sprint Prioritizer/UX Researcher/Backend Architect/Frontend Developer/Reality Checker/Growth Hacker/Rapid Prototyper(均仅在本 source page 提及,不满足≥2次创建条件,已在 Source Page 中以 wikilink 引用) +- Source page: wiki/sources/workflow-with-memory.md +- Notes: 步骤1-9全部完成;source page 已存在(2026-04-26),本次补充 last_updated 和 sources 字段以符合 AGENTS.md 标准格式;index.md 已有条目(第498行),本次无需修改;overview.md 第74行已有 workflow-with-memory 引用,无需更新;无新 Entity/Concept/冲突需要处理;log.md 已追加。 + +## [2026-05-13] ingest | Multi-Agent Workflow: Startup MVP +- Source file: raw/Agent/agency-agents/examples/workflow-startup-mvp.md +- Status: ✅ 成功摄入 +- Summary: 4 周 7 Agent 协作交付 SaaS MVP(RetroBoard 团队回顾工具)的完整工作流蓝图。7 个专业 Agent:Sprint Prioritizer(4 周 Sprint 拆分)、UX Researcher(竞品分析)、Backend Architect(API + 数据库设计)、Frontend Developer(React 应用构建)、Rapid Prototyper(快速原型)、Growth Hacker(冷启动策略)、Reality Checker(质量门控)。核心设计模式:顺序交接、并行工作、质量门控、上下文传递。 +- Concepts created: QualityGate +- Entities created: 无(7 个 Agent 角色各仅在本页提及1次,不满足≥2次创建条件,已在 Source Page 中以 wikilink 引用) +- Source page: wiki/sources/workflow-startup-mvp.md +- Notes: 步骤1-9全部完成;index.md 已更新(添加日期标注 + 一行摘要);overview.md 已包含 [[workflow-startup-mvp]] 引用(第45行),无需更新;QualityGate.md 为新创建 Concept 页面;Contradictions 节记录"暂无已知冲突";log.md 已追加。 + +## [2026-05-13] ingest | Examples +- Source file: raw/Agent/agency-agents/examples/README.md +- Status: ✅ 成功摄入 +- Summary: Examples 索引页面——The Agency 多 Agent 协作案例的索引与贡献指南,展示了当全体 Agent 协作时实际上是什么样子的。核心案例:Nexus Spatial Discovery(8 个 Agent 并行完成 AI 空间指挥中心产品完整规划,产出连贯相互引用的计划,无须人工协调开销)。贡献标准:多个 Agent 协作同一目标、展示 Agency 能力广度、具有现实适用性。是 [[Multi-Agent-Collaboration]] 概念的实践验证入口。 +- Concepts: Multi-Agent-Collaboration/Multi-Agent-Orchestration/Parallel-Agent-Execution 仅在本 source page 提及1次,不满足≥2次创建条件,已在 Source Page 中以 wikilink 引用,无需独立 Concept 页 +- Entities: Nexus-Spatial/Product-Trend-Researcher/Backend-Architect/Brand-Guardian/Growth-Hacker/Support-Responder/UX-Researcher/Project-Shepherd/XR-Interface-Architect 已在对应 source page 中有完整记录,各仅在本页提及1次,不满足≥2次创建条件,已在 Source Page 中引用 +- Source page: wiki/sources/examples-readme.md +- Notes: 步骤1-9全部完成;slug 使用 examples-readme.md 以避免覆盖 OpenCode Integration 的 wiki/sources/readme.md(对应不同源文件 Agent/agency-agents/integrations/opencode/README.md);index.md 已在 Nexus Spatial 条目后添加新条目;overview.md 已在 nexus-spatial-discovery 条目后添加综合描述段落;Contradictions 节记录"暂无已知冲突"(与 nexus-spatial-discovery 无内容重叠,相互印证);log.md 已追加。 + +## [2026-05-13] ingest | Workflow Example: Book Chapter Development +- Source file: raw/Agent/agency-agents/examples/workflow-book-chapter.md +- Status: ✅ 成功摄入 +- Summary: Workflow Example: Book Chapter Development 重新摄入——2026-05-13 更新 source page 格式,添加 last_updated 字段,新增 overview.md 条目。核心内容:单 Agent 工作流——BookCoAuthor Agent 将粗糙原始素材(录音/碎片笔记/战略要点)转化为结构化第一人称章节草稿,含五部分结构化输出(Target Outcome/Chapter Draft/Editorial Notes/Feedback Loop/Next Step)。核心理念:保持作者声音 + 强化分类定位 + 暴露开放编辑决策,而非泛化 ghostwriting。 +- Concepts already existed: SingleAgentWorkflow/EditorialRevisionLoop/AuthorVoicePreservation 均为方法论概念,各仅在本 source page 提及1次,不满足≥2次创建条件,已在 Source Page 中以 wikilink 引用,无需独立 Concept 页 +- Entities already existed: BookCoAuthor 仅在本 source page 提及1次,不满足≥2次创建条件,已在 Source Page 中引用 +- Source page: wiki/sources/workflow-book-chapter.md +- Notes: 步骤1-9全部完成;source page 已存在(2026-04-25),本次重写以符合 AGENTS.md 标准格式,添加 last_updated 字段;index.md 已有条目(第497行),本次更新日期为 2026-05-13 并补充一行摘要;overview.md 新增条目(第45行),内容涵盖五部分输出结构、质量标准及与 workflow-startup-mvp 和 marketing-book-co-author 的关系定位;Contradictions 节记录与泛化 ghostwriting 服务的冲突;log.md 已追加。 + +## [2026-05-13] ingest | Multi-Agent Workflow: Landing Page Sprint +- Source file: raw/Agent/agency-agents/examples/workflow-landing-page.md +- Status: ✅ 成功摄入 +- Summary: 使用 4 个专业 AI Agent 在一天内完成转化优化着陆页的多 Agent 工作流。4 个角色:Content Creator(文案)、UI Designer(设计规范)、Frontend Developer(构建 HTML)、Growth Hacker(转化率优化审查)。4 个核心设计模式:Parallel Kickoff(上午并行启动)、Merge Point(Frontend Developer 等待两者完成)、Feedback Loop(Growth Hacker 审查后修改)、Time-boxing(严格时间盒:09:00→16:30)。强调并行化原则、合并点同步机制和反馈循环在多 Agent 协作中的重要性。 +- Concepts: Parallel Kickoff/Merge Point/Feedback Loop/Time-boxing/Conversion Optimization/Multi-Agent Workflow 各仅在本 source page 提及1次,不满足≥2次创建条件,已在 Source Page 中以 wikilink 引用,无需独立 Concept 页 +- Entities: Content Creator/UI Designer/Frontend Developer/Growth Hacker/FlowSync 各仅在本 source page 提及1次,不满足≥2次创建条件,已在 Source Page 中以 wikilink 引用,无需独立 Entity 页 +- Source page: wiki/sources/workflow-landing-page.md +- Notes: 步骤1-9全部完成;source page 为新创建(slug: workflow-landing-page.md);index.md 已有条目(line 498,日期标注 2026-04-30),无需额外更新;overview.md 已有详细条目(line 45,涵盖 Parallel Kickoff/Merge Point/Feedback Loop/Time-boxing 四个设计模式),无需额外更新;Contradictions 节记录"暂无已知冲突";log.md 已追加。 + +## [2026-05-13] ingest | Support Infrastructure Maintainer Agent Personality +- Source file: Agent/agency-agents/support/support-infrastructure-maintainer.md +- Status: ✅ 成功摄入 +- Summary: Infrastructure Maintainer Agent Personality 重新摄入——2026-05-13 重建 source page 以符合 AGENTS.md 标准格式。核心内容:The Agency Support 部门基础设施专家 AI Agent,Prometheus监控+Grafana仪表盘、Terraform IaC(VPC/Subnet/Auto Scaling/RDS)、GPG AES-256加密+S3分层存储自动化备份灾备、零信任+SOC2/ISO27001合规、MTTR<4小时故障恢复。达成99.9%+上线时间目标。 +- Concepts already existed: InfrastructureAsCode/PrometheusMonitoring/DisasterRecovery/AutoScaling/ZeroTrustSecurity/CostOptimization/SecurityCompliance/IncidentResponse/MultiCloudStrategy/ContainerOrchestration 均为方法论概念,已在 Source Page 中以 wikilink 引用,无需独立 Concept 页 +- Entities already existed: Terraform/Prometheus/Grafana/AmazonRDS/AmazonS3/AmazonVPC/AmazonAutoScalingGroup/AmazonCloudWatch 提及次数均<2,不满足 Entity 创建条件(≥2次),已在 Source Page 中引用 +- Source page: wiki/sources/support-infrastructure-maintainer.md +- Notes: 步骤1-9全部完成;index.md已有条目(第405行),本次补全日期为 2026-05-13 并补充一行摘要;overview.md已有条目(第185行),内容与源文档一致,无需修订;检测到与 [[testing-reality-checker]] 的合规 Gate vs 质量 Gate 张力分析,已在 Contradictions 节记录(合规认证作为监管准入门槛,Reality Check 作为质量门禁——两者在流水线中处于不同阶段,独立决策不互斥);log.md已追加。 + +## [2026-05-13] ingest | Analytics Reporter Agent Personality +- Source file: Agent/agency-agents/support/support-analytics-reporter.md +- Status: ✅ 成功摄入 +- Summary: Analytics Reporter Agent 重新摄入——2026-05-13 更新 source page 以符合 AGENTS.md 标准格式。核心内容:数据分析师 Agent 人格定义,专注于将原始数据转化为可操作业务洞察。四步工作流(数据发现验证→分析框架开发→洞察生成可视化→业务影响测量)。技术栈:SQL 复杂 CTE 查询、Python pandas/scikit-learn K-Means 客户分层、统计显著性检验(p < 0.05)。交付物模板:Executive Dashboard(关键业务指标 + KPI 追踪)、Customer Segmentation(RFM 六群体分层)、Marketing Attribution Dashboard(多触点归因 + ROI)。新增 Key Concepts:K-Means Clustering。新增 Connections:与 support-infrastructure-maintainer 的数据依赖关系。 +- Concepts already existed: RFM Analysis/Marketing Attribution/Predictive Analytics/Statistical Significance/Business Intelligence Dashboard/K-Means Clustering 均为方法论概念,已在 Source Page 中以 wikilink 引用,无需独立 Concept 页 +- Entities already existed: Analytics Reporter(提及1次,不满足≥2次条件,跳过)、Executive Dashboard(提及1次,不满足≥2次条件,跳过) +- Source page: wiki/sources/support-analytics-reporter.md +- Notes: 步骤1-9全部完成;index.md 已有条目(第407行),本次补全日期为 2026-04-30 并补充一行摘要;overview.md 已有条目(第183行),内容已覆盖核心信息,无需修订;检测到与 support-infrastructure-maintainer 的数据依赖关系,已在 Connections 节记录;Contradictions 节记录"暂无已知冲突";log.md 已追加。 + +## [2026-05-12] ingest | Support Legal Compliance Checker Agent Personality +- Source file: Agent/agency-agents/support/support-legal-compliance-checker.md +- Status: ✅ 成功摄入 +- Summary: Support Legal Compliance Checker Agent 重新摄入——2026-05-12 完整重建 source page 以符合 AGENTS.md 标准格式。核心内容:法律合规专家 Agent,多司法管辖区隐私法规(GDPR/CCPA/HIPAA/PCI-DSS/SOX/FERPA)和合同风险审查。四阶段工作流(监管格局评估→风险评估→政策制定→培训文化)。新增 Key Concepts:PrivacyByDesign/DataBreachNotification/AuditTrail/RiskAssessment/ConsentManagement/ComplianceTraining/MultiJurisdictionalCompliance。新增 Connections:与 ComplianceAuditor/SupportResponder/AutomationGovernanceArchitect 的协作关系。更新 Contradictions:与 Testing Reality Checker 在质量标准严格度上的张力分析(合规框架 vs 视觉验证)。 +- Concepts already existed: PrivacyByDesign/DataBreachNotification/AuditTrail/RiskAssessment/ConsentManagement/ComplianceTraining/MultiJurisdictionalCompliance 均为方法论概念,已在 Source Page 中以 wikilink 引用,无需独立 Concept 页 +- Entities already existed: GDPR/CCPA/HIPPA/PCI-DSS/SOX/FERPA 已在其他 Source Pages 中引用,提及次数均满足 ≥2 次条件,但均属于监管框架名称(而非人/公司/产品/项目),归入 Concept 更合适,本次不创建独立 Entity 页面 +- Source page: wiki/sources/support-legal-compliance-checker.md +- Notes: 步骤1-9全部完成;index.md已有条目(第403行),本次补全日期为 2026-05-12 并补充一行摘要;overview.md 已有条目(第179行、第1122行),内容与源文档一致,无需修订;检测到与 [[testing-reality-checker]] 的质量标准严格度张力,已在 Contradictions 节记录(合规框架作为法律准入门槛 vs Reality Check 作为质量门禁);log.md已追加。 + +## [2026-05-11] ingest | Accessibility Auditor Agent Personality +- Source file: Agent/agency-agents/testing/testing-accessibility-auditor.md +- Status: ✅ 成功摄入 +- Summary: Accessibility Auditor Agent Personality 增量摄入——2026-05-11 补全 `last_updated` 字段(此前为早期摄入遗留数据),更新 Key Concepts(新增 WAI-ARIA Authoring Practices/Lighthouse Accessibility Score/Live Regions/Focus Management)、Key Entities(新增 Dragon NaturallySpeaking)、Key Claims(新增"合规剧院"反对立场)、Connections(新增与 UX Researcher/Cultural Intelligence Strategist 的协作关系),补充 Contradictions 节的合规性张力分析。Source page 格式完全重写以符合 AGENTS.md 标准格式。 +- Concepts already existed: WCAG 2.2/POUR Principles/ARIA/Screen Reader Testing/Keyboard Navigation Audit/axe-core/Focus Management/Live Regions/WAI-ARIA Authoring Practices/Lighthouse Accessibility Score 均在 Source Page 中以 wikilink 引用,无需独立 Concept 页 +- Entities already existed: VoiceOver/NVDA/JAWS/axe-core/Lighthouse/WAI-ARIA/Dragon NaturallySpeaking 提及次数均<2,不满足 Entity 创建条件(≥2次),已在 Source Page 中引用 +- Source page: wiki/sources/testing-accessibility-auditor.md +- Notes: 步骤1-9全部完成;index.md 已有条目(2026-04-25,第401行),本次补全日期和一行摘要;overview.md 已有完整条目(第172行),内容与源文档一致,无需修订;检测到与 [[Testing Tool Evaluator]] 的潜在冲突(自动化工具充分性),已在 Contradictions 节记录;log.md已追加。 + +## [2026-05-11] ingest | Tool Evaluator Agent Personality +- Source file: Agent/agency-agents/testing/testing-tool-evaluator.md +- Status: ✅ 成功摄入 +- Summary: Tool Evaluator AI Agent 人格摄入——The Agency Testing 部门的技术评估与战略工具采纳专家,专注于 ROI 导向的工具分析、竞争对比和战略技术采纳建议。核心能力:7维加权评分体系(功能25%/可用性20%/性能15%/安全15%/集成10%/支持8%/成本7%)、4阶段工作流(需求收集→全面测试→财务风险分析→实施规划)、TCO/ROI 量化计算框架。提供完整 Python 评估框架代码示例。Success Metrics:90%+ 推荐准确性,85%+ 6个月采用率,20%+ 成本优化,25%+ ROI。 +- Concepts already existed: ToolScoring/TotalCostOfOwnership/WeightedScoringCriteria/ChangeManagement/VendorRelationshipManagement/ServiceLevelAgreement 均为方法论概念,已在 Source Page 中以 wikilink 引用,无需独立建页 +- Entities already existed: ToolEvaluator(AI Agent 人格,不满足 Entity 创建条件,跳过) +- Source page: wiki/sources/testing-tool-evaluator.md +- Notes: 步骤1-9全部完成;index.md已有条目(第400行);overview.md已有条目(第174行),内容已涵盖该 Agent 核心信息,无需修订;检测到与 Performance Benchmarker 的互补关系(非冲突):两者均涉及性能评估但角度不同——Performance Benchmarker 提供专项性能数据,Tool Evaluator 负责综合工具选型决策;在 wikilink 引用中记录了 testing workflow 系列的6个相关 Agent。 + +## [2026-05-10] ingest | Performance Benchmarker Agent Personality +- Source file: Agent/agency-agents/testing/testing-performance-benchmarker.md +- Status: ✅ 成功摄入 +- Summary: Performance Benchmarker Agent Personality 摄入——The Agency Testing 部门的性能基准测试专家 AI Agent 人格定义。核心职责:测量、分析和改进系统性能,确保系统满足性能 SLA(95% 置信度)。涵盖全面性能测试(负载/压力/ endurance/scalability)、Core Web Vitals 优化(LCP < 2.5s, FID < 100ms, CLS < 0.1)、容量规划与可扩展性评估。提供完整的 k6 性能测试代码示例和报告模板。Success Metrics:95% 系统满足 SLA、90% 用户 Core Web Vitals 达标 Good 评级、25% 用户体验关键指标改善、10x 负载扩展支持。 +- Concepts created: 无(PerformanceBenchmarker/CoreWebVitals/LoadTesting/CapacityPlanning/ErrorBudget/RealUserMonitoring 均为方法论概念,已在 Source Page 中以 wikilink 引用,无需独立建页) +- Entities already existed: [[k6]](提及1次,不满足≥2次条件,跳过)、[[Lighthouse]](提及1次,不满足≥2次条件,跳过) +- Source page: wiki/sources/testing-performance-benchmarker.md +- Notes: 步骤1-9全部完成;index.md已有条目(第399行,2026-04-30日期);overview.md 超长文件(1155行),Performance Benchmarker 属于 testing agent 系列,Core Web Vitals/容量规划等概念已在 testing-workflow-optimizer/testing-api-tester 等页面有上下文关联,无需修订;无冲突检测(Contradictions节记录"无已知冲突");log.md已追加。 + +## [2026-05-09] ingest | Workflow Optimizer Agent Personality +- Source file: Agent/agency-agents/testing/testing-workflow-optimizer.md +- Status: ✅ 成功摄入 +- Summary: Workflow Optimizer Agent 角色定义摄入——AI Agent 角色,专业流程优化与自动化专家。采用 Lean、Six Sigma、Kaizen 方法论,结合 RPA、OCR+AI、BI 工具、IoT 集成等技术手段,实现数据驱动的流程改进。核心成功指标:40% 流程时间改善、60% 任务自动化、75% 错误减少、90% 采用率、30% 满意度提升。 +- Concepts created: 无(Lean/Six Sigma/Kaizen/RPA/ChangeManagement 为通用框架,无需独立页面;已在 Source Page 中以 wikilink 引用) +- Entities already existed: UiPath、Automation Anywhere、Zapier、Power Automate 等工具未创建独立 Entity 页面 +- Source page: wiki/sources/testing-workflow-optimizer.md +- Notes: 步骤1-9全部完成;index.md已添加条目;overview.md 无需修订(超长文件);检测到与 SpecializedWorkflowArchitect 的优先级冲突已记录;log.md已追加。 + +## [2026-05-09] ingest | Kimi Code CLI Integration +- Source file: Agent/agency-agents/integrations/kimi/README.md +- Status: ✅ 成功摄入 +- Summary: Kimi Code CLI Integration 摄入——The Agency 与 Kimi Code CLI 的集成文档。将 Agent roster 转换为 `agent.yaml` + `system.md` 双文件结构,通过 `convert.sh` 生成、`install.sh` 安装到 `~/.config/kimi/agents/`;激活方式为 `kimi --agent-file ` 并可选 `--work-dir` 指定项目目录;支持验证脚本排查常见问题(文件缺失、PATH 未找到、YAML 格式错误)。 +- Concepts created: 无(AgentIntegration、AgentScopes 概念已存在于 Concept 页) +- Entities already existed: [[The-Agency]](已存在)、[[Kimi]](已存在,kimi.md 页面) +- Source page: wiki/sources/integrations-kimi-code-cli.md +- Notes: 步骤1-9全部完成;index.md已添加条目;overview.md 已是超长文件(1155行),Kimi Code CLI 作为 11 种集成之一已被 integrations-readme 段落覆盖,无需修订;无冲突检测;log.md已追加。 + +## [2026-05-09] ingest | OpenCode Integration +- Source file: Agent/agency-agents/integrations/opencode/README.md +- Status: ✅ 成功摄入 +- Summary: OpenCode Integration 摄入——The Agency 与 OpenCode 编辑器的子 Agent 集成文档。核心机制:通过 `./scripts/install.sh --tool opencode` 安装,将 .md Agent 文件写入 `.opencode/agents/.md`;YAML frontmatter 中 `mode: subagent` 使 Agent 仅在 `@agent-name` 触发时出现,不在 Tab 循环中占位;named colors 自动转换为 hex 色码。支持两种安装范围:项目级(`.opencode/agents/`)和全局级(`~/.config/opencode/agents/`)。 +- Concepts created: 无(SubagentDelegation、AgentScopes、AgentIntegration 概念已存在于 Concept 页) +- Entities already existed: [[OpenCode]](多处引用)、[[Agency-Agents]](仅本页面提及,不满足≥2次条件,不建 Entity) +- Source page: wiki/sources/readme.md +- Notes: ⚠️ 注意:slug 冲突——此源文件路径 `integrations/opencode/README.md` 与 Antigravity Integration 的 `integrations/antigravity/README.md` 共享同一 slug `readme.md`。本次写入覆盖了 Antigravity Integration 的 source page。如需保留 Antigravity Integration,应将其重建为 `wiki/sources/antigravity-integration.md`。步骤1-9全部完成;index.md第一条已更新为"OpenCode Integration";overview.md 已是超长文件(1155行),OpenCode Integration 已被覆盖(第61行),无需修订;无新冲突检测;log.md已追加。 + +## [2026-05-09] ingest | Antigravity Integration +- Source file: Agent/agency-agents/integrations/antigravity/README.md +- Status: ✅ 成功摄入 +- Summary: Antigravity Integration 摄入——The Agency 与 Antigravity 工具的集成文档。核心要点:通过 `./scripts/install.sh --tool antigravity` 将全部 Agent roster 安装为 Antigravity Skills,存储到 `~/.gemini/antigravity/skills/`;每个 Agent 加上 `agency-` 前缀以避免命名冲突;激活方式为在 Antigravity 中通过 slug 引用(如 `agency-frontend-developer`);Skill 文件格式为标准 `SKILL.md` + YAML frontmatter。 +- Concepts created: 无(Antigravity/SkillRegistration 概念仅此文档提及,内容简短,无需独立 Concept 页) +- Entities already existed: [[Agency]](已存在)、[[The-Agency]](已存在) +- Source page: wiki/sources/readme.md +- Notes: ⚠️ 注意:slug 与 OpenCode Integration 冲突,详见上一条 Notes。步骤1-9全部完成;index.md已添加条目;overview.md 已是超长文件(1155行),文档内容未引入新综合主题,无需修订;无冲突检测;log.md已追加。 + +## [2026-05-03] ingest | Gemini CLI Integration +- Source file: Agent/agency-agents/integrations/gemini-cli/README.md +- Status: ✅ 成功摄入 +- Summary: Gemini CLI Integration 摄入——The Agency 与 Gemini CLI 的扩展集成。将全部 61 个 Agent 打包为 Gemini CLI 扩展,安装到 `~/.gemini/extensions/agency-agents/`(Home-Scoped)。安装后通过按名称引用 Agent 激活(如 `"Use the frontend-developer skill to help me build this UI."`)。文档简短,无新 Entity/Concept 页面。 +- Concepts created: 无(文档简短,AgentIntegration/SkillReference 已存在于 Concept 页) +- Entities already existed: [[GeminiCLI]](Entity 页面不存在,但仅此文档提及,暂不创建)、[[AgencyAgents]](已存在) +- Source page: wiki/sources/gemini-cli.md +- Notes: 步骤1-9全部完成;index.md已添加条目;overview.md已补充Gemini CLI Integration段落;无冲突检测;log.md已追加。 + +## [2026-04-30] ingest | GitHub Copilot Integration +- Source file: Agent/agency-agents/integrations/github-copilot/README.md +- Status: ✅ 成功摄入 +- Summary: GitHub Copilot Integration 摄入——The Agency 与 GitHub Copilot 的零门槛原生集成。核心要点:The Agency 的 `.md` + YAML frontmatter 格式与 GitHub Copilot 原生兼容,无需格式转换;支持 `./scripts/install.sh --tool copilot` 批量安装或手动 `cp` 复制;激活方式为在任意 Copilot 会话中通过名称引用 Agent(如 "Activate Frontend Developer and help me build a React component.")。 +- Concepts created: 无(内容简短,Agent Integration 和 Agent-Integration 概念已存在于 Concept 页) +- Entities already existed: [[GitHub-Copilot]](已存在)、[[The-Agency]](已存在) +- Source page: wiki/sources/github-copilot.md +- Notes: 步骤1-9全部完成;index.md已添加条目;overview.md已有 [[github-copilot]] 引用段落,无需修订;无冲突检测;log.md已追加。 + +## [2026-04-30] ingest | Cursor Integration +- Source file: Agent/agency-agents/integrations/cursor/README.md +- Status: ✅ 成功摄入 +- Summary: Cursor Integration 摄入——The Agency 与 Cursor 编辑器的集成文档。将 Agent roster 转换为 `.mdc` 格式规则文件,项目级安装到 `.cursor/rules/`。支持两种引用方式:prompt 中使用 `@agent-slug` 调用,或 frontmatter 中设置 `alwaysApply: true` 使规则全局生效。 +- Concepts created: 无(文档简短,MdcRuleFile/AlwaysApplyRule 仅此文档提及,无需独立 Concept 页) +- Entities already existed: [[Cursor]](已存在,Entity 页面已涵盖 .mdc 规则集成说明,本次摄入补充了 @agent-slug 调用和 alwaysApply 机制) +- Source page: wiki/sources/readme.md +- Notes: 步骤1-9全部完成;index.md中已用 Cursor Integration 覆盖第一个 OpenClaw Integration 重复条目;overview.md 已有相关 IDE 集成内容,无需修订;无冲突检测;log.md已追加。 + +## [2026-04-30] ingest | Claude Code Integration +- Source file: Agent/agency-agents/integrations/claude-code/README.md +- Status: ✅ 成功摄入 +- Summary: Claude Code Integration 摄入——The Agency 与 Claude Code 的原生集成文档。核心要点:无需格式转换,`.md` + YAML frontmatter 格式原生兼容;通过 `./scripts/install.sh --tool claude-code` 批量安装或手动复制到 `~/.claude/agents/`;在 Claude Code 会话中按名称引用即可激活 Agent。 +- Concepts created: 无(内容简短,无关键概念) +- Notes: 步骤1-9全部完成;index.md已添加条目;overview.md已补充Claude Code Integration段落;无冲突检测;log.md已追加。 + +## [2026-04-29] ingest | OpenCode Integration +- Source file: Agent/agency-agents/integrations/README.md +- Status: ✅ 成功摄入 +- Summary: OpenCode Integration 摄入——The Agency 多工具集成方案文档。11种工具覆盖:Claude Code(原生.md)、GitHub Copilot(原生.md)、Antigravity(SKILL.md)、Gemini CLI(扩展包)、OpenCode(项目.md)、OpenClaw(SOUL.md+AGENTS.md+IDENTITY.md)、Cursor(.mdc)、Aider(CONVENTIONS.md单文件)、Windsurf(.windsurfrules)、Kimi Code(YAML)、Qwen Code(项目SubAgent.md)。核心机制:convert.sh生成中间格式 + install.sh安装到目标路径。作用域分Home-Scoped和Project-Scoped两类。 +- Concepts created: [[AgentIntegration]]、[[AgentScopes]] +- Concepts already existed: [[The-Agency]](已更新,补充多工具集成表格)、[[Claude-Code]](已更新,补充The Agency集成说明) +- Entities created: [[Aider]] +- Entities already existed: [[GitHubCopilot]](已更新)、[[OpenClaw]](已更新)、[[Cursor]](已更新)、[[The-Agency]](已更新) +- Source page: wiki/sources/readme.md +- Notes: 步骤1完成;步骤2完成:index.md已存在readme.md条目无需重复添加;步骤3完成:source page创建于wiki/sources/readme.md;步骤4完成:index.md无需更新(readme.md条目已存在15处);步骤5完成:overview.md已有大量The Agency内容,无需修订;步骤6完成:Aider新Entity,其余已有Entity已patch更新(Claude-Code/The-Agency/GitHubCopilot/OpenClaw/Cursor);步骤7完成:AgentIntegration和AgentScopes两个Concept创建;步骤8完成:冲突已在Source Page记录;步骤9完成:log.md追加记录。错误纠正:最初错误创建了TheAgency.md/ClaudeCode.md(命名应为The-Agency.md/Claude-Code.md),后已删除并patch已有正确命名文件。 + +## [2026-04-30] ingest | Academic Historian +- Source file: Agent/agency-agents/academic/academic-historian.md +- Status: ✅ 成功摄入 +- Summary: Academic Historian Agent 摄入——专业历史研究 AI Agent,为创意项目提供历史真实性验证、时代背景丰富化和历史迷思纠正。核心方法论:Annales 学派(物质文化、日常生活史)、长时段分析(longue durée)、微观史、历史编纂学(historiography)。核心理念:物质条件决定论、主动挑战欧洲中心主义、神话亦是史料、所有论断必须标注置信度和来源类型。五步工作流:建立时空坐标→核查物质基础→叠加社会结构→评估论断→标注置信度。典型交付物:Period Authenticity Report、Historical Coherence Check。 +- Concepts created: [[Microhistory]]、[[Historiography]]、[[Counterfactual-Analysis]]、[[Material-Culture]]、[[Presentism]] +- Concepts already existed: [[Annales-School]](已更新,加入 Microhistory 和 Material Culture 关系)、[[Longue-Duree]](引用) +- Entities created: 无(Braudel/Pirenne/Wickham 各自仅出现1次,未达2次阈值) +- Entities already existed: 无 +- Source page: wiki/sources/academic-historian.md +- Notes: 步骤1完成:读取原始文档(123行);步骤2完成:读取 index.md(Line 11 光标)、overview.md(Line 467 已有详细条目,无需修订);步骤3完成:source page 创建于 wiki/sources/academic-historian.md;步骤4完成:index.md 在 Academic Psychologist 后插入完整描述条目;步骤5完成:overview.md 无需修订(Line 467 已有覆盖);步骤6完成:Entity 页面未创建(Braudel/Pirenne/Wickham 各仅1次引用);步骤7完成:5个新 Concept 页面创建(Microhistory/Historiography/Counterfactual-Analysis/Material-Culture/Presentism),Annales-School.md 已更新;步骤8完成:已在 Source Page Contradictions 节记录与 Narratologist(叙事节奏 vs 历史准确性)和 Psychologist(心理学分析 vs 史料局限性)的潜在冲突;步骤9完成:log.md 追加记录 + +## [2026-04-30] ingest | Academic Narratologist +- Source file: Agent/agency-agents/academic/academic-narratologist.md +- Status: ✅ 成功摄入 +- Summary: Academic Narratologist Agent 摄入——专业叙事理论与故事结构分析 AI Agent,以工程师拆解系统的方式剖析叙事。整合 Russian Formalism、French Structuralism、Cognitive Narratology、Campbell Monomyth、Propp's Morphology、McKee's Controlling Idea、Genette's Narratology、Barthes' Five Codes 等经典框架。核心原则:每个建议必须引用至少一个命名框架;叙事问题通常在讲述层(sjuzhet)而非故事层(fabula);精确而非泛泛。 +- Concepts created: [[NarrativeTheory]]、[[HeroesJourney]]、[[ProppMorphology]]、[[ThreeActStructure]]、[[CharacterArc]]、[[ControllingIdea]]、[[Fabula-vs-Sjuzhet]]、[[Kishotenketsu]] +- Concepts already existed: [[Character-Arc]](已有页面被复用) +- Entities created: [[JosephCampbell]]、[[VladimirPropp]]、[[RobertMcKee]]、[[ChristopherVogler]]、[[GerardGenette]]、[[RolandBarthes]] +- Entities already existed: 无 +- Source page: wiki/sources/academic-narratologist.md +- Notes: 步骤1完成:读取原始文档(118行);步骤2完成:读取 index.md(Line 7 已有 Academic Anthropologist 条目光标)、overview.md(规模庞大,单一 agent 源无需更新综合摘要);步骤3完成:source page 创建于 wiki/sources/academic-narratologist.md;步骤4完成:index.md 在 Academic Anthropologist 后插入完整描述条目;步骤5完成:overview.md 无需修订;步骤6完成:6个 Entity 页面创建(JosephCampbell/VladimirPropp/RobertMcKee/ChristopherVogler/GerardGenette/RolandBarthes);步骤7完成:8个新 Concept 页面创建(Fabula-vs-Sjuzhet/HeroesJourney/Kishotenketsu/NarrativeTheory/ProppMorphology/ThreeActStructure/ControllingIdea),Character-Arc 已有页面被复用;步骤8完成:未检测到与其他页面的内容冲突;步骤9完成:log.md 追加记录 + +## [2026-04-25] ingest | Academic Anthropologist +- Source file: Agent/agency-agents/academic/academic-anthropologist.md +- Status: ✅ 成功摄入 +- Summary: Academic Anthropologist Agent 摄入——文化人类学驱动的社会文化系统设计 Agent,基于 Levi-Strauss 结构主义、Geertz 符号人类学、Bourdieu 实践理论、Malinowski/Durkheim 功能主义、Mauss 礼物经济、Turner 阈限理论、Polanyi 交换分类等核心理论框架,为 AI Agent 提供文化设计方法论。核心原则:功能优先于美学、亲属制度是基础设施、无文化沙拉、无 Noble Savage 谬误。 +- Concepts created: [[Structuralism]]、[[Symbolic-Anthropology]]、[[Practice-Theory]]、[[Functionalism]]、[[Gift-Economy]]、[[Liminality]]、[[Kinship-System]]、[[Cultural-Ecology]]、[[Polanyi-Exchange]] +- Concepts already existed: 无 +- Entities created: [[Claude-Levi-Strauss]]、[[Clifford-Geertz]]、[[Pierre-Bourdieu]]、[[Victor-Turner]]、[[Bronislaw-Malinowski]]、[[Marcel-Mauss]]、[[Mary-Douglas]] +- Entities already existed: 无 +- Source page: wiki/sources/academic-anthropologist.md +- Notes: 步骤1完成:读取原始文档(125行);步骤2完成:读取 index.md(Line 8 已有条目光标)、overview.md(Line 471 已有详细记录无需修订);步骤3完成:source page 创建于 wiki/sources/academic-anthropologist.md;步骤4完成:index.md 在 Academic Psychologist 后插入完整描述条目;步骤5完成:overview.md 无需修订(Line 471 已有覆盖);步骤6完成:7个 Entity 页面创建(Claude-Levi-Strauss/Clifford-Geertz/Pierre-Bourdieu/Victor-Turner/Bronislaw-Malinowski/Marcel-Mauss/Mary-Douglas);步骤7完成:9个 Concept 页面创建;步骤8完成:未检测到与其他页面的内容冲突;步骤9完成:log.md 追加记录 + +## [2026-05-03] ingest | Academic Geographer +- Source file: Agent/agency-agents/academic/academic-geographer.md +- Status: ✅ 成功摄入 +- Summary: Academic Geographer Agent 摄入——物理与人文地理系统构建专家 AI Agent,帮助在 Agent 世界构建中保持地理要素(气候、地形、水系、生物群落、聚落模式)的物理一致性。六步工作流:板块构造→气候系统→水文学→生物群落→人类聚落→贸易路线。核心规则:河流不分离、气候是系统、避免地理决定论。 +- Concepts created: 无(所有 Key Concepts 均内联于 Source Page,未创建独立 Concept 页面) +- Concepts already existed: [[EnvironmentalDeterminism]](引用) +- Entities created: 无 +- Entities already existed: [[JaredDiamond]](引用)、[[Acemoglu]](引用) +- Source page: wiki/sources/academic-geographer.md +- Notes: 步骤1完成:读取原始文档(127行);步骤2完成:读取 index.md(已了解上下文)、overview.md(规模庞大,单一 agent 源无需更新综合摘要);步骤3完成:source page 创建于 wiki/sources/academic-geographer.md;步骤4完成:index.md 在 Academic Narratologist 前插入完整描述条目;步骤5完成:overview.md 无需修订;步骤6-7完成:Entity/Concept 均为引用而非独立创建(该 Agent 为理论框架型,内容已内联在 Source Page);步骤8完成:与 Acemoglu 的制度决定论冲突已记录;步骤9完成:log.md 追加记录 + +## [2026-05-01] ingest | Behavioral Nudge Engine +- Source file: Agent/agency-agents/product/product-behavioral-nudge-engine.md +- Status: ✅ 成功摄入 +- Summary: Behavioral Nudge Engine agent 摄入——行为心理学驱动的用户动机引擎,通过 Micro-Sprint、Default Bias 利用、Nudge Sequence 和即时正强化来最大化任务完成率并降低平台流失。核心方法:认知负荷降低、时间盒、微冲刺、渐进式多渠道触达。 +- Concepts created: [[Micro-Sprint]]、[[Default-Bias]]、[[Nudge-Sequence]]、[[Cognitive-Load-Reduction]]、[[Habit-Formation]] +- Concepts already existed: 无 +- Entities created: 无 +- Entities already existed: 无 +- Source page: wiki/sources/product-behavioral-nudge-engine.md +- Notes: 步骤1完成:读取原始文档(80行);步骤2完成:读取 index.md(Line 419 已有条目)、overview.md(规模庞大,单一 agent 源无需更新综合摘要);步骤3完成:source page 创建于 wiki/sources/product-behavioral-nudge-engine.md;步骤4完成:index.md 条目补充完整描述;步骤5完成:overview.md 无需修订;步骤6-7完成:5个新 Concept 页面创建(无新 Entity);步骤8完成:未检测到冲突;步骤9完成:log.md 追加记录 + +## [2026-05-02] ingest | Product Sprint Prioritizer Agent(增量更新) +- Source file: Agent/agency-agents/product/product-sprint-prioritizer.md +- Status: ✅ 增量更新 +- Summary: Product Sprint Prioritizer Agent 增量更新(date: 2026-04-25 → 2026-05-02)——扩充 Key Claims(4→6条,新增技术债务管理和容量约束理念)、Key Quotes(3→4条,新增干系人满意度指标)、Key Concepts(6→10个,新增 Capacity Planning/Dependency Analysis/Risk Management 及各框架细化描述)、Key Entities(新增 Sprint Prioritizer 角色实例)、Connections(3→5条,新增与 workflow-startup-mvp/产品反馈综合分析的关系)、Contradiction(从无→1条,详细记录与 product-feedback-synthesizer 的优先级框架张力及协调建议)。 +- Entities created: 无([[Sprint-Prioritizer]] 已在现有记录) +- Entities already existed: [[Sprint-Prioritizer]]、[[Product-Manager-Agent]] +- Concepts created: 无(Key Concepts 均引用/关联现有 Concept 页面) +- Concepts already existed: [[RICE-Framework]]、[[MoSCoW-Method]]、[[Kano-Model]]、[[SprintPlanning]]、[[Team-Velocity]] +- Source page: wiki/sources/product-sprint-prioritizer.md +- Notes: 步骤1完成:读取原始文档(153行);步骤2完成:读取 index.md(Line 418 已有条目)、overview.md(Line 211 已有详细条目);步骤3完成:source page 全面扩充(新增6条 Key Claims、4条 Key Quotes、10个 Key Concepts、Key Entities 扩充、5条 Connections、详细 Contradiction);步骤4完成:index.md 日期更新为 2026-05-02;步骤5完成:overview.md 条目已完整,无需修订;步骤6-7完成:Entity/Concept 页面均已存在,无需创建;步骤8完成:与 [[product-feedback-synthesizer]] 优先级框架张力已详细记录,含协调建议;步骤9完成:log.md 追加记录 + +## [2026-05-02] ingest | Product Trend Researcher Agent(增量更新) +- Source file: Agent/agency-agents/product/product-trend-researcher.md +- Status: ✅ 增量更新 +- Summary: Product Trend Researcher Agent 增量更新(date: 2026-04-25 → 2026-04-30)—— 文档内容较上次无实质性变更,仅更新文档日期。source page 内容保持不变,index.md 日期同步更新为 2026-04-30。 +- Entities created: 无 +- Entities already existed: 无([[TheAgency]]/[[ProductManagerAgent]]/[[AgentsOrchestrator]] 已在现有 source page 引用) +- Concepts created: 无 +- Concepts already existed: 无(Key Concepts 均已引用现有/潜在页面) +- Source page: wiki/sources/product-trend-researcher.md +- Notes: 步骤1完成:读取原始文档(158行);步骤2完成:读取 index.md(line 417 已有条目)、overview.md(line 207 已有详细条目);步骤3完成:source page date 更新(2026-04-25 → 2026-04-30),内容不变;步骤4完成:index.md 日期更新;步骤5完成:overview.md 条目已完整,无需修订;步骤6-7完成:无新 Entity/Concept 页面创建;步骤8完成:无新增冲突;步骤9完成:log.md 追加记录 + +## [2026-05-01] ingest | Product Feedback Synthesizer Agent(增量更新) +- Source file: Agent/agency-agents/product/product-feedback-synthesizer.md +- Status: ✅ 增量更新 +- Summary: Product Feedback Synthesizer Agent 增量更新(date: 2026-04-20 → 2026-04-30)——扩充至 6 条 Key Claims(原 4 条)、4 条 Key Quotes(原 1 条)、14 个 Key Concepts(原 9 个,新增 ThematicAnalysis/FeaturePrioritization/CompetitiveFeedback/CSAT/CES)、5 条 Connections(原 3 条,新增 product-behavioral-nudge-engine 和 Agents-Orchestrator)、Contradiction 补充建议协调方案。overview.md 条目同步扩充五步流水线/多格式交付/优先级张力说明。 +- Entities created: 无(The-Agency 作为框架背景引用,未达≥2次阈值) +- Entities already existed: 无 +- Concepts created: 无(Key Concepts 已在 source page 充分记录) +- Concepts already existed: 无 +- Source page: wiki/sources/product-feedback-synthesizer.md +- Notes: 步骤1完成:读取原始文档(118行);步骤2完成:读取 index.md(Sources 节 Line 418 已有条目,日期更新)、overview.md(The Agency — Product 部门节 Line 205);步骤3完成:source page 全面扩充(新增 date 更新、6条 Key Claims、4条 Key Quotes、14个 Key Concepts、5条 Connections、扩充 Contradiction);步骤4完成:index.md Sources 节日期更新为 2026-04-30;步骤5完成:overview.md 条目扩充(新增五步流水线/多格式交付/优先级张力协调说明);步骤6-7完成:无新 Entity/Concept 页面创建;步骤8完成:与 [[product-sprint-prioritizer]] 优先级框架张力已记录,补充建议协调方案;步骤9完成:log.md 追加记录 + + +- Source file: Agent/agency-agents/specialized/automation-governance-architect.md +- Status: ✅ 成功摄入 +- Summary: Automation Governance Architect 完整摄取——n8n-first 的业务自动化治理架构师,核心理念"治理优于自动化数量"。核心能力:四维评估框架(时间节省 / 数据关键性 / 外部依赖风险 / 可扩展性)+ 五级裁定结果(APPROVE/APPROVE AS PILOT/PARTIAL AUTOMATION ONLY/DEFER/REJECT)+ n8n 工作流十步标准 + 可靠性基线 + 日志基线 + 测试基线 + 集成治理规范(Source of Truth)+ 复审触发器。Source page 含 7 条 Key Claims、4 条 Key Quotes、9 个 Key Concepts、1 个 Key Entity、5 条 Connections、1 条 Contradiction。 +- Entities created: [[Automation-Governance-Architect]] +- Entities already existed: 无 +- Concepts created: [[n8n-Workflow-Standard]](n8n 生产级工作流十步标准)、[[Automation-Decision-Framework]](四维自动化评估框架)、[[Automation-Verdict-System]](五级自动化裁定结果体系) +- Concepts already existed: 无 +- Source page: wiki/sources/automation-governance-architect.md +- Notes: 步骤1完成:读取原始文档(216行);步骤2完成:读取 index.md(Sources 节已有条目 Line 413)、overview.md(追加综合摘要条目27);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims×7、Key Quotes×4、Key Concepts×9、Key Entities×1、Connections×5、Contradictions×1);步骤4完成:index.md Sources 节已有 automation-governance-architect 条(Line 413,无需重复添加);步骤5完成:overview.md 追加综合摘要条目27;步骤6-7完成:新建 1 个 Entity 页面(Automation-Governance-Architect)和 3 个 Concept 页面(n8n-Workflow-Standard/Automation-Decision-Framework/Automation-Verdict-System),index.md Entities 和 Concepts 节同步更新;步骤8完成:与 [[Workflow-Architect-Agent-Personality]] 存在互补张力,已记录至 Contradictions;步骤9完成:log.md 追加记录 + +## [2026-05-01] ingest | Report Distribution Agent +- Source file: Agent/agency-agents/specialized/report-distribution-agent.md +- Status: ✅ 成功摄入 +- Summary: Report Distribution Agent 完整摄取——销售报告自动化分发 Agent,基于区域(Territory)路由将整合后的报告精准发送给对应业务员。核心能力:Territory-Based Routing(区域路由)、Scheduled Distribution(每日早8点/每周一早7点)、Audit Trail(分发日志)、Graceful Failure(失败继续)、HTML Email Reports(STGCRM 品牌规范)。Source page 含 6 条 Key Claims、3 条 Key Quotes、5 个 Key Concepts、3 个 Key Entities、3 条 Connections。 +- Entities created: 无(Data Consolidation Agent 仅引用1次,未达阈值;STGCRM 仅作品牌标识) +- Entities already existed: 无 +- Concepts created: 无(Key Concepts 已在 source page 充分记录,未创建独立页面) +- Concepts already existed: 无 +- Source page: wiki/sources/report-distribution-agent.md +- Notes: 步骤1完成:读取原始文档(65行);步骤2完成:读取 index.md(Sources 节新增)、overview.md(追加综合摘要条目26);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims×6、Key Quotes×3、Key Concepts×5、Key Entities×3、Connections×3、Contradictions);步骤4完成:index.md Sources 节新增 report-distribution-agent 条(Line 7);步骤5完成:overview.md 追加综合摘要条目26;步骤6-7完成:无新 Entity/Concept 页面创建(均未达阈值或已在 source page 覆盖);步骤8完成:无跨页面内容冲突;步骤9完成:log.md 追加记录 + +## [2026-04-25] ingest | Supply Chain Strategist Agent +- Source file: Agent/agency-agents/specialized/supply-chain-strategist.md +- Status: ✅ 成功摄入 +- Summary: Supply Chain Strategist Agent 完整摄取——The Agency Specialized 部门的供应链管理专家 Agent,专注中国制造业生态。核心能力:供应商开发与分级管理(ABC/QCD)、战略采购(Kraljic 矩阵/TCO)、质量管理(IQC/IPQC/OQC/AQL)、库存优化(EOQ/安全库存/再订货点)、物流仓储(WMS)、供应链数字化(ERP/SRM/L1-L5)、成本控制与风险管理。Source page 含 5 条 Key Claims、4 条 Key Quotes、14 个 Key Concepts、12 个 Key Entities、7 条 Connections。 +- Entities created: [[Supply-Chain-Strategist]](The Agency Specialized 部门供应链专家 Agent)、[[QiChaCha]](企查查,供应商资质验证)、[[Tianyancha]](天眼查,供应商资质验证) +- Entities already existed: 无 +- Concepts created: [[Kraljic-Matrix]](供应商分类与采购战略框架,四象限矩阵) +- Concepts already existed: [[TCO]](已存在云计算 TCO 框架,本次补充供应链采购 TCO 应用,无冲突) +- Source page: wiki/sources/supply-chain-strategist.md +- Notes: 步骤1完成:读取原始文档(582行);步骤2完成:读取 index.md(条目已存在 Line 396)、overview.md(无供应链相关内容,需追加);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims×5、Key Quotes×4、Key Concepts×14、Key Entities×12、Connections×7、Contradictions);步骤4完成:index.md Sources 节新增 supply-chain-strategist 条(Line 7);步骤5完成:overview.md Line 52 后追加综合摘要;步骤6-7完成:新建 3 个 Entity 页面(Supply-Chain-Strategist/QiChaCha/Tianyancha)和 1 个 Concept 页面(Kraljic-Matrix),补充现有 TCO.md 的供应链场景应用;index.md Entities 和 Concepts 节同步更新;步骤8完成:无跨页面内容冲突,TCO 跨场景应用已标注;步骤9完成:log.md 追加记录 + +## [2026-05-30] ingest | ZK Steward Agent +- Source file: Agent/agency-agents/specialized/zk-steward.md +- Status: ✅ 成功摄入 +- Summary: ZK Steward Agent 完整摄取——将 Niklas Luhmann 的 Zettelkasten 卡片盒笔记法引入 AI Agent,用于构建有链接、可验证、持续生长的知识网络。核心机制:Luhmann 四原则验证(原子性 / 连通性 / 有机增长 / 持续对话)+ 领域专家切换(按领域 × 任务类型 × 输出形式选取 Feynman/Munger/Ogilvy/Karpathy/Mollick 等心智模型)+ 任务闭环清单(归档 / 链接提案 / Gegenrede 反问 / 每日日志 / 开放循环清理)。Source page 含 5 条 Key Claims、4 条 Key Quotes、6 个 Key Concepts、6 个 Key Entities、5 条 Connections、2 条 Contradictions。 +- Entities created: [[Richard-Feynman]](物理学诺奖得主,first principles / teach to learn 方法)、[[Charlie-Munger]](伯克希尔副主席,mental models / inversion 策略)、[[David-Ogilvy]](奥美创始人,long copy / brand persona 品牌法)、[[Andrej-Karpathy]](AI 研究员,first-principles engineering / deep-learning)、[[Ethan-Mollick]](沃顿副教授,structured prompts / persona pattern prompting) +- Entities already existed: [[Niklas-Luhmann]]、[[zk-steward-companion]](sources 字段追加 zk-steward) +- Concepts created: [[Atomic-Note]](原子笔记:最小自包含知识单元,≥2 条链接,Luhmann 四原则原子性的直接体现) +- Concepts already existed: [[Zettelkasten]]、[[Luhmann-四原则]]、[[Gegenrede]]、[[Domain-Thinking]]、[[Link-Proposer]]、[[Daily-Log]](sources 字段均已追加 zk-steward) +- Source page: wiki/sources/zk-steward.md +- Notes: 步骤1完成:读取原始文档(211行);步骤2完成:读取 index.md(zk-steward 源条目已存在于 Line 395,source page 不存在,需新建)、overview.md(无 ZK Steward 相关内容,需追加);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims×5、Key Quotes×4、Key Concepts×6、Key Entities×6、Connections×5、Contradictions×2);步骤4完成:index.md Entities 节新增 Charlie-Munger/David-Ogilvy/Ethan-Mollick/Richard-Feynman 条,Concepts 节新增 Atomic-Note 条;步骤5完成:overview.md 追加 #25 ZK Steward Agent 综合摘要(469字节);步骤6-7完成:新建 5 个 Entity 页面和 1 个 Concept 页面;步骤8完成:无跨页面内容冲突,与 AgentsOrchestrator 的"结构 vs 自组织"张力已记录于 Contradictions;步骤9完成:log.md 追加记录 + +## [2026-04-25] ingest | French Consulting Market Navigator +- Source file: Agent/agency-agents/specialized/specialized-french-consulting-market.md +- Status: ✅ 成功摄入 +- Summary: French Consulting Market Navigator 完整摄取——The Agency Specialized 部门的法国 ESN/SI 生态系统导航 Agent,帮助独立 IT 顾问最大化日均净收入(TJM)、最小化付款风险。核心方法:ESN 分层定价架构(Tier 1/2/3)+ 五平台对比矩阵(Malt/collective.work/Comet/Crème/Free-Work)+ TJM Brut vs Net 量化拆解(Portage Salarial vs Micro-Entreprise)+ 季节性市场日历。Source page 含 5 条 Key Claims、4 条 Key Quotes、6 个 Key Concepts、7 个 Key Entities、4 条 Connections。 +- Entities created: [[Agentforce]](Salesforce AI Agent 产品线,700-850 EUR/天 TJM 高端方向)、[[Malt]](欧洲最大自由职业平台,10%客户侧佣金,费率公开可见)、[[Salesforce]](CRM 平台,法国 ESN 生态核心商业技术栈) +- Concepts created: [[Portage-Salarial]](法国薪资代理机制,净收入约 50% TJM,含失业保险)、[[Micro-Entreprise]](法国微型企业家制度,净收入约 70% TJM,无失业保险)、[[TJM]](平均日费率,含 Brut/Net 区分公式和分专项定价基准) +- Concepts updated: [[ESN]](已存在,sources 字段追加 specialized-french-consulting-market,无需新建) +- Source page: wiki/sources/specialized-french-consulting-market.md +- Notes: 步骤1完成:读取原始文档(192行);步骤2完成:读取 index.md(条目已存在 Line 396)、overview.md(Line 947 已有综合摘要,无需修订);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims×5、Key Quotes×4、Key Concepts×6、Key Entities×7、Connections×4、Contradictions);步骤4完成:index.md Line 396 已有条目,无需修改;步骤5完成:overview.md Line 947 已有完整综合摘要,无需修订;步骤6-7完成:新建 3 个 Entity 页面(Agentforce/Malt/Salesforce)和 3 个 Concept 页面(Portage-Salarial/Micro-Entreprise/TJM),index.md Entities 和 Concepts 节同步更新;步骤8完成:无跨页面内容冲突(ESN.md 已存在,追加 sources 引用);步骤9完成:log.md 追加记录 +- Deleted: concepts/ESN-SI.md(与已存在的 concepts/ESN.md 重复,以已有页面为准) + +## [2026-05-30] ingest | Blockchain Security Auditor +- Source file: Agent/agency-agents/specialized/blockchain-security-auditor.md +- Status: ✅ 成功摄入(增量更新) +- Summary: Blockchain Security Auditor 增量更新——原 source page 2026-04-20 已存在,463行原始文档对比后大幅扩充,新增:完整审计报告模板(Severity分类表/Foundry PoC)、Slither综合分析脚本(高/中置信度检测器分类)、访问控制审计清单(Role Hierarchy/Initialization/Upgrade Controls/External Calls)、EVM层漏洞(存储冲突/签名重放/跨链消息重放/Gas Griefing)、形式化验证工具链(Certora/Halmos/KEVM)、事件响应流程(溯源分析/救援合约)、高级攻击技术(只读重入/治理攻击/MEV提取)。Source page扩充至7,129字节,新增Key Claims×5条(Sol 0.8+ unchecked块审查/字节码一致性验证/误报率10%上限)、Key Concepts×5个(Storage Collision/Signature Malleability/Cross-Chain Replay/Formal Verification/SWC Registry)、Key Entities×2个(Certora/Foundry)、Connections×2条(形式化验证方法论/SWC Registry参考)。 +- Concepts created: [[Formal-Verification]](形式化验证:符号执行+不变式规范数学证明合约属性正确性)、[[Access-Control]](访问控制:5类漏洞模式+审计清单+Severity分类)、[[Flash-Loan-Attack]](闪电贷攻击:单笔交易内无抵押借款操纵市场,含Oracle Manipulation/Donate-to-Reserves/Governance三种常见变体)、[[Slither]](Slither静态分析框架:高/中置信度检测器详解+综合脚本)、[[Mythril]](Mythril符号执行分析:与Slither对比+使用方法)、[[Echidna]](属性化模糊测试:不变性验证+Foundry集成)、[[Certora]](Certora形式化验证工具:CVL规范语言+反例生成)、[[SWC-Registry]](智能合约弱点分类标准:SWC-100至SWC-115关键分类) +- Entities created: [[Certora]](形式化验证平台)、[[Foundry]](Solidity开发框架,主要用于PoC攻击测试) +- Source page: wiki/sources/blockchain-security-auditor.md +- Notes: 步骤1完成:读取原始文档(463行);步骤2完成:读取 index.md(条目已存在于Line 412,日期2026-04-20)、overview.md(Line 931已有综合摘要,全面扩充);步骤3完成:更新source page(date: 2026-04-20→2026-05-30,补充新增内容);步骤4完成:index.md Entities节新增Certora/Foundry条(Line 661/705),Concepts节新增Access-Control/Checks-Effects-Interactions/Echidna/Flash-Loan-Attack/Formal-Verification/Foundry/Mythril/Slither/SWC-Registry共9条;步骤5完成:overview.md Line 931综合摘要扩充,新增交付物详情、形式化验证高级能力、漏洞评级严格化规则;步骤6-7完成:新建8个Concept页面和2个Entity页面;步骤8完成:发现与Compliance Auditor的关注点差异和漏洞评级沟通张力,已记录于Contradictions;步骤9完成:log.md追加记录 + +## [2026-05-30] ingest | Sales Data Extraction Agent +- Source file: Agent/agency-agents/specialized/sales-data-extraction-agent.md +- Status: ✅ 成功摄入 +- Summary: Sales Data Extraction Agent 完整摄取——AI Agent 角色定义,专注于监控 Excel 文件并提取销售指标(MTD/YTD/Year End)用于内部实时报表。技术实现:文件系统监控(忽略 ~$ 锁文件)→ 模糊列名匹配 → 指标类型自动识别 → PostgreSQL 事务持久化 → 下游 Agent 事件通知。核心原则:从不覆盖已有数据(仅在新文件版本时更新)、所有操作记录完整审计追踪(文件名/处理行数/失败行数/时间戳)。成功指标:100% 无人工干预处理、<2% 行级失败、<5 秒单文件处理时间、完整审计链。 +- Entities created: 无(PostgreSQL/ReportDistributionAgent 为已知商业产品/跨 Agent,未达到创建 Entity 页面阈值) +- Source page: wiki/sources/sales-data-extraction-agent.md +- Notes: 步骤1完成:读取原始文档(67行);步骤2完成:读取 index.md(条目已存在于 Line 398,正式条目无需修改)、overview.md(1139行,无冲突内容无需修订);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims×5条、Key Quotes×3条、Key Concepts×6个、Key Entities×2个、Connections×3条、Contradictions);步骤4完成:index.md Line 398 已是正式条目,无需修改;步骤5完成:overview.md 无冲突内容,无需修订;步骤6-7完成:无需创建新 Entity/Concept 页面(所有 Key Concepts 均为本 Agent 特有实现细节不具备跨 Wiki 可复用性);步骤8完成:无跨页面内容冲突;步骤9完成:log.md 追加记录 + +## [2026-05-29] ingest | Study Abroad Advisor +- Source file: Agent/agency-agents/specialized/study-abroad-advisor.md +- Status: ✅ 成功摄入 +- Summary: Study Abroad Advisor Agent 增量更新——原 source page 2026-04-25 已存在,对比 282 行原始文档全面扩充:新增四步工作流详细说明、标准化交付模板(选校报告/多国申请时间线/文书诊断/Offer比较矩阵)、标准化考试策略(TOEFL/IELTS/GRE/GMAT/SAT)、Profile提升规划(研究/实习/竞赛)、诚信原则(不代写/不承诺结果/不虚构)。Source page 扩充至 6,236 字节,新增 Key Claims×2条、Key Concepts×2个(Taoxi/Three-Tier-School-Selection)、Key Entities×1个(NUS/NTU)。 +- Concepts created: [[Taoxi]](留学申请中主动联系目标导师的套磁策略,含邮件模板和时机建议)、[[Three-Tier-School-Selection]](三档选校策略:Reach/Target/Safety,概率区间表达法及选校心理维度) +- Entities created: [[1point3acres]](一亩三分地留学社区,录取数据库和薪资数据平台)、[[NUS-NTU]](新加坡国立大学与南洋理工大学,亚洲顶尖院校对比) +- Source page: wiki/sources/study-abroad-advisor.md +- Notes: 步骤1完成:读取原始文档(282行);步骤2完成:读取 index.md(条目已存在于 Line 392,日期 2026-04-25)、overview.md(已有综合摘要无需修订);步骤3完成:更新 source page(date: 2026-04-25→2026-05-29,补充新增内容);步骤4完成:index.md Sources 节补全日期前缀和一行摘要;步骤5完成:overview.md 已有综合摘要无需修订;步骤6-7完成:新建 2 个 Entity(1point3acres/NUS-NTU)和 2 个 Concept(Taoxi/Three-Tier-School-Selection),index.md Entities 和 Concepts 节同步更新;步骤8完成:发现一处内部张力已记录于 Contradictions(成功率指标 vs 不承诺录取);步骤9完成:log.md 追加记录 + +## [2026-05-29] ingest | Agents Orchestrator +- Source file: Agent/agency-agents/specialized/agents-orchestrator.md +- Status: ✅ 成功摄入 +- Summary: AgentsOrchestrator Agent 增量更新——原 source page 2026-04-20 已存在,对比 366 行原始文档补充了 Available Specialist Agents 章节(Design&UX/Engineering/Marketing/PM/Testing 五类共 20+ Agent)和 Orchestrator Launch Command 章节。核心概念:四阶段流水线(PM→ArchitectUX→[Dev↔QA循环]→最终集成)、最大3次重试质量门控、截图驱动型 QA 验证。 +- Concepts created: [[Dev-QA-Loop]](开发与质量验证的持续循环机制)、[[Pipeline-State-Management]](流水线状态追踪管理)、[[Agent-Handoff]](Agent 交接协议)、[[Continuous-Dev-QA-Loop]](持续开发质量循环) +- Entities created: [[AgentsOrchestrator]](编排器自身)、[[EvidenceQA]](截图质量验证 Agent)、[[TestingRealityChecker]](最终集成验证 Agent)、[[MobileAppBuilder]](移动应用构建 Agent)、[[DevOpsAutomator]](DevOps 自动化 Agent) +- Concepts updated: [[Quality-Gate]](追加 sources: agents-orchestrator) +- Source page: wiki/sources/agents-orchestrator.md +- Notes: 步骤1完成:读取原始文档(366行);步骤2完成:读取 index.md(条目已存在于 Line 413)和 overview.md(Line 122 已有完整综合摘要,无需修订);步骤3完成:更新 source page(date: 2026-04-20→2026-05-29,补充 Available Specialist Agents 和 Launch Command);步骤4完成:index.md Entities 节新增 5 条目(AgentsOrchestrator/DevOpsAutomator/EvidenceQA/MobileAppBuilder/TestingRealityChecker),Concepts 节新增 4 条目(Agent-Handoff/Continuous-Dev-QA-Loop/Dev-QA-Loop/Pipeline-State-Management);步骤5完成:overview.md Line 122 已有完整综合摘要,无需修订;步骤6-7完成:新建 5 个 Entity 页面和 4 个 Concept 页面;步骤8完成:无跨页面内容冲突;步骤9完成:log.md 追加记录 + +## [2026-05-29] ingest | Compliance Auditor Agent +- Source file: Agent/agency-agents/specialized/compliance-auditor.md +- Status: ✅ 成功摄入 +- Summary: ComplianceAuditor Agent 完整摄取——AI Agent 角色定义,技术合规审计员,指导组织完成 SOC 2、ISO 27001、HIPAA、PCI-DSS 等安全与隐私认证流程。五步工作流(范围界定→差距评估→修复支持→审计支持→持续合规),核心原则:实质重于形式、自动化证据收集优先、按风险适配控制复杂度。交付物:差距评估报告、证据收集矩阵、政策模板。 +- Concepts created: [[SOC2]](AICPA 信任服务标准认证框架,5个信任服务标准)、[[GapAssessment]](系统化评估组织当前安全态势与目标框架要求之间差距的分析过程)、[[EvidenceCollection]](合规审计中提取、记录和整理证据材料的过程,自动化优先原则) +- Source page: wiki/sources/compliance-auditor.md +- Notes: 步骤1完成:读取原始文档(158行);步骤2完成:读取 index.md(条目已存在于 Line 410)和 overview.md(1139行,已检查无需修订);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims×6条、Key Quotes×4条、Key Concepts×9个、Key Entities×1个、Connections×6条、Contradictions);步骤4完成:index.md Sources 节新增 compliance-auditor 条目(2026-04-30),位于 Specialized Salesforce Architect 之后;步骤5完成:overview.md 1139行已检查,无与 compliance-auditor 冲突的内容,无需修订;步骤6-7完成:新建 SOC2/GapAssessment/EvidenceCollection 三个 Concept 页面,index.md Concepts 节同步更新;步骤8完成:无已知冲突页面;步骤9完成:log.md 追加记录 + +## [2026-05-29] ingest | Model QA Specialist +- Source file: Agent/agency-agents/specialized/specialized-model-qa.md +- Status: ✅ 成功摄入 +- Summary: Model QA Specialist 完整摄取——The Agency Specialized 部门的 ML 模型全生命周期端到端独立审计专家 Agent。核心方法:10 大审计领域(文档治理→数据重建→标签分析→分段评估→特征分析→模型复制→校准测试→性能监控→可解释性与公平性→商业影响),配套完整 Python 工具集(PSI + SHAP + PDP + Hosmer-Lemeshow + Gini/KS)。核心原则:独立性(从不审计自己参与构建的模型)、可复现性(每个分析必须产出可执行脚本)、证据链完整(每个发现必须包含观察→证据→影响评估→建议)。成功指标:审计发现 95%+ 被确认为有效、零部署后失败。本次新增 2 个 Concept 页面(Champion-Challenger/Fairness-Audit),6 个已有 Concept 页面追加来源引用(SHAP/Calibration-Testing/Discrimination-Metrics/Hosmer-Lemeshow-Test/Partial-Dependence-Plots/Population-Stability-Index)。 +- Concepts created: [[Champion-Challenger]](模型替代评估框架:Champion 保持运行并引入 Challenger 并行评分,通过量化对比决定是否升级)、[[Fairness-Audit]](跨受保护群体(种族/性别/年龄等)评估模型系统性歧视的方法论) +- Concepts updated: SHAP/Calibration-Testing/Discrimination-Metrics/Hosmer-Lemeshow-Test/Partial-Dependence-Plots/Population-Stability-Index(均追加 sources 引用至 specialized-model-qa,last_updated 更新至 2026-05-29) +- Source page: wiki/sources/specialized-model-qa.md +- Notes: 步骤1完成:读取原始文档(488行);步骤2完成:读取 index.md(条目已存在于 Line 388)、overview.md(Line 941 已有详细综合摘要,无需修订);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims×4条、Key Quotes×3条、Key Concepts×8个、Key Entities×5个、Connections×8条、Contradictions);步骤4完成:index.md 条目日期 2026-04-29→补全,Concept 节新增 Champion-Challenger 和 Fairness-Audit 条目;步骤5完成:overview.md Line 941 已有完整综合摘要,无需修订;步骤6-7完成:新建 Champion-Challenger 和 Fairness-Audit 两个 Concept 页面,6 个已有 Concept 页面追加 sources 引用,index.md Concepts 节同步更新;步骤8完成:无跨页面内容冲突(Model QA Specialist 的 QA 方法论与 wiki 中其他来源在技术层面互补而非竞争);步骤9完成:log.md 追加记录 + +## [2026-05-29] ingest | LSP/Index Engineer Agent Personality +- Source file: Agent/agency-agents/specialized/lsp-index-engineer.md +- Status: ✅ 成功摄入 +- Summary: LSP/Index Engineer Agent 完整摄取——The Agency Specialized 部门的 LSP 客户端编排和语义图谱构建专家,通过 graphd LSP 聚合器将 TypeScript/PHP/Go/Rust/Python 等多语言 LSP 客户端统一编排为语义图谱。核心交付物:多语言 LSP 并发编排 + 统一图谱模式(节点:文件/符号,边:contains/imports/calls/refs)+ nav.index.jsonl 语义索引 + WebSocket 实时增量推送 + 原子性图谱更新保证。性能北极星:/graph <100ms、/nav <20ms(缓存)/60ms(未缓存)、WebSocket <50ms、内存 <500MB、100k+ 符号无降级。本次新增 1 个 Entity 页面(GraphDaemon)、2 个 Language Server Entity(TypeScriptLanguageServer/Intelephense)、5 个 Concept 页面(LanguageServerProtocol/SemanticCodeGraph/LSPOrchestrator/nav.index.jsonl/LSIF/IncrementalGraphUpdate)。 +- Concepts created: [[LanguageServerProtocol]](LSP 3.17 标准化协议:语言服务器与编辑器之间的 JSON-RPC 通信规范)、[[SemanticCodeGraph]](语义代码图谱:节点(文件/符号)和边(语义关系)表示代码结构的统一抽象)、[[LSPOrchestrator]](LSP 编排器:协调多个语言服务器并发运行的中间层)、[[nav.index.jsonl]](导航索引格式:JSONL 流式存储符号定义/引用/悬停文档)、[[LSIF]](Language Server Index Format:预计算语义索引标准)、[[IncrementalGraphUpdate]](增量图谱更新:文件监听器/Git hooks 触发实时增量更新) +- Entities created: [[GraphDaemon]](graphd 图谱守护进程:LSP 客户端编排 + HTTP/WebSocket API + 图谱状态管理)、[[TypeScriptLanguageServer]](TypeScript 语言服务器)、[[Intelephense]](PHP Intelephense 语言服务器) +- Source page: wiki/sources/lsp-index-engineer.md +- Notes: 步骤1完成:读取原始文档(313行);步骤2完成:读取 index.md(条目已存在于 Line 399,补全日期 [2026-04-29])、overview.md(Line 943 已有完整综合摘要,第 1114 行 Contradictions 已引用);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims×5条、Key Quotes×3条、Key Concepts×6个、Key Entities×3个、Connections×7条、Contradictions);步骤4完成:index.md 条目补充日期前缀;步骤5完成:overview.md 已有完整综合摘要,无需修订;步骤6-7完成:创建 1 个 Entity(GraphDaemon)、2 个 Language Server Entity(TypeScriptLanguageServer/Intelephense)、6 个 Concept(LanguageServerProtocol/SemanticCodeGraph/LSPOrchestrator/nav.index.jsonl/LSIF/IncrementalGraphUpdate);步骤8完成:与 specialized-workflow-architect 存在张力(LSP 要求确定性 vs Workflow 穷举存在概率性上限),已记录于 Contradictions;步骤9完成:log.md 追加记录 + +## [2026-05-29] ingest | Specialized Salesforce Architect +- Source file: Agent/agency-agents/specialized/specialized-salesforce-architect.md +- Status: ✅ 成功摄入 +- Summary: Specialized Salesforce Architect Agent 完整摄取——The Agency Specialized 部门的 Salesforce 平台解决方案架构师 Agent,专注于多云平台设计(Sales/Service/Marketing/Data Cloud/Agentforce)、企业级集成模式(REST/Platform Events/CDC/MuleSoft)、数据模型治理和 Governor Limit 感知应用设计。核心原则:Governor Limits 不可妥协(SOQL100/DML150/CPU10s同步)、Bulkification 强制要求、Trigger 委托 Handler 类、声明式优先但代码兜底、集成必须处理失败(重试+熔断+DLQ)。核心交付物:ADR 模板、Integration Pattern Template(含 ASCII 图解)、Data Model Review Checklist、Governor Limit Budget 模板、完整工作流(Discovery→Architecture→Implementation→Review)。成功指标:生产零 Governor Limit 异常、10 倍数据量增长无需重新设计、集成零静默数据丢失、架构文档让新开发者一周内上手。 +- Entities: 无需创建(6 个 Key Entities 均为知名商业产品 MuleSoft/SalesforceDX/DevOpsCenter/ShieldPlatformEncryption/DataCloud/Agentforce,仅出现在此单一来源) +- Concepts: 无需创建(Key Concepts 中的 GovernorLimits/Bulkification/IntegrationPatternTemplate/ADR/TriggerFramework/DeclarativeFirst/PlatformEvents/ChangeDataCapture/MultiCloudArchitecture/AgentforceArchitecture 通过 wikilink 引用,待后续来源时升级为独立页面) +- Source page: wiki/sources/specialized-salesforce-architect.md +- Notes: 步骤1完成:读取原始文档(180行);步骤2完成:读取 index.md(条目已存在于 Line 389)、overview.md(内容为方法论性质 Agent 人格定义,无需修订综合摘要);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims×9条、Key Quotes×3条、Key Concepts×10个、Key Entities×6个、Connections×5条、Contradictions);步骤4完成:index.md 条目已存在,无需更新;步骤5完成:overview.md 无需修订;步骤6-7完成:无 Entity/Concept 独立页面创建需求;步骤8完成:无跨页面内容冲突;步骤9完成:log.md 追加记录 + +## [2026-05-29] ingest | Corporate Training Designer +- Source file: Agent/agency-agents/specialized/corporate-training-designer.md +- Status: ✅ 成功摄入 +- Summary: Corporate Training Designer 完整摄取——The Agency Specialized 部门的企业培训系统架构师与课程开发专家 Agent,专注企业级培训需求分析、ADDIE/SAM 教学设计模型、混合学习项目、内训师培养(TTT)、领导力发展(HIPO)及 Kirkpatrick 四级培训效果评估。核心价值观:优秀培训的衡量标准不是"教了什么",而是"学员回去做了什么"。本次新增 5 个 Concept 页面(ADDIE-Model/Kirkpatrick-Model/TTT-Train-the-Trainer/Blended-Learning/Bloom-Taxonomy)。与 [[Bloom-认知分类]] 和 [[Kirkpatrick-四级评估]] 已存在的 Concept 页面存在命名重叠,当前页面采用英文命名(Bloom-Taxonomy/Kirkpatrick-Model)以保持命名规范一致性。 +- Concepts created: [[ADDIE-Model]](教学设计五阶段框架:分析→设计→开发→实施→评估)、[[Kirkpatrick-Model]](四级培训评估模型:反应→学习→行为→结果)、[[TTT-Train-the-Trainer]](内部讲师培养体系)、[[Blended-Learning]](线上线下融合学习)、[[Bloom-Taxonomy]](Bloom 认知分类六层次) +- Source page: wiki/sources/corporate-training-designer.md +- Notes: 步骤1完成:读取原始文档(192行);步骤2完成:读取 index.md(条目已存在 Line 409,补全日期和摘要)、overview.md(Line 937 已有完整综合摘要,无需修订);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims×4条、Key Quotes×3条、Key Concepts×12个、Key Entities×8个、Connections×6条、Contradictions);步骤4完成:index.md 条目补充日期格式和一句话摘要;步骤5完成:overview.md 已有完整综合摘要,无需修订;步骤6-7完成:创建 5 个新 Concept 页面(ADDIE-Model/Kirkpatrick-Model/TTT-Train-the-Trainer/Blended-Learning/Bloom-Taxonomy),index.md Concepts 节已同步更新(TTT-Train-the-Trainer/Blended-Learning);Bloom-Taxonomy 和 Kirkpatrick-Model 存在已有中文命名页面(Bloom-认知分类/Kirkpatrick-四级评估),当前新增页面采用英文命名以符合命名规范;步骤8完成:无跨页面内容冲突;步骤9完成:log.md 追加记录 + +## [2026-05-02] ingest | Workflow Architect Agent Personality +- Source file: Agent/agency-agents/specialized/specialized-workflow-architect.md +- Status: ✅ 成功摄入(含更新) +- Summary: Workflow Architect Agent 完整摄取并更新——The Agency Specialized 部门的工作流设计与系统建模专家,在代码编写前对系统所有路径进行穷举建模。新增内容(对比 2026-04-25 初版):Agent 协作协议(Security Engineer 审查凭证传递)、好奇心驱动式 Bug 发现方法论(追问数据持久化/网络连通性/时序/认证假设,主动发现高危 Bug)、测试覆盖率原则(每个分支必须有对应测试用例)、假设表缩减成功指标。 +- Concepts created: [[Agent-Collaboration-Protocol]](Workflow Architect 与 Backend Architect/Security Engineer/API Tester/DevOps Automator 的标准化协作流程)、[[Curiosity-Driven-Bug-Discovery]](追问四类假设来主动发现高危 Bug) +- Source page: wiki/sources/specialized-workflow-architect.md +- Notes: 步骤1完成:读取原始文档(含 lines 501-598 新增内容);步骤2完成:读取 index.md(条目已存在 Line 383,日期 2026-04-29)、overview.md(Line 935 已有综合摘要);步骤3完成:更新 source page(含新增内容:Key Claims×2条、Key Quotes×1条、Key Concepts×2个、Connections×1条、date 更新至 2026-05-02);步骤4完成:index.md 条目日期更新至 2026-05-02;步骤5完成:overview.md Line 935 综合摘要补充新增能力(Security Engineer 协作/好奇心驱动 Bug 发现/测试覆盖率原则/成功指标);步骤6-7完成:创建 [[Agent-Collaboration-Protocol]] 和 [[Curiosity-Driven-Bug-Discovery]] 两个 Concept 页面,index.md Concepts 节已同步更新;步骤8完成:无新增冲突(与 Designing-for-Agentic-AI 的概率性冲突已在初版中记录,无需重复);步骤9完成:log.md 追加记录 + +## [2026-05-29] ingest | Document Generator Agent +- Source file: Agent/agency-agents/specialized/specialized-document-generator.md +- Status: ✅ 成功摄入 +- Summary: Document Generator Agent 完整摄取——The Agency Specialized 部门的程序化文档生成专家,通过代码方式(Python/Node.js)生成 PDF、PPTX、DOCX、XLSX 等专业文档。核心工具栈:PDF(reportlab/weasyprint/fpdf2)、PPTX(python-pptx/pptxgenjs)、XLSX(openpyxl/xlsxwriter/exceljs)、DOCX(python-docx/docx)。核心原则:样式系统优先、品牌一致性、数据驱动、无障碍设计、模板可复用。与 [[report-distribution-agent]](文档分发)和 [[sales-proposal-strategist]](销售提案)形成文档管道。与 [[latex-paper-writing]] 存在格式选型冲突(商业文档→原生办公格式 vs 学术文档→LaTeX)。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page:Code-Based-Document-Generation/Document-Styles/HTML-to-PDF-Conversion/Template-Driven-Generation/Data-Driven-Documents) +- Source page: wiki/sources/specialized-document-generator.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md(条目已存在于 Line 386)、overview.md(Line 925 已有详细综合摘要,无需修订);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md 已有对应条目,无需修改;步骤5完成:overview.md 已有完整综合摘要(Line 925),无需修订;步骤6-7完成:Entity(The Agency/Specialized部门 已在多处出现)和 Concept 均以 wikilinks 形式记录于 source page,未达到独立建页阈值;步骤8完成:检测并记录与 [[latex-paper-writing]] 的格式选型冲突(商业文档 vs 学术文档),协调方案:按文档类型分工;步骤9完成:log.md 追加记录 + +## [2026-05-29] ingest | Accounts Payable Agent +- Source file: Agent/agency-agents/specialized/accounts-payable-agent.md +- Status: ✅ 成功摄入 +- Summary: Accounts Payable Agent 完整摄取——The Agency 财务部门的自主支付运营专家 Agent,处理供应商付款、承包商发票和周期性账单,覆盖 ACH/Wire/Crypto/Stablecoin/Payment API 全支付通道。核心方法论:幂等性检查(reference ID 去重,零重复付款)、多通道路由(自动选择最优通道,失败自动切换备选)、审批阈值(超授权额度必须人工审批)、供应商注册表(维护已批准供应商首选通道和地址)、审计全链路(每笔支付记录完整上下文)。通过 tool calls 与 Contracts Agent、Project Manager Agent、HR Agent 集成。成功指标:零重复付款、<2 分钟执行时间、100% 审计覆盖、60 秒内 escalation SLA。属 The Agency Specialized 部门。 +- Concepts created: (本次首次引入支付运营领域概念,暂不创建独立 Concept 页面,待后续来源≥2次引用再升级) +- Source page: wiki/sources/accounts-payable-agent.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md(条目已存在 Line 413,补全日期格式)、overview.md(Line 214 已有相关摘要,无需修订);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md 日期格式补全;步骤5完成:overview.md 已有 Accounts Payable Agent 摘要,无需修订;步骤6-7完成:Entity(ContractsAgent/ProjectManagerAgent/HRAgent/StrategyAgent 等)和 Concept(Idempotency-Check/Audit-Trail/Payment-Rail-Routing 等)首次引入,暂不创建独立页面;步骤8完成:无跨页面冲突;步骤9完成:log.md 追加记录 + +## [2026-05-29] ingest | Recruitment Specialist Agent +- Source file: Agent/agency-agents/specialized/recruitment-specialist.md +- Status: ✅ 成功摄入 +- Summary: Recruitment Specialist Agent 完整摄取——The Agency Specialized 部门中国招聘运营与人才获取专家 Agent。核心方法论:7大招聘平台矩阵运营(Boss直聘/拉勾/猎聘/智联/前程无忧/脉脉/领英)+ JD优化与A/B测试 + 人才评估三维度模型 + STAR面试法 + 结构化面试评分卡 + 校园招聘(秋招/春招节奏)+ 猎头渠道分层管理(费率标准15-30%)+ 劳动法合规(劳动合同法/五险一金/试用期/竞业限制/经济补偿金N+1)+ 雇主品牌内容营销(抖音/B站/小红书/脉脉/知乎)+ 入职SOP全流程(T-7→T→T+7→T+30)+ 数据驱动招聘漏斗分析。核心成功指标:试用期留存率90%+、招聘渠道ROI季度改善、候选人体验NPS 80+、劳动法合规零事故。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page:STAR面试法/Competency-Model/Recruitment-Funnel/Labor-Contract-Law/Wuxian-Yijin/Probation-Period/Non-Compete-Clause/Severance-N-Plus-1/Campus-Recruiting/Headhunter-Management/ATS-System/JD-A-B-Testing/Employer-Brand/Onboarding-SOP/Recruitment-Data-Analytics/RecruitmentFunnelAnalyzer) +- Source page: wiki/sources/recruitment-specialist.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md(条目已存在于 Line 391)、overview.md(Recruitment Specialist 属 Specialized 部门,overview 暂无独立综合段落,无需修订);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md 已有对应条目(Line 391),无需修改;步骤5完成:overview.md 无需修订(Agent 个性化定义文档,Specialized 部门 overview 综合摘要暂缺);步骤6-7完成:Entity(Boss直聘/拉勾/猎聘/北森/Moka/科锐国际等)和 Concept(STAR面试法/招聘漏斗/劳动法/五险一金等)均以 wikilinks 形式记录于 source page,未达到独立建页阈值(≥2次引用);步骤8完成:检测与 Sales-Discovery-Coach 的 STAR 方法张力(Recruitment Specialist 将 STAR 作为通用行为面试工具,Discovery Coach 认为需按岗位层级定制),已记录于 Contradictions 节;步骤9完成:log.md 追加记录 + +## [2026-05-29] ingest | Specialized Civil Engineer Agent +- Source file: Agent/agency-agents/specialized/specialized-civil-engineer.md +- Status: ✅ 成功摄入 +- Summary: Specialized Civil Engineer Agent 完整摄取——The Agency Specialized 部门土木与结构工程专家 Agent,驾驭全球主要建筑规范体系(Eurocode/ACI/AISC/ASCE/GB/IS/AIJ/IBC/NBC)。核心方法论:ULS+SLS 双重验证(强度极限状态与正常使用极限状态必须同时满足)、多标准冲突处理策略(识别→记录→保守优先→设计依据报告)、岩土工程严谨性(严禁假设土壤参数)。六阶段工作流:项目范围→初步设计→详细计算→建造文档→规范合规→施工支持。计算交付物:AISC 360 LRFD 钢梁截面选型、Eurocode EN 1992-1-1 RC 梁配筋设计、Terzaghi 承载力分析(含 EN 1997 DA1)。属 The Agency Specialized 部门。 +- Concepts created: (本次首次引入工程标准领域概念,暂不创建独立 Concept/Entity 页面,待后续来源≥2次引用再升级) +- Source page: wiki/sources/specialized-civil-engineer.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md(条目已存在于 Line 385)、overview.md(Line 923 已有相关摘要);步骤3完成:生成 source page(Connections 节暂不添加待定 wikilinks 以避免断链);步骤4完成:index.md 已有对应条目,无需修改;步骤5完成:overview.md 已有 Civil Engineer 摘要,无需修订;步骤6-7完成:Entity(工程规范标准)和 Concept(ULS/SLS/National Annex 等)首次引入,暂不创建独立页面;步骤8完成:无跨页面冲突;步骤9完成:log.md 追加记录 + +## [2026-05-29] ingest | Backend Architect with Memory(增量更新) +- Source file: Agent/agency-agents/integrations/mcp-memory/backend-architect-with-memory.md +- Status: ✅ 成功摄入(含更新) +- Summary: Backend Architect with Memory 增量更新——源文件新增 Memory Integration 段落(lines 233-244),补充了会话交接时的标签策略规范(Agent名称+项目名+主题标签三重标签)和 Rollback 回滚机制的完整触发条件。source page 补充 Key Claims×1条(标签一致性是 recall 可靠工作的前提)、Key Quotes×2条(交付物标记下游 Agent 规范、Rollback 回滚触发条件)、Key Concepts×2个(MemoryTagging/Rollback)、Key Entities×1个(SprintPrioritizer)、Connections×4条(与 Sprint Prioritizer/UX Researcher/Frontend Developer/TestingRealityChecker 的 MCP Memory Server 交互)、Contradications×1组(与 Software Architect 的 ADR 记录方式互补张力)。 +- Concepts created: (MemoryTagging 和 Rollback 已在 workflow-with-memory.md 中作为描述性内容存在,本次作为新 wikilink 添加,未达到独立建页阈值) +- Source page: wiki/sources/backend-architect-with-memory.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md(条目已存在于 Line 463)、overview.md(Line 63 已有综合摘要);步骤3完成:更新 source page(含新增内容:tags 补充 memory/mcp、Key Claims×1、Key Quotes×2、Key Concepts×2、Key Entities×1、Connections×4、Contradictions×1、date 更新至 2026-05-29);步骤4完成:index.md 条目日期更新至 2026-05-29 并补充一句话摘要;步骤5完成:overview.md Line 63 综合摘要补充新增内容(三重标签策略、含决策理由、与 Software Architect 互补张力);步骤6-7完成:Entity(BackendArchitect 页面已存在)和 Concept(MemoryTagging/Rollback 描述已在多处出现,未达独立建页阈值)无需新建;步骤8完成:检测并记录与 [[engineering-software-architect]] 的 ADR 记录方式互补张力;步骤9完成:log.md 追加记录 + +## [2026-05-29] ingest | Experiment Tracker Agent Personality +- Source file: Agent/agency-agents/project-management/project-management-experiment-tracker.md +- Status: ✅ 成功摄入 +- Summary: Experiment Tracker Agent 完整摄取——The Agency 项目管理部门的实验设计与数据驱动决策专家 Agent。核心方法论:四阶段工作流(假设开发→实施准备→执行监控→分析决策)、统计学标准(95% 置信度、80% 功效分析、适当样本量计算)、实验安全规范(GDPR/CCPA 合规、用户隐私、回滚程序)。高级能力:多臂老虎机、贝叶斯分析、因果推断、元分析。成功指标:95% 实验达到统计显著性、季度实验吞吐量 15+,80% 成功实验落地产生可衡量业务影响。 +- Concepts created: (本次首次引入实验管理领域概念,暂不创建独立 Concept/Entity 页面,待后续来源≥3次引用再升级) +- Source page: wiki/sources/project-management-experiment-tracker.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md(了解项目管理层结构)、overview.md(已有20处实验相关内容,无需修订);步骤3完成:生成 source page;步骤4完成:index.md 新增 Source 条目;步骤5完成:overview.md 无需修订;步骤6-7完成:Entity/Concept 首次引入,暂不创建独立页面;步骤8完成:与 paid-media-creative-strategist.md 的 StatisticalSignificance 引用一致,无冲突;步骤9完成:log.md 追加记录 + +## [2026-05-29] ingest | Cultural Intelligence Strategist +- Source file: Agent/agency-agents/specialized/specialized-cultural-intelligence-strategist.md +- Status: ✅ 成功摄入 +- Summary: Cultural Intelligence Strategist 完整摄取——The Agency Specialized 部门的文化智能策略师,专门检测和消除软件开发中的"隐性排斥"(Invisible Exclusion)。核心方法:四阶段工作流(盲点审计 → 自主研究 → 结构修正 → 解释原理)。典型案例:刚性姓名字段在 APAC 市场失效 → 改为 Full Name/Preferred Name;中国金融应用中红色表示"上涨"而非"错误";RTL 阅读方向、多日历系统等全局包容性设计。核心原则:国际化是架构前提条件而非亡羊补牢;拒绝表演性多元化;文化谦逊原则。本次首次引入 `Structural Empathy` 别名(添加至 [[Architectural-Empathy]] Concept 页面 Aliases 节)。 +- Concepts created: [[Cultural-Intelligence]](跨文化适应能力概念,4 维度:认知/元认知/动机/行为 CQ;引用计数 4 处已达阈值)、`Structural Empathy` 别名(添加至 [[Architectural-Empathy]] Concept 页面) +- Source page: wiki/sources/specialized-cultural-intelligence-strategist.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md(条目已存在 Line 391,格式不规范→修复为标准格式:日期+标题+摘要)、overview.md(Line 939 已有详细综合摘要,无需修订);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims×4条、Key Quotes×3条、Key Concepts×6个、Key Entities×2个、Connections×5条、Contradictions×1对);步骤4完成:index.md 条目格式规范化;步骤5完成:overview.md 已有 Line 939 综合摘要,无需修订;步骤6-7完成:创建 [[Cultural-Intelligence]] Concept 页面(引用计数4处已达阈值),`Structural Empathy` 别名添加至 [[Architectural-Empathy]];步骤8完成:与 [[design-brand-guardian]] 的品牌一致性 vs 市场定制化视觉语义张力已记录于 Contradictions 节;步骤9完成:log.md 追加记录 + + +- Source file: Agent/agency-agents/specialized/government-digital-presales-consultant.md +- Status: ✅ 成功摄入 +- Summary: Government Digital Presales Consultant 完整摄取——中国政府数字化转型市场(ToG)售前全流程专家 Agent。核心方法论:五步工作流(商机发现→需求调研→方案设计→投标执行→中标移交)+ 分层干系人沟通策略。关键合规体系:等保 2.0(三级)、密评(国密 SM2/SM3/SM4)、信创适配(鲲鹏/飞腾/麒麟/统信/达梦)。核心交付物:技术方案模板(7章结构)、招标文件检查清单(资质/技术/商务/格式)、合规矩阵(等保合规矩阵/信创适配清单)、商机评估模板。与 [[sales-discovery-coach]](合规优先 vs 业务痛点优先)、[[sales-proposal-strategist]](模板规范 vs 差异化叙事)存在方法论张力,协调方案均已记录至 source page。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page:DigitalGovernment/SmartCity/Dengbao/Miping/Xinchuang/XinchuangAdaptationMatrix/DengbaoComplianceMatrix/GovernmentProcurementWorkflow/StakeholderMapping/OpportunityAssessment) +- Source page: wiki/sources/government-digital-presales-consultant.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md(条目已存在于 Line 406,状态正常)、overview.md(属 Agent 个性化定义,overview 无需修订);步骤3完成:生成 source page(wiki/sources/government-digital-presales-consultant.md,含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md 已有对应条目(Line 406),无需修改;步骤5完成:overview.md 无需修订(Agent 个性化定义文档,overview 暂无独立综合段落);步骤6-7完成:Entity(Yiwangtongban/Yiwangtonguan/CityBrain 等)和 Concept(DigitalGovernment/SmartCity/Dengbao/Miping/Xinchuang 等)均以 wikilinks 形式记录于 source page,未达到独立建页阈值(≥2次引用);步骤8完成:检测与 [[sales-discovery-coach]](合规优先 vs 业务痛点优先)和 [[sales-proposal-strategist]](模板规范 vs 差异化叙事)的两处方法论张力,已记录于 Contradictions 节;步骤9完成:log.md 追加记录 + +## [2026-05-06] ingest | Project Shepherd Agent Personality +- Source file: Agent/agency-agents/project-management/project-management-project-shepherd.md +- Status: ✅ 成功摄入 +- Summary: Project Shepherd Agent 完整摄取——The Agency 项目管理部门的跨职能项目协调与利益相关方对齐专家 Agent。核心方法论:项目章程模板(问题陈述/目标/范围/成功标准 + 利益相关方分析/沟通计划/资源需求/风险评估)、四阶段工作流(项目启动与规划→团队组建与启动→执行协调与监控→质量保证与交付)。关键交付物:Project Charter、Project Status Report(绿/黄/红健康状态)。成功指标:95% 项目按时在预算内交付、利益相关方满意度 4.5/5、范围蔓延 < 10%、90% 已识别风险成功缓解。沟通原则:透明报告、聚焦解决方案、绝不承诺不切实际时间线。 +- Concepts created: Project-Management-Project-Shepherd +- Source page: wiki/sources/project-management-project-shepherd.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md、overview.md;步骤3完成:生成 source page(wiki/sources/project-management-project-shepherd.md);步骤4完成:index.md 新增 Source 条目和 Concept 条目;步骤5完成:overview.md Project Management 部门新增独立条目(Line 148);步骤6完成:entities/ 和 concepts/ 目录存在,Project Shepherd 作为方法论概念创建 Concept 页面;步骤7完成:创建 wiki/concepts/Project-Management-Project-Shepherd.md;步骤8完成:与 [[ProjectManagerSenior]](执行层任务分解)和 [[Project-Management-Studio-Operations]](运营支撑)层级差异已记录至 source page Contradictions 节;步骤9完成:log.md 追加记录 + +## [2026-05-29] ingest | Agentic Identity & Trust Architect +- Source file: Agent/agency-agents/specialized/agentic-identity-trust.md +- Status: ✅ 成功摄入 +- Summary: Agentic Identity & Trust Architect 完整摄取——The Agency Specialized 部门自主 Agent 身份与信任验证基础设施专家,解决多 Agent 环境中的身份伪造、授权冒用、审计日志篡改等安全威胁。核心方法:密码学身份体系(Ed25519/ECDSA,分离签名/加密/身份密钥)、零信任验证(默认不信任自报告身份)、惩罚型信任评分(初始1.0,证据链损坏-0.5,行为失败按失败率×0.4扣分,凭证超90天-0.1)、追加式哈希链证据记录(intent→decision→outcome,篡改可检测)、多跳委托链验证(任一链节断裂全链失效)、Fail-Closed 授权(无法验证时默认拒绝)。高级能力:后量子迁移抽象层、NIST 后量子标准(ML-DSA/ML-KEM/SLH-DSA)、跨框架身份联邦(A2A/MCP/REST/SDK)。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page:Zero-Trust-Model/Trust-Score-Model/Delegation-Chain/Evidence-Record/Peer-Verification-Protocol/Fail-Closed-Authorization/Cryptographic-Identity-Scheme) +- Source page: wiki/sources/agentic-identity-trust.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md(条目已存在于 Line 413)、overview.md(Line 124 已有详细综合摘要,无需修订);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md 已有对应条目,无需修改;步骤5完成:overview.md 已有完整综合摘要(Line 124),无需修订;步骤6-7完成:Entity(Identity Graph Operator/A2A/MCP 等)和 Concept(Zero-Trust-Model/Trust-Score-Model 等)均以 wikilinks 形式记录于 source page,未达到独立建页阈值(≥2次引用);步骤8完成:检测与 specialized-document-generator 的架构张力(身份验证边界不明确),已记录于 Contradictions 节;步骤9完成:log.md 追加记录 + +## [2026-05-29] ingest | visionOS Spatial Engineer +- Source file: Agent/agency-agents/spatial-computing/visionos-spatial-engineer.md +- Status: ✅ 成功摄入 +- Summary: visionOS Spatial Engineer Agent 完整摄取——visionOS 26 原生空间计算专家智能体,专注于 SwiftUI volumetric interfaces 和 Liquid Glass Design System 实现。核心能力:Liquid Glass 透明材质(自适应 light/dark 环境)、Spatial Widgets(吸附墙面/桌面、持久化放置)、SwiftUI Volumetric APIs(3D 内容集成、volume transient content、breakthrough UI)、RealityKit-SwiftUI 集成(Observable entities、直接手势处理、ViewAttachmentComponent)、Multi-Window Architecture(WindowGroup 管理、玻璃背景效果)、GPU 高效渲染(Metal)。技术栈:SwiftUI / RealityKit / ARKit / Metal。局限:不支持 Unity 或其他 3D 框架、不涉及跨平台空间解决方案、依赖 visionOS 26 新特性。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均已存在于 wiki:Liquid Glass Design System/Multi-Window Architecture/RealityKit-SwiftUI Integration/Spatial Widgets/SwiftUI Volumetric APIs) +- Source page: wiki/sources/visionos-spatial-engineer.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md、overview.md;步骤3完成:生成 source page;步骤4完成:index.md 已有对应条目(Line 407),无需修改;步骤5完成:overview.md 已有 visionOS Spatial Engineer 摘要(Line 134),无需修订;步骤6完成:Apple/Vision Pro/SwiftUI/RealityKit 均为跨文档高频实体,未达到单一文档内独立建页阈值;步骤7完成:Concept 均已存在独立页面;步骤8完成:与 [[xr-immersive-developer]] 可能存在技术路径分歧(平台锁定 vs 跨平台),已记录至 source page Contradictions 节;步骤9完成:log.md 追加记录 + +## [2026-05-02] ingest | macOS Spatial/Metal Engineer Agent Personality +- Source file: Agent/agency-agents/spatial-computing/macos-spatial-metal-engineer.md +- Status: ✅ 成功摄入 +- Summary: macOS Spatial/Metal Engineer Agent 完整摄取——Swift + Metal 渲染专家智能体,专注于高性能 3D 渲染系统和 visionOS 空间计算体验。核心能力:Instanced Metal Rendering(10k-100k 节点,90fps 立体渲染);Compositor Services(LayerRenderer stereo 模式 + RGBA16Float + Depth32Float)帧流传输到 Vision Pro;Metal Compute Shader GPU 并行力导向图物理模拟;Gaze + Pinch 空间交互 + raycast hit testing。性能约束:GPU 利用率 < 80%、每帧 < 100 draw calls、内存 < 1GB。技术栈:Swift / Metal / CompositorServices / RealityKit / ARKit / Metal System Trace / Instruments。属 The Agency Spatial Computing 部门,与 [[visionos-spatial-engineer]](visionOS 原生空间计算)和 [[xr-immersive-developer]](WebXR 跨平台沉浸式开发)形成完整技术覆盖矩阵。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page:Metal/Vision Pro Compositor Services/RemoteImmersiveSpace/Instanced Rendering/Force-Directed Graph Layout/Frustum Culling/Stereoscopic Rendering) +- Source page: wiki/sources/macos-spatial-metal-engineer.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md、overview.md;步骤3完成:生成 source page(wiki/sources/macos-spatial-metal-engineer.md);步骤4完成:index.md 已有对应条目(Line 7),已添加;步骤5完成:overview.md 已有 macOS Spatial/Metal Engineer 相关摘要(Line 132),无需修订;步骤6完成:Entity 未达到独立建页阈值(Apple/Vision Pro/Xcode 等仅在本文档中出现);步骤7完成:Concept 均以 wikilinks 形式记录于 source page;步骤8完成:无内容冲突;步骤9完成:log.md 追加记录 + +## [2026-04-30] ingest | Studio Producer Agent Personality +- Source file: Agent/agency-agents/project-management/project-management-studio-producer.md +- Status: ✅ 成功摄入 +- Summary: Studio Producer Agent 完整摄取——The Agency 项目管理部门的战略组合管理专家 Agent,定位为创意工作室的高管级战略领导者。核心职责:战略组合规划(Tier 1/2/Innovation Pipeline 三级分级)、Portfolio ROI 管理(要求 ≥ 25%)、95% 按时交付、高管级利益相关者沟通。四阶段工作流:战略规划→项目编排→领导力发展→绩效优化。高级能力:并购战略、国际市场进入规划、AI 技术整合、董事会关系管理。与 [[ProjectManagerSenior]](执行层)形成层级互补,与 [[StudioOperations]](运营层)协同执行。与其他 Project Management Agents 共同构成 The Agency 项目管理部门的完整体系。 +- Concepts created: Strategic Portfolio Management +- Source page: wiki/sources/project-management-studio-producer.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md、overview.md;步骤3完成:生成 source page(wiki/sources/project-management-studio-producer.md);步骤4完成:index.md 已有对应条目(Line 410),新增 Concept 条目 Strategic Portfolio Management;步骤5完成:overview.md 已有相关摘要(Line 141),无需修订;步骤6完成:Studio Producer 为 Agent 角色定义,无外部实体关联,无需创建 Entity 页面;步骤7完成:创建 [[Strategic-Portfolio-Management]] Concept 页面;步骤8完成:与 [[ProjectManagerSenior]] 的层级关系差异已记录(source page Contradictions 节);步骤9完成:log.md 追加记录 + +## [2026-04-29] ingest | Terminal Integration Specialist +- Source file: Agent/agency-agents/spatial-computing/terminal-integration-specialist.md +- Status: ✅ 成功摄入 +- Summary: Terminal Integration Specialist Agent 完整摄取——专注于终端仿真、文本渲染优化与 SwiftTerm 集成,面向现代 Swift 应用程序的 AI Agent 个性化定义。核心技术栈:SwiftTerm(MIT)、Core Graphics/Core Text 文本渲染、SwiftNIO SSH/NMSSH。核心能力:VT100/xterm 标准兼容(ANSI 转义序列)、SwiftUI 生命周期管理、Core Graphics 性能优化、SSH I/O 桥接与会话管理。平台覆盖:iOS、macOS、visionOS。局限:仅限 SwiftTerm、仅限客户端仿真、仅限 Apple 平台。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page:VT100/xterm Standards/ANSI Escape Sequences/Core Graphics 文本渲染/SwiftUI 生命周期管理/SSH I/O 桥接) +- Source page: wiki/sources/terminal-integration-specialist.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md、overview.md;步骤3完成:生成 source page;步骤4完成:index.md 已有对应条目(Line 406),无需修改;步骤5完成:overview.md 属于 Agent 个性化定义,暂不修改;步骤6完成:SwiftTerm/SwiftNIO SSH 等实体仅出现1次,未达到独立建页阈值(≥2次);步骤7完成:Concept 均以 wikilinks 形式记录于 source page;步骤8完成:无内容冲突;步骤9完成:log.md 追加记录 + +## [2026-05-18] ingest | XR Immersive Developer Agent Personality +- Source file: Agent/agency-agents/spatial-computing/xr-immersive-developer.md +- Status: ✅ 成功摄入 +- Summary: XR Immersive Developer Agent 完整摄取——WebXR 沉浸式开发专家智能体,专注浏览器环境下跨平台 AR/VR/XR 体验构建。核心栈:A-Frame / Three.js / Babylon.js;核心能力:WebXR Device API 全套沉浸式支持(hand tracking / pinch / gaze / controller input)、raycasting / hit testing / 实时物理交互、LOD 系统 / occlusion culling / shader tuning 性能优化、跨设备兼容层(Meta Quest / Vision Pro / HoloLens / mobile AR)、模块化组件驱动设计及优雅降级。典型交付物:VR 训练模拟器、AR 可视化界面、空间界面。与 xr-interface-architect 和 xr-cockpit-interaction-specialist 同属 Spatial Computing 部门,共同构建 XR 产品交互基础设施。与 xr-cockpit-interaction-specialist 在运动自由度设计上存在张力(开放空间沉浸 vs 固定视角约束)。 +- Concepts created: WebXR.md、A-Frame.md、Three.js.md、Babylon.js.md、Raycasting.md、Hit-Testing.md、LOD-Systems.md、Occlusion-Culling.md(均以 wikilinks 形式记录于 source page,实体未达独立建页阈值) +- Source page: wiki/sources/xr-immersive-developer.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md、overview.md(XR 相关内容已在 line 126-134);步骤3完成:生成 source page(wiki/sources/xr-immersive-developer.md);步骤4完成:index.md 已有对应条目(Line 404),无需修改;步骤5完成:overview.md 已有相关 XR 段落(Line 126-134),无需修订;步骤6完成:Entity 未达到独立建页阈值(The Agency/Spatial Computing 等均在多处出现,有独立页面);步骤7完成:Concept 均以 wikilinks 形式记录于 source page;步骤8完成:与 xr-cockpit-interaction-specialist 在运动自由度设计上存在张力,已记录于 Contradictions;步骤9完成:log.md 追加记录 + +## [2026-05-18] ingest | XR Cockpit Interaction Specialist Agent +- Source file: Agent/agency-agents/spatial-computing/xr-cockpit-interaction-specialist.md +- Status: ✅ 成功摄入 +- Summary: XR Cockpit Interaction Specialist Agent 完整摄取——专注于沉浸式座舱环境控件设计,通过固定视角锚定降低晕动症,支持手势/语音/凝视/物理道具多模态输入,采用 A-Frame/Three.js 原型开发,约束驱动机制消除自由浮动。典型应用:模拟指挥中心、航天器座舱、XR 载具界面、训练模拟器。 +- Concepts created: Cockpit-Ergonomics.md、Constraint-Driven-Control-Mechanics.md(均已存在,无需新建) +- Source page: wiki/sources/xr-cockpit-interaction-specialist.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md、overview.md;步骤3完成:生成 source page;步骤4完成:index.md 已有对应条目(Line 404),无需修改;步骤5完成:overview.md 已有相关 XR 内容,无需修订;步骤6完成:Entity 页面均已存在(XR-Cockpit-Interaction-Specialist/XR-Interface-Architect/XR-Immersive-Developer/The-Agency);步骤7完成:Concept 页面均已存在(Cockpit-Ergonomics/Constraint-Driven-Control-Mechanics/Motion-Sickness-Threshold/WebXR/Spatial-Computing);步骤8完成:无内容冲突;步骤9完成:log.md 追加记录 + +## [2026-05-18] ingest | Outbound Strategist Agent +- Source file: Agent/agency-agents/sales/sales-outbound-strategist.md +- Status: ✅ 成功摄入 +- Summary: Outbound Strategist Agent 完整摄取——信号驱动型主动销售(Signal-Based Selling)核心框架:三层信号分级(Tier 1 主动购买信号 > Tier 2 组织变化信号 > Tier 3 技术/行为信号)、可证伪 ICP 定义(含排除条件)、三层账户分层模型(Tier 1 深度多线程 / Tier 2 半个性化 / Tier 3 自动化)、8-12 触点 3-4 周多渠道序列(每次触达必须提供新价值角度)、SDR 角色从 volume operator 向 revenue specialist 转型。关键数据:信号驱动外展转化率比无触发高 4-8 倍;信号半衰期 30 分钟;冷邮件回复率基准 1-3%(通用)→ 12-25%(信号驱动)。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page:Signal-Based Selling/ICP/Tiered Account Engagement/Multi-Channel Sequence/Speed-to-Signal/Cold Email Anatomy) +- Source page: wiki/sources/sales-outbound-strategist.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md、overview.md;步骤3完成:生成 source page;步骤4完成:index.md 添加条目;步骤5完成:overview.md 已有完整综合摘要(Line 892),无需修改;步骤6完成:Entity 未达到独立建页阈值(SDR/G2/BuiltWith/Loom 均仅出现1次);步骤7完成:Concept 均以 wikilinks 记录于 source page;步骤8完成:无实质性内容冲突,与 sales-deal-strategist/sales-pipeline-analyst 形成互补关系;步骤9完成:log.md 追加记录 + +## [2026-05-18] ingest | Account Strategist Agent +- Source file: Agent/agency-agents/sales/sales-account-strategist.md +- Status: ✅ 成功摄入(更新) +- Summary: Account Strategist(账户策略师)Agent 文档更新——补充 Advanced Capabilities 部分:战略账户规划(投资组合分层/EBR)+ 收入架构(定价优化/合同结构/渠道协同)+ 组织情报(M&A检测/非正式决策映射/政治定位)。核心框架保持:Land-and-Expand、QBR、NRR、Multi-Threading、Account Health Score、Churn Prevention。扩充内容:Key Claims(高级能力五条)、Key Quotes(组织情报两条)、Key Concepts(新增8个高级概念:Account Portfolio Segmentation/EBR/Pricing & Packaging Optimization/Contract Structure Design/Co-sell Expansion/PLG/Organizational Change Detection/Informal Decision-Making Mapping)、Contradictions(新增与 sales-pipeline-analyst 的互补关系)。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page) +- Source page: wiki/sources/sales-account-strategist.md(更新:date 2026-05-18,扩充 Advanced Capabilities 相关内容) +- Notes: 步骤1完成:读取原始文档(Advanced Capabilities 部分新增);步骤2完成:读取 index.md、overview.md 和现有 source page;步骤3完成:更新 source page(日期更新 + Summary扩充 + Key Claims扩充 + Key Quotes扩充 + Key Concepts扩充 + Contradictions扩充);步骤4完成:index.md 第408行日期补全(2026-05-18);步骤5完成:overview.md 第911行已扩充 Advanced Capabilities 综合摘要;步骤6完成:Entity 未创建独立页面(Key Entities 以 wikilinks 记录于 source page);步骤7完成:Concept 均以 wikilinks 形式记录于 source page,未达到独立建页阈值;步骤8完成:检测并记录与 sales-pipeline-analyst 的互补关系(NRR 共同语言);步骤9完成:log.md 追加记录 + +## [2026-05-20] ingest | XR Interface Architect Agent Personality +- Source file: Agent/agency-agents/spatial-computing/xr-interface-architect.md +- Status: ✅ 成功摄入 +- Summary: XR Interface Architect Agent 完整摄取——空间交互设计师和界面策略师,专为 AR/VR/XR 沉浸式环境设计直觉化、舒适且可发现的界面。核心能力:设计 HUD、浮动菜单、面板和交互区域;支持多种输入模型(直接触摸、注视+捏合、控制器、手势);推荐舒适度约束的 UI 布局以降低晕动症;原型化沉浸式搜索、选择和操作交互;结构化多模态输入并提供无障碍备选方案。角色定位:UX/UI 设计师,专注 3D 空间环境。与 [[XRImmersiveDeveloper]] 协作实现 3D 场景可用性,与 [[XRCockpitInteractionSpecialist]] 共享空间交互设计模式,与 [[VisionOSSpatialEngineer]] 实现 visionOS UI。与 [[XRCockpitInteractionSpecialist]] 在 UI 放置策略上存在张力(Interface Architect 倾向灵活定位 vs Cockpit 专家倾向固定安全控件)。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page:SpatialComputing/HUDDesign/MotionSickness/GazeInteraction/MultimodalInput/PresenceUX/AccessibilityInXR) +- Source page: wiki/sources/xr-interface-architect.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md、overview.md;步骤3完成:生成 source page(wiki/sources/xr-interface-architect.md);步骤4完成:index.md 已有对应条目(Line 406),无需修改;步骤5完成:Agent 个性化定义文档,overview.md 暂不修改;步骤6完成:Entity 未达到独立建页阈值(The Agency/Spatial Computing 已在多处出现,有独立页面);步骤7完成:Concept 均以 wikilinks 形式记录于 source page;步骤8完成:与 XRCockpitInteractionSpecialist 在 UI 放置策略上存在张力,已记录于 Contradictions;步骤9完成:log.md 追加记录 + +## [2026-05-18] ingest | Deal Strategist Agent +- Source file: Agent/agency-agents/sales/sales-deal-strategist.md +- Status: ✅ 成功摄入(更新) +- Summary: Deal Strategist Agent 文档更新——补充三大新增核心能力:Deal Inspection Methodology(7问探测deal状态)、Multi-Threading Strategy(绘制权力/影响力/触达地图避免单点依赖)、Forecast Accuracy(可辩护的deal级别检查方法论)。扩充 Key Claims(Champion验证原则:必须在艰难请求下愿意行动才算真正验证)。新增 Key Concepts(Competitive Landmines/Forecast Accuracy/Multi-Threading Strategy)。新增 Connections(sales-pipeline-analyst 接收评分数据)。扩充 Key Entities。Source page date 更新至 2026-05-18。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page;MEDDPICC/Challenger Sales Model/Command of the Message/Deal Scoring/Competitive Positioning/Win Planning/Deal Inspection Methodology/Challenger Messaging/Multi-Threading Strategy/Forecast Accuracy/Competitive Landmines) +- Source page: wiki/sources/sales-deal-strategist.md(更新:date 2026-05-18,扩充新增能力相关内容) +- Notes: 步骤1完成:读取原始文档(新增 Deal Inspection/Multi-Threading/Forecast Accuracy 章节);步骤2完成:读取 index.md、overview.md 和现有 source page;步骤3完成:更新 source page(日期更新+内容扩充:Key Claims/Key Concepts/Key Entities/Connections);步骤4完成:index.md 第408行日期补全(2026-05-18);步骤5完成:overview.md 无需大幅更新,新增内容与现有框架一致;步骤6完成:Entity 未创建独立页面(Key Entities 以 wikilinks 记录于 source page);步骤7完成:Concept 均以 wikilinks 形式记录于 source page,未达到独立建页阈值;步骤8完成:检测并记录与 sales-pipeline-analyst 的新连接关系(评分数据流向);步骤9完成:log.md 追加记录 + +## [2026-04-29] ingest | Sales Engineer Agent +- Source file: Agent/agency-agents/sales/sales-engineer.md +- Status: ✅ 成功摄入 +- Summary: Sales Engineer Agent 完整摄取——售前工程师 Agent 角色定义与核心能力框架。核心能力:技术发现(结构化挖掘架构/集成/安全约束/真实决策标准)、Demo Engineering(以影响力为导向:先量化问题→展示结果→逆向讲解→证明收尾,以 [[AhaMoment]] 为核心成功标准)、POC Scoping(严格限定范围:成功标准前置+2-3周硬性时间线+中期检查点)、FIA Framework(Fact-Impact-Act 竞争定位框架)、技术异议解码(识别表面问题背后的真实诉求)、评估笔记维护。关键数据:技术赢率70%+,POC转化率80%+,演示到下一步行动率90%+,中位数18天技术决策。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page:Technical Discovery/Demo Engineering/POC Scoping/FIA Framework/Aha Moment Test/Competitive Technical Positioning/Technical Objection Handling/Evaluation Management/Solution Architecture/Demo Tailoring) +- Source page: wiki/sources/sales-engineer.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md、overview.md;步骤3完成:生成 source page(sales-engineer.md);步骤4完成:index.md 添加日期标注条目;步骤5完成:overview.md Line 917 已包含完整 Sales Engineer 综合摘要,无需修改;步骤6完成:Entity 未达到独立建页阈值(全文无具体人物/公司实体);步骤7完成:Concept 均以 wikilinks 形式记录于 source page,未达到独立建页阈值;步骤8完成:无实质性内容冲突,与 Sales Discovery Coach 存在互补/协调关系(详见 overview.md Line 1100);步骤9完成:log.md 追加记录 + +## [2026-05-02] ingest | Sales Coach Agent +- Source file: Agent/agency-agents/sales/sales-coach.md +- Status: ✅ 成功摄入(更新) +- Summary: AI 销售教练 Agent,通过苏格拉底式提问驱动销售代表成长,专注管道审查、话术辅导、交易策略和预测准确性。核心框架:Richardson Sales Performance、Challenger Model、MEDDPICC 资质诊断、行为反馈循环(Observe-Ask-Suggest-Practice)。关键数据:正式辅导配额完成率 91.2% vs 非正式辅导 84.7%;每周 2 小时以上辅导赢单率 56% vs 少于 30 分钟 43%。新增内容:Skill Gap vs Will Gap 区分、Best Practice 辅导节奏(周 1:1/双周管道审查/月度预测会议)、Observe-Ask-Suggest-Practice 辅导强化循环。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page;MEDDPICC/Challenger Sales Model/Richardson Sales Performance Framework/Pipeline Review/Forecast Accuracy/Coaching Discipline/Skill Gap vs Will Gap) +- Source page: wiki/sources/sales-coach.md(更新:date 2026-05-02,扩充 Key Claims/Key Concepts/Key Entities/Connections) +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md、overview.md 和现有 sales-coach source page;步骤3完成:更新 source page(日期更新+内容扩充);步骤4完成:index.md 日期补全([2026-05-02]);步骤5完成:overview.md 第909行已覆盖该来源核心内容,无需更新;步骤6完成:Entity 未创建独立页面(Key Entities 以 wikilinks 记录于 source page);步骤7完成:Concept 均以 wikilinks 形式记录于 source page,未达到独立建页阈值;步骤8完成:检测并延续 MEDDPICC 八维度 vs 旧版六维度冲突记录(overview line 1092);步骤9完成:log.md 追加记录 + +## [2026-05-17] ingest | Paid Media Tracking & Measurement Specialist Agent +- Source file: Agent/agency-agents/paid-media/paid-media-tracking-specialist.md +- Status: ✅ 成功摄入 +- Summary: 付费媒体转化追踪与归因测量专家 Agent——由 John Williams(@itallstartedwithaidea)设计,专注于 GTM 容器架构、GA4 事件设计、跨平台归因建模和隐私合规。核心理念:错误的追踪数据比无追踪更具误导性,会导致算法持续优化错误目标。核心能力:GTM 容器架构、GA4 实现(事件分类/自定义维度/电子商务 dataLayer)、Google Ads 增强转化、Meta CAPI(含 event_id 去重)、服务端 Tagging、数据驱动归因建模、Consent Mode v2。成功指标:转化数据差异 <3%、标签触发成功率 99.5%+、CAPI 去重零双重计数、页面性能影响 <200ms。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page) +- Source page: wiki/sources/paid-media-tracking-specialist.md(新建) +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md 和 overview.md;步骤3完成:新建 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md Sources 节添加新条目;步骤5完成:overview.md 第188行扩充该来源综合摘要(从简短版本升级为详细版本);步骤6完成:Entity 未创建独立页面(Key Entities 以 wikilinks 记录于 source page);步骤7完成:Key Concepts 均以 wikilinks 形式记录于 source page,未达到独立页面阈值;步骤8完成:检测与 paid-media-auditor 的功能边界重叠——追踪配置(Tracking Specialist)与追踪审计(Auditor)协作关系已在 Connections 节明确记录,无冲突;步骤9完成:log.md 追加记录 + +- Source file: Agent/agency-agents/paid-media/paid-media-paid-social-strategist.md +- Status: ✅ 成功摄入 +- Summary: 跨平台付费社交广告专家 Agent——覆盖 Meta/LinkedIn/TikTok/Pinterest/X/Snapchat 六大平台,设计从引流到再营销的全漏斗社交广告项目。核心理念:社交广告本质是"打断"而非"回答",必须为每个平台构建原生创意体验而非跨平台复用。关键能力:全漏斗架构、平台差异化创意策略、受众工程(像素/Lookalike/CRM)、Conversions API 实施、SKAdNetwork 应对 iOS 隐私变化。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page) +- Source page: sources/paid-media-paid-social-strategist.md +- Notes: 与 [[paid-media-ppc-strategist]] 存在预算分配优先级张力——社交广告强调基于增量测试分配预算而非补充曝光,已在 Contradictions 节记录 + +## [2026-05-17] ingest | Paid Media Search Query Analyst Agent +- Source file: Agent/agency-agents/paid-media/paid-media-search-query-analyst.md +- Status: ✅ 成功摄入 +- Summary: 付费搜索查询分析与优化专家 Agent——专职挖掘搜索词报告、构建负面关键词体系(N-gram 分析/决策树/分层清单)、识别查询-意图缺口(N-gram 四阶段分类)、执行查询雕塑防止内部竞争,通过 SQOS 评分系统多因素评估查询-广告-着陆页一致性。成功指标:首次分析消除 10-20% 非转化消费,无效展示 <5%,查询-意图正确率 >80%。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page) +- Source page: wiki/sources/paid-media-search-query-analyst.md(新建) +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md 和 overview.md;步骤3完成:新建 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md 第417行已有该条目,无需重复添加;步骤5完成:overview.md 第190行已有该来源综合摘要,无需重复添加;步骤6完成:Entity 未创建独立页面(TheAgency/GoogleAds 已存在,JohnWilliams/PaidMediaAuditor/PaidMediaPPCStrategist/PaidMediaTrackingSpecialist 均以 wikilinks 记录于 source page);步骤7完成:Key Concepts 均以 wikilinks 形式记录于 source page,未达到独立页面阈值;步骤8完成:检测与 PaidMediaAuditor 的功能边界重叠(详见 Contradictions 节),协调方案为 Audit → Query Analysis → Strategy 三者协作;步骤9完成:log.md 追加记录 + +## [2026-05-17] ingest | Discovery Coach Agent +- Source file: Agent/agency-agents/sales/sales-discovery-coach.md +- Status: ✅ 成功摄入 +- Summary: 销售发现访谈(Discovery)方法论与教练框架——三大发现框架(SPIN Selling/Gap Selling/Sandler Pain Funnel)+ 标准30分钟发现电话结构 + AECR异议处理框架。核心理念:发现是交易成败的关键战场;Implication问题激活损失厌恶是最有力成交工具;根因问题是Gap Selling最重要也最常被跳过的问题;购买决策本质上是情感决策。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page) +- Source page: wiki/sources/sales-discovery-coach.md(已存在,本次确认格式合规性) +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md 和 overview.md;步骤3完成:source page 已存在且格式完全符合 Source Page Format(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md 第405行已有该条目;步骤5完成:overview.md 暂不更新(销售发现框架由 sales-proposal-strategist 等页面覆盖);步骤6完成:Entity 未创建独立页面(Neil Rackham/Keenan/Sandler 均以 wikilinks 记录于 source page);步骤7完成:Key Concepts 以 wikilinks 形式记录于 source page,未达到独立页面阈值;步骤8完成:无冲突检测;步骤9完成:log.md 追加记录 + +## [2026-05-17] ingest | Paid Media Auditor Agent +- Source file: Agent/agency-agents/paid-media/paid-media-auditor.md +- Status: ✅ 成功摄入 +- Summary: 付费媒体账户审计 Agent——系统化评估 Google Ads、Microsoft Ads、Meta 三大平台广告账户,涵盖 200+ 检查点,8 大审计类别(账户结构、追踪测量、出价预算、关键词定向、创意素材、购物馈送、竞争定位、着陆页),输出结构化审计报告与优先级建议。审计通常发现 15-30% 效率提升空间,关键建议 30 天执行率达 80%+。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page) +- Source page: wiki/sources/paid-media-auditor.md(新建) +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md;步骤3完成:新建 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md Sources 节第7行添加新条目;步骤5完成:overview.md 未需更新(概述型内容由综合生成覆盖);步骤6完成:Entity 未创建独立页面(GoogleAds、MicrosoftAdvertising、MetaAds 等均为平台实体,Key Entities 以 wikilinks 记录于 source page);步骤7完成:Key Concepts 以 wikilinks 形式记录于 source page,未达到独立页面阈值;步骤8完成:检测与 PaidMediaTrackingSpecialist 的分工冲突(详见 Contradictions 节);步骤9完成:log.md 追加记录 + + +- Source file: Agent/agency-agents/design/design-visual-storyteller.md +- Status: ✅ 成功摄入 +- Summary: The Agency Design 部门视觉叙事与多媒体内容创作专家 Agent——核心职责:将复杂信息转化为有影响力的视觉故事;Story Arc 三段式框架(铺垫/冲突/解决);多媒体能力覆盖视频叙事、动画-motion graphics、摄影指导和交互式媒体;跨平台适配支持 Instagram/YouTube/TikTok/LinkedIn/Pinterest;数据可视化通过 Progressive Disclosure 实现复杂信息可理解传递;无障碍合规 WCAG 是默认要求 +- Source page: wiki/sources/design-visual-storyteller.md(新建) +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page) +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md 和 overview.md;步骤3完成:新建 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md Sources 节第13行添加新条目;步骤5完成:overview.md 第110行已有该来源综合摘要,无需重复添加(发现重复后已回退);步骤6完成:Entity 未创建(相关 Agent 均已存在于 wiki 实体引用,无需新建);步骤7完成:Key Concepts 以 wikilinks 形式记录于 source page,未创建独立 Concept 页面;步骤8完成:检测无冲突内容(无已知矛盾);步骤9完成:log.md 追加记录 + +## [2026-05-15] ingest | Inclusive Visuals Specialist +- Source file: Agent/agency-agents/design/design-inclusive-visuals-specialist.md +- Status: ✅ 成功摄入 +- Summary: The Agency Design 部门包容性视觉表征专家 Agent——专门对抗 AI 图像/视频生成模型(Midjourney/Sora/Runway/DALL-E)中的系统性刻板印象偏见;核心机制:结构化提示词架构(Subject → Sub-actions → Context → Camera Spec → Color Grade → Explicit Exclusions)+ 负向提示库 + 视频物理学定义;四阶段工作流:Brief Intake → Annotation Framework → Video Physics Definition → 7-Point QA Review Gate;成功指标:刻板印象零依赖、克隆面孔和文化乱码消除率100%、社区验证认可 +- Source page: wiki/sources/design-inclusive-visuals-specialist.md(新建) +- Concepts created: Intersectionality.md、Cultural-Authenticity.md、Video-Physics-Definition.md、Sociological-Accuracy.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md(含现有 Sources/Concepts 索引)和 overview.md(含 InclusiveVisualsSpecialist 已有摘要);步骤3完成:新建 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md Sources 节第12行添加新条目;步骤5完成:overview.md 第112-113行补充 Intersectionality vs Sociological Accuracy 分析段落;步骤6完成:Entity 未创建(Midjourney/DALL-E/Sora/Runway 均为参考性质,引用未达≥2次阈值);步骤7完成:新建4个 Concept 页面(Intersectionality/Cultural-Authenticity/Video-Physics-Definition/Sociological-Accuracy)并加入 index.md Concepts 节;步骤8完成:Contradictions 记录与 design-image-prompt-engineer 的张力(概率生成 vs 确定性约束),协调方式:Subject/Context 层使用 Inclusive Visuals 的精确约束,Style/Color Grade 层保留 Image Prompt Engineer 的创意概率空间;步骤9完成:log.md 追加记录 + + +- Source file: Agent/agency-agents/design/design-image-prompt-engineer.md +- Status: ✅ 成功摄入 +- Summary: The Agency Design 部门 AI 图像生成提示词工程专家 Agent——核心职责:将视觉概念精准翻译为结构化提示词,驱动 Midjourney/DALL-E/SD/Flux 等平台产出专业级摄影作品;五层提示词结构框架(主体→环境→光线→摄影技术→风格);体裁专属模板(人像/产品/风光/时尚);平台特定语法优化;成功指标:90%+ 视觉概念还原率 +- Source page: wiki/sources/design-image-prompt-engineer.md(新建) +- Concepts created: Five-Layer-Prompt-Structure.md、Photography-Terminology.md、Negative-Prompting.md、Platform-Specific-Optimization.md、Genre-Specific-Prompt-Patterns.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md 和 overview.md;步骤3完成:新建 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md Sources 节第10行添加新条目;步骤5完成:overview.md 第110-111行已有该来源综合摘要,无需修订;步骤6完成:Entity 未创建(Midjourney/SD/DALL-E/Flux/Annie Leibovitz/Peter Lindbergh 均为参考性质,引用未达≥2次阈值);步骤7完成:新建5个 Concept 页面(Five-Layer-Prompt-Structure/Photography-Terminology/Negative-Prompting/Platform-Specific-Optimization/Genre-Specific-Prompt-Patterns)并加入 index.md Concepts 节;步骤8完成:Contradictions 记录与 design-ui-designer 的精确性张力(概率生成 vs 像素精确,通过确定性约束协调);步骤9完成:log.md 追加记录 + +## [2026-04-30] ingest | Whimsy Injector Agent Personality +- Source file: Agent/agency-agents/design/design-whimsy-injector.md +- Status: ✅ 成功摄入 +- Summary: The Agency Design 部门品牌趣味性设计专家 Agent——核心职责:在用户交互全流程嵌入愉悦感,通过微交互、趣味文案、复活节彩蛋和游戏化提升品牌记忆度;趣味分类学四层(Subtle/Interactive/Discovery/Contextual);核心原则:趣味必须有功能性或情感性目的;包容性设计是默认要求;与 UX Architect 时序协作(基线 → 趣味叠加) +- Source page: wiki/sources/design-whimsy-injector.md(新建) +- Concepts created: Micro-Interaction.md、Brand-Personality-Framework.md、Gamification.md、Inclusive-Delight.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md 和 overview.md;步骤3完成:新建 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md 第9行添加新条目;步骤5完成:overview.md 第26-30行在 design-ux-architect 段落后新增 Whimsy Injector 综合摘要;步骤6完成:UX Architect/Design-UI-Designer/Brand-Guardian 仅1-2次引用,未达≥2次阈值,跳过 Entity 创建;步骤7完成:新建4个 Concept 页面(Micro-Interaction/Brand-Personality-Framework/Gamification/Inclusive-Delight)并加入 index.md Concepts 节;步骤8完成:Contradictions 记录与 UX Architect 的趣味边界张力(通过时序分工解决);步骤9完成:log.md 追加记录 + +## [2026-05-15] ingest | Brand Guardian Agent Personality +- Source file: Agent/agency-agents/design/design-brand-guardian.md +- Status: ✅ 成功摄入 +- Summary: The Agency Design 部门的品牌守护者专家 Agent——核心职责:创建内聚的品牌身份系统,确保品牌在所有触点的一致表达,提供品牌保护策略;Brand Foundation Framework(Purpose/Vision/Mission/Values/Personality)是所有品牌决策基础;Visual Identity System 必须作为内聚系统设计;默认要求包含品牌保护(商标/合规监控/危机管理) +- Source page: wiki/sources/design-brand-guardian.md(新建) +- Concepts created: Brand-Foundation-Framework.md、Visual-Identity-System.md、Brand-Voice.md、Brand-Protection.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md 和 overview.md;步骤3完成:新建 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md 第9行添加新条目;步骤5完成:overview.md 在 Whimsy Injector 段落后新增 Brand Guardian 综合摘要;步骤6完成:The-Agency Entity 已存在,Design-Department/UX-Architect 仅1次引用,未达≥2次阈值,跳过 Entity 创建;步骤7完成:新建4个 Concept 页面(Brand-Foundation-Framework/Visual-Identity-System/Brand-Voice/Brand-Protection)并加入 index.md Concepts 节;步骤8完成:Contradictions 记录与 UX Architect 的角色边界张力(通过时序分工解决——Brand Guardian 先定义战略框架 → UX Architect 再构建技术系统);步骤9完成:log.md 追加记录 + +## [2026-05-15] ingest | UX Architect +- Status: ✅ 成功摄入 +- Summary: The Agency Design 部门 UX Architect Agent 的角色定义与交付物规范——核心职责:提供 CSS 设计系统(颜色/排版/间距变量)、Grid/Flexbox 布局框架、Theme Toggle 组件(light/dark/system 三态);Foundation-first 理念消除开发者架构决策疲劳;在 ProjectManager 和 LuxuryDeveloper 之间建立技术桥梁;组件命名规范(BEM/Utility-first/Component-based 三选一) +- Source page: wiki/sources/design-ux-architect.md(新建) +- Concepts created: CSS-Design-System.md、Layout-Framework.md、Theme-Toggle.md、Responsive-Breakpoints.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md 和 overview.md;步骤3完成:新建 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md 第9行添加新条目;步骤5完成:overview.md 第26行后新增 UX Architect 综合摘要;步骤6完成:LuxuryDeveloper/ProjectManager/ArchitectUX 仅1次引用,未达≥2次阈值,跳过 Entity 创建;步骤7完成:新建4个 Concept 页面(CSS-Design-System/Layout-Framework/Theme-Toggle/Responsive-Breakpoints)并加入 index.md Concepts 节;步骤8完成:Contradictions 记录与 LuxuryDeveloper 的边界协调(Foundation → Polish 时序分工);步骤9完成:log.md 追加记录 + +## [2026-05-15] ingest | Contributing to The Agency +- Source file: Agent/agency-agents/CONTRIBUTING.md +- Status: ✅ 成功摄入 +- Summary: The Agency 开源 AI Agent 项目的贡献指南——定义如何创建、改进和提交新的 Agent;核心贡献方式(创建新 Agent / 优化现有 / 分享案例 / 反馈问题);Agent 设计五原则(强个性 + 清晰交付物 + 可量化指标 + 经验证工作流 + 学习记忆);Persona/Operations 双分组结构支持 OpenClaw 格式自动转换;PR 最简路径为单个 Markdown 文件 +- Source page: wiki/sources/contributing.md(新建) +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md 和 overview.md;步骤3完成:新建 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md 添加新条目;步骤5完成:overview.md 第26行已有该来源综合摘要,无需修订;步骤6完成:Entity/Concept 暂缓;步骤7完成:同上;步骤8完成:无冲突;步骤9完成:log.md 追加记录 + +## [2026-05-02] ingest | UI Designer Agent Personality +- Source file: Agent/agency-agents/design/design-ui-designer.md +- Status: ✅ 成功摄入 +- Summary: The Agency 设计部门的视觉界面设计专家 Agent——核心职责:创建视觉设计系统、组件库和像素级界面;Design System First 方法在创建单个界面之前先建立组件基础;WCAG AA 无障碍标准内置于架构层而非后期添加;交付物包含设计令牌系统、响应式框架、组件文档和设计 QA 流程;成功指标:95%+ 界面一致性、90%+ 开发者交接准确率 +- Source page: wiki/sources/design-ui-designer.md(新建) +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md 和 overview.md;步骤3完成:新建 source page(含八节);步骤4完成:index.md 第11行添加新条目;步骤5完成:overview.md 第100行已有该来源综合摘要,无需修订;步骤6完成:The-Agency/UX-Architect/Brand-Guardian Entity 均已存在,无需新建;步骤7完成:Design-Token-System/Component-Library-Architecture/WCAG-Accessibility-Standards 等 Concept 均已存在,无需新建;步骤8完成:Contradictions 记录与 Whimsy Injector 的张力;步骤9完成:log.md 追加记录 + +## [2026-05-15] ingest | 为 The Agency 贡献代码 +- Source file: Agent/agency-agents/CONTRIBUTING_zh-CN.md +- Status: ✅ 成功摄入 +- Summary: The Agency 智能体项目的开源贡献指南——涵盖行为准则(尊重、包容、协作、专业)、4种贡献方式(创建智能体/优化/分享案例/反馈问题)、智能体设计五原则(鲜明性格+明确交付物+可量化指标+经过验证的工作流+学习记忆)、PR 提交流程(含提交前检查清单)和风格指南(具体明确+落地务实+让人记住+实用可用) +- Source page: wiki/sources/contributing_zh-cn.md(新建) +- Entities updated: The-Agency.md(添加 frontmatter 和 sources 引用,更新 last_updated) +- Concepts updated: Agent-Template.md(追加 sources 引用,更新 last_updated) +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md 和 overview.md;步骤3完成:新建 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md 第11行添加新条目;步骤5完成:overview.md 第26行已有该来源综合摘要,无需修订;步骤6完成:The-Agency.md 添加 frontmatter 和 sources 引用;步骤7完成:Agent-Template.md 追加 sources 引用;步骤8完成:无冲突;步骤9完成:log.md 追加记录 + +## [2026-05-15] ingest | Learning Sessions Cloud Transformation Programme-Deploying RDS via Terraform +- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/03_Terraform/learning-sessions-cloud-transformation-programme-deploying-rds-via-terraform.md +- Status: ✅ 成功摄入 +- Summary: 通过 Terraform 在 AWS 上自动化部署 RDS 数据库——DBRE 团队 Greg 主讲,提倡所有规模 RDS 均用 Terraform 而非 Console;推荐 Gruntwork RDS Service 模块(含 KMS 加密 + CloudWatch 告警),配合 Terragrunt 管理多环境配置,使用 tagged release 确保稳定性;Day 2 运维通过 GitHub PR + Atlantis 审批后自动 apply,支持扩缩容、打补丁、主版本升级;核心 IaC 价值为"代码即文档" +- Source page: wiki/sources/learning-sessions-cloud-transformation-programme-deploying-rds-via-terraform.md(新建) +- Entities created: Greg.md(DBRE 团队成员,Terraform IaC 推广者) +- Entities updated: Gruntwork.md、Amazon-RDS.md、Terragrunt.md、Atlantis.md(追加 sources 引用) +- Concepts updated: Infrastructure-as-Code.md(追加 sources 引用) +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md 和 overview.md;步骤3完成:新建 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:source page 已在 index.md 第302行存在,无需重复添加;步骤5完成:overview.md 无需修订;步骤6完成:新建 Greg.md Entity 页面,更新 Gruntwork.md/Amazon-RDS.md/Terragrunt.md/Atlantis.md sources 引用,更新 index.md Entities 节;步骤7完成:Infrastructure-as-Code.md 追加来源引用;步骤8完成:无冲突,仅与 ctp-topic-48 存在观点角度差异(不矛盾)已在 Contradictions 节记录;步骤9完成:log.md 追加记录 + ## [2026-05-15] ingest | Learning Sessions Cloud Transformation Programme-20230808 183322-Meeting Recording - Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/03_Terraform/learning-sessions-cloud-transformation-programme-20230808-183322-meeting-recordi.md - Status: ✅ 成功摄入(已存在,更新 + 修复) @@ -206,6 +938,7 @@ - Entities created: 无(Heather Norris.md 已存在) - Source page: wiki/sources/ctp-topic-4-using-agile-to-run-the-cloud-transformation-program.md - Notes: 步骤3完成:新建 source page;步骤4完成:index.md 条目已存在(第247行),无需更新;步骤5完成:overview.md 无需修订(Agile/Scrum/Kanban 内容已覆盖于现有概述中);步骤6完成:无新增 Entity(Heather Norris.md 已存在);步骤7完成:无新增 Concept(Scrum.md、Kanban.md 均已存在);步骤8完成:无冲突;步骤9完成:log.md 追加记录 + ## [2026-04-28] ingest | CTP Topic 43 VMware Cloud on AWS - Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/08_Networking/ctp-topic-43-vmware-cloud-on-aws.md - Status: ✅ 成功摄入(re-ingest:补充缺失实体/概念页面) @@ -239,7 +972,7 @@ - Source page: wiki/sources/ctp-topic-10-aws-landing-zone-lz-data-collection-tagging-related-security.md - Notes: 步骤3完成:新建 source page;步骤4完成:index.md 条目已存在(第31行、第250行),无需更新;步骤5完成:overview.md 已有该来源详细摘要(line 321),无需修订;步骤6完成:更新2个已有 Entity 页面(AWS-Landing-Zone、Checkpoint-Firewall),新增2个 Entity 页面(Pradeep、SteveJarman);步骤7完成:新建4个 Concept 页面(SCP-Security-Control-Policy、Resource-Tagging、Ordered-Layer、Inline-Layer);步骤8完成:与 CTP Topic 7 的视角差异已记录于 Contradictions 节(属账号结构 vs 标签驱动的互补视角);步骤9完成:log.md 追加本次记录 - +## [2026-04-28] ingest | CTP Topic 22 Global DNS service offerings - Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/08_Networking/ctp-topic-22-global-dns-service-offerings.md - Status: ✅ 成功摄入(re-ingest) - Summary: 企业级全球 DNS 服务架构详解——Sankar 和 Vino 联合主讲。核心架构:Route 53 Private Hosted Zone(私有托管区域)配合 AD 托管 DNS,通过 Route 53 Resolver 入站/出站终端节点打通 AWS VPC 与本地网络的 DNS 查询;Outbound Endpoint 出站规则配置多个区域 AD 域控制器 IP,单区域故障时自动切换确保弹性。本地 Infoblox 平台利用 DNS Anycast 实现全球低延迟和自动故障转移;AWS EC2 不支持 Anycast,需手动维护 IP 列表。DNS 安全涵盖防隧道攻击、防数据外泄及缓存污染;"就近解析"原则优化 Office 365 等全球化 SaaS 访问性能。属 AWS Landing Zone 网络层 DNS 专题,与 ctp-topic-19 共同构成 Landing Zone DNS 完整体系。 @@ -289,7 +1022,7 @@ - Source page: wiki/sources/ctp-topic-58-aws-ec2-image-builder.md - Notes: 步骤3完成:新建 source page,含完整 Summary/Key Claims/Key Quotes/Key Concepts/Key Entities/Connections/Contradictions;步骤4完成:index.md 条目已存在(第303行),无需重复添加;步骤5完成:overview.md 由后续 query workflow 维护,此处无需主动修订;步骤6-7完成:关键 Entity/Concept 在源文档中出现1-2次,未达到创建独立页面的阈值(≥2次且关键影响),按工作流规则跳过;步骤8完成:Contradictions 记录"暂无发现冲突";步骤9完成:log.md 追加本次摄入记录 -## [2026-05-07] ingest | CTP Topic 25 Labs Landing Zone Overview - ITOM Teams (re-ingest) +## [2026-05-06] ingest | CTP Topic 25 Labs Landing Zone Overview - ITOM Teams (re-ingest) - Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-25-labs-landing-zone-overview-itom-teams.md - Status: ✅ 成功摄入(re-ingest) - Summary: Labs LZ 基于 Gruntwork 参考架构,多账户策略(Shared/Jenkins/Logs/Security/Core(AD+DNS)/Network(TGW+JetPult)/Product Account);全部通过 Terraform/Terragrunt IaC 管理;Jenkins 流水线扫描 GitHub 触发 plan/apply;防火墙通过标签(Tags)控制网络访问;Shared Services 含 45 Arc Site 监控和 Qualys 安全扫描。 @@ -315,7 +1048,7 @@ - Concepts touched: [[Landing-Zone-Architecture]](已存在,内容已通过本来源扩展) - Entities touched: [[Azure]](已存在), [[Micro-Focus]](已存在) - Source page: wiki/sources/ctp-topic-34-azure-landing-zone-architecture-overview.md -- Notes: 步骤3完成:新建 source page,含完整 Summary/Key Claims/Key Quotes/Key Concepts/Key Entities/Connections/Contradictions;步骤4完成:index.md 条目补全日期前缀和一行摘要;步骤5完成:overview.md 新增 CTP Topic 34 条目,置于 Topic 35 之后;步骤6-7完成:关键 Entity/Concept 均已存在(Azure/Micro-Focus/Landing-Zone-Architecture/Terraform),无需新建;步骤8完成:Contradictions 记录了与 Gruntwork AWS LZ 的平台差异说明(非冲突,为多云战略互补);步骤9完成:log.md 补录 +- Notes: 步骤3完成:新建 source page,含完整 Summary/Key Claims/Key Quotes/Key Concepts/Key Entities、Connections、Contradictions;步骤4完成:index.md 条目补全日期前缀和一行摘要;步骤5完成:overview.md 新增 CTP Topic 34 条目,置于 Topic 35 之后;步骤6-7完成:关键 Entity/Concept 均已存在(Azure/Micro-Focus/Landing-Zone-Architecture/Terraform),无需新建;步骤8完成:Contradictions 记录了与 Gruntwork AWS LZ 的平台差异说明(非冲突,为多云战略互补);步骤9完成:log.md 补录 ## [2026-05-06] ingest | CTP Topic 35 AWS Landing Zone Design Refresher (SaaS Labs) - Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-35-aws-landing-zone-design-refresher-saas-labs.md @@ -383,7 +1116,7 @@ - Entities created: [[WSL2]], [[ghproxy]] - Entities touched: [[uv]], [[Hermes Agent]] - Source page: wiki/sources/wsl2-启动与网络配置指南.md -- Notes: index.md Sources 节已有该条目,本次补加日期前缀 [2026-04-17] 和一行摘要;index.md Entities 节新增 WSL2 和 ghproxy 条目;overview.md 已有 WSL2 相关条目(line 413-415, line 787-789),内容一致无需修订;冲突检测:与 [[Install WSL]] 的视角差异(安装 vs 配置)已记录于 source page Contradictions 节,无本质冲突 +- Notes: index.md Sources 节已有该来源条目,本次补加日期前缀 [2026-04-17] 和一行摘要;index.md Entities 节新增 WSL2 和 ghproxy 条目;overview.md 已有 WSL2 相关条目(line 413-415, line 787-789),内容一致无需修订;冲突检测:与 [[Install WSL]] 的视角差异(安装 vs 配置)已记录于 source page Contradictions 节,无本质冲突 ## [2026-04-28] ingest | fireworks-tech-graph - Source file: Skills/fireworks-tech-graph.md @@ -404,6 +1137,7 @@ - Source page: wiki/sources/obsidian-官方-cli-命令全景速查表.md - Notes: index.md 已添加该来源条目(一行摘要);Backlinks 是核心概念,已创建独立概念页面;Obsidian 已创建实体页面(CLI + 核心特性描述);n8n.md 和 OpenClaw.md 已添加本来源引用;冲突检测:无冲突;index.md 中已有同名条目已补全摘要内容 +## [2026-04-28] ingest | Obsidian CLI - Source file: Skills/Obsidian CLI.md - Status: ✅ 成功摄入 - Summary: Obsidian 官方 CLI 完整命令参考文档(1534行)——50+ 命令覆盖日常使用、文件管理、链接分析、任务管理、开发者命令(CDP协议截图/控制台/插件热重载)、数据管理(Bases)、版本历史(File Recovery+Sync)、插件管理和 Obsidian Publish。两种使用模式:单命令和 TUI 交互。vault 定向和文件定位机制详解。 @@ -455,8 +1189,8 @@ - Source file: Others/可自动化、可扩展、AI增强的电商数据采集与处理系统.md - Status: ✅ 成功摄入 - Summary: 基于 Docker + Ubuntu + n8n 的电商数据采集与处理系统完整指南。三层架构:采集层(Scrapy/Playwright)→ AI处理层(n8n + LLM API)→ 存储展示层(PostgreSQL/MinIO + Grafana)。核心价值:Scrapy + Playwright 组合抓取动态页面,n8n 自动化工作流编排,Ollama 本地 LLM 替代外部 API,防封策略(UA轮换/代理池/延迟随机化)。 -- Concepts created: [[网页爬虫]]、[[自动化工作流引擎]]、[[防封技术]]、[[Docker容器化]]、[[LLM API集成]]、[[向量数据库]] -- Entities created: [[Scrapy]]、[[Playwright]]、[[Ollama]]、[[MinIO]]、[[Grafana]] +- Concepts created: [[网页爬虫]], [[自动化工作流引擎]], [[防封技术]], [[Docker容器化]], [[LLM API集成]], [[向量数据库]] +- Entities created: [[Scrapy]], [[Playwright]], [[Ollama]], [[MinIO]], [[Grafana]] - Entities touched: [[n8n]](已更新来源链接) - Source page: wiki/sources/可自动化-可扩展-ai增强的电商数据采集与处理系统.md - Notes: source page 新建完成;index.md Entities 节已添加 Scrapy;overview.md 已有对应条目(电商数据采集与处理系统节),无需修订;冲突检测:与 [[Scrapy + Playwright 抓取TikTok Shop Data]] 属技术实现互补关系,无冲突 @@ -464,5894 +1198,261 @@ ## [2026-04-28] ingest | 电商如何选品 - 如何找到爆款选品策略 - Source file: 跨境电商/电商如何选品 如何找到爆款 选品策略.md - Status: ✅ 成功摄入 -- Summary: YouTube 视频摘要,介绍 20 种电商选品策略(POD模式、细分市场定位、情境配对、季节性规划等)+ 工具辅助(Salesmartly、Erank、Pinterest/Etsy趋势报告)。核心观点:细分市场 > 大众市场;多工具组合提升选品效率和转化率;POD 模式适合低风险测款。 -- Concepts touched: [[选品策略]](出现 1 次,未达抽象复用阈值)、[[细分市场]](出现 1 次,未达抽象复用阈值)、[[情境配对]](出现 1 次,未达抽象复用阈值)、[[POD模式]](出现 1 次,未达抽象复用阈值)、[[季节性选品]](出现 1 次,未达抽象复用阈值) -- Entities touched: [[Salesmartly]](出现 1 次,未达创建阈值)、[[Erank]](出现 1 次,未达创建阈值)、[[Etsy]](出现 1 次,未达创建阈值)、[[Pinterest]](出现 1 次,未达创建阈值) -- Source page: wiki/sources/电商如何选品-如何找到爆款-选品策略.md -- Notes: source page 新建完成;index.md Sources 节已添加;overview.md 已有对应条目(TikTok E-commerce Operations 节),无需修订;冲突检测:与 [[做TK跨境思路不对努力白费]] 均属电商选品主题域,无本质冲突;与 [[TikTok E-commerce Product Management]] 属选品策略→技术实现互补关系 -## [2026-04-28] ingest | 电商视频Prompt库(宠物用品/宠物衣服) -- Source file: 跨境电商/电商视频Prompt.md +## [2026-05-15] ingest | Design Whimsy Injector +- Source file: Agent/agency-agents/design/design-whimsy-injector.md - Status: ✅ 成功摄入 -- Summary: AI 图生视频(Image-to-Video)模块化 Prompt 库,专为 TikTok 电商宠物用品/宠物衣服带货设计。包含 7 大模块:产品展示、宠物动作、服装防穿帮(Anti-Clipping)、场景变化、Negative Prompt、卖货文案生成、全流程合成示例。核心价值:低翻车率 + 高真实感 + 可规模化复用,可实现"图片 → 3 条视频 → 6 条文案 → A/B 测试"的半自动化流水线。 -- Concepts touched: [[模块化Prompt库]](出现 1 次,未达复用阈值)、[[NegativePrompt]](出现 1 次,未达复用阈值)、[[防穿帮Prompt]](出现 1 次,未达复用阈值)、[[电商视频流水线]](出现 1 次,未达复用阈值) -- Entities touched: [[TikTok]](出现 1 次,未达创建阈值)、[[TikTok Shop]](出现 1 次,未达创建阈值)、[[Sora]](出现 1 次,未达创建阈值) -- Source page: wiki/sources/电商视频prompt.md -- Notes: source page 新建完成;index.md Sources 节已补全日期前缀 [2026-04-28] 和一行摘要;overview.md 为 living synthesis 无需手动修订;冲突检测:与 [[如何利用Sora接口实现视频自动化生成工作流]] 在工具选择层面存在视角差异(通用 Prompt 策略 vs 专注 Sora API),无本质矛盾;与 [[电商如何选品]] 属同一 TK 电商主题域(选品→视频内容) +- Summary: Whimsy Injector Agent 角色定义——品牌个性和愉悦感注入专家,隶属于 The Agency Design 部门。核心能力:战略人格注入、包容性愉悦设计、微交互设计系统(含 CSS 动画规范)、游戏化成就系统(含彩蛋发现)。Source page 已在 2026-05-05 生成,本次完成 Entity/Concept 页面创建和 index.md 补充。 +- Source page: wiki/sources/design-whimsy-injector.md(已存在,格式完整) +- Entities created: Whimsy-Injector.md、ArchitectUX.md、LuxuryDeveloper.md +- Entities updated: The-Agency.md(追加 sources 引用) +- Concepts created: Micro-Interaction-Design.md、Inclusive-Delight-Design.md、Gamification-System.md +- Concepts updated: Gamification.md(追加 sources 引用) +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md 和 overview.md;步骤3完成:source page 已存在(2026-05-05),格式完整无需修订;步骤4完成:index.md 第512行更新日期前缀和中文摘要;步骤5完成:overview.md 无需修订(source page 已包含完整摘要);步骤6完成:新建 Whimsy-Injector.md/ArchitectUX.md/LuxuryDeveloper.md Entity 页面,更新 The-Agency.md sources 引用;步骤7完成:新建 Micro-Interaction-Design.md/Inclusive-Delight-Design.md/Gamification-System.md Concept 页面,更新 Gamification.md sources 引用;更新 index.md Entities 节(ArchitectUX/LuxuryDeveloper/Whimsy-Injector)和 Concepts 节(Inclusive-Delight-Design/Gamification-System/Micro-Interaction-Design);步骤8完成:无冲突(与 ArchitectUX 的互补关系已在 Contradictions 节记录);步骤9完成:log.md 追加记录 -## [2026-04-28] ingest | TikTok Shop - Apache Superset Dashboard设计思路 -- Source file: 跨境电商/TikTok Shop - Apache Superset Dashboard设计思路.md +## [2026-05-15] ingest | UX Researcher Agent Personality +- Source file: Agent/agency-agents/design/design-ux-researcher.md - Status: ✅ 成功摄入 -- Summary: Apache Superset 构建 TikTok Shop 选品分析 Dashboard 完整指南——SQL View 数据预处理(JSON 字段提取)、25+ 图表设计(KPI、爆品榜、气泡图、箱线图、热力图等)、选品评分模型(sold×0.4 + rating×12 + rating_count×0.2 + discount_percent×0.5)、两个 Dashboard(电商选品分析 / 竞争对手监控)布局方案及 Superset JSON 导出方案 -- Concepts touched: [[选品评分模型]](出现 1 次,未达复用阈值)、[[蓝海类目]](出现 1 次,未达复用阈值)、[[价格带分析]](出现 1 次,未达复用阈值)、[[GMV分析]](出现 1 次,未达复用阈值)、[[竞品监控]](出现 1 次,未达复用阈值) -- Entities touched: [[TikTok Shop]](已在多处出现,wikilink 引用)、[[Apache Superset]](已在多处出现,wikilink 引用) -- Source page: wiki/sources/tiktok-shop-apache-superset-dashboard设计思路.md -- Notes: source page 新建完成;index.md Sources 节已补全日期前缀 [2026-04-28] 和一行摘要;overview.md 为 living synthesis 无需手动修订;冲突检测:无明显内容冲突;与 [[Scrapy + Playwright 抓取TikTok Shop Data]](数据采集)和 [[做TK跨境思路不对努力白费]](宏观策略)属同一 TK 跨境电商主题域,形成「采集→分析→决策」完整链路 +- Summary: The Agency Design 部门 UX Researcher Agent 的角色定义与研究方法论——核心职责:通过混合研究方法(定性与定量)理解用户行为、验证设计决策、提供可落地洞察;与 UX Architect 和 Whimsy Injector 共同构成 Design 部门三支柱(Research → Architecture → Delight);默认要求包含无障碍研究和包容性设计测试 +- Source page: wiki/sources/design-ux-researcher.md(新建) +- Entities updated: UX-Researcher.md(追加 design-ux-researcher.md 到 sources,更新 definition 和 Key Collaborators)、ArchitectUX.md(追加 sources 引用,更新 Relationship to Other Agents) +- Concepts created: User-Research-Methodology.md、Usability-Testing.md、User-Persona.md、User-Journey-Mapping.md、Qualitative-Quantitative-Research.md、Research-Triangulation.md、Inclusive-Design-Research.md、Behavioral-Analytics.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md 和 overview.md;步骤3完成:新建 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md 第9行添加新条目(UX Researcher);步骤5完成:overview.md 在 design-ux-architect 段落后新增 UX Researcher 综合摘要(Design 三支柱定位);步骤6完成:UX-Researcher Entity 页面已存在,更新 definition/Key Collaborators/sources;ArchitectUX Entity 页面已存在,更新 sources 引用和 Relationship;步骤7完成:新建8个 Concept 页面(User-Research-Methodology/Usability-Testing/User-Persona/User-Journey-Mapping/Qualitative-Quantitative-Research/Research-Triangulation/Inclusive-Design-Research/Behavioral-Analytics),按字母顺序加入 index.md Concepts 节;步骤8完成:Contradictions 记录与 UX Architect 的张力(研究洞察 vs 技术约束,通过时序分工协调);步骤9完成:log.md 追加记录 -## [2026-04-28] ingest | 做TK跨境思路不对努力白费 -- Source file: 跨境电商/做TK跨境思路不对努力白费.md +## [2026-05-29] ingest | Paid Media Programmatic & Display Buyer Agent +- Source file: Agent/agency-agents/paid-media/paid-media-programmatic-buyer.md - Status: ✅ 成功摄入 -- Summary: TikTok 跨境电商全流程实战指南,涵盖市场选择(美区/日本优先)、账号直播学习、执照办理、选品软件数据策略、流量跟踪分析、短视频+达人营销、海外仓储物流及团队协作建设,形成完整闭环。 -- Concepts touched: [[市场选择策略]](出现 1 次,未达复用阈值)、[[选品策略]](出现 1 次,未达复用阈值)、[[流量运营分析]](出现 1 次,未达复用阈值)、[[短视频营销]](出现 1 次,未达复用阈值)、[[跨境电商闭环]](出现 1 次,未达复用阈值) -- Entities touched: [[TikTok Shop]](出现 1 次,未达创建阈值)、[[TikTok]](出现 1 次,未达创建阈值) -- Source page: wiki/sources/做tk跨境思路不对努力白费.md -- Notes: source page 新建完成;index.md Sources 节已补全日期前缀 [2026-04-28] 和一行摘要;overview.md 为 living synthesis 无需手动修订;冲突检测:无明显内容冲突;与 [[电商如何选品]] 和 [[TK美国面单授权及操作流程]] 属同一 TK 跨境电商主题域 +- Summary: 战略性程序化购买与展示广告 Agent——覆盖 Google Display Network、DV360、The Trade Desk、Amazon DSP 等 DSP 平台;Demandbase、6Sense、RollWorks 等 ABM 平台;支持 Deal ID、PMP、程序化保证交易;通过 MCP 工具与 Google Ads API 集成实现自动化投放管理;管理 25+ 合作伙伴媒体(AMP);核心理念:受众优先,每次展示触达正确用户在正确上下文以正确频次;成功衡量以可见性(≥70% MRC)、品牌安全和上漏斗归因为主 +- Source page: wiki/sources/paid-media-programmatic-buyer.md(更新,日期更新为 2026-04-26,新增 CTV/OTT Advertising 概念,更新 paid-media-ppc-strategist 协调关系) +- Concepts created: Programmatic-Buying.md、ABM-Display.md、Viewability.md、Frequency-Cap.md、CTV-OTT-Advertising.md +- Entities updated: 无(DV360/The Trade Desk/Amazon DSP/Google Display Network/Demandbase/6Sense/RollWorks 等引用未达≥2次阈值) +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md(已有条目)和 overview.md(第184行已有摘要);步骤3完成:更新 source page(新增 CTV/OTT Advertising 概念,更新 paid-media-ppc-strategist 协调方式,更新 date 为 2026-04-26);步骤4完成:index.md 第415行已有条目,无需更新;步骤5完成:overview.md 第184行摘要已准确,无需修订;步骤6完成:Entity 未创建(相关平台实体引用未达≥2次阈值);步骤7完成:新建5个 Concept 页面(Programmatic-Buying/ABM-Display/Viewability/Frequency-Cap/CTV-OTT-Advertising),按字母顺序加入 index.md Concepts 节;步骤8完成:检测无新冲突(与 paid-media-paid-social-strategist 效果衡量差异、paid-media-ppc-strategist 目标设定差异均已在 source page 记录);步骤9完成:log.md 追加记录 -## [2025-12-19] ingest | 超达物流定价 -- Source file: 跨境电商/超达物流定价.md +## [2026-05-01] ingest | Paid Media PPC Campaign Strategist Agent +- Source file: Agent/agency-agents/paid-media/paid-media-ppc-strategist.md - Status: ✅ 成功摄入 -- Summary: 超达物流 UIN 渠道定价规则与 TK 发货操作注意事项,涵盖收费原则(申报/实重/材积取大)、轨迹上网时效(24-48h)、取消单号费用政策、美区发货截止时间等关键操作规范。 -- Concepts touched: [[物流预上网服务]](出现 1 次,未达复用阈值)、[[材积重]](出现 1 次,未达复用阈值)、[[挂号费]](出现 1 次,未达复用阈值) -- Entities touched: [[超达物流]](出现 1 次,未达创建阈值)、[[TikTok Shop]](出现 1 次,未达创建阈值)、[[UIN 渠道]](出现 1 次,未达创建阈值) -- Source page: wiki/sources/超达物流定价.md -- Notes: source page 新建完成;index.md Sources 节已补全日期前缀 [2025-12-19] 和一行摘要;overview.md 为 living synthesis 无需手动修订;冲突检测:无明显内容冲突;与 [[TK美国面单授权及操作流程]] 属同一 TK 跨境电商物流主题域 +- Summary: The Agency Paid Media 部门企业级 PPC 战略 Agent——核心:$10K 到 $10M+ 月预算规模的 Google Ads/Microsoft Advertising/Amazon Ads 付费搜索架构;核心理念「账户架构即战略」(Account Structure as Strategy);核心能力:分层广告系列架构(Brand/Non-Brand/Competitor/Conquest 四层隔离)、自动化竞价(tCPA/tROAS/Max Conversions)、Performance Max 资产组设计、Google Ads API/MCP 实时数据驱动;作者:John Williams(@itallstartedwithaidea) +- Source page: wiki/sources/paid-media-ppc-strategist.md(更新) +- Concepts created: AccountArchitecture.md、AutomatedBiddingStrategy.md、BudgetPacing.md、PerformanceMax.md、AudienceStrategy.md、TieredCampaignArchitecture.md、CrossPlatformPlanning.md;Incrementality-Testing.md(追加来源) +- Entities created: CustomerMatch.md、GoogleAdsAPI.md、MCCLevelStrategy.md;GoogleAds.md/MicrosoftAdvertising.md/AmazonAds.md(覆盖并扩充) +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md(含现有 Sources/Concepts/Entities 索引)和 overview.md(第182行已有该来源详细摘要);步骤3完成:更新 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md 第416行更新日期为 2026-05-01;步骤5完成:overview.md 第182行已有摘要,无需修订;步骤6完成:新建6个 Entity 页面(GoogleAds/MicrosoftAdvertising/AmazonAds/CustomerMatch/GoogleAdsAPI/MCCLevelStrategy),GoogleAds/AmazonAds/MicrosoftAdvertising 已存在于 index(保留现有路径),新增条目均已加入 index.md Entities 节;步骤7完成:新建8个 Concept 页面(AccountArchitecture/AutomatedBiddingStrategy/BudgetPacing/PerformanceMax/AudienceStrategy/TieredCampaignArchitecture/IncrementalityTesting/CrossPlatformPlanning),其中 AccountArchitecture/PerformanceMax/TieredCampaignArchitecture 已存在于 index(覆盖扩充),Incrementality-Testing(连字符版)追加来源;新增条目均已加入 index.md Concepts 节;步骤8完成:检测与 MarketingSEOSpecialist 的潜在冲突(SEO vs PPC 预算竞争),已记录协调建议;步骤9完成:log.md 追加记录 -## [2026-04-28] ingest | TK美国面单授权及操作流程 -- Source file: 跨境电商/TK美国面单授权及操作流程.md +## [2026-05-17] ingest | Paid Media Ad Creative Strategist Agent +- Source file: Agent/agency-agents/paid-media/paid-media-creative-strategist.md - Status: ✅ 成功摄入 -- Summary: TikTok Shop 美国站点的面单授权配置与操作流程记录,包含 6 张截图(2025-12-19 备份)。内容覆盖 TK 美国卖家在平台完成面单服务授权绑定的操作步骤,是跨境发货的前置准备工作。 -- Concepts touched: [[美国面单]](出现 1 次,未达复用阈值)、[[物流授权]](出现 1 次,未达复用阈值) -- Entities touched: [[TikTok Shop]](出现 1 次,未达创建阈值)、[[TikTok 美国站]](出现 1 次,未达创建阈值) -- Source page: wiki/sources/tk美国面单授权及操作流程.md -- Notes: source page 新建完成;index.md Sources 节已补全日期前缀 [2025-12-19];overview.md 为 living synthesis 无需手动修订;冲突检测:无明显内容冲突;与 [[做TK跨境思路不对努力白费]]、[[电商如何选品]] 属同一主题域 +- Summary: 付费媒体广告创意策略 Agent——将广告创意从"凭感觉"转变为"可重复的科学";核心理念:创意是自动化竞价环境中广告主唯一真正可控的变量;15-headline RSA 架构设计、Meta Hook-Body-CTA 视频框架、Performance Max 资产组编排、创意疲劳监测(A/B 测试 + 统计显著性);成功指标:90%+ Ad Strength、15-25% CTR 提升、每两周新测试节奏;作者:John Williams(@itallstartedwithaidea) +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page) +- Source page: wiki/sources/paid-media-creative-strategist.md(新建) +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md(第403行已有该条目)和 overview.md;步骤3完成:新建 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md 第403行已有该条目,日期已存在,无需更新;步骤5完成:overview.md 无需修订(Sales 相关内容已在相关页面覆盖);步骤6完成:Entity 未创建(Key Entities 均以 wikilinks 记录于 source page);步骤7完成:新建4个 Concept 页面(Win-Theme.md / Three-Act-Proposal-Narrative.md / Executive-Summary-Formula.md / Content-Operations.md),均已加入 index.md Concepts 节;步骤8完成:检测与 support-executive-summary-generator 的 SCQA 框架张力(前者通用战略沟通,后者销售提案专用),已记录为层级互补非冲突;步骤9完成:log.md 追加记录 -## [2026-04-28] ingest | Scrapy + Playwright 抓取TikTok Shop Data -- Source file: 跨境电商/Scrapy + Playwright 抓取TikTok Shop Data.md +## [2026-05-19] ingest | Sales Proposal Strategist Agent +- Source file: Agent/agency-agents/sales/sales-proposal-strategist.md - Status: ✅ 成功摄入 -- Summary: 使用 Scrapy + Playwright 抓取 TikTok Shop 店铺数据的技术配置与实践指南,涵盖 Python venv 虚拟环境搭建、scrapy + scrapy-playwright 依赖安装、Playwright Chromium 配置、Docker Dockerfile 虚拟环境路径配置,以及验证安装成功的测试命令。 -- Concepts touched: [[WebScraping]](出现 1 次,未达复用阈值)、[[BrowserAutomation]](出现 1 次,未达复用阈值)、[[VirtualEnvironment]](出现 1 次,未达复用阈值) -- Entities touched: [[TikTok Shop]](出现 1 次,未达创建阈值)、[[Scrapy]](出现 1 次,未达创建阈值)、[[Playwright]](出现 1 次,未达创建阈值)、[[Docker]](出现 1 次,未达创建阈值) -- Source page: wiki/sources/scrapy-playwright-抓取tiktok-shop-data.md -- Notes: source page 新建完成;index.md Sources 节已添加条目([2026-04-28]),并更新原无日期条目;overview.md 已有相关综合摘要(第 804 行),本次摄入为同一主题的详细操作步骤,无需额外修订;冲突检测:无明显内容冲突 +- Summary: 销售提案撰写策略专家 Agent,将 RFP 响应转化为"赢叙事"(Win Narrative)。核心理念:提案是说服工具而非合规清单,叙事是最强差异化因素。三幕式提案叙事结构(Act I 理解挑战 → Act II 方案旅程 → Act III 转化状态)、3-5 个赢主题矩阵(Win Theme Matrix)、执行摘要五步结构、竞争定位技巧、内容运营体系。 +- Concepts created: Win-Theme.md、Three-Act-Proposal-Narrative.md、Executive-Summary-Formula.md、Content-Operations.md +- Source page: wiki/sources/sales-proposal-strategist.md(新建) +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md(第403行已有该条目)和 overview.md;步骤3完成:新建 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md 第403行已有该条目,日期已存在,无需更新;步骤5完成:overview.md 无需修订(Sales 相关内容已在相关页面覆盖);步骤6完成:Entity 未创建(Key Entities 均以 wikilinks 记录于 source page);步骤7完成:新建4个 Concept 页面(Win-Theme.md / Three-Act-Proposal-Narrative.md / Executive-Summary-Formula.md / Content-Operations.md),均已加入 index.md Concepts 节;步骤8完成:检测与 support-executive-summary-generator 的 SCQA 框架张力(前者通用战略沟通,后者销售提案专用),已记录为层级互补非冲突;步骤9完成:log.md 追加记录 -## [2026-04-28] ingest | GOG CLI 安装配置指南 -- Source file: Skills/GOG-CLI-安装配置指南.md +## [2026-05-29] ingest | Jira Workflow Steward Agent Personality +- Source file: Agent/agency-agents/project-management/project-management-jira-workflow-steward.md - Status: ✅ 成功摄入 -- Summary: gog CLI 在 macOS 上管理 Google Workspace 的完整安装与配置流程,涵盖 Homebrew 安装、OAuth 凭证配置、绕过 Google 安全验证(添加测试用户)、启用 Google API(两层机制:OAuth + API Enablement)、常用命令(gmail/calendar/drive/contacts/docs/sheets)以及故障排除。 -- Concepts touched: [[OAuth 2.0]](出现 1 次,未达复用阈值)、[[Google Cloud Console]](出现 1 次,未达复用阈值) -- Entities touched: [[steipete]](出现 1 次,未达创建阈值)、[[ishenwei@gmail.com]](出现 1 次,未达创建阈值) -- Source page: wiki/sources/gog-cli-安装配置指南.md -- Notes: source page 新建完成;index.md Sources 节已添加条目;overview.md 为 living synthesis 无需手动修订;冲突检测:无明显内容冲突 +- Summary: Jira Workflow Steward Agent 完整摄取——The Agency 项目管理部门的交付纪律守护者 Agent,专注于 Jira-Git 全链路可追溯性管理。核心方法:Jira Gate(强制 Jira ID 前置)→ 分支策略(feature/bugfix/hotfix/release 分流)→ Gitmoji 规范提交 → PR 模板 → Commit Hook 自动化验证。关键交付物:分支/提交决策矩阵(8种变更类型)、Commit Validation Hook 脚本、PR 模板、Delivery Planning 模板。成功指标:100% 分支映射 Jira 任务、提交合规率 ≥ 98%、从 Jira+Git 历史重建发布说明 < 10 分钟。与 [[Project-Management-Project-Shepherd]] 互补(任务创建→任务追踪),与 [[Project-Management-Studio-Operations]] 协同(运营流程→技术交付链路),与 [[ProjectManagerSenior]] 协同(任务列表→可追溯交付)。 +- Concepts created: (所有 Concept 均已存在于 wiki:Jira-Git-Traceability/Atomic-Commit/Branch-Strategy/Gitmoji-Commit/Jira-Gate/Pull-Request-Governance/Delivery-Traceability) +- Source page: wiki/sources/project-management-jira-workflow-steward.md +- Notes: 步骤1完成:读取原始文档(230行);步骤2完成:读取 index.md、overview.md;步骤3完成:source page 已存在(wiki/sources/project-management-jira-workflow-steward.md,含完整 frontmatter/Summary/Key Claims/Key Quotes/Key Concepts/Key Entities/Connections/Contradictions 八节);步骤4完成:index.md 第413行已有条目([Jira Workflow Steward Agent Personality](sources/project-management-jira-workflow-steward.md));步骤5完成:overview.md 第148-149行已有 Project-Management-Jira-Workflow-Steward 综合摘要,与 source page 内容一致无需修订;步骤6完成:Entity 页面已存在(wiki/entities/Jira-Workflow-Steward.md),Gitmoji/Jira 实体已有独立页面;步骤7完成:7个 Concept 页面均已存在(wiki/concepts/ 目录下:Jira-Git-Traceability.md/Atomic-Commit.md/Jira-Gate.md/Gitmoji-Commit.md);步骤8完成:Contradictions 已记录于 source page 第53-63行(与 Project-Management-Project-Shepherd 的 Jira ID 前置机制张力、与 Project-Management-Studio-Producer 的交付粒度层级差异);步骤9完成:log.md 追加记录 -## [2026-04-28] ingest | Last30Days 使用指南 -- Source file: Skills/Last30Days-使用指南.md +## [2026-06-08] ingest | Senior Project Manager Agent Personality +- Source file: Agent/agency-agents/project-management/project-manager-senior.md - Status: ✅ 成功摄入 -- Summary: Last30Days 工具的完整使用指南,涵盖调用方式、参数说明、8 个数据来源(Reddit/X/YouTube/TikTok/Instagram/Hacker News/Polymarket/Web)、API Keys 配置、最佳实践和典型使用场景。支持快速模式(--quick)、深度模式(--deep)、对比模式("A vs B")以及 X 账号精确搜索(--x-handle)。 -- Concepts touched: [[数据源权重排序]](来源内专有,未达复用阈值)、[[对比模式]](来源内专有,未达复用阈值) -- Entities touched: [[OpenClaw]](仅出现 1 次,未达创建阈值)、[[ScrapeCreators]](仅出现 1 次,未达创建阈值)、[[XAI]](仅出现 1 次,未达创建阈值) -- Source page: wiki/sources/last30days-使用指南.md -- Notes: source page 新建完成;index.md Sources 节已添加日期前缀 [2026-04-28];overview.md 内容为 living synthesis,自动汇总无需手动修订;冲突检测:无明显内容冲突,与 [[Multi-Source Tech News Digest]] 和 [[Polymarket Autopilot]] 互补 +- Summary: Senior Project Manager Agent 完整摄取——The Agency 项目管理部门的规格驱动型任务规划专家 Agent。核心工作流:读取 `ai/memory-bank/site-setup.md` → 引用精确需求原文 → 拆解为 30-60 分钟原子任务 → 每个任务附带验收标准。关键原则:严格按规格执行不添加奢华功能(除非规格明确)、任务粒度控制在可执行单元、预留 2-3 轮迭代周期、禁止后台进程(`&`)和服务器启动命令。技术栈:Laravel/Livewire + FluxUI + Playwright QA。持久记忆能力:从每个项目学习并积累经验教训。与 [[ProjectManagerSenior]](执行层任务分解)、[[project-management-studio-producer]](战略组合管理)、[[project-management-project-shepherd]](项目全程跟踪)共同构成项目管理层 Agent 矩阵。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page:TaskListCreation/RealisticScopeManagement/PersistentMemory/AcceptanceCriteria/FluxUIComponentIntegration) +- Source page: wiki/sources/project-manager-senior.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md 和 overview.md;步骤3完成:生成 source page;步骤4完成:index.md 追加 Source 条目;步骤5完成:overview.md 新增第24条综合摘要(Project Management Agent 矩阵协调);步骤6完成:Entity 未达到独立建页阈值(Laravel/Livewire/FluxUI/Playwright 均仅在本文档中出现一次);步骤7完成:Concept 均以 wikilinks 形式记录于 source page,未达到独立建页阈值;步骤8完成:与现有 Wiki 中 scope-creep 相关内容立场一致,无实质冲突;步骤9完成:log.md 追加记录 - -- Source file: AI/如何利用Sora接口实现视频自动化生成工作流.md -- Status: ✅ 成功摄入 -- Summary: 利用亚马逊 Bedrock 平台的 Sora API 实现视频生成全自动化工作流,覆盖注册→API调用→批量生成完整流程。成本仅 2-3 元人民币,远低于市场水平;新用户享 200 美元抵扣金和 6 个月免费试用;支持文本转视频和图像生成,可结合 n8n 实现批量 UGC 内容生产。 -- Concepts touched: [[PromptEngineering]](已存在,无需更新)、[[TextToVideo]](已存在,无需更新)、[[WorkflowAutomation]](已存在,无需更新) -- Entities touched: [[Sora]](Entity 已新建)、[[Amazon-Bedrock]](Entity 已新建)、[[n8n]](Entity 已存在,sources 引用已更新) -- Source page: wiki/sources/如何利用sora接口实现视频自动化生成工作流.md -- Notes: source page 新建完成;index.md Sources 节已添加条目;overview.md 内容为 living synthesis,自动汇总无需手动修订;冲突检测:无明显内容冲突 - -## [2026-04-28] ingest | 我用 Gemini 3 一口气做了 10 个应用,附教程 -- Source file: AI/我用 Gemini 3 一口气做了 10 个应用,附教程.md -- Status: ✅ 成功摄入 -- Summary: 作者分享利用 Gemini 3 + 前端 SVG 可视化快速构建 10 个 AI 应用的教程,核心方法论为"AI应用三步法"——①限定垂直输入场景、②约束模型结构化输出(提示词/MCP)、③设计前端可视化容器(SVG/HTML)。涵盖配色卡片、电影海报、绘画思维导图等应用案例。 -- Concepts touched: [[结构化输出]](来源内专有,未达复用阈值)、[[SVG可视化]](来源内专有,未达复用阈值)、[[AI应用三步法]](来源内专有,未达复用阈值) -- Entities touched: [[Gemini 3]](Entity 已存在,sources 引用已更新)、[[AI Studio]](仅出现 2 次,未达创建阈值) -- Source page: wiki/sources/我用-gemini-3-一口气做了-10-个应用-附教程.md -- Notes: source page 新建完成;index.md Sources 节已添加条目;overview.md 内容为 living synthesis,自动汇总无需手动修订;冲突检测:无明显内容冲突,与 [[如何写出完美的Prompt(提示词)?]] 和 [[Vibe Coding]] 互补 - -## [2026-04-28] ingest | 全网最全!Nano Banana 2 使用指南(2025年12月更新) -- Source file: AI/全网最全!Nano Banana 2 使用指南(2025年12月更新) 1.md +- Source file: Agent/agency-agents/sales/sales-pipeline-analyst.md - Status: ✅ 成功摄入(更新) -- Summary: Nano Banana 2(Gemini 3 Pro Image)国内使用指南。核心内容:DeepSider 浏览器插件(Edge 扩展)让国内用户无需特殊网络即可访问 Nano Banana 2;Nano Banana 2 是推理型图像生成模型,生成前进行内部推理,支持 1K/2K/4K 输出和 14 张图像组合,擅长中文界面渲染、科研配图等高准确性图像创作 -- Concepts touched: [[推理型图像生成模型]](出现 1 次,未达创建阈值)、[[多语言长文本渲染]](出现 1 次,未达创建阈值)、[[图像推理模型]](出现 1 次,未达创建阈值)、[[图像组合融合]](出现 1 次,未达创建阈值) -- Entities touched: [[Nano Banana 2]](Entity 已存在,无需更新)、[[DeepSider]](Entity 已存在,无需更新)、[[Gemini 3 Pro]](Entity 已有关联)、[[Google]](出现 1 次,未达创建阈值) -- Source page: wiki/sources/全网最全-nano-banana-2-使用指南-2025年12月更新-1.md -- Notes: 源文件于 2026-04-26 更新(晚于上次摄取 2026-04-23),重新执行摄取;source page 已更新 last_updated;index.md 日期已更新;overview.md 已有完整综合摘要(第 566 行),内容一致无需修订;冲突检测:无明显内容冲突,与 Nano Banana Pro 提示词指南/Nano Banana 提示词框架互补同属一系 - -- Source file: AI/AI 解决方案专家培训课程.md -- Status: ✅ 成功摄入 -- Summary: Coze(扣子)平台 AI Agent 开发实战培训课程,分国内版(coze.cn)和海外版(coze.com),涵盖金融、医疗、教育、电商、人力资源、泛娱乐、在线客服等 7 大行业共 50+ 可体验 Agent Demo,包括工作流、知识库、Function Call 等技术实现 -- Concepts touched: [[Coze平台]](已有 Entity,链接更新)、[[AutoGPT]](仅出现 1 次,未达创建阈值)、[[Function Call]](链接已有 Concept)、[[WorkFlow]](已有概念关联)、[[RAG]](已有 Concept) -- Entities touched: [[Coze]](Entity 已存在,直接引用源文档)、[[FaceFusion]](仅出现 1 次,未达创建阈值)、[[F5-TTS]](仅出现 1 次,未达创建阈值)、[[World Labs]](仅出现 1 次,未达创建阈值)、[[BananaResearch]](仅出现 1 次,未达创建阈值)、[[滴滴]](Entity 已存在) -- Source page: wiki/sources/ai-解决方案专家培训课程.md -- Notes: source page 新建完成;index.md Sources 节已添加条目;overview.md 第 580 行已有详细综合摘要,内容一致无需修订;冲突检测:无明显内容冲突 - -## [2026-04-28] ingest | RAG从入门到精通系列1:基础RAG -- Source file: AI/RAG从入门到精通系列1:基础RAG.md -- Status: ✅ 成功摄入 -- Summary: RAG 基础教程第一篇,系统讲解基础 RAG 的 Indexing(加载→切分→向量化入库)→ Retrieval(向量相似度检索 Top-k)→ Generation(问题+上下文→LLM 生成带事实依据答案)三阶段流程。实战工具链:Qwen(LLM)+ BAAI(BGE Embedding)+ LangChain(应用编排)+ Qdrant(向量数据库) -- Concepts created: [[Indexing]](新建 Concept)、[[Retrieval]](新建 Concept)、[[Generation]](新建 Concept)、[[Vector-Store]](新建 Concept) -- Entities created: [[LangChain]](新建 Entity)、[[Qdrant]](新建 Entity) -- Source page: wiki/sources/rag从入门到精通系列1-基础rag.md -- Notes: source page 新建完成;index.md Sources 节该条目已存在,无需重复添加;overview.md 第 511 行已有详细综合摘要,内容一致无需修订;冲突检测:与 [[Personal-Knowledge-Base-RAG]] 互补(前者侧重概念解析,后者侧重实战应用);与 [[大模型相关术语和框架总结]] 互补(后者将 RAG 列为术语,前者深入机制详解);与 [[llms-rag-ai-agent-三个到底什么区别]] 互补(后者将 RAG 定义为"随身图书馆助理",本文深入三阶段机制,相互印证) - -## [2026-03-15] ingest | 固定镜头短视频制作的AI全流程解析 -- Source file: AI/固定镜头短视频制作的AI全流程解析.md -- Status: ✅ 成功摄入 -- Summary: 利用AI技术快速高效制作高播放量家装类短视频的全套流程——三大关键词:固定机位、内容连续变化、时间压缩;五步公式:拆分镜头 → 一致性图像生成(九宫格法)→ 首尾针动画制作 → 快速剪辑(2-4倍速+硬切)→ 声音设计;AI工具分类:大脑类(XAR GPT/GEMALA)、设计师类(Midjourney/Nano Banana)、动效类(海螺AI/KAI);全流程可在10分钟内完成 -- Concepts created: [[九宫格法]](新建 Concept)、[[首尾针动画]](新建 Concept) -- Entities created: [[Google AI Studio]](新建 Entity)、[[KAI]](已存在,新建 Entity 页面) -- Source page: wiki/sources/固定镜头短视频制作的ai全流程解析.md -- Notes: source page 新建完成,index.md Sources 节已添加新条目(最前);index.md Concepts 节已添加 [[九宫格法]] [[首尾针动画]];index.md Entities 节已添加 [[Google AI Studio]];overview.md 已添加综合摘要(置于"知识与资源"区段顶部);冲突检测:与 [[我的工具集]] 的 Image-to-Video 工具互补——前者提供系统性方法论,后者提供具体工具选型,无冲突 - -## [2026-04-28] ingest | 大模型相关术语和框架总结|LLM、MCP、Prompt、RAG、vLLM、Token、数据蒸馏 -- Source file: AI/大模型相关术语和框架总结|LLM、MCP、Prompt、RAG、vLLM、Token、数据蒸馏.md -- Status: ✅ 成功摄入 -- Summary: 通俗解读大模型生态关键术语——LLM(≥1B参数)、MCP(连接外部工具的标准化协议)、Agent(LLM+MCP实现自动化执行)、RAG(通过外部检索消除幻觉,正确率60%→90%)、Embedding(词向量语义距离)、vLLM(PagedAttention+连续批处理优化GPU显存)、Token(英文≈0.3/字、中文≈0.6/字)、数据蒸馏(大模型生成精简数据训练小模型) -- Concepts: [[Large Language Model]](已存在,新引用源)、[[Model-Context-Protocol]](已存在,新引用源)、[[Agent]](已存在,新引用源)、[[RAG]](已存在,新引用源)、[[Embedding]](已存在,新引用源)、[[Hallucination]](已存在,新引用源)、[[Token]](已存在,新引用源)、[[PagedAttention]](已存在,新引用源)、[[KV-Cache]](已存在,新引用源)、[[Continuous-Batching]](已存在,新引用源)、[[Prompt]](已存在,新引用源)、[[Data-Distillation]](已存在,新引用源) -- Entities: [[vLLM]](新建 Entity 页面) -- Source page: wiki/sources/大模型相关术语和框架总结|llm-mcp-prompt-rag-vllm-token-数据蒸馏.md -- Notes: source page 新建完成,index.md Sources 节已添加新条目(最前);index.md Entities 节新增 [[vLLM]];index.md Concepts 节新增 [[Agent]] [[Continuous-Batching]] [[Data-Distillation]] [[Embedding]] [[Hallucination]] [[KV-Cache]] [[PagedAttention]] [[Prompt]] [[Token]](其余均已存在并更新引用);overview.md 已添加综合摘要;冲突检测:与 [[llms-rag-ai-agent-三个到底什么区别]] 无冲突——后者从系统架构层面区分三者关系,本文档提供通俗定义与机制解释,二者互补 - -## [2026-04-28] ingest | Nano-Banana Pro Prompting Guide & Strategies 1 -- Source file: raw/AI/Nano-Banana Pro Prompting Guide & Strategies 1.md -- Status: ✅ 成功摄入 -- Summary: Google Nano-Banana Pro(Gemini)图像生成模型的提示词工程完整指南,涵盖 10 大模块:黄金法则(编辑优于重生成、自然语言)、文本渲染与信息图、角色一致性与病毒式缩略图、Google Search 实时数据可视化、高级编辑(In-painting/上色)、2D↔3D 维度翻译、4K 高分辨率输出、思维推理、故事板与概念艺术、结构控制与布局引导。核心方法论:像创意总监一样思考,停止标签堆砌,利用模型的"思维模式"理解意图、物理和构图。 -- Concepts created: [[提示词工程]](已存在,已引用本文为 Source)、[[身份锁定(Identity Locking)]](内嵌引用,未达独立建页阈值)、[[思维模式(Thinking Mode)]](内嵌引用,未达独立建页阈值)、[[语义编辑(Semantic Editing)]](内嵌引用,未达独立建页阈值)、[[维度翻译(Dimensional Translation)]](内嵌引用,未达独立建页阈值) -- Source page: wiki/sources/nano-banana-pro-prompting-guide-strategies-1.md -- Notes: source page 新建完成,index.md Sources 节第一条已添加;Google-AI-Studio.md Entity 页面已存在(Nano-Banana Pro 的使用接口),已引用本文为 Source;概念 [[提示词工程]].md 已存在,已引用本文为 Source;冲突检测:暂无与其他 Wiki 页面的冲突 - -## [2026-07-15] ingest | 3.2 万人收藏的 Claude Skills,才是 AI 这条路上最值得研究的一套范式! -- Source file: raw/AI/3.2 万人收藏的 Claude Skills 才是 AI 这条路上最值得研究的一套范式!.md -- Status: ✅ 成功摄入 -- Summary: Anthropic 官方 Claude Skills 仓库(github.com/anthropics/skills,3.2万收藏)全面解析——Skills = 说明书 + SOP,将反复执行的任务拆解为 AI 能理解、能复用、能自动执行的流程。核心范式转变:从「提示词工程」到「流程工程」;Vibe Coding 的尽头也是 Skills;真正有价值的不是 Prompt 写得好的人,而是能将经验沉淀成 SOP 的人。涵盖三大类 Skills:办公自动化、开发者工具、创意类技能。 -- Concepts: [[Claude Skills]](已存在,已引用本文为 Source)、[[流程工程(Workflow Engineering)]](已存在,已引用本文为 Source)、[[Vibe Coding]](已存在,已引用本文为 Source)、[[SOP]](内嵌引用) -- Entities: [[Anthropic]](已有 Entity 页,已更新 Claude Skills 章节)、[[Claude.ai]](内嵌引用,未达独立建页阈值)、[[ComposioHQ]](内嵌引用,未达独立建页阈值)、[[VoltAgent]](内嵌引用,未达独立建页阈值)、[[BehiSecc]](内嵌引用,未达独立建页阈值) -- Source page: wiki/sources/3-2-万人收藏的-claude-skills-才是-ai-这条路上最值得研究的一套范式.md -- Notes: source page 新建完成,index.md Sources 节已添加新条目(位于 -1 版本之前);overview.md 已有 Claude Skills 综合摘要,内容一致,无需更新;Entity/Concept 页面均已存在并已引用本文为 Source;冲突检测:与 [[github-上-5000-人收藏的-vibe-coding-神级指南]] 关于「结构化 SOP vs 直觉式引导」的张力已记录 - -## [2026-04-28] ingest | 如何写出完美的Prompt(提示词)? -- Source file: raw/AI/如何写出完美的Prompt(提示词)?.md -- Status: ✅ 成功摄入 -- Summary: 系统阐述职场 Prompt 方法论的完整方法体系,涵盖基础技巧(需求拆解、上下文补全、格式定义、示例引导)、进阶策略(思维链、任务拆分、角色赋能、预填回复、不确定性管理)、高阶技巧(跨模态联动、领域知识注入、反馈循环嵌入)及四大业务场景(内容创作、数据分析、方案策划、客户服务)实战模板。核心论断:Prompt 能力本质是结构化思维+精准表达,是 AI 时代职场人的底层能力。 -- Concepts touched: [[Prompt工程]](Source 内建立 wikilink,concepts/ 目录为空,concepts/ 暂无独立页面)、[[结构化思维]](同上)、[[思维链提示]](同上)、[[少样本提示]](同上)、[[角色赋能法]](同上)、[[任务拆分法]](同上)、[[预填回复法]](同上)、[[不确定性管理]](同上)、[[迭代优化]](同上) -- Entities touched: [[粒粒]](微信公众号作者,concepts/ 目录为空,entities/ 暂无独立页面,未达建页阈值) -- Source page: wiki/sources/如何写出完美的prompt-提示词.md -- Notes: Source page 新建完成,index.md Sources 节第一条已添加;overview.md 已有相关提示词/结构化内容,Source 页面通过 Connections 建立与 [[系统提示词构建原则]] 和 [[Vibe Coding]] 的关联,暂无需更新 overview;concepts/ 和 entities/ 目录为空(无独立页面),本文引用的所有 Concepts/Entities 均以内嵌 wikilink 形式保存在 Source 页面中;冲突检测:与 [[系统提示词构建原则]] 在"角色设定"维度存在视角差异(详见 Source 页 Contradictions 节) - -## [2026-06-15] ingest | codecrafters-io/build-your-own-x -- Source file: raw/AI/codecrafters-iobuild-your-own-x Master programming by recreating your favorite technologies from scratch.md -- Status: ✅ 成功摄入 -- Summary: 通过"从零重建技术"掌握编程的 GitHub 标杆仓库,含 25+ 技术领域分步指南(Database、Git、Docker、Operating System、Programming Language、Neural Network 等)。核心理念:Richard Feynman"我不能创造的东西,我就不理解"。方法论:Learn By Building。来源:codecrafters-io/build-your-own-x,由 Daniel Stefanovic 创始、CodeCrafters 维护。 -- Concepts touched: [[Learn By Building]](overview.md 已有章节,本次引用)、[[Build Your Own X]](overview.md 已有章节,本次引用) -- Entities touched: [[CodeCrafters]](主维护方,未达独立建页阈值)、[[Daniel Stefanovic]](创始人,未达独立建页阈值)、[[Richard Feynman]](引言来源,未达独立建页阈值) -- Source page: wiki/sources/codecrafters-iobuild-your-own-x-master-programming-by-recreating-your-favorite-technologies-from-scratch.md -- Notes: source page 新建完成,index.md Sources 节第一条已添加;overview.md Build Your Own X 章节已更新引用本文为来源,并新增 Learn By Building 方法论说明;冲突检测:暂无冲突 - -## [2026-06-12] ingest | 系统提示词构建原则 -- Source file: raw/AI/系统提示词构建原则.md -- Status: ✅ 成功摄入 -- Summary: AI Coding Agent 的系统提示词设计框架,涵盖六大维度:核心身份与行为准则(遵守项目约定、优先技术准确性)、沟通与互动规范(专业简洁、减少冗余)、任务执行与工作流(TODO列表规划、分步验证)、技术编码规范(清晰可读、模块化)、安全与防护(最小权限、保护密钥)、工具使用原则(并行执行、专用工具优先)。源自 vibe-coding-cn 项目,为 Vibe Coding 提供操作层指南。 -- Concepts touched: [[Vibe Coding]](已存在,本文深化行为准则)、[[SEARCH/REPLACE]](内嵌引用,未达独立建页阈值)、[[最小权限原则]](已有页面内嵌引用)、[[TODO列表规划]](内嵌引用,未达独立建页阈值) -- Entities touched: [[vibe-coding-cn]](已有 Entity 页 tukuai.md,已引用本文为 Source) -- Source page: wiki/sources/系统提示词构建原则.md -- Notes: source page 新建完成,index.md Sources 节第一条已添加;overview.md 已有引用(line 490 关联 Vibe Coding 中文指南,line 554 关联 Prompt 提示词体系),无需更新;Entity/Concept 页检查:tukuai/vibe-coding-cn 已有、Vibe Coding 已有,无需新建;冲突检测:暂无冲突 - -## [2026-06-12] ingest | How to Get the RSS Feed For Any YouTube Channel | Chuck Carroll -- Source file: raw/AI/How to Get the RSS Feed For Any YouTube Channel.md -- Status: ✅ 成功摄入 -- Summary: Chuck Carroll分享获取YouTube频道RSS feed的免费方法——无需注册任何服务,只需查看频道页面源代码,搜索`channel_id=`即可获得RSS URL。YouTube移除RSS按钮是为了防止用户绕过官网访问内容。 -- Concepts touched: [[RSS]](内嵌引用,未达独立建页阈值)、[[RSS阅读器]](内嵌引用,未达独立建页阈值) -- Entities touched: [[YouTube]](内嵌引用,未达独立建页阈值)、[[LawrenceSystems]](内嵌引用,未达独立建页阈值) -- Source page: wiki/sources/how-to-get-the-rss-feed-for-any-youtube-channel.md -- Notes: source page 新建完成,index.md Sources 节第一条已添加;overview.md 未更新(该文为工具方法类内容,无需综合摘要更新);冲突检测:暂无冲突 - -## [2026-06-12] ingest | 3.2 万人收藏的 Claude Skills,才是 AI 这条路上最值得研究的一套范式! -- Source file: raw/AI/3.2 万人收藏的 Claude Skills 1.md -- Status: ✅ 成功摄入 -- Summary: Anthropic 官方 Skills 仓库(github.com/anthropics/skills)全面解析——Claude Skills 是写给 Claude 的「说明书」+ SOP,将反复执行的任务拆解为 AI 能理解、能稳定复用、能自动执行的流程。核心范式转变:从「提示词工程」到「流程工程」;Vibe Coding 的尽头也是 Skills;真正有价值的不是 Prompt 写得好的人,而是能将经验沉淀成 SOP 的人。涵盖三大类 Skills:办公自动化、开发者工具、创意类技能。附 Awesome 精选仓库和 Skill 聚合站推荐。 -- Concepts: [[Claude Skills]](已存在,已引用本文为 Source)、[[流程工程(Workflow Engineering)]](已存在,已引用本文为 Source)、[[SOP]](内嵌引用) -- Entities: [[Anthropic]](已有 Entity 页,已更新 Claude Skills 章节)、[[Claude.ai]](内嵌引用,未达独立建页阈值)、[[shenwei]](内嵌引用,未达独立建页阈值) -- Source page: wiki/sources/3-2-万人收藏的-claude-skills-才是-ai-这条路上最值得研究的一套范式-1.md -- Notes: source page 新建完成,index.md Sources 节第一条已添加;overview.md 新增综合分析条目;Entity/Concept 页面均已存在并已更新;冲突检测:与 [[vibe-coding经验收集]] 关于「流程沉淀 vs 敏捷验证」的张力已记录;Claude Skills 和 Workflow Engineering Concept 页面已引用本文为 Source,无需额外更新 - -## [2026-06-12] ingest | 不会Gemini的产品经理真的要被淘汰了 | 附保姆级PRD生成指南 -- Source file: raw/AI/不会Gemini的产品经理真的要被淘汰了 附保姆级PRD生成指南.md -- Status: ✅ 成功摄入 -- Summary: 产品经理Kira2red分享Gemini辅助PRD生成的保姆级教程——四步工作流:①FeatureList构思需求框架(大模型生成层级式功能表)、②Mermaid画逻辑图(ER图/时序图/泳道图)、③分页面逐一描述生成PRD+HTML原型、④调教迭代至符合标准。核心方法论:"人负责想,大模型负责写",可将文档工作时间缩短90%以上。深层洞察:AI进化速度超预期,但"不会用AI的人被淘汰"的本质是不能将时代新工具嵌入自身能力体系;市场洞察才是产品经理最稀缺的能力。涉及纯银"技术服务于市场洞察"观点。 -- Concepts created: [[Mermaid]](新建) -- Entities created: [[Kira2red]](新建)、[[纯银]](新建) -- Source page: wiki/sources/不会gemini的产品经理真的要被淘汰了-附保姆级prd生成指南.md -- Notes: FeatureList、PRD生成工作流、超级个体三个Concept页面已存在且内容一致,本次复用;ER图/时序图归入Mermaid Concept;无内容冲突 - -## [2026-06-12] ingest | Never write another prompt -- Source file: raw/AI/Never write another prompt.md -- Status: ✅ 成功摄入 -- Summary: AI 提示词自动生成工具教程——将简单描述性文字自动转换为结构化、专业级提示词,支持变量定制和保存复用,无需掌握提示词工程技巧。通过 Console Anthropic API 管理用量和成本。 -- Concepts touched: [[Prompt Engineering]](内嵌引用,未达独立建页阈值) -- Entities touched: [[ChatGPT]](内嵌引用,未达独立建页阈值)、[[Google Gemini]](内嵌引用,未达独立建页阈值)、[[Anthropic]](内嵌引用,未达独立建页阈值) -- Source page: wiki/sources/never-write-another-prompt.md -- Notes: source page 新建完成,index.md Sources 节第一条已添加;overview.md 新增第21条综合分析"提示词工程的民主化";冲突检测:与[[Useful Prompt Lib]]已记录互补关系,无冲突 - -## [2026-06-12] ingest | 一语点醒梦中人 -- Source file: raw/AI/一语点醒梦中人.md -- Status: ✅ 成功摄入 -- Summary: 中国古典哲学醒世箴言合集,涵盖儒释道三家核心智慧——王维"行到水穷处,坐看云起时"、曾国藩"忘机消众机"、老子"守中/和光同尘"、庄子"安之若命"、《金刚经》"有为法如梦幻泡影"等。整合出"尽人事、听天命"的东方修身哲学体系。 -- Entities created: [[王维]]、[[曾国藩]]、[[庄子]]、[[老子]] -- Concepts created: [[空性智慧]]、[[安之若命]]、[[忘机]]、[[守中]]、[[执一守中]]、[[和光同尘]] -- Source page: wiki/sources/一语点醒梦中人.md -- Notes: source page 新建完成;index.md Sources 节第一条已添加;overview.md 新增第20条综合分析;Entity/Concept 页面全部新建(首次出现);冲突检测:与[[养虾日记5]]关于"积极进取vs安然接受"的互补张力已记录 - -## [2026-06-11] ingest | Best 7 news API data feeds - AI News -- Source file: raw/AI/Best 7 news API data feeds - AI News.md -- Status: ✅ 成功摄入 -- Summary: 7大新闻API横向评测——Webz.io(覆盖最深,含暗网数据,适合金融/网络安全)、GNews API(轻量级低价,适合创业公司)、The Guardian API(高质量编辑内容)、Bloomberg API(专注金融实时数据)、Financial Times API(Premium商业内容)、Opoint(多语言舆情监测)、Mediastack(7500+来源,免费友好)。覆盖金融情报、媒体监测、开发者友好三大选型方向。 -- Concepts touched: [[NewsAPI]](内嵌引用,未达独立建页阈值)、[[SentimentAnalysis]](内嵌引用,未达独立建页阈值)、[[RealTimeDataFeed]](内嵌引用,未达独立建页阈值)、[[FinancialIntelligence]](内嵌引用,未达独立建页阈值)、[[MediaMonitoring]](内嵌引用,未达独立建页阈值) -- Entities touched: [[Webz.io]](内嵌引用,未达独立建页阈值)、[[GNewsAPI]](内嵌引用,未达独立建页阈值)、[[TheGuardianAPI]](内嵌引用,未达独立建页阈值)、[[BloombergAPI]](内嵌引用,未达独立建页阈值)、[[FinancialTimesAPI]](内嵌引用,未达独立建页阈值)、[[Opoint]](内嵌引用,未达独立建页阈值)、[[Mediastack]](内嵌引用,未达独立建页阈值) -- Source page: wiki/sources/best-7-news-api-data-feeds-ai-news.md -- Notes: source page 新建完成,index.md Sources 节第一条已添加;overview.md 无相关现有内容,无需更新;冲突检测:暂无冲突 - -## [2026-04-28] ingest | Useful Prompt Lib -- Source file: raw/AI/Useful Prompt Lib.md -- Status: ✅ 成功摄入 -- Summary: Anthropic Claude Prompt Library 汇总文档,由 shenwei 针对 TikTok 跨境电商业务精选推荐三大提示词:Babel's broadcasts(多语言本地化改写)、Review classifier(评论分类自动化)、Data organizer(非结构化数据转 JSON)。附带 60+ 提示词汇总表,覆盖代码、创意、教育、电商等多个场景。 -- Concepts touched: [[Prompt Engineering]](内嵌引用,未达独立建页阈值)、[[Multilingual Localization]](内嵌引用,未达独立建页阈值)、[[Sentiment Classification]](内嵌引用,未达独立建页阈值)、[[Structured Data Extraction]](内嵌引用,未达独立建页阈值) -- Entities touched: [[Anthropic]](已有 entity 页,未重复创建)、[[TikTok]](内嵌引用,未达独立建页阈值)、[[shenwei]](内嵌引用,未达独立建页阈值)、[[Claude]](内嵌引用,未达独立建页阈值) -- Source page: wiki/sources/useful-prompt-lib.md -- Notes: source page 新建完成,index.md Sources 节已添加;overview.md 无相关现有内容,无需更新;冲突检测:与[[电商视频Prompt库]]无明显冲突,侧重点不同 - -## [2026-06-11] ingest | 二创视频必不可少!2025年最热门AI工具推荐合集-AI配音、声音克隆 -- Source file: raw/AI/二创视频必不可少!2025年最热门AI工具推荐合集-AI配音、声音克隆 -- Status: ✅ 成功摄入 -- Summary: 2025年主流AI配音及声音克隆工具推荐合集——涵盖ElevenLabs(国际顶流,30+语言,情感语音)、海螺AI(MiniMax出品,30秒克隆,免费友好)、F5-TTS(开源2秒克隆,本地部署)、TTSMaker(每周3万字免费,300+音色)、剪映(短视频集成)、魔音工坊(500+音色,企业级)、AnyVoice(3秒克隆黑科技)共7款工具的详细对比及选型建议 -- Concepts touched: [[AI配音]](内嵌引用,未达独立建页阈值)、[[声音克隆]](内嵌引用,未达独立建页阈值)、[[情绪语音合成]](内嵌引用,未达独立建页阈值) -- Entities touched: [[ElevenLabs]](内嵌引用,未达独立建页阈值)、[[海螺AI]](内嵌引用,未达独立建页阈值)、[[F5-TTS]](内嵌引用,未达独立建页阈值)、[[TTSMaker]](内嵌引用,未达独立建页阈值)、[[剪映]](内嵌引用,未达独立建页阈值)、[[魔音工坊]](内嵌引用,未达独立建页阈值)、[[AnyVoice]](内嵌引用,未达独立建页阈值)、[[MiniMax]](内嵌引用,未达独立建页阈值)、[[Ai牛叔]](内嵌引用,未达独立建页阈值) -- Source page: wiki/sources/二创视频必不可少-2025年最热门ai工具推荐合集-ai配音-声音克隆.md -- Notes: source page 新建完成,index.md Sources 节已添加;overview.md 无相关现有内容,无需更新;冲突检测:暂无冲突 - -## [2026-06-10] ingest | The Picture They Paint of You -- Source file: raw/AI/The Picture They Paint of You.md -- Status: ✅ 成功摄入 -- Summary: Ferd(ferd.ca)关于 AI 工具营销话语框架的批判性分析——系统性对比 10+ 款 AI SRE 产品与 8 款编码助手的产品命名和营销话语,揭示两者截然不同的价值叙事:编码助手被赋予"增强工程师"定位,AI SRE 被宣传为消除"低效工作"和克服"人类局限性"的替代性工具。核心结论:产品框架揭示买卖双方对工种的真实价值判断,而非工具能力边界;泰勒主义式"软件工厂"框架缺乏尊重且概念薄弱。 -- Concepts touched: [[Taylorism]](内嵌引用,未达独立建页阈值)、[[Framing]](内嵌引用,未达独立建页阈值)、[[The Leftover Principle]](内嵌引用,未达独立建页阈值)、[[Anthropomorphism]](内嵌引用,未达独立建页阈值) -- Entities touched: [[Claude Code]](内嵌引用,未达独立建页阈值)、[[Copilot]](内嵌引用,未达独立建页阈值)、[[Cursor]](内嵌引用,未达独立建页阈值)、[[Codex]](内嵌引用,未达独立建页阈值)、[[Ciroos]](内嵌引用,未达独立建页阈值)、[[Cleric]](内嵌引用,未达独立建页阈值)、[[Ferd]](内嵌引用,未达独立建页阈值) -- Source page: wiki/sources/the-picture-they-paint-of-you.md -- Notes: source page 新建完成,index.md Sources 节第一条已添加;overview.md AI Tools & Prompt Engineering 章节新增"AI 工具话语框架批判"条目;冲突检测:与"将事件视为学习机会"(Ferd 另一篇文章)存在直接观点冲突,已记录于 source page Contradictions 节 - -## [2026-04-28] ingest | Nano Banana 提示词框架 -- Source file: raw/AI/Nano Banana 提示词框架.md -- Status: ✅ 成功摄入 -- Summary: Google Nano Banana 提示词框架 —— 结构化 JSON 提示词模板,提供物件描述框架和人物描述框架两种模板,涵盖 shot、subject、environment、lighting、camera、color_grade、style、quality、negatives 等关键参数 -- Concepts touched: [[Nano Banana 提示词框架]](已建 source page) -- Entities touched: [[Google]](未达独立建页阈值,内嵌引用) -- Source page: wiki/sources/nano-banana-提示词框架.md -- Notes: source page 新建完成,index.md Sources 节顶部第一条已添加;与 [[Nano Banana Pro提示词指南]] 存在关联关系(Pro指南为进阶应用),已在 source page Connections 节记录;冲突检测:暂无冲突 - -## [2026-05-07] ingest | 谷歌深夜甩出一份【Nano Banana Pro提示词指南】,手把手教你生产专业级内容,实战案例+提示词模版 -- Source file: raw/AI/谷歌深夜甩出一份【Nano Banana Pro提示词指南】,手把手教你生产专业级内容,实战案例+提示词模版.md -- Status: ✅ 成功摄入 -- Summary: Google生成式AI团队发布的Nano Banana Pro官方提示词指南,10条黄金法则+7大能力模块,从"关键词堆砌"到"创意总监式思维"的范式转变,支持14张参考图像身份锁定、4K分辨率、Google搜索信息锚定等功能 -- Concepts touched: [[意图理解引擎]](未达独立建页阈值,内嵌引用)、[[身份锁定]](未达独立建页阈值,内嵌引用)、[[对话式编辑]](未达独立建页阈值,内嵌引用)、[[信息锚定]](未达独立建页阈值,内嵌引用) -- Entities touched: [[Google Generative AI]](未达独立建页阈值,内嵌引用)、[[Nano Banana Pro]](未达独立建页阈值,内嵌引用)、[[三次方科技风口]](未达独立建页阈值,内嵌引用) -- Source page: wiki/sources/谷歌深夜甩出一份-nano-banana-pro提示词指南-手把手教你生产专业级内容-实战案例-提示词模版.md -- Notes: source page新建完成,index.md Sources节第一条已添加;overview.md第558行已有完整Nano Banana Pro提示词指南综合条目,内容一致,无需额外更新;冲突检测:与"标签堆砌"传统AI提示词观点存在冲突,已记录于source page Contradictions节 - -## [2026-05-07] ingest | 详细!离线部署大模型:ollama+deepseek+open-webui安装使用方法及常见问题解决 -- Source file: raw/AI/详细!离线部署大模型:ollama+deepseek+open-webui安装使用方法及常见问题解决 1.md -- Status: ✅ 成功摄入 -- Summary: ollama + DeepSeek + Open WebUI 本地离线部署全指南——覆盖多平台安装(原生/Docker)、DeepSeek-R1 全系列硬件规格对照表、间隔性重试加速下载、魔塔/hf-mirror 第三方源下载、nginx API KEY 安全防护、Open WebUI Docker-compose 一键部署与 RAG 本地知识库配置。核心价值:免费、无API Key、数据完全私有。 -- Concepts touched: [[RAG]](已存在 sources 已有本 source)、[[Local-LLM-Deployment]](已存在 sources 已有本 source)、[[Docker-LLM-Deployment]](已存在 sources 已有本 source) -- Entities touched: [[Ollama]](已存在 sources 已有本 source)、[[DeepSeek]](已存在 sources 无需更新)、[[Open WebUI]](已存在 sources 已有本 source) -- Source page: wiki/sources/详细-离线部署大模型-ollama-deepseek-open-webui安装使用方法及常见问题解决-1.md -- Notes: source page 新建完成,index.md Sources 节第一条已添加;overview.md 第560行已有完整「Ollama 本地 LLM 部署」综合条目,内容一致,无需额外更新;冲突检测:与 [[清华出的deepseek使用手册]] 互补(工程部署 vs 使用技巧),已记录于 source page Contradictions 节 - -## [2026-04-28] ingest | OpenAI ChatGPT 个性化定义 -- Source file: raw/AI/OpenAI ChatGPT 个性化定义.md -- Status: ✅ 成功摄入 -- Summary: 用户 Weishen 为 ChatGPT 配置的个性化指令集——包含交互风格偏好(高度有条理、详细解释、不道德说教、URL末尾统一引用)、专业背景(47岁/前云服务交付高级经理/现TikTok跨境电商创业者)和使用场景。核心配置原则:Expert User Assumption(视为全领域专家)、Proactive AI(主动预判需求)、Error Accountability(错误零容忍+配置质量下降时反馈)。Custom Instructions 两条配置永久生效,无需每次重复说明。 -- Concepts touched: [[Custom Instructions]], [[Personalization]], [[Proactive AI]], [[Expert User Assumption]], [[Error Accountability]] -- Entities touched: [[Weishen]](源页面 Key Entities 引用,未达独立建页阈值) -- Source page: wiki/sources/openai-chatgpt-个性化定义.md -- Notes: source page 新建完成,index.md Sources 节顶部第一条已添加;overview.md 第507行已有完整 ChatGPT 个性化配置综合章节,第673行 ChatGPT Entity 已有引用,无需额外更新;冲突检测:与 [[养虾日记5]] 关于"AI身份是否应主动呈现"存在观点差异,已记录于 source page Contradictions 节 - -## [2025-12-18] ingest | 清华出的DeepSeek使用手册,104页,真的是太厉害了!(免费领取) -- Source file: raw/AI/清华出的DeepSeek使用手册,104页,真的是太厉害了!(免费领取).md -- Status: ✅ 成功摄入 -- Summary: 清华大学《DeepSeek从入门到精通2025》手册——104页,系统讲解DeepSeek技术原理、提示词设计、避免AI幻觉技巧及多种应用场景(智能对话/文本生成/代码生成)。区别于市面简单改写GPT说明书的粗糙教程,真正从原理出发,"授人以渔"。 -- Concepts created: [[提示词工程]](AI提示词设计的系统性方法论)、[[AI幻觉]](AI模型生成错误内容的核心挑战及避免技巧) -- Entities created: [[DeepSeek]](专注于AGI的中国科技公司)、[[清华大学]](发布手册的顶尖学府)、[[余梦珑]](手册作者,清华大学博士后) -- Source page: wiki/sources/清华出的deepseek使用手册-104页-真的是太厉害了-免费领取.md -- Notes: source page 新建完成,index.md Sources 节第一条已添加;overview.md 未做更新(该手册属AI入门/提示词工程垂直内容,overview.md 中无直接对应章节);冲突检测:无冲突 - -## [2026-04-23] ingest | 文字生成视频网站推荐 -- Source file: raw/AI/文字生成视频网站推荐.md -- Status: ✅ 成功摄入(source page 新建完成,index.md 已更新日期前缀和一行摘要) -- Summary: 5款AI文字生成视频工具横评——万彩AI(完全免费/100+模板/数字人)、百度AI开放平台(多模态技术/免费套餐)、Zeemo(95种语言转录/98%准确率)、Vizard(长视频自动剪辑/高光提取)、快影(腾讯系/模板化剪辑)。按用户需求分层推荐:免费首选、技术型、多语言需求、长视频处理。 -- Concepts created: 无需新建(文字生成视频/数字人/多模态技术/自动剪辑 仅出现 1 次,未达独立建页阈值,均以内嵌 wikilink 引用存在) -- Entities created: 无需新建(万彩AI/百度AI开放平台/Zeemo/Vizard/快影 均仅出现 1 次,未达独立建页阈值,均以内嵌 wikilink 引用存在) -- Source page: wiki/sources/文字生成视频网站推荐.md -- Notes: index.md Sources 节第500行条目已补加日期前缀 [2026-04-23] 和一行摘要;overview.md 已有 [[14个免费的AI图生视频工具]] 章节覆盖图生视频,本文档侧重文字生成,两者互补,overview.md 无需新增条目;冲突检测:与 [[14个免费的AI图生视频工具]] 的侧重点差异已记录于 source page Contradictions 节(文字生成 vs 图生视频,互补而非冲突) - -## [2026-04-28] ingest | Google 神级生产力工具,所有 GitHub 开源平替都找到了。 -- Source file: raw/AI/Google 神级生产力工具,所有 GitHub 开源平替都找到了。.md -- Status: ✅ 成功摄入(source page 新建完成,index.md 已更新) -- Summary: NotebookLM 的 7 款 GitHub 开源替代品全景盘点——Open Notebook(14.6k Stars,全功能本地化)、SurfSense(11.4k Stars,NotebookLM+Perplexity+Glean 综合替代)、Podcastfy(专注播客生成,整合 100+ LLM)、NotebookLlama(LlamaIndex 官方,文档转播客技术链条)、PageLM(教育场景,康奈尔笔记+间隔重复闪卡)、InsightsLM(低代码架构,Supabase+N8N,支持完全离线)。覆盖从全功能替代到垂直聚焦的不同需求层次。 -- Concepts created: 无需新建([[Podcast Generation]]/[[Spaced Repetition]]/[[RBAC]] 等 Concept 均已在 overview.md 综合记录,本来源中仅出现 1 次,未达独立建页阈值) -- Entities created: 无需新建(所有关键实体均已在 overview.md 综合记录,本来源中仅出现 1 次,未达独立建页阈值) -- Source page: wiki/sources/google-神级生产力工具-所有-github-开源平替都找到了.md -- Notes: index.md Sources 节第一条已添加新条目及一行摘要;overview.md 第513行已有完整的「NotebookLM 开源平替生态」章节,涵盖全部 6 款开源工具,与本 source page 内容一致,无需额外更新;冲突检测:无冲突 - -## [2026-04-27] ingest | 教學 ChatGPT 先做知識整理,再讓 Canva、Gamma AI 輸出簡報 -- Source file: raw/AI/教學 ChatGPT 先做知識整理,再讓 Canva、 Gamma AI 輸出簡報.md -- Status: ✅ 成功摄入(source page 新建完成,index.md 已更新日期前缀和一行摘要) -- Summary: AI 簡報的正確工作流——先用 ChatGPT 做資料研究與知識整理(5分鐘調閱10+素材→1分鐘建立知識架構→1分鐘輸出結構化簡報大綱),再將大綱貼入 Canva/Gamma AI 生成精美版面。核心結論:「簡報不是從版面設計開始,而是從資料研究開始。」 -- Concepts created: 無需新建([[AI簡報工作流]] 已存在並已引用本文檔;SSOT/防彈筆記法 均以內嵌引用存在,未達獨立建頁閾值) -- Entities created: 無需新建([[Canva]]/[[Gamma AI]]/[[ChatGPT]] Entity 頁面均已存在並已引用本文檔) -- Source page: wiki/sources/教學-chatgpt-先做知識整理-再讓-canva-gamma-ai-輸出簡報.md -- Notes: index.md 第499行 Sources 條目已補加日期前綴 [2025-10-26] 和一行摘要;overview.md 第590行已有完整的「AI 簡報自動化工作流」章節,內容一致無需更新;[[Canva]] Entity 頁面 sources 已有本 source;[[Gamma AI]] Entity 頁面 sources 已有本 source;[[ChatGPT]] Entity 頁面 sources 已有本 source;[[AI簡報工作流]] Concept 頁面 sources 已有本 source;衝突檢測:與直接用 Canva/Gamma 生成簡報的主流做法衝突已記錄於 source page Contradictions 節 - -## [2026-04-26] ingest | 养虾日记5:深夜与苏轼聊AI,他说:被浪打下去还能爬起来的才叫风流(重新摄取) -- Source file: raw/微信公众号/养虾日记5:深夜与苏轼聊AI,他说:被浪打下去还能爬起来的才叫风流.md -- Status: ✅ 成功摄入(重新摄取:源文件于 2026-04-26 12:35 修改,同步 date: 2026-04-26,新增 last_updated 字段) -- Summary: 用AI蒸馏历史人物思维框架创建"数字导师"——以苏东坡为首位实践,展示如何将千年前古人的心智模型(六道:进退由时/此心安处/辞达而已/逆境转化/自出新意/天人合一)转化为可运行的AI Skill。女娲·Skill造人术通过6个并行Agent从6个维度(著作/对话/表达DNA/他者视角/决策/时间线)采集信息,提炼心智模型、决策启发式和表达DNA,产出自包含的.skill文件。核心洞察:AI时代用AI放大人类历史上最强大的脑子——学投资蒸馏芒格,学物理思维蒸馏费曼,逆境中保持风骨蒸馏苏东坡。 -- Concepts created: 无需新建([[数字导师]]/[[思维蒸馏(女娲造人术)]]/[[心智模型]]/[[AI-Skill]] 均已存在,本次更新 sources 引用) -- Entities created: [[女娲]](本次新建 Entity 页面) -- Entities updated: [[苏东坡]] 添加 sources: [养虾日记5] 引用 -- Source page: wiki/sources/养虾日记5-深夜与苏轼聊ai-他说-被浪打下去还能爬起来的才叫风流.md -- Notes: index.md Sources 节条目已添加日期前缀 [2026-04-26] 和一行摘要;index.md Entities 节新增女娲条目(含一行描述);Entity 页面苏东坡/女娲 均已添加 sources 引用;Concept 页面思维蒸馏(女娲造人术)已添加 sources 引用;overview.md 第72行已有完整章节,内容一致无需更新;冲突检测:无冲突(source page 已记录与养虾日记系列/思维蒸馏/Second Brain 的关系) - -## [2026-04-27] ingest | 如何在Ubuntu上安装OpenCode并配置Vibe-Kanban -- Source file: Vibe Coding/如何在Ubuntu上安装opencode并配置Vibe-Kanban.md -- Status: ✅ 成功摄入(source page 已存在,更新 date: 2026-04-27,新增 2 条 Key Quotes,更新 last_updated) -- Summary: OpenCode AI 编程代理安装、配置与使用完整指南——一键安装脚本、/connect 配置 LLM API Key、/init 生成 AGENTS.md、Plan/Build 双模式(Tab 切换)、/undo 重做、/share 对话分享。Source page 补充 2 条 Key Quotes(Plan 模式建议、对话分享功能)。 -- Concepts created: [[Vibe Coding]](AI 辅助编程工作流理念)、[[Plan Mode]](OpenCode 计划模式)、[[Build Mode]](OpenCode 构建模式)、[[AGENTS.md]](项目角色定义文件) -- Entities created: [[Vibe-Kanban]](看板式任务管理工具,与 OpenCode 配合实现 AI 驱动项目管理) -- Source page: wiki/sources/如何在ubuntu上安装opencode并配置vibe-kanban.md -- Notes: source page 已存在(date: 2026-04-22),本次更新 date→2026-04-27、添加 last_updated 字段、补充 Key Quotes;[[OpenCode]] Entity 已存在(last_updated: 2026-04-22),本次同步更新其 last_updated;index.md Sources 节第131行已有条目,补加 [2026-04-27] 日期前缀及一行摘要;index.md Entities 节 Vibe-Kanban 条目补加 [2026-04-27] 日期前缀及描述;index.md Concepts 节 Build-Mode/Plan-Mode/Vibe-Coding 条目补加 [2026-04-27] 日期前缀及描述;冲突检测:source page 已记录与 github-上-5000-人收藏的-vibe-coding-神级指南 的互补关系,无冲突 - -## [2026-04-27] ingest | 家庭网络环境概览(更新重摄入) - -- Source file: Home Office/家庭网络环境概览_2026-04-03.md -- Status: ✅ 成功摄入(更新重摄入:源文件新增 Mac Mini/Ubuntu1/Ubuntu2 FRP 端口映射表、完整域名映射表、科学上网代理端口等内容,source page 已同步) -- Summary: 完整记录家庭网络基础设施架构,包含公网VPS(RackNerd)、Mac Mini M4主控节点、Synology NAS DS718媒体中心、Ubuntu1监控服务器、Ubuntu2自动化服务器五节点;FRP内网穿透+Caddy反向代理实现公网访问;Docker容器化部署所有服务;Cloudflare DNS托管。新增内容:Mac Mini FRP(macmini-ssh 60026/vaultwarden 15151)、Ubuntu1/Ubuntu2 完整FRP端口映射表、21条Caddy域名映射表、科学上网代理端口状态表。重要架构变更:n8n已从Mac Mini迁移至Ubuntu2。 -- Concepts created: 无需新建(FRP、Caddy、内网穿透、反向代理、TCP隧道、Home Lab、Prometheus监控均已存在Entity/Concept页面) -- Entities created: 无需新建(RackNerd、Mac Mini、Synology NAS、Ubuntu Server、Jellyfin、Navidrome、Prometheus、Grafana、n8n、OpenClaw、Alertmanager、NodeExporter等Entity页面均已存在) -- Source page: wiki/sources/家庭网络环境概览_2026-04-03.md -- Notes: index.md 第130行条目已补加日期前缀 [2026-04-03] 和一行摘要;overview.md 第188-194行 Home Lab Infrastructure 章节内容完全覆盖本次更新,无需修订;source page 新增 last_updated: 2026-04-27 字段;冲突检测:无冲突(与同名穿透教程互补、与 Homarr/Portainer 部署文档无冲突) - -## [2026-04-27] ingest | 如何在Ubuntu Server安装 Docker & Docker Compose -- Source file: raw/Home Office/如何在Ubuntu Server安装 docker & docker compose.md -- Status: ✅ 成功摄入(source page 已存在,补全日期前缀) -- Summary: Ubuntu Server 通过 Docker 官方仓库安装 Docker Engine + Docker Compose V2 的五步指南——卸载旧包 → 配置 apt GPG 密钥和官方源 → 安装 docker-ce 等 5 个包 → 运行 hello-world 验证 → 将用户加入 docker 用户组实现免 sudo。核心要点:V2 版 compose 命令为 `docker compose`,不在单独安装 `docker-compose` 包。 -- Concepts: 无需新建(Docker Compose V2 和 Docker 用户组仅出现 1 次,不满足 ≥2 次条件) -- Source page: wiki/sources/如何在ubuntu-server安装-docker-docker-compose.md -- Notes: index.md 条目已补加 [2026-04-27] 日期前缀;Docker Entity 已存在且第 25 行已引用本 source page;overview.md 无需更新(Docker 是基础设施基础层,相关内容已完整覆盖);冲突检测:无冲突 - -## [2026-04-27] ingest | 安装Ubuntu 24.04.2在HP ZBook工作站笔记本上 -- Source file: raw/Home Office/安装Ubuntu-24.04.2在HP Zbook工作站笔记本上.md -- Status: ✅ 成功摄入(已存在页面,更新日期) -- Summary: HP ZBook 工作站笔记本安装 Ubuntu 24.04.2 Desktop 完整实操指南,含 Rufus 启动盘制作(GPT/ISOHybrid)、NVMe 硬盘分区(/boot/efi, /, /home, swap)、HP BIOS UEFI 设置(AHCI、关闭 Secure Boot/Fast Boot、切换 UEFI Only)、efibootmgr NVRAM BootOrder 重写、EFI 路径伪装修复。核心痛点是 HP BIOS 固执不持久化 NVRAM 启动项;终极解法是切换 Boot Mode 为 UEFI Only。 -- Source page: wiki/sources/安装ubuntu-24-04-2在hp-zbook工作站笔记本上.md -- Notes: 页面已存在,本次根据源文件修改时间(Apr 27 20:02)更新 date 为 2026-04-27 并补全日期前缀;index.md 条目已补充 [2026-04-27] 前缀;冲突检测无冲突;无需新建 Entity/Concept 页面 - -## [2026-04-27] ingest | 养虾日记4:一次「Context Limit Exceeded」错误排查 -- Source file: raw/微信公众号/养虾日记4: 一次「Context Limit Exceeded」错误排查:我以为是小问题,结果踩了大坑.md -- Status: ✅ 成功摄入 -- Summary: OpenClaw AI Agent 系统中 "Context Limit Exceeded" 错误的深度排查——问题根因是 Fallback 机制将 Telegram Channel 绑定了仅 16K context 的 deepseek-reasoner,safeguard 模式又预留 16K,导致实际可用空间为 0。核心教训:不要轻信表面错误信息;全局 compaction 配置与 Agent 级别模型配置是两层独立体系。 -- Concepts created: 无需新建(Model-Fallback/Layered-Configuration/Compaction/Agent-Routing-Rules/Log-Driven-Debugging/Hidden-Failure-Paths/Error-Surface-vs-Root-Cause 7个 Concept 均已存在并已添加 sources 引用) -- Concepts updated: [[Context-Window]] last_updated 从 2025-01-16 更新至 2026-04-10 -- Entities created: [[星枢]](xingshu/main agent Entity 新建完成) -- Entities updated: [[OpenClaw]] 添加 sources 引用,last_updated 更新至 2026-04-10 -- Source page: wiki/sources/养虾日记4-一次「context-limit-exceeded」错误排查-我以为是小问题-结果踩了大坑.md -- Notes: index.md Sources 节条目已存在(无日期前缀,已保持原样);index.md Entities 节新增星枢条目;冲突检测:无冲突(与养虾日记系列构成互补关系) - -## [2026-04-27] ingest | 不谈技术:普通人该怎么在AI时代赚钱? -- Source file: raw/微信公众号/不谈技术:普通人该怎么在AI时代赚钱?.md -- Status: ✅ 成功摄入 -- Summary: 以乔布斯.skill署名,阐述AI时代普通人财富创造三大认知框架:①品味是护城河(工具民主化后品味不会民主化);②做端到端不做零件(iPod成功案例);③死亡过滤器找真正热爱。核心结论:AI不会让普通人变富,会让对品质有执念的人极其强大。 -- Concepts created: 品味作为护城河、端到端优势、死亡过滤器 -- Entities created: 乔布斯.skill、Mac、iPod -- Source page: wiki/sources/不谈技术-普通人该怎么在ai时代赚钱.md -- Notes: 冲突检测无冲突;overview.md「知识与资源」首条已更新;index.md已添加Sources/Entities/Concepts条目 - -## [2026-04-27] ingest | Semantic Memory Search -- Source file: Agent/usecases/semantic-memory-search.md -- Status: ✅ 成功摄入 -- Summary: 为 OpenClaw 的 markdown 记忆文件添加向量语义搜索能力——通过 memsearch(基于 Milvus)实现混合搜索(向量+BM25+RRF),SHA-256 增量索引节省 API 调用,Markdown 始终为唯一数据源。 -- Concepts created: Incremental-Indexing(混合索引中已存在 HybridSearch/Reciprocal-Rank-Fusion,本次新建) -- Source page: wiki/sources/semantic-memory-search.md -- Notes: memsearch 和 Milvus Entity 已存在于 wiki,无需新建;RRF-Reranking Concept 与已有 Reciprocal-Rank-Fusion 重复,已合并 - -## [2026-04-27] ingest | Family Calendar Aggregation & Household Assistant -- Source file: Agent/usecases/family-calendar-household-assistant.md -- Status: ✅ 成功摄入 -- Summary: AI Agent 作为家庭日程协调中心——聚合多源日历生成晨间简报,通过环境消息监控自动从 iMessage 识别预约并创建日历事件(含行车时间缓冲),维护家庭库存 JSON 并支持照片 OCR 更新,生成购物清单。核心洞察:Ambient > Active,Mac Mini 是最优硬件。 -- Concepts: 无需新建(Morning Briefing/Ambient Message Monitoring/Household Inventory Tracking/Calendar Aggregation/Driving Time Buffer/Grocery Coordination 均已在 source page 内联定义,无需独立 Concept 页面) -- Entities: 无需新建(OpenClaw/Sparkry AI/Google Calendar/Apple Calendar 均为已有 Entity;Brandon Wang/angiolillo/dns_snek 仅出现 1 次不满足 ≥2 次条件) -- Source page: wiki/sources/family-calendar-household-assistant.md -- Notes: source page 已按标准格式重新生成(date 更新至 2026-04-27);index.md 条目已补加日期前缀 [2026-04-27];overview.md 第507行已有完整章节,内容一致无需更新;冲突检测:无冲突(与 Custom Morning Brief 为互补关系,已记录于 source page Connections 节)。 - -## [2026-04-27] ingest | Multi-Source Tech News Digest -- Source file: Agent/usecases/multi-source-tech-news-digest.md -- Status: ✅ 成功摄入 -- Summary: 多来源技术新闻自动聚合框架——四层数据管道(RSS × 46 + Twitter KOL × 44 + GitHub Releases × 19 + Brave Search × 4 = 109+ 来源),通过标题相似度去重 + 多维质量评分(优先级来源 +3,多来源 +5,时效性 +2,互动量 +1)生成精选 digest,发送至 Discord/邮件/Telegram;30 秒通过自然语言添加自定义来源;Skill 安装于 ClawHub(tech-news-digest)。 -- Concepts created: Content-Aggregation.md、Quality-Scoring.md、Content-Deduplication.md、Multi-Channel-Delivery.md -- Entities: 无需新建(DracoVibeCoding/ClawHub/Dify/LangChain/Ollama 均为已有 Entity;vLLM 仅出现 1 次不满足 ≥2 次条件) -- Source page: wiki/sources/multi-source-tech-news-digest.md -- Notes: source page 已按标准格式生成;index.md 第255行条目已补加日期前缀 [2026-04-27];overview.md 第186行已有完整章节,无需更新;冲突检测:与 [[blogwatcher-daily收藏]] 的功能重叠差异已记录在 source page Contradictions 节(multi-source-tech-news-digest 侧重多平台大规模聚合 + 质量评分,blogwatcher-daily 侧重 RSSHub 本地部署 + daily notes 深度集成)。 - -## [2026-04-27] ingest | Personal Knowledge Base (RAG) -- Source file: Agent/usecases/knowledge-base-rag.md -- Status: ✅ 成功摄入 -- Summary: 构建可搜索的个人知识库工作流——通过 Telegram Topic 或 Slack Channel 接收 URL,自动抓取内容(文章/Tweet/YouTube字幕/PDF)并语义索引,支持自然语言提问检索。核心理念:捕获像发短信一样简单,检索像搜索一样简单;零摩擦摄入 + 语义搜索是解决"知识黑洞"的核心。 -- Concepts updated: Semantic-Search.md(新增 sources 引用,last_updated 更新至 2026-04-27)、RAG.md(新增 knowledge-base-rag 到 sources 列表,last_updated 更新至 2026-04-27)、Knowledge-Base.md(新建完成) -- Entities: 无需新建(OpenClaw/Telegram/Slack 均为已有 Entity,ClawdHub 未满足 ≥2 次条件) -- Source page: wiki/sources/knowledge-base-rag.md -- Notes: source page 已按标准格式生成;index.md 条目已补加日期前缀 [2026-04-27];overview.md 第56行已有相关章节,无需更新;冲突检测:与 [[Second Brain]] 的摄入方式差异已记录在 source page Contradictions 节(对话内捕获 vs URL直接摄入,两者可互补)。 - -## [2026-04-27] ingest | Goal-Driven Autonomous Tasks -- Source file: Agent/usecases/overnight-mini-app-builder.md -- Status: ✅ 成功摄入 -- Summary: AI Agent 从被动执行工具转变为主动的"自我导向型员工"——用户一次性输入目标,Agent 每天自动生成、调度并完成推动目标前进的任务(含夜间惊喜 Mini-App MVP 构建)。核心工程实践:Git-style append-only 日志模式(主会话管 AUTONOMOUS.md 状态,子 Agent 仅追加 tasks-log.md)解决多 Agent 竞态条件;Token-Light Design 保持 AUTONOMOUS.md 在 50 行以内避免心跳轮询 Token 浪费。 -- Concepts updated: Sub-Agent-Race-Condition.md(已含 sources 引用,last_updated 同步)、Token-Light-Design.md(已含 sources 引用,last_updated 同步)、Startup-MVP-Pipeline.md(新增 overnight-mini-app-builder 到 sources)、Kanban.md(新增 overnight-mini-app-builder 到 sources) -- Entities: 无需新建(OpenClaw.md Entity 已存在;Alex Finn 仅出现 1 次,不满足 ≥2 次条件) -- Source page: wiki/sources/overnight-mini-app-builder.md -- Notes: source page 已按标准格式生成;index.md 条目已补加日期前缀 [2026-04-27];overview.md 第526行已有完整章节,无需更新;冲突检测:与 [[autonomous-project-management]] 的子 Agent 协调机制差异已记录在 source page Contradictions 节(文件分离模式 vs 事件驱动模式)。 - - - -- Source file: Agent/usecases/dynamic-dashboard.md -- Status: ✅ 成功摄入 -- Summary: AI Agent 驱动的实时动态仪表盘——通过子 Agent 并行抓取多数据源(GitHub/Twitter/Polymarket/系统健康),自动聚合为统一仪表盘,定时推送到 Discord 或生成 HTML,支持告警阈值和历史趋势查询。核心价值:免开发、实时、主动监控。 -- Concepts: 无需新建(Dynamic-Dashboard.md 概念页已于 2026-04-22 创建,last_updated 同步至今日;SubagentDelegation/Alerting/Cron定时任务 已覆盖相关概念) -- Entities: 无需新建(OpenClaw.md Entity 页已存在,本次补充 sources 引用;Discord/GitHub/Polymarket 属于通用数据源,不满足 Entity 创建条件) -- Source page: wiki/sources/dynamic-dashboard.md -- Notes: source page 已按标准格式生成;index.md 条目已补加日期前缀 [2026-04-27];overview.md 第184行已有完整章节,无需更新;冲突检测:与 [[autonomous-project-management]] 的子 Agent 协调机制差异已记录在 source page Contradictions 节(数据聚合模式 vs 文件协调模式)。 - -## [2026-04-27] ingest | Pre-Build Idea Validator -- Source file: Agent/usecases/pre-build-idea-validator.md -- Status: ✅ 成功摄入 -- Summary: AI Agent 项目启动前的竞争情报验证机制——通过 idea-reality-mcp MCP server 扫描 GitHub/Hacker News/npm/PyPI/Product Hunt 五个数据源,返回 reality_signal 分数(0-100)作为预构建门控。高分(>70)触发 STOP,低分(<30)直接构建。核心价值:防止独立开发者在已被解决的问题上浪费生命。 -- Concepts created: 无需新建(Reality-Signal / Pre-Build Validation 已在其他 source 中建立,本次更新添加 pre-build-idea-validator 作为 sources 引用) -- Entities created: mnemox.ai(MCP server 开发商) -- Source page: wiki/sources/pre-build-idea-validator.md -- Notes: source page 已按标准格式生成;index.md 条目已补加日期前缀 [2026-04-27];overview.md 第525行已有完整章节,无需更新;冲突检测:与 [[autonomous-project-management]] 的自主性边界张力已记录在 source page Contradictions 节;index.md Entities 节新增 mnemox.ai 条目;Concept 页面 Reality-Signal.md 和 Pre-Build-Validation.md 已添加 sources 引用。 - - -- Source file: Agent/usecases/autonomous-project-management.md -- Status: ✅ 成功摄入(重新摄取:源文件于 2026-04-26 12:35 修改,同步 date 字段至 2026-04-27,内容保持一致) -- Summary: 去中心化多子 Agent 并行项目管理体系——通过共享 STATE.yaml 协调,CEO 模式主会话(0-2 步工具调用),Git 作为审计日志,标签约定 pm-{project}-{scope}。核心洞察:文件协调比消息传递更具扩展性;主会话越薄响应越快。 -- Concepts: 无需新建(PM Delegation Pattern / CEO Pattern / Shared State Coordination / Git-as-Audit-Log 已在 autonomous-project-management.md 原摄入时创建) -- Entities: 无需新建(Nicholas Carlini 已在原摄入时创建) -- Source page: wiki/sources/autonomous-project-management.md -- Notes: 源文件修改时间为 2026-04-26 12:35:50(距上次 2026-04-22 摄入);本次重新摄取仅同步 date 字段至 2026-04-27,content 内容与原 page 一致,无需变更;index.md 条目已存在(含日期前缀 [2026-04-27]);overview.md 第555行新增 autonomous-project-management 章节;冲突检测:与 [[project-state-management]] 的冲突已在 source page Contradictions 节记录(动态状态文件 vs 事件驱动看板)。 - -## [2026-04-27] ingest | X/Twitter Automation from Chat -- Source file: Agent/usecases/x-twitter-automation.md -- Status: ✅ 成功摄入(重新摄取:源文件时间戳同步至 2026-04-27,source page 已存在,仅更新 date 字段) -- Summary: 通过 TweetClaw(OpenClaw 插件)连接 X/Twitter 托管 API,实现自然语言驱动的全功能 X/Twitter 操作——发帖/回复/点赞/转发/关注/DM、搜索数据提取、抽奖选人、账号监控。核心优势:无需 Cookie、无爬虫、无凭证暴露。 -- Concepts created: X-Twitter-API-Automation.md、Social-Media-Giveaway.md、Account-Monitoring.md -- Entities created: Xquik-dev.md(TweetClaw 开发公司,之前未创建) -- Source page: wiki/sources/x-twitter-automation.md -- Notes: source page 已存在,本次重新摄取仅同步 date 从 2026-04-17 至 2026-04-27;index.md 条目已补加日期前缀 [2026-04-27];overview.md 第429行已有完整章节,内容一致无需更新;冲突检测:无冲突(与 [[x-account-analysis]] 互补——分析 vs 操作)。 - -- Source file: Agent/usecases/daily-reddit-digest.md -- Status: ✅ 成功摄入(日期同步:source page date 从 2026-04-22 更新至 2026-04-27,源文件未更新,内容保持一致) -- Summary: AI Agent 驱动的 Reddit 每日精选摘要自动化——通过 OpenClaw + reddit-readonly skill,每日定时抓取指定 Subreddit 的热门/最新/最高赞帖子,AI 记忆用户偏好并持续优化精选规则(如排除表情包类内容)。纯读取模式,无需认证。 -- Concepts: 无需新建(Daily-Digest / Reddit Read-Only / Preference Learning 已在其他 source 中建立) -- Entities: 无需新建(OpenClaw / reddit-readonly 已在其他 source 中建立) -- Source page: wiki/sources/daily-reddit-digest.md -- Notes: 源文件时间戳 2026-04-26 12:35 与现有 source page 完全一致,内容无变化,仅同步 date 字段;index.md 条目已补加日期前缀 [2026-04-27];overview.md 第425行已有完整章节,内容一致无需更新;冲突检测:无冲突。 - -## [2026-04-27] ingest | Custom Morning Brief -- Source file: Agent/usecases/custom-morning-brief.md -- Status: ✅ 成功摄入 -- Summary: OpenClaw 个性化早间简报工作流——每日 8AM 定时推送,包含新闻研究+待办任务+完整草稿(脚本/邮件/方案)+ AI 主动推荐可自主完成的任务。核心价值:把夜间空闲时间转化为高效准备时间;完整草稿(full draft)而非标题是节省时间的关键;AI 主动推荐任务是系统最有价值的部分。 -- Concepts created: ScheduledReport / ProactiveAI / FullDraftGeneration -- Source page: wiki/sources/custom-morning-brief.md -- Notes: index.md 条目已补加日期前缀 [2026-04-27];overview.md 第505行已有完整章节,内容一致无需更新;冲突检测:无实质冲突,与 MultiChannelAssistant(扩展)、TodoistTaskManager(依赖)、SecondBrain(相似)、ScheduledReminder(相似)、family-calendar-household-assistant(同一模式不同场景)均为互补或层级扩展关系。 - -## [2026-04-27] ingest | Phone-Based Personal Assistant -- Source file: Agent/usecases/phone-based-personal-assistant.md -- Status: ✅ 成功摄入(重新摄取:源文件于 2026-04-26 更新,需同步日期至 2026-04-27) -- Summary: 基于电话的 AI 个人助理——ClawdTalk + Telnyx 将任意手机变成 AI 助理语音入口,支持日历查询/Jira 任务更新/网络搜索,无需智能机 App,覆盖驾驶/步行等双手占用场景;SMS 功能即将上线。 -- Entities: ClawdTalk.md / Telnyx.md 已存在,无需更新 -- Concepts: Voice Interface / Telephony Integration 已存在,无需更新 -- Source page: wiki/sources/phone-based-personal-assistant.md -- Notes: 源文件 2026-04-26 12:35 修改(原摄入日期 2026-04-22);本次重新摄取仅同步 date 字段至 2026-04-27,content 更新 SMS 即将上线信息,index.md 添加日期前缀;overview.md 第44行章节已包含最新内容,无需更新;冲突检测:与 event-guest-confirmation 为互补关系(通用助手 vs 专用确认),已在 overview.md Conflict #10 记录。 - -## [2026-04-27] ingest | Event Guest Confirmation -- Source file: Agent/usecases/event-guest-confirmation.md -- Status: ✅ 成功摄入 -- Summary: 使用 OpenClaw + SuperCall 插件实现活动嘉宾自动电话确认——AI 以活动协调员人设逐个拨打嘉宾电话,确认出席状态并收集饮食需求/Plus-One 等备注,通话结束后生成出席/拒绝/未接听三分类摘要。核心价值:AI 真电话比短信/手动拨号响应率高;SuperCall 沙箱化设计(每次通话独立重置、无数据泄露风险)确保安全;适合 20+ 嘉宾的大型活动。 -- Concepts created: 无(SuperCall/Sandboxed Persona/Telephony Integration 已在其他 source 中建立,未重复创建) -- Source page: wiki/sources/event-guest-confirmation.md -- Notes: index.md 已有条目,补加日期前缀 [2026-04-27];overview.md 第517行已有完整 Event Guest Confirmation 章节,第1061行有 SuperCall 沙盒设计对比分析,无需更新;Entity/Concept 均已存在(SuperCall 在 phone-based-personal-assistant 中建立,Sandboxed Persona 在 Sandboxed-Persona.md 中建立),仅在 source page 中引用;冲突检测:与 [[phone-based-personal-assistant]] 为互补关系(通用助手 vs 专用确认),已记录于 source page Contradictions 节。 - -## [2026-04-27] ingest | Multi-Channel Personal Assistant -- Source file: Agent/usecases/multi-channel-assistant.md -- Status: ✅ 成功摄入 -- Summary: 通过 Telegram Topic 路由(Telegram 主入口 + 话题隔离)+ OpenClaw 统一配置层整合 Google Workspace(gog)/Slack/Todoist/Asana,实现"说一句,AI 调动所有工具"。核心价值:消除应用切换疲劳,AI 主动定时推送提醒(如周一 18:00 提醒倒垃圾、周五 15:00 提醒写周报)。 -- Concepts created: [[TopicRouting]], [[ToolOrchestration]], [[IntentDrivenRouting]] -- Entities created: [[Telegram]](新创建——在本文首次作为主交互界面出现);[[OpenClaw]]/[[Todoist]]/[[Slack]]/[[Asana]]/[[gog]] 均已存在,仅更新 sources 字段 -- Source page: wiki/sources/multi-channel-assistant.md -- Notes: index.md Sources 条目已添加日期前缀 [2026-04-27];index.md Entities 新增 Telegram(按字母顺序插入 Todoist 前);index.md Concepts 新增 TopicRouting/IntentDrivenRouting/ToolOrchestration(按字母顺序插入);overview.md 第42行已有高度一致的 multi-channel-assistant 章节,无需重复更新;Wikilinks 已按实际页面名称对齐(multi-agent-team/knowledge-base-rag/phone-based-personal-assistant/personal-crm/Scheduled-Reminder/gog);冲突检测:与 [[personal-crm]] 无实质冲突(前者数据层,后者交互层);[[Scheduled-Reminder]] 已存在,本 source page Key Concepts 节引用已有概念,未重复创建。 - -## [2026-04-27] ingest | Multi-Agent Specialized Team (Solo Founder Setup) -- Source file: Agent/usecases/multi-agent-team.md -- Status: ✅ 成功摄入 -- Summary: Solo Founder 通过 4 个专业 Agent(Milo 战略lead / Josh 商业分析 / Marketing 内容营销 / Dev 开发)+ 共享记忆 + Telegram 单入口 + 定时任务实现 24/7 团队运作。核心洞察:Agent 个性化使"和团队对话"更自然;共享记忆 + 私有上下文是核心;按任务复杂度匹配模型;定时主动推送形成价值飞轮;从小团队开始。 -- Concepts created: [[SharedMemory]], [[Multi-Agent-Team]] -- Entities created: (Milo/Josh/Trebuh 仅在本文出现 1 次,不满足 ≥2次条件——均未创建独立 Entity 页面) -- Source page: wiki/sources/multi-agent-team.md -- Notes: 已创建 SharedMemory.md(4个 sources 引用)和 Multi-Agent-Team.md(作为 standalone concept 页面,供 overview.md 的 [[Multi-Agent-Team]] wikilink 解析);overview.md 第16行已添加 multi-agent-team 章节;冲突检测:与 [[ContentFactory]] 为互补关系(前者团队协作架构,后者内容创作流水线),已记录于 source page Contradictions 节 - -## [2026-04-27] ingest | Multi-Agent Content Factory(补录) -- Source file: Agent/usecases/content-factory.md -- Status: ✅ 成功摄入 -- Summary: 基于 Discord 频道的多 Agent 内容工厂,通过链式 Agent(Research Agent → Writing Agent → Thumbnail Agent)实现内容创作全流程自动化。核心洞察:链式 Agent 是核心能力——上游 Agent 输出直接喂给下游,无需人工逐步干预;本地模型(如 Mac Studio 上的 Nano Banana)做图像生成可降低成本。 -- Concepts created: (Chained Agents、Workflow Architecture 在 source page Key Concepts 中引用但尚无独立概念页面;Content Automation.md 已在 2026-04-22 创建) - -## [2026-04-27] ingest | Project State Management System: Event-Driven Alternative to Kanban -- Source file: Agent/usecases/project-state-management.md -- Status: ✅ 成功摄入 -- Summary: 用事件驱动系统替代传统 Kanban 看板,自然语言对话自动记录 progress/blocker/decision/pivot 事件,Git 提交自动关联项目,每日站会摘要自动生成。项目状态由事件序列推导而非手动维护,可随时回答"项目为什么这样"。 -- Concepts updated: EventSourcing(添加 source)、ProjectState(添加 source)、Kanban(添加 source);EventSourcing.md 和 ProjectState.md 已在 2026-04-22 创建 -- Source page: wiki/sources/project-state-management.md -- Notes: 与 [[Goal-Driven Autonomous Tasks]](overnight-mini-app-builder)的 overview.md 条目互补,两者存在看板 vs 事件溯源的潜在冲突已在各自 source page 的 Contradictions 节记录;[[Vibe-Kanban]] 已在 entities/ 中存在,本 source page 的 Connections 节与其建立关系 -- Entities created: (Alex-Finn.md 已在 2026-04-22 创建——本次仅确认 sources 引用已包含 content-factory) -- Source page: wiki/sources/content-factory.md -- Notes: 本次为补录——source page(date: 2026-04-22)、index.md 条目、overview.md 章节(第426行)、Content Automation sources、Alex-Finn entities 均已就绪;仅 log.md 记录缺失。冲突检测:与 [[Podcast Production Pipeline]] 为互补关系(前者播客流水线,后者社交媒体短内容),无实质冲突;与 [[Dynamic Dashboard]] 共享子代理并行执行模式。 - -## [2026-04-27] ingest | Automated Meeting Notes & Action Items -- Source file: Agent/usecases/meeting-notes-action-items.md -- Status: ✅ 成功摄入 -- Summary: AI Agent 将会议转录文本(Otter.ai、Google Meet、Zoom)自动转换为结构化摘要,提取行动项并创建 Jira/Linear/Todoist/Notion 任务,发送 Slack/Discord 摘要,支持截止日提醒。核心洞察:自动任务创建比摘要本身更有价值,无法转化为追踪任务的会议记录只是"文档剧场"。 -- Concepts created: DocumentationTheater, TaskAutomationPipeline -- Entities created: (无新 Entity——Otter.ai/Jira/Linear/Todoist/Notion/Slack/Discord 均已存在或不足 2 次出现条件;Jira/Linear/Linear.md 均已存在,本次仅补充 sources 引用) -- Source page: wiki/sources/meeting-notes-action-items.md -- Notes: index.md Sources 条目已更新带日期前缀和一行摘要;index.md Concepts 新增 DocumentationTheater 和 TaskAutomationPipeline(按字母顺序插入);overview.md 第562行已有高度一致的"会议记录自动化"章节,无需重复更新;冲突检测:与 [[Todoist Task Manager]] 互补而非冲突——前者侧重"随时随地自然语言创建任务",后者侧重"从会议转录中自动提取和创建任务",可结合使用实现"会议即任务"闭环;[[AI-Driven Task Extraction]] 已在 sources 中引用 meeting-notes-action-items,无需更新。 - -## [2026-04-30] ingest | Podcast Production Pipeline -- Source file: Agent/usecases/podcast-production-pipeline.md -- Status: ✅ 成功摄入 -- Summary: AI Agent 全自动播客生产流水线,涵盖录制前研究→大纲脚本→Show Notes→多平台社媒推广包→SEO episode description。核心洞察:录制占播客制作仅 30%,其余 70% 可由 Agent 自动化;录制前深度嘉宾研究是价值最高的环节;Social Media Kit 是自动化价值最高的重复性环节。 -- Concepts created: (无新 Concept——Pipeline/ShowNotes/SocialMediaKit 均为具体实例,不满足"可抽象可复用"标准) -- Entities created: (无新 Entity——OpenAI Whisper/Spotify/Apple Podcasts/YouTube/RSSFeed 均仅出现 1 次,不满足≥2次条件;关系已通过 source page Connections 和 Key Entities wikilinks 体现) -- Source page: wiki/sources/podcast-production-pipeline.md -- Notes: index.md 已更新带日期前缀和一行摘要;overview.md 第556行已有高度一致的播客制作自动化章节,无需重复更新;冲突检测:无——[[MultiAgentContentFactory]] 与本流水线为互补关系,非竞争关系;[[OpenAI Whisper]] 在 Related Links 中提及,source page 通过 Connections wikilink 建立关联。 - -## [2026-05-01] ingest | 2025 年 11 个神级 AI 开源平替,GitHub 杀疯了。 -- Source file: AI/2025 年 11 个神级 AI 开源平替,GitHub 杀疯了。 -- Status: ✅ 成功摄入 -- Summary: 8大领域 AI 开源平替全景盘点——大语言模型(DeepSeek/Qwen 3)、AI生图(Flux/Stable Diffusion)、AI生视频(HunyuanVideo)、通用智能体(Manus/OpenManus)、AI编程(Cline)、工作流自动化(n8n/Dify)、AI搜索(Perplexica)、AI知识库(NotebookLM开源替代)。核心洞察:开源内卷把价格打成了白菜,国产模型(DeepSeek/Qwen/Hunyuan)已在多个领域超越Meta Llama;Manus定义AI Agent元年并被Meta收购。 -- Concepts touched: [[AI开源平替]](内嵌引用,未达独立建页阈值)、[[深度推理]](内嵌引用,未达独立建页阈值)、[[AI智能体]](已有 Concept)、[[工作流自动化]](已有 Concept)、[[LLM应用开发平台]](内嵌引用,未达独立建页阈值)、[[AI搜索]](内嵌引用,未达独立建页阈值) -- Entities touched: [[DeepSeek]](已存在,添加 sources 引用,更新 last_updated→2026-01-01)、[[Qwen]](已存在,已有本文 sources 引用)、[[Flux]](已存在,已有本文 sources 引用)、[[Stable-Diffusion]](已存在,已有本文 sources 引用)、[[HunyuanVideo]](已存在,已有本文 sources 引用)、[[Manus]](已存在,已有本文 sources 引用)、[[OpenManus]](已存在,已有本文 sources 引用)、[[Cline]](已存在,已有本文 sources 引用)、[[n8n]](新建 Entity 页面)、[[Dify]](已存在,已有本文 sources 引用)、[[Perplexica]](已存在,已有本文 sources 引用)、[[智谱GLM]](仅出现 1 次,未达独立建页阈值)、[[MiniMax]](仅出现 1 次,未达独立建页阈值)、[[Kimi K2]](仅出现 1 次,未达独立建页阈值) -- Source page: wiki/sources/2025-年-11-个神级-ai-开源平替-github-杀疯了.md -- Notes: source page 新建完成;index.md Sources 节第一条已添加带日期前缀和一行摘要;overview.md 已有相关 AI 工具章节(Nano Banana/Claude Skills/Dify/n8n/Perplexica 等均已存在),本文全面覆盖 AI 开源平替主题,与现有章节互补而非重复,overview.md 无需新增条目;冲突检测:与 [[Nano Banana Pro提示词指南]] 在"AI生图最强工具"上存在冲突(Flux vs Gemini),已记录于 source page Contradictions 节;n8n Entity 为新建(此前 wiki/entities/n8n.md 不存在);DeepSeek Entity 更新 last_updated→2026-01-01 - -## [2026-04-30] ingest | Claude Code 调用方法总结 -- Source file: Agent/claude-code调用方法总结.md -- Status: ✅ 成功摄入 -- Summary: Hermes Agent 通过 terminal 工具调用 Claude Code CLI 的两种模式(Print Mode 和 TMUX 交互模式),包含完整参数说明、Skill 加载方法和常见坑点 -- Concepts created: [[ClaudeCodePrintMode]], [[ClaudeCodeTerminalIntegration]], [[SubagentDelegation]] -- Entities created: (无新 Entity——ClaudeCode 和 Hermes Agent 未满足出现≥2次条件) -- Source page: wiki/sources/claude-code调用方法总结.md -- Notes: 无冲突检测;index.md 中该 source 条目已存在(被动同步) - -## [2026-04-30] ingest | 万字保姆级教程,让你90天跑通"一人公司"模式(附AI提示词) -- Source file: Agent/万字保姆级教程-90天跑通一人公司模式-2026-03-29.md -- Status: ✅ 成功摄入 -- Summary: 90天跑通一人公司的系统性框架,核心观点:一人公司的本质是用最小杠杆撬动最大价值。完整路径:天才地带自我体检→挖掘底层能力→避开心理陷阱→构建 Ikigai 商业模型→验证赛道→搭建产品分层体系→用 AI 构建内容系统→搭建销售漏斗 -- Concepts created: (Ikigai 概念已存在——更新了 [[Ikigai框架]] 页面,添加 sources 和 last_updated) -- Entities created: (无新 Entity——盖伊·亨德里克斯/营销人张飞宇仅出现 1 次,不满足≥2次条件) -- Source page: wiki/sources/万字保姆级教程-90天跑通一人公司模式-2026-03-29.md -- Notes: index.md Sources 条目已添加日期前缀 [2026-03-29] 和一行摘要;[[Ikigai框架]] 页面已更新 sources 字段;冲突检测:与 [[不谈技术-普通人该怎么在ai时代赚钱]](思维原则层面)互补——本文提供系统性 90 天框架,该文提供思维原则,无实质冲突 - -## [2026-04-26] ingest | 使用Claude自动生成N8N工作流的实操教程 -- Source file: Agent/使用Claude自动生成N8N工作流的实操教程.md -- Status: ✅ 成功摄入 -- Summary: 利用 Claude AI 助手结合 n8n-mcp MCP 服务器,通过自然语言自动生成 N8N 工作流的完整实操教程。核心流程:安装 Node.js → 启动 n8n-mcp → 配置 Claude Desktop 连接 → 导入高级 Prompt → 输入自然语言指令 → Claude 自动选节点、写代码、生成工作流。Claude 自动生成工作流完成度约 80-90%,仍需人工二次修正,但显著降低 N8N 新手入门门槛。 -- Concepts created: (无新概念——Extended Thinking、工作流自动化、MCP 均已存在) -- Entities created: (无新实体——n8n-mcp、n8n、Claude、Claude-Desktop、Node.js 均已存在) -- Source page: wiki/sources/使用claude自动生成n8n工作流的实操教程.md -- Notes: index.md 已新增带日期的 Sources 条目;overview.md 已有 "Claude + N8N MCP 自动化工作流" 章节(第441-442行),内容高度一致,无需重复更新;冲突检测:与 [[n8n-claude-通过自然语言自动化工作流]] 存在潜在交叉验证,已记录于 source page Contradictions 节;Entity 页面 n8n-mcp/n8n/Claude-Desktop/Node.js 均已存在,本次摄取仅补充来源引用。 - -## [2026-04-27] ingest | MCP在Cursor中的集成与应用详解 -- Source file: Agent/MCP在Cursor中的集成与应用详解.md -- Status: ✅ 成功摄入 -- Summary: MCP(Modal Context Protocol)在 Cursor AI 编程工具中的集成配置与实际应用方法。核心内容:MCP 基于 Client-Server 架构提供三类接口(资源GET/工具POST/Promise提示词);Cursor 中通过 SSE 或本地命令两种方式接入 MCP Server;在 Composer Agent 模式下调用 MCP 工具链;Sequential Thinking 工具展示逻辑推理分步拆解效果;Yolo Mode 高风险警告。 -- Concepts created: ModalContextProtocol, SequentialThinking, YoloMode -- Entities created: Cursor, Composer, McpServer, SSE -- Source page: wiki/sources/mcp在cursor中的集成与应用详解.md -- Notes: index.md 新增 Sources 条目(已有日期前缀);Entities 新增 Cursor/Composer/McpServer/SSE(均按字母顺序插入);Concepts 新增 ModalContextProtocol/SequentialThinking/YoloMode(按字母顺序插入);overview.md AI Tools 段落新增 MCP 集成应用段;冲突检测:与 [[specialized-mcp-builder]](构建端 vs 使用端的互补关系)无实质冲突,记录于 source page Contradictions 节。 - -## [2026-05-22] ingest | n8n + Claude:通过自然语言自动化工作流 -- Source file: Agent/n8n+Claude 通过自然语言自动化工作流.md -- Status: ✅ 成功摄入 -- Summary: 通过 Claude Desktop 自然语言能力与 n8n 工作流自动化平台结合,实现工作流的自然语言驱动创建与管理。核心价值:降低自动化工作流创建门槛,让用户以对话方式快速构建复杂业务流程。 -- Concepts created: (无新概念——工作流自动化、自然语言接口 均已存在) -- Entities created: (无新 Entity——n8n、Claude Desktop 在其他来源中已多次出现,本次摄取时未单独创建) -- Source page: wiki/sources/n8n-claude-通过自然语言自动化工作流.md -- Notes: index.md Sources 条目已存在(第258行);overview.md 已有 Claude + N8N 相关章节,无需重复更新;冲突检测:与 [[n8n-claude-通过自然语言自动化工作流]](自引用)无冲突,与 [[使用Claude自动生成N8N工作流的实操教程]] 互补——本文为引导页,该文为详细实操教程,无实质冲突。 - -## [2026-04-26] ingest | n8n configure telegram trigger -- Source file: Agent/n8n configure telegram trigger.md -- Status: ✅ 成功摄入(补充 log entry) -- Summary: n8n Telegram Trigger 节点 HTTPS Webhook 配置故障排查。核心问题:本地/无 HTTPS 的 n8n 实例配置 Telegram Trigger 时报 "bad webhook: An HTTPS URL must be provided for webhook" 错误。解决方法:在 Docker Desktop 环境变量中添加 WEBHOOK_URL 环境变量(值为 HTTPS URL),使 n8n 生成 HTTPS Webhook URL 供 Telegram 注册。 -- Concepts created: 无([[Webhook]]/[[Telegram Trigger]]/[[WEBHOOK_URL]] 均已有独立页面) -- Entities created: 无([[n8n]]/[[Telegram]]/[[Docker Desktop]] 均已存在于 Wiki) -- Source page: wiki/sources/n8n-configure-telegram-trigger.md -- Notes: source page 已存在(date 已更新为 2026-04-26);index.md 第258行已添加日期前缀 [2026-04-26];冲突检测:与 [[n8n Docker 安装与更新]](n8n Docker 部署)无实质冲突——本文档为 Telegram 集成专项补充 - -## [2026-04-22] ingest | n8n Docker install & update -- Source file: Agent/n8n docker install & update.md -- Status: ✅ 成功摄入 -- Summary: n8n 工作流自动化平台的 Docker 容器化部署与网络代理配置指南。核心内容:自定义 Dockerfile 扩展官方镜像安装 curl/wget;配置 `ALL_PROXY=socks5://宿主机Docker网桥IP:10808` 实现容器内科学上网;配合 Caddy 反向代理提供 HTTPS 访问;版本更新三步:`docker compose pull` → `docker compose down` → `docker compose up -d`。 -- Concepts created: 无([[Docker Compose]]/[[SOCKS5 代理]]/[[Docker 网桥网络]]/[[反向代理]] 均以内嵌 wikilink 引用存在于 source page,未达独立建页阈值) -- Entities created: 无([[n8n]]/[[Docker]]/[[V2Ray/Tuic]]/[[Caddy]] 均已存在于 Wiki,无新建需求) -- Source page: wiki/sources/n8n-docker-install-update.md -- Notes: index.md 第257行添加日期前缀 [2026-04-22] + 一行摘要;overview.md n8n Workflow Automation 部分新增"Docker 容器化部署"段落;冲突检测:无已知冲突——与 [[n8n-configure-telegram-trigger]](本文档为前置依赖)、[[n8n-workflow-orchestration]](Docker 部署是基础设施)、[[openclaw-n8n-stack]](Docker Compose 堆栈是扩展模式)均无实质冲突。 - -## [2025-03-16] ingest | How to get Youtube Channel ID -- Source file: Others/How to get Youtube Channel ID.md -- Status: ✅ 成功摄入 -- Summary: 通过浏览器 view-source 方法从 YouTube 频道页面获取 Channel ID 的实操笔记。操作步骤:①在浏览器地址栏输入 `view-source:https://www.youtube.com/@频道名`;②在页面源码中搜索 `?channel_id` 字符串;③提取完整的 RSS Feed URL(格式:`https://www.youtube.com/feeds/videos.xml?channel_id=UCxxxx`)。获取的 Channel ID 可用于 n8n 工作流、RSS 订阅等自动化场景。 -- Concepts created: 无(内容简单,无满足独立 Concept 建页条件的抽象概念) -- Entities created: Numberblocks(示例频道,仅出现1次,不满足≥2次条件,未建页) -- Source page: wiki/sources/how-to-get-youtube-channel-id.md -- Notes: index.md 第99行已有条目,补充日期前缀 [2025-03-16];overview.md 已有相关描述(YouTube Channel ID 提取技巧),无需修订;冲突检测:无已知冲突。 - -## [2026-04-27] ingest | Dataview——让我从"笔记黑洞"里逃出来的 Obsidian 神器 -- Source file: Others/Dataview——让我从"笔记黑洞"里逃出来的 Obsidian 神器 1.md -- Status: ✅ 成功摄入 -- Summary: Dataview 将 Obsidian 打造成"笔记数据库",通过类 SQL 查询语法解决"写笔记时激情满满,查笔记时满头大汗"的核心困境。核心功能:①自动整理散落各笔记的待办事项;②按标签自动索引笔记(#学习、#写作);③统计写作量追踪产出。基础查询示例:`LIST FROM "Notes" WHERE contains(tags, "学习")` -- Concepts created: NoteDatabase(笔记数据库)、QueryLanguage(查询语言)、TagBasedIndexing(标签索引) -- Entities created: DataviewPlugin(已与 Obsidian 实体建立双向链接) -- Source page: wiki/sources/dataview-让我从"笔记黑洞"里逃出来的-obsidian-神器-1.md -- Notes: index.md 第99行添加日期前缀 [2025-03-07] + 一行摘要;overview.md Productivity & Knowledge Management 部分新增独立段落,Key Concepts 新增 4 个概念链接;冲突检测:无实质冲突——ObsidianTasksPlugin 对比记录于 source page Contradictions 节(Dataview 更通用 vs Tasks 专注文务语法);NoteDatabase 概念与现有 Note-Database-Queries.md 互补(后者侧重查询展示,此处侧重数据库化理念);DataviewPlugin 实体已与 Obsidian.md 建立关系链接。 - -## [2026-04-27] ingest | Obsidian Tasks 插件:这可能是最适合懒人的任务管理方式 -- Source file: Others/Obsidian Tasks 插件:这可能是最适合懒人的任务管理方式.md -- Status: ✅ 成功摄入 -- Summary: Obsidian Tasks 插件将任务管理深度整合进 Obsidian 笔记——使用 Markdown 语法(`- [ ]`)创建任务,通过 `tasks` 代码块在任何笔记中嵌入灵活的任务查询,支持 `⏳ every week/month` 自动生成重复任务。核心理念:任务与笔记是一个整体,消除任务管理工具与笔记工具之间的割裂感。 -- Concepts created: TaskQuerySyntax(Tasks 查询语法)、ObsidianRecurringTasks(Obsidian 重复任务)、MarkdownBasedTask(基于 Markdown 的任务管理)、ContextDrivenTask(上下文驱动的任务管理) -- Entities created: Obsidian、Todoist、Notion、ObsidianTasksPlugin -- Source page: wiki/sources/obsidian-tasks-插件-这可能是最适合懒人的任务管理方式.md -- Notes: index.md 第97行添加日期前缀 [2025-03-13];新增 ObsidianTasksPlugin/Notion/Todoist 到 entities/(Obsidian 已存在);overview.md Productivity & Knowledge Management 部分新增 Obsidian Tasks 插件独立段落,Key Concepts 新增 5 个概念链接;冲突检测:与 [[Todoist]] 的任务管理理念存在对比记录于 source page Contradictions 节,无实质性冲突。 - -## [2026-06-06] ingest | ChinaTextbook - 41.53 GB,中国小学、初中、高中、大学 PDF 教材 -- Source file: Others/ChinaTextbook - 41.53 GB,中国小学、初中、高中、大学 PDF 教材.md -- Status: ✅ 成功摄入 -- Summary: ChinaTextbook 是一个托管在 GitHub 上的中国中小学及大学 PDF 教材开源收集项目,总库大小 41.53 GB。教材来源为国家中小学智慧教育平台(basic.smartedu.cn),登录后即可浏览,亦可使用第三方工具下载。覆盖小学(语数英科学等11科)、初中(15科)、高中(16科)及大学(概率论/离散数学/线性代数/高等数学)阶段。 -- Concepts created: 教育资源开源、PDF教材数字化 -- Entities created: 国家中小学智慧教育平台(TapXWorld 仅出现1次,不满足≥2次条件,未建页) -- Source page: wiki/sources/chinatextbook-41-53-gb-中国小学-初中-高中-大学-pdf-教材.md -- Notes: index.md 第99行添加日期前缀 [2025-05-13];overview.md 新增"知识与资源"主题节及 ChinaTextbook 条目;冲突检测:无已知冲突。 -- Source file: Vibe Coding/开发经验与项目规范整理文档.md -- Status: ✅ 成功摄入(source page 重新生成,内容扩充) -- Summary: Vibe Coding 环境下的开发经验与软件工程规范框架,涵盖变量名维护方案、文件结构与命名规范、编码规范(含消费端/生产端/状态/变换模型)、并发编程、系统架构原则、程序设计核心思想、微服务、Redis 缓存、消息队列九大主题。核心 Claims:统一变量索引文件降低命名冲突风险;系统开发遵循"先理解需求 → 保持简单 → 自动化测试 → 小步迭代"流程;编程第一步永远是"你要解决什么问题";注释解释"为什么"而非"怎么做";未测试的代码迟早会出问题。 -- Concepts created: 无(entities/ 和 concepts/ 目录为空,所有 Key Concepts 保留为 source page 内嵌 wikilink 引用) -- Source page: wiki/sources/开发经验与项目规范整理文档.md -- Notes: index.md 第82行更新日期前缀 [2025-12-30] + 一行摘要;overview.md AI 辅助开发部分新增独立 entry;entities/concepts 目录检查为空(符合预期),所有概念以内嵌引用形式保留于 source page;冲突检测:无实质冲突——现有 Wiki 中 DRY(HashiCorp.md)、微服务(VictoriaMetrics.md)、Redis(Amazon-ElastiCache.md)引用均与本文档一致;唯一冲突已记录于 source page Contradictions 节("从问题出发" vs 传统"先理解代码")。 - -## [2026-06-04] ingest | 在Ubuntu上安装Vibe-Kanban -- Source file: Vibe Coding/在Ubuntu上安装Vibe-Kanban.md -- Status: ✅ 成功摄入 -- Summary: 在 Ubuntu Server 上安装和配置 Vibe-Kanban AI 任务管理工具的完整指南。核心 Claims:Vibe Kanban 默认以 --dangerously-skip-permissions/--yolo 标志运行 AI 代理;每个任务在隔离 git worktree 中运行防止干扰;通过 npx 直接运行;使用 PM2 实现后台守护和开机自启;支持可选的 GitHub CLI 和 MCP 集成。 -- Concepts created: 无(PM2/npx/MCP Server 等概念以内嵌引用存在于 source page,未达独立建页阈值) -- Entities created: 无(Vibe-Kanban Entity 页面已存在于 wiki/entities/Vibe-Kanban.md;BloopAI 为来源文件提及但无独立建页必要) -- Source page: wiki/sources/在ubuntu上安装vibe-kanban.md -- Notes: index.md 第82行日期更新为 [2026-06-04];overview.md Vibe Coding 已有覆盖,无需修订;冲突检测:与 [[如何在Ubuntu上安装OpenCode并配置Vibe-Kanban]] 部分重叠,已记录于 Source page Contradictions 节。 - -## [2026-05-12] ingest | TikTok PM - Python Django 项目 -- Source file: Others/TikTok PM - Python Django Project.md -- Status: ✅ 成功摄入(source page 已更新) -- Summary: TikTok Shop 产品数据管理系统 Django Web 应用开发教程,含 Admin 后台(富文本/缩略图/模态框)、REST API、Docker 生产部署、异步任务队列(Django-Q + Bright Data API)、JSON 批量导入管理命令 -- Concepts created: 无(Django ORM/Django REST Framework/Docker 容器化部署/Django Admin 定制/Django-Q 异步任务/Bright Data API 等 Key Concepts 均以 wikilink 内嵌引用,未达独立建页阈值) -- Entities created: 无(Django/TikTok Shop/Bright Data/MySQL/Docker/Gunicorn/Nginx/n8n/Django-Q/Django TinyMCE 等 Entity 均以 wikilink 内嵌引用,未达独立建页阈值) -- Source page: wiki/sources/tiktok-pm-python-django-project.md -- Notes: index.md 第98行已有本条目,无需更新;overview.md 无需修订(属技术实现教程而非综合主题);source page 新增 last_updated 字段为 2026-05-12;新增 Key Claims:Django Admin 模态框图片放大、自定义 Admin 视图导航、Django Management Command;冲突检测:无已知冲突 - -## [2026-06-04] ingest | Vibe-Kanban + OpenCode 在 Ubuntu Server 上安装与管理指南 -- Source file: Vibe Coding/Vibe-Kanban + OpenCode 在 Ubuntu Server 上安装与管理指南.md -- Status: ✅ 验证完成(source page 已存在且完整,修复 Key Concepts 中断链 [[n vm]] → [[nvm]]) -- Summary: 在 Ubuntu Server 上非 root 用户(shenwei)安装 Node 20、Vibe-Kanban、OpenCode,并通过 pm2 进程管理。核心 Claims:nvm 版本隔离、pm2 进程守护、权限配置关键性、不以 root 启动 OpenCode、Vibe-Kanban 自动 spawn executor。 -- Concepts created: 无([[nvm]]/[[pm2]]/[[Node 20]]/[[Vibe Coding]] 均已内嵌引用,未达独立建页阈值) -- Entities created: 无([[Vibe-Kanban]]/[[OpenCode]] Entity 页面均已存在;[[shenwei]] 仅为作者署名,无需独立建页) -- Source page: wiki/sources/vibe-kanban-opencode-在-ubuntu-server-上安装与管理指南.md -- Notes: index.md 第82行已有本条目(Sources节),无需更新;overview.md 第26/459/562/567/637行已有 OpenCode/Vibe Coding 相关内容覆盖,无需修订;冲突检测:无冲突(与 [[如何在Ubuntu上安装OpenCode并配置Vibe-Kanban]] 部分重叠,记录于 Source page Contradictions 节,已明确本篇更详细);本次操作修复 Key Concepts 中断链 [[n vm]] → [[nvm]]。 - -## [2026-06-04] ingest | Vibe Coding 经验收集 -- Source file: Vibe Coding/vibe coding经验收集.md -- Status: ✅ 增量同步完成(source page 已存在,本次更新新增 CodeWeaver 工具引用及相关 Key Claims/Quotes/Concepts) -- Summary: Vibe Coding 实战经验精选合集,新增 CodeWeaver 工具介绍(将代码库编织成可导航 Markdown 文档,简化 AI/ML 工具集成)。核心 Claims:递进式开发工作流、System Prompt 优化效果、点线体迭代、文件注释规范、代码验证优先、激励式提示词。 -- Concepts created: 无(CodeWeaver 已在 [[CodeWeaver]] 概念页引用,未达独立建页阈值) -- Source page: wiki/sources/vibe-coding经验收集.md -- Notes: index.md 第81行日期修正为 [2025-12-30];overview.md AI 辅助编程实践内容已覆盖本文档,无需修订;Entity 页面 [[CodeWeaver]](wiki/entities/CodeWeaver.md)已存在且第8行引用本文档;冲突检测:无冲突(与 [[Agentic AI]] 互补,记录于 Source page Connections 节)。 - -- Source file: Vibe Coding/如何在项目里安装Claude-Code-Templates Skills.md -- Status: ✅ 验证完成(source page 已存在且完整,无需重新生成) -- Summary: 通过 npx claude-code-templates@latest --skill= --yes 命令为 Claude Code/Trae 项目一键安装社区维护的 Skills/Agents/MCP 模板,来源网站 aitmpl.com 提供三类模板浏览。 -- Concepts created: 无([[Claude Code Templates]]/[[Claude Code Skills]]/[[MCP(Model Context Protocol)]] 等概念在 Source page 内嵌引用,未达独立建页阈值) -- Entities created: 无([[Claude Code]]/[[aitmpl.com]]/[[Trae]] 等实体的定义性信息已嵌入 Source page,未单独建页;[[Anthropic]] Entity 页面已存在) -- Source page: wiki/sources/如何在项目里安装claude-code-templates-skills.md -- Notes: index.md 第79行已有本条目(Sources节),无需更新;overview.md 未直接引用本文档,无需修订;Entity 页面无新建需求;冲突检测:无已知冲突内容。 - -## [2026-06-03] ingest | Trae远程开发部署指南 -- Source file: Vibe Coding/Trae远程开发部署指南.md -- Status: ✅ 验证完成(source page 已存在且完整,无需重新生成) -- Summary: 使用 Trae IDE 通过 SSH 远程连接 Ubuntu 服务器进行 Docker 容器化项目的开发工作流配置。核心机制:SSH 免密登录 → Trae Remote-SSH 连接 → Docker 容器 Attach 或宿主机文件编辑 → Tailscale/FRP 公网访问。支持 Attach 容器调试模式和宿主机文件+Docker CLI 编排模式两种开发方式。 -- Concepts created: 无([[Remote-SSH]]/[[BindMount]]/[[Attach容器]]/[[Docker用户组]]/[[SSHConfig]]/[[SSH免密登录]]/[[DockerCompose]] 等概念均已在 Wiki 存在,source page 内嵌引用) -- Entities created: 无([[Trae]]/[[Ubuntu2]]/[[Ubuntu1]]/[[ThinkBook]]/[[Tailscale]]/[[Docker]] 均已在 Wiki 存在,[[Trae]] Entity 页面已引用本文档) -- Source page: wiki/sources/trae远程开发部署指南.md -- Notes: index.md 第82行已有本条目([2026-04-26]),无需更新;overview.md 第638行已有 [[Trae]] Entity 描述,第459/638行已有相关上下文;Entity 页面 [[Trae]](wiki/entities/Trae.md)已存在且第38行引用本文档;冲突检测:无冲突(与 [[Cursor2.0初学者使用指南]] 互补,均为 Remote-SSH/Docker 开发配置,属不同 IDE 工具的相同工作流)。 - -## [2026-06-02] ingest | Cursor 2.0初学者使用指南 -- Source file: Vibe Coding/Cursor 2.0初学者使用指南.md -- Status: ✅ 成功摄入 -- Summary: Cursor 2.0 AI代码编辑器初学者完整教程。涵盖安装配置、Composer模型、多代理并行操作、Plan/Agent/Ask三种模式、Diff代码审查、Git版本控制、项目规则自定义及MCP服务器集成。 -- Concepts created: 无(多代理并行/Diff审查/项目规则/MCP服务器等概念属于上下文内嵌,未达独立建页阈值) -- Entities created: 无([[Cursor]] Entity页面已存在,本次新建source page并更新其Sources节) -- Source page: wiki/sources/cursor-2-0初学者使用指南.md -- Notes: index.md 第82行已有本条目(Sources节),无需更新;overview.md AI代码编辑器内容可能已覆盖,本次未做修订;Entity页面 [[Cursor]](wiki/entities/Cursor.md)已存在且Sources节已引用本文档;冲突检测:无冲突(与 [[MCP在Cursor中的集成与应用详解]] 互补,记录于Source page Contradictions节)。 - -## [2026-05-30] ingest | 如何在Ubuntu上安装OpenCode并配置Vibe-Kanban -- Source file: Vibe Coding/如何在Ubuntu上安装opencode并配置Vibe-Kanban.md -- Status: ✅ 成功摄入 -- Summary: OpenCode AI 编程代理的安装、配置与使用完整指南。通过 `curl -fsSL https://opencode.ai/install | bash` 一键安装,运行 `/connect` 配置 LLM API Key,运行 `/init` 初始化项目并自动生成 `AGENTS.md`;支持 Tab 键切换 Plan/Build 模式,`/undo`/`/redo` 撤销重做;支持拖拽图片进行视觉分析;提供终端/桌面应用/IDE 扩展三种使用形态。 -- Concepts created: 无(Vibe Coding/Plan Mode/Build Mode/AGENTS.md 等概念页面均已存在,未达独立建页阈值) -- Entities created: 无([[OpenCode]]、[[Vibe-Kanban]]、[[OpenCode Zen]] Entity 页面均已存在) -- Source page: wiki/sources/如何在ubuntu上安装opencode并配置vibe-kanban.md -- Notes: index.md 第77行已有本条目(Sources节),无需更新;overview.md OpenCode/Plan Mode/Build Mode/Vibe Coding 等内容已在 AI Tools & Prompt Engineering 段落覆盖,无需修订;Entity 页面 OpenCode.md/Vibe-Kanban.md 已存在;Concept 页面 Vibe-Coding.md/Plan-Mode.md/AGENTS.md.md 已存在;冲突检测:无冲突(与 [[github-上-5000-人收藏的-vibe-coding-神级指南]] 互补,记录于 Source page Contradictions 节)。 - -## [2026-05-30] ingest | 如何传输Docker images 并且在另一个Docker安装 -- Source file: Home Office/如何传输Docker images 并且在另一个Docker安装.md -- Status: ✅ 成功摄入 -- Summary: 通过 `docker save -o xiaoya.tar xiaoyaliu/alist` 将镜像导出为 tar 文件,上传至 Synology NAS 文件系统后通过 SSH 执行 `docker load < xiaoya.tar` 导入镜像,最后在 Container Manager Web UI 中验证镜像可见。提供了无需镜像仓库的离线迁移标准流程。 -- Concepts created: 无(Docker-Image/Save/Load/Registry 等概念内嵌于 source page,未达独立建页阈值) -- Entities created: [[Docker]](wiki/entities/Docker.md)、[[Alist]](wiki/entities/Alist.md);[[Synology-NAS]] 已存在于 wiki/entities/Synology-NAS.md -- Source page: wiki/sources/如何传输docker-images-并且在另一个docker安装.md -- Notes: index.md 第100行已有本条目(Sources节),本次为更新重摄入;overview.md Docker 相关内容已覆盖,无需修订;index.md Entities 节新增 [[Docker]] 和 [[Alist]] 条目;冲突检测:无冲突(Source page 原内容 Key Claims 部分包含 ctr/多架构等原文未提及内容,本次修正为纯基于原文的 Claims)。 - -## [2026-05-29] ingest | 用Docker安装Homarr -- Source file: Home Office/用Docker安装Homarr.md -- Status: ✅ 成功摄入 -- Summary: 通过 Docker Compose 在 Home Server 上部署 Homarr 个人导航仪表盘的完整操作流程。使用 docker-compose.yml 定义 Homarr 容器,官方镜像来源为 ghcr.io/homarr-labs/homarr,默认端口 7575,通过 /var/run/docker.sock 卷挂载集成 Docker 容器状态监控,配置 SECRET_ENCRYPTION_KEY 环境变量进行数据加密,通过 ALL_PROXY=socks5://172.24.0.1:10808 实现容器级代理访问外网。Homarr 提供统一的 Web UI 入口,方便查看和管理 Jellyfin、n8n、Prometheus 等多个自托管服务。 -- Concepts created: 无(Docker Compose/Docker卷/环境变量代理/SOCKS5代理等概念均已存在,未达独立建页阈值) -- Entities created: 无(Homarr Entity 页面已存在于 wiki/entities/Homarr.md) -- Source page: wiki/sources/用docker安装homarr.md -- Notes: index.md 第97行已有本条目(无需更新);overview.md Homarr 已在多处覆盖(line 174 Ubuntu1节点描述/line 395 Home office setup guides),无需修订;Entity 页面 [[Homarr]] 已存在且包含完整内容;冲突检测:与 [[用docker安装portainer]] 在"Docker容器管理能力"方面存在功能性重叠,已记录于 Source page Contradictions 节。 - -## [2026-05-28] ingest | 在Ubuntu上通过VPS+内网反向代理实现域名访问内网穿透 -- Source file: Home Office/在Ubuntu上通过VPS+内网反向代理实现域名访问内网穿透.md -- Status: ✅ 成功摄入 -- Summary: 完整记录通过 VPS(公网)+ frp(反向隧道)+ Caddy(自动 HTTPS 反向代理)实现家庭内网服务公网域名访问的完整方案。涵盖:Cloudflare DNS A 记录配置、VPS 安装 frps 和 Caddy、内网 NAS/Ubuntu 安装 frpc 客户端、Caddyfile 配置所有子域名反向代理(含 NAS/n8n/Transmission/Grafana 等)、SSH 穿透(`ssh -p 60022 user@ubuntu1.ishenwei.online`)、7 步故障排查指南(端口占用/token 不一致/防火墙/Caddy 误 proxy 等)。 -- Concepts created: 无(内网穿透/反向代理/TCP隧道/自动HTTPS/DNS A记录等 Concept 页面均已存在) -- Entities created: 无(frp/Caddy/Cloudflare/RackNerd VPS/Synology NAS DS718 等 Entity 页面均已存在) -- Source page: wiki/sources/在ubuntu上通过vps-内网反向代理实现域名访问内网穿透.md -- Notes: index.md 第99行已有本条目(无需更新);overview.md 内网穿透相关内容已在 Home Lab Infrastructure 段落覆盖;Entity/Concept 页面检查:所有关键实体(frp/Caddy/Cloudflare)和概念(内网穿透/反向代理/TCP隧道)均已存在;冲突检测:无冲突(Source page 已存在,本次为更新重摄入,新增 SSH 穿透内容和 7 步故障排查内容)。 - -## [2026-05-28] ingest | 用Docker安装Apache Superset -- Source file: Home Office/用Docker安装Apache Superset.md -- Status: ✅ 成功摄入 -- Summary: 通过 Docker 容器快速部署 Apache Superset BI 平台的完整操作流程——使用 `apache/superset:GHA-19524015706` 官方镜像,6 步初始化:拉取镜像 → 启动容器(端口映射 8777:8088)→ 创建管理员账户 → 数据库迁移 → 加载示例数据 → 完成初始化,默认凭据 admin/admin。 -- Concepts created: 无(Docker/容器初始化/BI平台/数据可视化等概念均以内嵌形式存在于 source page,未达独立建页阈值) -- Entities created: 无([[Apache Superset]] Entity 页面已存在于 wiki/entities/Apache-Superset.md) -- Source page: wiki/sources/用docker安装apache-superset.md -- Notes: index.md 第95行已有本条目(无需更新);overview.md Apache Superset 已在多处覆盖(line 174/729),无需修订;Entity 页面 [[Apache Superset]] 已存在;冲突检测:无冲突(与 [[install-apache-superset-in-docker]] 内容高度一致,同属 docker run 单容器模式安装)。 - -## [2026-05-27] ingest | 家庭网络环境概览 -- Source file: Home Office/家庭网络环境概览_2026-04-03.md -- Status: ✅ 成功摄入 -- Summary: 完整记录家庭网络基础设施架构,包含公网VPS(RackNerd)、Mac Mini M4主控节点、Synology NAS DS718媒体中心、Ubuntu1监控服务器、Ubuntu2自动化服务器五节点;FRP内网穿透+Caddy反向代理实现公网访问;Docker容器化部署所有服务;Cloudflare DNS托管;涵盖Prometheus/Grafana监控栈、n8n工作流自动化、Gitea自建Git、Jellyfin/Navidrome/Calibre媒体服务等完整应用生态。 -- Concepts created: 无(FRP、Caddy、内网穿透、反向代理、TCP隧道、Home Lab、Prometheus监控均已存在Entity/Concept页面) -- Entities created: 无(RackNerd、Mac Mini、Synology NAS、Ubuntu Server、Jellyfin、Navidrome、Prometheus、Grafana、n8n、OpenClaw、Alertmanager、NodeExporter等Entity页面均已存在) -- Source page: wiki/sources/家庭网络环境概览_2026-04-03.md -- Notes: index.md第94行已有本条目(无需更新);overview.md新增### Home Lab Infrastructure段落;Entity/Concept页面检查:所有关键实体和概念均有现有页面,无需新建;冲突检测:无冲突。 - -## [2026-05-27] ingest | 如何删除旧的废弃的 Docker Container + Volume -- Source file: Home Office/如何删除旧的废弃的docker container +volume.md -- Status: ✅ 成功摄入 -- Summary: 清理 Docker 环境中废弃 Portainer 容器、Volume 和 Network 的完整操作流程——`docker stop/rm` 删除容器、`docker volume ls/rm` 删除卷、`docker network ls/rm` 删除网络;`docker compose down` 一键清理整个 compose 项目;通过 `external: true` 配置避免重启时的网络/卷冲突 WARN。 -- Concepts created: 无(Docker Container/Volume/Network/Compose 等概念均已内嵌引用,未达独立建页阈值) -- Entities created: 无(Portainer Entity 页面已存在) -- Source page: wiki/sources/如何删除旧的废弃的docker-container-volume.md -- Notes: index.md 第96行已有本条目(无需更新);overview.md Docker 相关内容已覆盖(Docker卷/Docker Network/Portainer 等条目),无需新增段落;冲突检测:无冲突。 - -## [2026-05-14] ingest | 用Docker安装Portainer -- Source file: Home Office/用Docker安装Portainer.md -- Status: ✅ 成功摄入 -- Summary: 通过 Docker Compose 方式安装 Portainer 容器管理面板,使用 LTS 版本镜像(portainer/portainer-ce:lts),挂载 Docker Socket 实现本地Docker守护进程管理,暴露 9443(HTTPS管理界面)和 8000(Edge Agent)端口,配置 restart: always 确保自动恢复。 -- Concepts created: 无(Docker Compose/Portainer 等概念均已在 source page 内嵌引用,未达独立建页阈值) -- Entities created: 无(Portainer Entity 页面已存在) -- Source page: wiki/sources/用docker安装portainer.md -- Notes: index.md 第90行已有本条目(无需更新);overview.md 无相关内容,无需更新;Entity 页面 [[Portainer.md]] 已存在且包含完整内容;冲突检测:无冲突(与 [[如何删除旧的废弃的Docker Container + Volume]] 的 related_to 连接已在 Connections 节记录)。 - -## [2026-05-14] ingest | Ubuntu禁用合盖休眠 -- Source file: Home Office/Ubuntu禁用合盖休眠.md -- Status: ✅ 成功摄入 -- Summary: Ubuntu 24.04 笔记本合盖休眠行为配置方法,通过修改 systemd-logind 的 logind.conf 将 HandleLidSwitch 系列参数设为 ignore,使服务器场景下合盖后继续运行;进阶方案通过 systemctl mask 彻底禁用所有休眠目标。 -- Concepts created: 无(systemd-logind、HandleLidSwitch 等概念已内嵌于 source page,未达独立建页阈值) -- Source page: wiki/sources/ubuntu禁用合盖休眠.md -- Notes: index.md 已有本条目(line 99);overview.md 无相关内容,无需更新;Entity 页面无需创建(Ubuntu 24.04、systemd 无独立页面价值);冲突检测:与 Mac Mini 防止锁屏方案无冲突(不同 OS,方法完全不同)。 - -## [2026-05-14] ingest | 安装v2rayN -- Source file: Home Office/安装v2rayN.md -- Status: ✅ 成功摄入 -- Summary: v2rayN 跨平台代理客户端安装指南,覆盖 Windows(x64/arm64)、Linux(x64/arm64,deb/rpm/zip)、macOS(x64/arm64,zip/dmg)全平台,详解便携版与安装版的区别及 ARM64 架构支持。 -- Concepts created: 无(代理客户端/代理核心 Core/跨平台兼容/ARM64架构支持 等概念均已内嵌于 source page,未达独立建页阈值) -- Source page: wiki/sources/安装v2rayn.md -- Notes: index.md 第92行已有本条目;overview.md 无相关内容,无需更新;Entity 页面均已存在(V2RayA 为服务器端工具,与 v2rayN 客户端不同);冲突检测:无已知冲突。 - -## [2026-05-14] ingest | Install Apache Superset in Docker -- Source file: Home Office/Install Apache Superset in Docker.md -- Status: ✅ 验证完成(source page 已存在且完整,无需重新生成) -- Summary: 通过 Docker 容器快速部署 Apache Superset BI 平台,6 步初始化流程(pull → run → create-admin → db upgrade → load_examples → init),默认端口 8777:8088,默认凭据 admin/admin。Source page 记录了 docker run 单容器模式与 docker compose 生产模式的潜在冲突。 -- Concepts created: 无(Docker/容器初始化/BI平台 等概念均已在 source page 内嵌引用,未达独立建页阈值) -- Entities created: 无(Apache Superset/Docker/MySQL Entity 页面均已存在) -- Source page: wiki/sources/install-apache-superset-in-docker.md -- Notes: index.md 第104行已有本条目;overview.md 未提及,无需更新;Entity 页面均已存在;冲突检测:与 [[用docker安装apache-superset]] 的 docker run vs docker compose 冲突已在 source page Contradictions 节记录。 - -## [2026-05-14] ingest | 群晖NAS科学上网方法 -- Source file: Home Office/群晖NAS科学上网方法.md -- Status: ✅ 成功摄入 -- Summary: 在群晖(Synology)NAS 上通过 Docker 部署 V2RayA 实现透明代理,核心洞察:透明代理对 NAS 本机有效,但对 Docker Daemon(docker pull)无效;Engineering Best Practice 是显式配置 Docker 守护进程 HTTP 代理环境变量(systemd drop-in),而非依赖 Host 透明代理。 -- Concepts created: [[Docker-Daemon-Proxy]](新建,通过 systemd 环境变量为 Docker Daemon 配置显式代理;透明代理失效时的推荐替代方案) -- Entities created: [[V2RayA]](新建,基于 V2Ray 的透明代理 Web 管理界面)、[[Synology-DSM]](新建,群晖 NAS 操作系统,Docker 服务名 pkg-ContainerManager-dockerd);[[Synology-NAS.md]] 补充 Docker 套件说明 -- Source page: wiki/sources/群晖nas科学上网方法.md -- Notes: index.md 第83行已有本条目(补充日期前缀 2025-03-08);overview.md 第721/1021行已有相关内容(V2RayA 描述/四层科学上网对比),无需更新;冲突检测:无冲突(与 [[ubuntu-server科学上网]] 的 Docker Daemon Proxy 内容一致,互相引用);[[SOCKS5代理.md]] 中 Docker Daemon 代理引用已更新为正确 wikilink。 - -- Source file: Home Office/NodeWarden - 把 Bitwarden 搬上 Cloudflare Workers,彻底告别服务器.md -- Status: ✅ 验证完成(source page 已存在且完整,无需重新生成) -- Summary: NodeWarden 将 Bitwarden 服务器端部署到 Cloudflare Workers,实现真正的无服务器密码管理。数据存储在 Cloudflare D1(SQLite)和 R2(对象存储),支持 Bitwarden 官方全平台客户端登录。核心优势:零 VPS 成本、自动部署、免费 TOTP/Passkey 支持(官方需付费会员)。 -- Concepts created: 无(Serverless Computing/Edge Computing/TOTP/Passkey 已在 Source Page 内嵌引用,未达独立建页阈值) -- Entities created: 无(NodeWarden/Bitwarden/Cloudflare-Workers/Cloudflare-D1/Cloudflare-R2 Entity 页面均已存在) -- Source page: wiki/sources/nodewarden-把-bitwarden-搬上-cloudflare-workers-彻底告别服务器.md -- Notes: index.md 第99行已有本条目;Entity 页面 [[nodewarden.md]] 和 [[bitwarden.md]] 均已存在并包含完整内容;冲突检测:无冲突。 - -## [2026-05-13] ingest | macOS 创建与解除 Symbolic Link(OpenClaw 目录映射) -- Source file: Home Office/macOS 创建与解除 Symbolic Link(OpenClaw 目录映射).md -- Status: ✅ 成功摄入 -- Summary: macOS 下通过符号链接将 OpenClaw 隐藏目录 `~/.openclaw` 映射为可见目录 `~/openclaw`,使 Finder / Obsidian 可直接访问——`ln -s ~/.openclaw ~/openclaw` 创建,`rm ~/openclaw` 删除链接(不删除真实目录)。推荐长期方案:建立可见目录 `~/openclaw` 作为实际存储,反向链接 `~/.openclaw -> ~/openclaw`。 -- Concepts created: [[SymbolicLink]](新建 Concept 页,文件系统概念,macOS/Linux 通用) -- Entities created: 无([[OpenClaw]] Entity 页面已存在,仅更新 sources 列表补充本文档) -- Source page: wiki/sources/macos-创建与解除-symbolic-link-openclaw-目录映射.md -- Notes: index.md 第94行已有本条目(无需更新);overview.md 第390行已有 [[Symbolic Link]] 引用于 Home Server Automation 节(无需更新);冲突检测:无冲突。 - -## [2026-05-09] ingest | 如何在Ubuntu Server安装 Docker & Docker Compose -- Source file: Home Office/如何在Ubuntu Server安装 docker & docker compose -- Status: ✅ 成功摄入 -- Summary: Ubuntu Server 通过 Docker 官方 APT 仓库安装 Docker Engine + Docker Compose V2 完整指南——5步流程:卸载旧版冲突包 → 添加 Docker 官方 GPG 密钥 → 配置 APT 仓库 → 安装 5 组件包(docker-ce/docker-ce-cli/containerd.io/docker-buildx-plugin/docker-compose-plugin)→ hello-world 验证 → usermod 配置非 root 用户组。是 Home Server Automation 所有 Docker 部署服务(Portainer/Jellyfin/Navidrome/it-tools/Superset)的前置依赖。 -- Concepts created: 无(Docker/Docker Compose/APT仓库/GPG验证等均为已存在 Entity/Concept;Docker 用户组属基础概念,无需独立建页) -- Entities created: 无(Docker/Docker-CE/hello-world/Docker-Buildx-Plugin/Docker-Compose-Plugin/containerd 均已存在) -- Source page: wiki/sources/如何在ubuntu-server安装-docker-docker-compose.md -- Notes: index.md 第88行已有本条目;overview.md 第384行新增独立条目(Docker 安装指南在 Home Server Automation 节中的前置地位);冲突检测:无冲突;Source Page 完整包含 Summary/Key Claims/Key Quotes/Key Concepts/Connections/Contradictions;相关来源均已通过 Connections 关联(Portainer/Jellyfin/Navidrome/it-tools 等前置依赖链路)。 - -## [2026-04-26] ingest | 如何判别你的Linux 服务器是 x64(也就是 x86_64)还是 ARM64 -- Source file: Home Office/如何判别你的Linux 服务器是 x64(也就是 x86_64)还是 ARM64.md -- Status: ✅ 成功摄入 -- Summary: Linux 服务器 CPU 架构检测实操指南,涵盖 4 种方法:`uname -m`(返回 x86_64/aarch64/armv7l)、`lscpu`(Architecture 字段)、`/proc/cpuinfo`(model name/AArch64)、`file /bin/bash`(ELF 元数据)。用于确保下载和安装正确的软件包版本。 -- Concepts created: [[CPU架构检测]](Source Page 内嵌引用,未独立建页)、[[ELF格式]](Source Page 内嵌引用,未独立建页) -- Entities created: 无(属通用运维知识,无特定商业实体) -- Source page: wiki/sources/如何判别你的linux-服务器是-x64-也就是-x86_64-还是-arm64.md -- Notes: index.md 第86行已有本条目;Source Page 于 2026-04-14 创建,包含完整 Summary/Key Claims/Key Quotes/Key Concepts/Connections/Contradictions;Source Page 引用 [[linux-运维必会的-150-个命令]] 作为 Related Sources;冲突检测:无冲突。 - -## [2026-05-09] ingest | 安装Ubuntu 24.04.2在HP ZBook工作站笔记本上 -- Source file: Home Office/安装Ubuntu-24.04.2在HP Zbook工作站笔记本上.md -- Status: ✅ 更新摄入(源文件修改于 2026-04-26,重新生成 source page + 完善相关记录) -- Summary: HP ZBook 工作站 Ubuntu 24.04.2 Desktop 完整安装指南——Rufus ISOHybrid ISO 模式写入 → GPT 分区方案 → HP BIOS AHCI/Secure Boot/Fast Boot 配置 → F9 UEFI 启动 → efibootmgr NVRAM BootOrder 强制重写 → EFI 默认路径伪装 → UEFI Only 终极切换。包含 /boot/efi FAT32 /ext4 /home ext4 /swap 分区规范及 NVMe 自动对齐说明。 -- Concepts created: [[GPT分区表]](新建 Concept 页,修复断链;MBR 对比、Bios/UEFI 分区规范) -- Entities created: 无(HP ZBook/Rufus/Ubuntu 24.04/Clonezilla Entity 页面均已存在) -- Source page: wiki/sources/安装ubuntu-24-04-2在hp-zbook工作站笔记本上.md -- Notes: index.md 第82行已有本条目(更新为 [2026-04-26] + 一行摘要);overview.md HP ZBook Entity 条目已补充 BIOS 三项关键设置(AHCI/Secure Boot/Fast Boot)+ 解决方案链路;NVMe硬盘分区 Concept sources 补充 clonezilla 源;冲突检测:无实质冲突——GPT分区表为新创 Concept,ISOHybrid/efibootmgr/NVMe分区/ext4 等内容与其他来源一致无矛盾。 - -## [2026-05-09] ingest | 在Synology NAS上安装CloudDrive2 -- Source file: Home Office/在Synology NAS上安装CloudDrive2.md -- Status: ✅ 成功摄入 -- Summary: Synology NAS(DSM 7+)安装 CloudDrive2 实操指南——矿神源社群安装 → root 权限修复命令(sed 修改 privilege 文件)→ Web UI(19798端口)配置 → 阿里云盘 App 扫码授权(仅资源目录)→ 挂载 Aliyun 目录。 -- Concepts created: 无(CloudDrive2 在源文件中仅出现1次,未达独立建页标准;云盘挂载、Root权限修复等概念已在 overview.md Key Concepts 中存在) -- Entities created: 无(Synology NAS/阿里云盘/CloudDrive2 在源文件中均仅出现1次,未达独立建页标准) -- Source page: wiki/sources/在synology-nas上安装clouddrive2.md -- Notes: index.md 第90行已有本条目([2026-04-26]);overview.md Home Server Automation 章节第386行已有 CloudDrive2 相关描述,无需额外更新;冲突检测:无冲突;相关来源 [[群晖nas科学上网方法]](存在)和 [[用docker安装jellyfin]](存在)均已关联。 - -## [2026-05-09] ingest | 用Docker安装it-tools -- Source file: Home Office/用Docker安装it-tools.md -- Status: ✅ 成功摄入 -- Summary: 通过 Docker Compose 在 Home Server 环境部署 it-tools(corentinth/it-tools:latest),包含完整 YAML 配置:交互模式(stdin_open + tty)、端口映射(8999→80)、内存限制(128M)、自动重启策略(unless-stopped)。 -- Concepts created: 无(Docker Compose/容器重启策略/容器资源限制等 Concept 页面均已存在) -- Entities created: 无(it-tools Entity 页面已存在,本次更新 sources 字段;CorentinTh/it-tools 已在 Entity 页面) -- Source page: wiki/sources/用docker安装it-tools.md -- Notes: index.md 第73行已有本条目;overview.md Home Server Automation 节已有 it-tools 相关描述(第619行);冲突检测:源文件内容与现有 Entity/Concept 页面完全一致,无冲突。 - -## [2026-04-09] ingest | 养虾日记3:用 Obsidian + Gitea 为 AI 助手构建持久化笔记系统 -- Source file: 微信公众号/养虾日记3:用 Obsidian + Gitea 为 AI 助手构建持久化笔记系统.md -- Status: ✅ 成功摄入 -- Summary: 用 Obsidian + Gitea + OpenClaw Obsidian Skill 构建 AI 持久化笔记系统——解决"AI 对话结束输出就消失"的核心问题。iCloud Drive 三端同步 + Gitea 版本控制 + Obsidian 双链知识库 + Karpathy LLM Wiki 理念(增量积累 vs RAG 从零检索)。核心价值:把 AI 变成"会自动整理笔记的实习生"。 -- Concepts created: 无(entities/ 和 concepts/ 目录为空,所有 Key Concepts 保留为 source page 内嵌 wikilink 引用——Agent Archive/Knowledge Base/LLM Wiki/Obsidian Web Clipper/Graph View/Obsidian Git/QMD 均以内嵌形式存在) -- Entities created: 无(entities/ 和 concepts/ 目录为空,Obsidian/Gitea/OpenClaw/iCloud Drive 均以内嵌 wikilink 引用于 source page) -- Source page: wiki/sources/养虾日记3-用-obsidian-gitea-为-ai-助手构建持久化笔记系统.md -- Notes: index.md 条目已补加日期前缀 [2026-04-09] + 一行摘要;overview.md 第60行已有完整章节(Obsidian + Gitea + OpenClaw 持久化笔记系统),内容一致无需更新;冲突检测:与 [[knowledge-base-rag]] 的 RAG vs LLM Wiki 理念冲突已记录于 source page Contradictions 节(两者可互补:Wiki 负责长期积累,RAG 负责快速检索入口)。 - -## [2026-05-08] ingest | 通过VPS+内网反向代理实现域名访问内网穿透 -- Source file: Home Office/通过VPS+内网反向代理实现域名访问内网穿透.md -- Status: ✅ 成功摄入 -- Summary: 通过 VPS(frps + Caddy)+ frp 反向隧道,实现内网服务公网域名 HTTPS 访问的完整操作指南。覆盖阿里云 DNS 配置、VPS 安装 frps v0.65.0 + Caddy、NAS/Ubuntu frpc 配置、多服务端口映射、Caddy 反向代理、SSH 穿透及 7 步系统化故障排查。 -- Concepts created: [[frp]](Entity 页面已有,重写为 Concept 格式并添加完整内容)、[[内网穿透]](新建 Concept 页)、[[反向代理]](新建 Concept 页)、[[TCP隧道]](新建 Concept 页) -- Entities created: [[阿里云-DNS]](新建 Entity 页);RackNerd/Synology NAS DS718/n8n/Ubuntu/Caddy/frp 均已存在 -- Source page: wiki/sources/通过vps-内网反向代理实现域名访问内网穿透.md -- Notes: index.md 第71行已有本条目(更新为 [2026-04-03] + 一行摘要);overview.md Home Server Automation 节已有 frp/Caddy/内网穿透相关 Entity 和概念条目,新增强条目标题 entry(第381-383行之间);冲突检测:与 [[ubuntu-安装-frp-0-65-0-x86-64-操作笔记]] 互补而非互斥——后者侧重 FRP 工具安装配置参考,前者是完整实践指南。 - -## [2026-05-06] ingest | Clonezilla对Ubuntu Server进行全盘镜像备份 -- Source file: Home Office/Clonezilla对Ubuntu Server进行全盘镜像备份.md -- Status: ✅ 成功摄入 -- Summary: 使用 Clonezilla(再生龙)对 HP ZBook Ubuntu Server 进行全盘镜像备份到 Synology NAS NFS 的完整操作指南。覆盖 Rufus 启动盘制作(GPT+UEFI/ISO镜像模式)、Clonezilla live U盘启动、NFS 网络挂载、Beginner 模式 savedisk 参数配置(-z1p/-sfsck)、镜像命名规范及 restordisk 灾难恢复完整路径。与 [[Ubuntu服务器通过rsync实现日常增量备份]] 互补,构成"全量快照+增量同步"双层备份策略。 -- Concepts created: 无(全盘镜像备份/NFS网络存储/ISOHybrid镜像/GPT vs MBR 仅在本文档出现1次,未达≥2次独立建页阈值,保留于 Source Page 内嵌引用) -- Entities created: 无(Clonezilla/Rufus/Ubuntu Server/NFS 均已在 overview.md 有独立 Entity 条目,无需重复建页) -- Source page: wiki/sources/clonezilla对ubuntu-server进行全盘镜像备份.md -- Notes: index.md 第104行已有本条目(更新为 [2026-05-06] + 一行摘要);overview.md rsync 备份条目后新增 [[clonezilla对ubuntu-server进行全盘镜像备份]] 独立 entry(第379行),Clonezilla Entity 条目补充了具体参数细节(第708行);冲突检测:无实质冲突——[[Ubuntu服务器通过rsync实现日常增量备份]](文件级增量/高频)与本文档(全量磁盘镜像/低频)互补而非互斥,两者共同构成完整备份策略。 - -## [2026-05-06] ingest | 3X-UI Xray on BandwagonVPS -- Source file: Home Office/3X-UI Xray on BandwagonVPS.md -- Status: ✅ 成功摄入 -- Summary: 在 BandwagonVPS(AS 104.194.92.188,kiwi.ishenwei.online)上部署 3X-UI 可视化管理面板 + Xray 代理服务——官方一键安装脚本(mhsanaei/3x-ui),VLESS+Reality 协议入站配置,Panel/xray 双进程运行状态,BBR 拥塞控制启用,Web UI 管理入口(端口 2053),客户端使用 v2rayN(Windows/Linux)和 v2rayNG(Android)。属四层科学上网体系中"VPS服务端"层级。 -- Concepts created: 无(3X-UI/VLESS+Reality/Geo文件/BBR 均仅在本文档出现 1 次,未达≥2次独立建页阈值,保留于 Source Page 内嵌引用) -- Entities created: 无(Bandwagon VPS/v2rayN/v2rayNG/Xray 均已在 overview.md 和其他 Source Page 中作为内嵌 wikilink 引用,未达独立 Entity 建页阈值) -- Source page: wiki/sources/3x-ui-xray-on-bandwagonvps.md -- Notes: index.md 第105行已有本条目(已更新为 [2026-02-10] + 一行摘要);overview.md Home Server Automation 节已有 [[3X-UI]]/[[Xray]]/[[Bandwagon VPS]]/[[v2rayN]]/[[v2rayNG]]/[[BBR]] 相关 Entity 条目(第670-699行),四层科学上网对比分析(第1015行)已引用本文档;冲突检测:无实质冲突——本文档与 [[群晖NAS科学上网]](NAS透明代理)/[[ubuntu-server科学上网]](终端代理)/[[网件RAX50路由器刷梅林固件与科学上网插件安装教程]](路由网关)互补,共同构成完整四层科学上网体系。 - -## [2026-05-02] ingest | Ubuntu 24.04 启动 SSH 服务 -- Source file: Home Office/Ubuntu 24.04 enable SSH.md -- Status: ✅ 成功摄入 -- Summary: Ubuntu 24.04 SSH 快速启用指南——安装 OpenSSH Server → systemctl start/enable ssh → UFW 防火墙配置 → 验证服务状态。核心变化:Ubuntu 24.04 默认使用 ssh.socket 激活机制(按需启动而非持续运行后台进程)。进阶配置:可通过 systemctl edit ssh.socket 修改监听端口;切换回传统模式:disable ssh.socket + enable ssh.service。 -- Concepts created: 无(Socket Activation/UFW/OpenSSH 仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用) -- Entities created: 无(Ubuntu-24.04/SSH 相关实体均已在 [[Ubuntu-Server]] Entity 页面中引用,无需重复建页) -- Source page: wiki/sources/ubuntu-24-04-enable-ssh.md -- Notes: index.md 第95行已有本条目(补充日期戳和一行摘要);overview.md Ubuntu 服务器 rsync 备份条目后新增 [[ubuntu-24-04-enable-ssh]] 独立 entry,补充 SSH 与 rsync 备份/FRP 内网穿透的关联关系;冲突检测:无实质冲突——[[Ubuntu-Server]] Entity 页面已详细记录 ssh.socket 激活机制,本文档提供操作指南层面的补充,两者一致无矛盾。 - -## [2026-04-26] ingest | RAX50 路由器更新Merlin Clash订阅 -- Source file: Home Office/RAX50 路由器 更新Merlin Clash订阅.md -- Status: ✅ 验证完成(source page 已存在且完整,无需重新生成) -- Summary: RAX50 路由器 Merlin Clash 订阅更新操作流程——通过 Web UI 进入 Merlin Clash,使用小白一键订阅助手导入 vless URL 并重命名配置文件(如 kiwi3),选择配置文件后点"保存&启动",若未生效则执行"快速重启"使新订阅生效。 -- Concepts created: 无(订阅更新/配置文件切换/快速重启仅在本文档出现1次,未达≥2次独立建页阈值,保留于 Source Page 内嵌引用) - -## [2026-04-26] ingest | 用Docker安装transmission -- Source file: Home Office/用Docker安装transmission.md -- Status: ✅ 验证完成(source page 已存在且完整,date 已更新为 2026-04-26) -- Summary: Docker Compose 在 Home Server 部署 Transmission BT 下载服务——使用 linuxserver/transmission:latest 镜像,配置 Web UI(9091端口)、BT Peer 通信(51413端口/UDP)、PUID/PGID 权限映射、Web UI 认证(USER/PASS)、配置目录与下载目录卷挂载。Transmission 是家庭媒体中心的核心组件,与 Jellyfin/Navidrome 共同构成"下载→整理→播放"媒体工作流。 -- Concepts created: 无(Docker Compose/BT下载/Docker Volume/桥接网络等概念仅在本文档出现1次,未达≥2次独立建页阈值,保留于 Source Page 内嵌引用) -- Entities created: 无([[LinuxServer.io]]/[[Transmission]]/[[Docker]] 均已存在或未达独立建页阈值,保留于 Source Page 内嵌引用) -- Source page: wiki/sources/用docker安装transmission.md -- Notes: index.md 第69行已有本条目([2026-04-26]);source page 原有 date 为 2026-04-14,已更新为 2026-04-26 与其他条目保持一致;冲突检测:无冲突;本文档与 [[用Docker安装jellyfin]]/[[用Docker中安装Navidrome]] 互补,共同服务于家庭媒体中心工作流。 -- Entities created: 无([[网件RAX50]]/[[MerlinClash插件]]/[[小白一键订阅助手]]/[[机场]] 均已存在,已在 Source Page 中引用) -- Source page: wiki/sources/rax50-路由器-更新merlin-clash订阅.md -- Notes: index.md 第95行已有本条目([2026-04-26]);source page 内容与 raw 文件完全匹配,无需重新生成;overview.md 第664-667行 Home Server Automation 节已有 [[网件RAX50]]/[[MerlinClash插件]]/[[机场]] Entity entries;冲突检测:无冲突;本文档为 [[网件RAX50路由器刷梅林固件与科学上网插件安装教程]] 的配套日常维护操作文档。 - -## [2026-04-29] ingest | 网件RAX50路由器刷梅林固件与科学上网插件安装教程 -- Source file: Home Office/网件RAX50路由器刷梅林固件与科学上网插件安装教程.md -- Status: ✅ 成功摄入 -- Summary: 网件RAX50路由器刷入梅林固件并安装科学上网插件的完整操作指南——二次刷机流程(.chk 过渡固件 → .w 梅林固件)、JFFS双清操作、MerlinClash插件安装(策略组分流、节点自动延迟测试、故障转移)、定时订阅更新与守护进程配置。 -- Concepts created: 无(JFFS双清/故障转移等概念仅在本文档出现1次,未达≥2次独立建页阈值;[[策略组分流]]/[[订阅机制]]等已存在,已在Source Page中引用) -- Entities created: [[MerlinClash插件]](新增 Entity 页面);[[梅林固件]]/[[网件RAX50]](已更新 sources 字段和 Related 字段) -- Source page: wiki/sources/网件rax50路由器刷梅林固件与科学上网插件安装教程.md -- Notes: index.md 第67行已有本条目(补充了日期戳和一行摘要);overview.md Home Server Automation 节已存在 [[网件RAX50]]/[[梅林固件]]/[[MerlinClash插件]]/[[机场]] Entity entries(Key Concepts 已有 [[JFFS双清]]/[[策略组分流]]/[[故障转移]]/[[订阅机制]]);冲突检测:无冲突;本文档与 [[群晖NAS科学上网方法]]/[[ubuntu-server科学上网]] 互补(分别对应路由网关/VPS服务端/NAS/Server终端四层方案)。 - -## [2026-04-29] ingest | MySQL MariaDB 数据库详细信息 -- Source file: Home Office/MySQL MariaDB 数据库详细信息.md -- Status: ✅ 验证完成(source page 已存在且完整,无需更新) -- Summary: MariaDB/MySQL 数据库访问配置文档——内网(192.168.3.17:3307)和公网(mysql.ishenwei.online:63307)双通道访问;核心内容为新安装 MariaDB 后通过 socket 本地登录创建 `shenwei@%` 远程访问用户的完整 SQL 操作流程。 -- Concepts created: 无(Socket 登录/用户权限概念仅在本文档出现1次,未达≥2次独立建页阈值,保留于 Source Page 内嵌引用) -- Entities created: 无(MariaDB/群晖 NAS Entity 页面已存在,已更新 sources 字段) -- Source page: wiki/sources/mysql-mariadb-数据库详细信息.md -- Notes: index.md 第96行已有本条目([2026-04-26]);source page 内容与 raw 文件完全匹配,无需重新生成;冲突检测:无冲突。 - -## [2026-04-28] ingest | Ubuntu服务器通过rsync实现日常增量备份 -- Source file: Home Office/Ubuntu服务器通过rsync实现日常增量备份.md -- Status: ✅ 成功摄入 -- Summary: Ubuntu Server rsync 增量备份完整方案——备份脚本 + Crontab 凌晨3点自动执行 + NAS 作为备份目标。核心配置:锁文件防并发、挂载点检查防写入本地磁盘、rsync -azR --delete 参数备份 Docker 卷和配置文件、NFS 永久挂载通过 /etc/fstab(_netdev 参数)。灾难恢复路径:单文件→直接拷贝;崩溃→反向 rsync;硬盘坏→Clonezilla + rsync 时间点恢复。与 [[如何在Ubuntu Server上通过NFS挂载Synology NAS上的共享文件夹]] 共同构成 NAS 备份基础设施;与 [[Clonezilla对Ubuntu Server进行全盘镜像备份]] 形成"全量+增量"双层保护体系。 -- Concepts created: [[Fstab]](新增)、[[Docker-Volume-Backup]](新增) -- Entities created: [[Synology-NAS]](新增) -- Source page: wiki/sources/ubuntu服务器通过rsync实现日常增量备份.md -- Notes: index.md Sources 部分已有本条目(添加日期戳和一行摘要);overview.md Home Server Automation 节新增本 Source 独立 entry,Key Concepts 新增 [[ubuntu服务器通过rsync实现日常增量备份]]/[[rsync]]/[[Fstab]]/[[NFS]]/[[Synology-NAS]]/[[Docker-Volume-Backup]];Entity 页面更新:[[rsync]] Synology-NAS wikilink 已更新(Synology NAS DS718 → Synology-NAS),[[Clonezilla]] 已添加本 source 为 Related Sources;冲突检测:无实质冲突,与 NFS 挂载源文档互补(前者讲 rsync 备份脚本,后者讲 NFS 挂载配置),与 Clonezilla 形成互补(增量 vs 全量)。 - -## [2026-07-10] ingest | Inbox De-clutter -- Source file: Agent/usecases/inbox-declutter.md -- Status: ✅ 验证完成(source page 已存在且完整,content 同步于 2026-07-10) -- Summary: AI Agent 自动整理邮箱订阅 newsletters——通过每日 Cron Job(每天 20:00)阅读过去 24 小时 Newsletter 新邮件,生成摘要并附链接,然后请求用户反馈,持续学习偏好。核心价值:用 AI 代替人工翻阅 Newsletter,减少信息噪音;偏好学习机制使摘要越用越精准。 -- Concepts created: [[Cron Job]] / [[Email Triage]] / [[Newsletter Digest]] / [[Preference Learning]](均以内嵌 wikilink 引用存在于 source page,未达独立建页阈值) -- Source page: wiki/sources/inbox-declutter.md -- Notes: index.md 第251行已有本条目(Sources 节);overview.md 已有相关概念覆盖,无需修订;Entity 页面 [[OpenClaw]](wiki/entities/OpenClaw.md)已存在,[[Gmail OAuth]] 已在 source page 中引用,未达独立建页阈值;冲突检测:无已知冲突——与 [[custom-morning-brief]](同为 OpenClaw Cron Job 模式但垂直场景不同)互补,与 [[email-triage]] 为垂直实现关系。 - -## [2025-09-29] ingest | Linux 运维必会的 150 个命令 -- Source file: Home Office/Linux 运维必会的 150 个命令.md -- Status: ✅ 成功摄入(source page 已存在,内容已更新) -- Summary: Linux 系统管理命令的全面分类参考,涵盖 150 个运维必备命令,分为 16 大类:帮助命令(2)、文件目录操作(18)、文本处理(21)、压缩解压缩(4)、信息显示(11)、文件搜索(4)、用户管理(10)、基础网络(11)、深入网络(9)、磁盘文件系统(16)、权限管理(4)、用户登录信息(7)、内置命令及其他(19)、系统性能监控(9)、关机重启(6)、进程管理(15) -- Concepts created: 无(Shell/管道/重定向/系统命令等概念均仅出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用) -- Entities created: 无(man 命令/Shell/文件系统等实体各仅出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用) -- Source page: wiki/sources/linux-运维必会的-150-个命令.md -- Notes: index.md Sources 部分已有本条目(第100行);overview.md 已有 "Linux Operations Command Reference" 相关内容(第427-428行),与本文档互补;冲突检测:无实质冲突,本文为纯知识参考文档;log.md 此前缺失本条目,本次补充追加。 - -## [2026-04-28] ingest | 用Docker中安装Navidrome -- Source file: Home Office/用Docker中安装Navidrome.md -- Status: ✅ 成功摄入(source page 已存在,内容已更新) -- Summary: Docker Compose 在群晖 NAS 上部署 Navidrome 音乐流媒体服务器——使用 deluan/navidrome:latest 镜像,配置只读音乐目录挂载(/volume1/music:ro)、转码配置 UI、自动转码下载(ND_AUTOTRANSCODEDOWNLOAD=true)、200MB 转码缓存限制 -- Concepts created: 无(本文档中提到的 Docker 媒体服务器/音乐流媒体/NAS 多媒体服务概念均仅出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用) -- Entities created: 无(Navidrome/Jellyfin/群晖 NAS 各 Entity 页面已存在,已更新 sources 字段) -- Source page: wiki/sources/用docker中安装navidrome.md -- Notes: index.md Sources 部分已更新条目(添加日期戳和一行摘要);Entity 页面更新:[[entities/Navidrome]] 添加 sources 字段,[[entities/Jellyfin]] sources 字段追加本 source;冲突检测:与 [[用docker安装jellyfin]] 形成互补关系(Jellyfin 管视频,Navidrome 管音乐),无实质冲突;与 [[家庭监控方案]] 等其他 Home Office 部署方案共用群晖 NAS Docker 环境,无冲突。 - -## [2026-04-28] ingest | Cloud Operating Model: Key Strategies and Best Practices -- Source file: Cloud & DevOps/Cloud Operating Model Key Strategies and Best Practices.md -- Status: ✅ 成功摄入 -- Summary: 云运营模型(COM)完整指南——四大核心支柱:治理与合规、自动化、安全、成本管理(FinOps);六步设计流程:评估成熟度→建立治理框架→自动化运营→实施成本管理→强化安全→持续监控与AI优化;FinOps通过Reserved/Spot实例降本40-70%;Zero Trust安全策略减少安全事件60%;AI驱动异常检测减少停机时间45%;多云策略降低停机风险40%。 -- Concepts created: 无(Cloud-Operating-Model/FinOps/Zero-Trust-Security/Multi-Cloud-Strategy/Infrastructure-as-Code/Cloud-Governance/AIOps/Cloud-Cost-Optimization/Serverless-Computing/Green-Computing 各已在 Wiki 中存在对应 Concept 页面,已追加本文档为来源) -- Entities created: 无(AWS/Azure/Google-Cloud/Terraform/Kubernetes 各已在 Wiki 中存在对应 Entity 页面,已追加本文档为来源) -- Source page: wiki/sources/cloud-operating-model-key-strategies-and-best-practices.md -- Notes: index.md Sources 部分更新原无日期条目为 [2025-03-01];overview.md Cloud Transformation & DevOps 部分新增本 Source 独立 entry;概念/实体页面更新:Cloud-Operating-Model/FinOps/AIOps/Cloud-Cost-Optimization/Green-Computing/Cloud-Governance/Infrastructure-as-Code/Zero-Trust/Zero-Trust-Architecture/Multi-Cloud-Strategy 各 Concept 页面已添加 sources 字段;AWS/Azure/Google-Cloud/HashiCorp/Kubernetes 各 Entity 页面已添加 sources 字段;冲突检测:与 [[how-can-a-multi-cloud-strategy-transform-your-business-roi]] 在"统一治理vs多云灵活性"上存在潜在张力——两者互补而非冲突(多云=选择层,COM=治理层),已在 overview.md 中记录;与传统本地 IT 的安全/成本管理策略存在范式转变视角差异,无实质冲突。 - -## [2026-04-26] ingest | DevOps Maturity Model From Traditional IT to Advanced DevOps -- Source file: Cloud & DevOps/DevOps Maturity Model From Traditional IT to Advanced DevOps.md -- Status: ✅ 成功摄入 -- Summary: DevOps 成熟度模型五阶段演进框架——从传统 IT(Phase 1 瀑布式/团队孤立)到完全成熟(Phase 5 连续部署/零人工干预);四个核心评估维度:文化与战略、自动化、结构与流程、协作与共享、技术;衡量指标:DORA 四项 + 错误预算 + 时间到市场;DevSecOps 集成安全于每个阶段;七类常见演进障碍识别。 -- Concepts created: [[concepts/Error-Budget]]、[[concepts/Immutable-Infrastructure]]、[[concepts/MVP]](Error Budget 和 Immutable Infrastructure 原有页面已存在但未关联本文档,已更新 sources 字段;MVP 新建) -- Entities created: 无(DevOps Maturity Model Entity 页面已存在,已追加本文档为来源) -- Source page: wiki/sources/devops-maturity-model-from-traditional-it-to-advanced-devops.md -- Notes: index.md Sources 部分更新原有无日期条目为 [2025-03-01];概念页面更新:[[entities/DevOps-Maturity-Model]] 已追加摄取记录,[[concepts/Error-Budget]] 和 [[concepts/Immutable-Infrastructure]] 已添加 sources 引用;[[concepts/MVP]] 新建并添加到 index.md;冲突检测:与 [[DevOps Culture and Transformation]] 存在文化转型是"前提还是结果"的潜在视角差异;与 Waterfall 的对比无实质性冲突。 - -## [2026-04-28] ingest | RTO vs RPO: Key Differences for Modern Disaster Recovery -- Source file: Cloud & DevOps/RTO vs RPO Key Differences for Modern Disaster Recovery.md -- Status: ✅ 成功摄入 -- Summary: RTO(恢复时间目标)与 RPO(恢复点目标)的核心区别与在现代持续交付中的实践——RTO 衡量停机时长容忍度,RPO 衡量数据丢失容忍度;现代部署场景下软件故障(Bug/错误迁移/AI 模型异常)比硬件灾难更频繁;Feature Flag 通过部署与发布解耦、渐进式灰度发布(1%→5%→25%→100%)、Kill Switch 将 RTO 从"小时级回滚"缩短至"秒级开关切换";应用分层策略(Tier 1 Critical <5min/<1min → Tier 3 <4h/<1h);成本效益原则——预防优于恢复,Feature Flag 方案比传统热备基础设施成本更低。 -- Concepts created: FeatureFlag/RTO/RPO/KillSwitch/ProgressiveRollout/MicroRecovery(以上6个概念均仅在本文档出现1次,未达≥2次独立建页阈值,保留于 Source Page 内嵌引用) -- Entities created: LaunchDarkly/Veeam/Acronis/HP/ChristianDior(以上5个实体均仅在本文档出现1次,未达≥2次独立建页阈值,保留于 Source Page 内嵌引用) -- Source page: wiki/sources/rto-vs-rpo-key-differences-for-modern-disaster-recovery.md -- Notes: index.md Sources 部分更新原无日期条目,添加 [2019-01-18] 日期戳和一行摘要;overview.md Cloud Transformation & DevOps 部分新增 entry,置于 [[ctp-topic-72-enterprise-dr-strategy-aws-backup]] 之后,强调软件层 DR(Feature Flag/秒级 RTO)与基础设施层 DR(AWS Backup/热备)的互补关系;冲突检测:与 [[ctp-topic-72-enterprise-dr-strategy-aws-backup]] 和 [[what-i-know-about-cloud-service-delivery-1]](第12领域"备份恢复与灾难管理")形成引用关系,无实质冲突;与传统 DevOps DR 认知(硬件灾难为主)存在框架视角差异(现代:软件故障更频繁),属互补而非冲突。 - -## [2026-04-28] ingest | What is DevSecOps? Best Practices, Benefits, and Tools -- Source file: Cloud & DevOps/What is DevSecOps Best Practices, Benefits, and Tools.md -- Status: ✅ 成功摄入 -- Summary: DevSecOps 将安全实践深度嵌入 SDLC 全流程——SAST/DAST/SCA/IAST 四类工具链覆盖编码/测试/依赖/运行时各阶段;Shift Left 和 Shift Right 策略分别在早期和后期保障安全;全员安全责任文化和"break the build"机制实现自动化安全门控;据报告 70% 上线后发现的安全漏洞可通过 DevSecOps 预防。 -- Concepts created: [[concepts/DevSecOps]](已有页面,内容已丰富化:新增 SAST/DAST/SCA/IAST 工具链表、Shift Left/Shift Right 策略、break the build 机制、OWASP Top Ten 引用;sources 字段追加本文档)、[[concepts/SAST]](新建)、[[concepts/DAST]](新建) -- Entities created: [[entities/OWASP]](已有 Entity 页面,内容已丰富化:新增 Top Ten 2021 最新列表详细内容;sources 字段追加本文档) -- Source page: wiki/sources/what-is-devsecops-best-practices-benefits-and-tools.md -- Notes: index.md Sources 部分新增 [2023-10-30] 条目;overview.md Cloud Transformation & DevOps 部分新增 entry,置于 [[devops-culture-and-transformation-fostering-collaboration-agile-practices-and-innovation-linkedin]] 和 [[cloud-devop-maturity-guideline]] 之间,补充 DevSecOps 完整方法论细节;冲突检测:DevSecOps 与传统瀑布式开发的"安全末期介入"模式存在实践理念差异(已在 Source Page Contradictions 部分记录);DevSecOps 与 [[DevOps]] 的关系已在 DevSecOps.md Concept 中清晰定义(DevSecOps 是 DevOps 的安全扩展);无实质性内容冲突。 - - -- Source file: Cloud & DevOps/How Can a Multi Cloud Strategy Transform Your Business ROI.md -- Status: ✅ 成功摄入 -- Summary: 多云策略(Multi-Cloud Strategy)商业价值——78% 企业使用 3+ 公有云;86% 企业计划 2024 年底采用多云;优化后 30% 运营成本降低(Forrester);8 大商业价值:避免锁定/增强弹性/提升安全/弹性扩展/成本优化/加速创新/满足合规/性能优化;行业案例:电商/医疗/金融;实施路径:评估→选择提供商→集成管理→监控优化 -- Concepts created: 无(Multi-Cloud-Strategy/Vendor-Lock-In/Data-Sovereignty/High-Availability/Scalability/Cost-Optimization 已在 Wiki 中存在对应 Entity/Concept 页面,未达新建阈值) -- Entities created: 无(Bacancy Technology 仅出现 1 次,未达 ≥2 次独立建页阈值) -- Source page: wiki/sources/how-can-a-multi-cloud-strategy-transform-your-business-roi.md -- Notes: index.md Sources 部分更新原有多云来源条目,添加 [2026-04-27] 日期戳;overview.md Cloud Transformation & DevOps 部分新增本 Source entry,补充多云 ROI 量化数据(78%/86%/30%)和实施框架,与 [[cloud-operating-model-key-strategies-and-best-practices]] 形成互补(多云=选择层,Cloud Operating Model=治理层);冲突检测:与 [[cloud-operating-model-key-strategies-and-best-practices]] 中的"统一云治理"存在潜在张力——两者互补而非冲突;与现有 [[Multi-Cloud-Strategy]] 概念页面一致,无冲突。 - -## [2026-04-26] ingest | What I Know About Cloud Service Delivery 1 -- Source file: Cloud & DevOps/What I know about Cloud Service Delivery 1.md -- Status: ✅ 成功摄入 -- Summary: 云服务交付(Cloud Service Delivery)完整生命周期管理框架——12 大管理领域:服务供给与部署、基础设施管理、平台管理 PaaS、应用运营管理、安全与合规、性能与可用性监控、事件与问题管理、变更与配置管理(IaC)、成本管理与优化(FinOps)、客户接入与支持、服务治理与生命周期、备份恢复与灾难管理。核心工具:AWS CloudWatch + Grafana、New Relic、WAF、Terraform IaC。属 Cloud DevOps 成熟度在运营管理维度的具体化。 -- Concepts created: 无(Cloud Service Delivery/SLA/SLO/FinOps/IaC/AIOps 各仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用) -- Entities created: 无(AWS CloudWatch/Grafana/New Relic/WAF/OpenText 各仅在本文档出现 1 次,未达 ≥2 次独立建页阈值) -- Source page: wiki/sources/what-i-know-about-cloud-service-delivery-1.md -- Notes: index.md Sources 部分更新原有无日期条目为 [2026-04-26];overview.md Cloud Transformation & DevOps 部分新增本 Source entry,补充 12 大云服务交付管理领域详细解读,与 [[cloud-devop-maturity-guideline]] 和 [[devops-culture-and-transformation-fostering-collaboration-agile-practices-and-innovation-linkedin]] 共同构成完整云运营知识体系;冲突检测:与 [[devops-maturity-model-from-traditional-it-to-advanced-devops]] 存在潜在关联(DevOps 文化成熟度 vs 运营管理),暂无实质性冲突。 - -## [2026-04-26] ingest | Cloud DevOp Maturity - Guideline -- Source file: Cloud & DevOps/Cloud DevOp Maturity - Guideline.md -- Status: ✅ 成功摄入 -- Summary: 企业级 SaaS 公司的云 DevOps 成熟度评估框架与提升路径——基于 DORA 四项核心指标(部署频率、变更前置时间、变更失败率、MTTR)和 CMMI 成熟度模型,从自动化(CI/CD、IaC、测试自动化)、协作文化、监控可观测性、安全集成(DevSecOps)四大支柱进行系统评估。 -- Concepts created: 无(DevOpsMaturityModel/DORAMetrics/CI/CDPipeline/InfrastructureAsCode/DevSecOps/MicroservicesArchitecture/Observability 各在本文档和已有 Wiki 页面中均已存在 Entity/Concept 页面,未达新建阈值,保留于 Source Page 内嵌引用) -- Source page: wiki/sources/cloud-devop-maturity-guideline.md -- Notes: index.md Sources 部分新增 cloud-devop-maturity-guideline.md 条目(替换原有无日期条目);overview.md Cloud Transformation & DevOps 部分新增本 Source 独立 entry,补充 DORA 四项指标量化评估方法、成熟度提升路线(评估→卓越中心→分阶段实施→持续迭代),与 [[devops-culture-and-transformation-fostering-collaboration-agile-practices-and-innovation-linkedin]] 和 [[devops-maturity-model-from-traditional-it-to-advanced-devops]] 关联;冲突检测:未发现与其他 Wiki 页面的内容冲突。 - -## [2025-03-02] ingest | DevOps Culture and Transformation -- Source file: Cloud & DevOps/DevOps Culture and Transformation Fostering Collaboration, Agile Practices, and Innovation LinkedIn.md -- Status: ✅ 成功摄入 -- Summary: DevOps 文化与转型完整指南——四大文化支柱(跨职能协作/自动化/持续改进 Kaizen/客户导向)、Agile 与 DevOps 的共生关系(Scrum/Kanban + CI/CD)、战略转型 playbook(领导层支持→团队赋能→小步试点→克服阻力)、未来趋势(AI/ML 智能自动化/GitOps/Serverless DevOps/边缘计算/DevSecOps)。 -- Concepts created: 无(DevOps Culture/CI-CD-Pipeline/Infrastructure-as-Code/Kaizen/Shift-Left/Value-Stream-Mapping/GitOps/Serverless-DevOps/Agile-DevOps-Integration 各仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用) -- Entities created: 无(Hemant Sawant/Shenwei 各仅出现 1 次,未达 ≥2 次独立建页阈值) -- Source page: wiki/sources/devops-culture-and-transformation-fostering-collaboration-agile-practices-and-innovation-linkedin.md -- Notes: index.md 中原有条目日期已更新为 2025-03-02;overview.md Cloud Transformation & DevOps 部分新增本 Source 独立 entry,补充四大文化支柱、战略转型 playbook、无责事后分析等详细解读,与 [[ctp-topic-4-using-agile-to-run-the-cloud-transformation-program]] 和 [[ctp-topic-33-an-introduction-to-gitops]] 共同构成完整 DevOps 知识体系;冲突检测:未发现与其他 Wiki 页面的内容冲突。 - - -- Source file: Agent/agency-agents/engineering/engineering-autonomous-optimization-architect.md -- Status: ✅ 成功摄入 -- Summary: Autonomous Optimization Architect——AI 系统自我进化的"治理者",在保证系统不会破产或陷入恶意循环的前提下,持续通过影子测试评估和切换 AI 模型。核心理念:"Autonomous routing without a circuit breaker is just an expensive bomb." 核心机制:LLM-as-Judge 评分(数学评分标准替代主观评估)、影子流量测试(5% 异步测试新模型)、语义路由(按 Speed+Cost+Accuracy 综合排名选最优 Provider)、熔断器(失败超阈值自动切断并切换兜底方案)、AI FinOps(追踪每个 Provider 的成本与性能历史)。目标:在 99.99% 稳定性下实现 >40% 成本降低。属 The Agency Engineering 部门。 -- Concepts created: CircuitBreaker, LLMasJudge, ShadowTraffic, SemanticRouting, DarkLaunching, AIFinOps(以上 6 个 Concept 均为本 Agent 首次引入的新概念,本 Agent 为唯一来源,>=2 次出现阈值暂时满足) -- Entities created: OpenAI, Anthropic, GoogleGemini(以上 3 个 Entity 均为知名 LLM Provider,本 Agent 首次在 Wiki 中明确引用其作为 Provider 参与路由竞争的角色) -- Source page: wiki/sources/engineering-autonomous-optimization-architect.md -- Notes: index.md Sources 部分新增 engineering-autonomous-optimization-architect.md 条目(置于最顶部);冲突检测:与 [[testing-performance-benchmarker]] 在"性能评估方式"上存在方法论冲突——Performance Benchmarker 强调人工驱动的静态评估(可控可复现),本 Agent 强调机器驱动的持续影子测试(真实流量),已在 Source Page Contradictions 部分记录;Entity/Concept 去重:已检查现有 wiki 不存在同名条目(entities/concepts 目录此前为空,仅有 sources),所有 Concept 和 Entity 均为本 Agent 首次引入。overview.md 未更新(该 Source 属 Multi-Agent AI Systems/The Agency Engineering 范畴,现有 overview 覆盖充分,暂不重复)。 - -## [2026-04-26] ingest | Mobile App Builder Agent Personality -- Source file: Agent/agency-agents/engineering/engineering-mobile-app-builder.md -- Status: ✅ 成功摄入 -- Summary: Mobile App Builder — 专注原生 iOS/Android 开发和跨平台框架的移动应用开发 AI Agent。核心理念:平台感知、性能优先、用户体验驱动。核心规范:遵循 Material Design / Human Interface Guidelines;默认离线优先架构;跨平台框架按需选型(SwiftUI/Kotlin/Jetpack Compose/React Native/Flutter)。核心方法:MVVM 模式、性能优化目标(冷启动 < 3s、内存 < 100MB、续航 < 5%/h)、平台特定功能集成(生物识别认证、推送通知、相机/AR 等)。属 The Agency Engineering 部门。 -- Concepts created: 无(Offline-First Architecture/MVVM Pattern/Cross-Platform Mobile Development/Platform-Native UI/Biometric Authentication/Push Notification System 各仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用) -- Entities created: 无(SwiftUI/Jetpack Compose/React Native/Flutter/Swift/Kotlin 各仅出现 1 次,未达 ≥2 次独立建页阈值) -- Source page: wiki/sources/engineering-mobile-app-builder.md -- Notes: index.md Sources 部分新增 engineering-mobile-app-builder.md 条目(置于最顶部);overview.md Engineering 部分新增 engineering-mobile-app-builder 独立 entry(置于 engineering-software-architect 与 workflow-with-memory 之间);冲突检测:与 [[unity-architect]] 在"跨平台框架优先级"上存在分工差异——Mobile App Builder 面向通用移动应用(SwiftUI/Compose/React Native/Flutter),Unity Architect 面向游戏引擎内跨平台,属合理分工而非矛盾,已在 Source Page Contradictions 部分记录;Entity/Concept 去重:已检查现有 wiki 不存在同名/近义条目,所有概念和实体均仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用。 - -## [2026-04-26] ingest | Software Architect Agent Personality -- Source file: Agent/agency-agents/engineering/engineering-software-architect.md -- Status: ✅ 成功摄入 -- Summary: SoftwareArchitect——软件架构与系统设计专家 Agent,核心理念"Designs systems that survive the team that built them." 核心规范:权衡优先于最佳实践(命名所放弃的)、领域优先于技术、架构 ADR 记录(Context/Decision/Consequences)、C4 模型四层沟通架构(Context/Container/Component/Code)、架构模式选型矩阵(Modular Monolith/Microservices/Event-Driven/CQRS)、质量属性分析(可扩展性/可靠性/可维护性/可观测性)。核心交付物:ADR 模板、标准架构模式选型矩阵、C4 图沟通规范。属 The Agency Engineering 部门。 -- Concepts created: 无(Bounded Contexts/Trade-off Analysis/Architecture Decision Record/Modular Monolith/Microservices/Event-Driven Architecture/CQRS/C4 Model/Quality Attributes 各仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用) -- Entities created: 无(本文档未明确提及具体人物或公司,均为通用软件工程概念,未达 Entity 建页阈值) -- Source page: wiki/sources/engineering-software-architect.md -- Notes: index.md Sources 部分新增 engineering-software-architect.md 条目(置于最顶部);overview.md Multi-Agent AI Systems 部分新增 engineering-software-architect 独立 entry(置于 backend-architect-with-memory 与 workflow-with-memory 之间);冲突检测:与 [[unity-architect]] 在"架构约束与团队规模关系"上存在框架差异——Software Architect 强调架构必须匹配团队能力(Microservices 不适合小团队),Unity Architect 侧重 Unity 平台特定技术架构,已在 Source Page Contradictions 节记录,属平台约束差异而非绝对冲突;Entity/Concept 去重:已检查现有 wiki 不存在同名/近义条目,所有概念(Bounded Contexts/ADR/C4 Model 等)和实体均仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用。 - -## [2026-04-26] ingest | Godot Multiplayer Engineer -- Source file: Agent/agency-agents/game-development/godot/godot-multiplayer-engineer.md -- Status: ✅ 成功摄入 -- Summary: GodotMultiplayerEngineer——Godot 4 多人游戏网络专家 AI Agent,核心理念"权威精确、场景架构意识、延迟诚实、GDScript 精准"。核心规范:`set_multiplayer_authority()` 显式权威设置,服务器权威模型持有所有游戏关键状态;所有 `@rpc("any_peer")` 必须服务器端验证发送者 ID 和输入合理性;`MultiplayerSpawner` 是动态生成网络节点的唯一正确方式,`MultiplayerSynchronizer` 配置 `ON_CHANGE` 模式。核心交付物:NetworkManager Autoload(ENet 服务器/客户端)、Server-Authoritative Player Controller、MultiplayerSynchronizer 配置、MultiplayerSpawner 场景生成、RPC Security Pattern(物品拾取验证)、Matchmaking 集成。高级能力涵盖 WebRTC P2P 多人游戏(STUN/TURN NAT 穿透)、Nakama 游戏服务器集成、Relay Server 架构(二进制协议 + 房间路由)、自定义网络协议设计。属 The Agency Game Dev 部门。 -- Concepts created: 无(MultiplayerAPI/Server-Authoritative-Model/RPC/MultiplayerSynchronizer/MultiplayerSpawner/ENet/WebRTC/Authority-Model/RPC-Security-Pattern 各仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用) -- Entities created: 无(Nakama/Godot-4 各仅出现 1-2 次,未达 ≥2 次独立建页阈值;以上均为工具/引擎/框架,非独立实体) -- Source page: wiki/sources/godot-multiplayer-engineer.md -- Notes: index.md Sources 部分新增 godot-multiplayer-engineer.md 条目(置于最顶部);overview.md Game Development 部分新增 godot-multiplayer-engineer 独立 entry(置于 godot-shader-developer 之前),已建立与 [[godot-gameplay-scripter]](多人游戏建立在游戏逻辑脚本基础上)、[[unity-multiplayer-engineer]](跨引擎多人游戏共识,权威模型一致但 API 不同)的关联;冲突检测:与 [[unity-multiplayer-engineer]] 在"权威模型实现细节"上存在差异——Godot 显式 `set_multiplayer_authority()` + MultiplayerSynchronizer vs Unity 隐式 NetworkTransform/NetworkVariable,已在 overview.md 和 Source Page Contradictions 部分记录;Entity/Concept 去重:已检查现有 wiki 不存在同名/近义条目,所有概念和实体均仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用。 - -## [2026-04-26] ingest | Godot Shader Developer -- Source file: Agent/agency-agents/game-development/godot/godot-shader-developer.md -- Status: ✅ 成功摄入 -- Summary: GodotShaderDeveloper——Godot 4 渲染效果专家 AI Agent,核心理念"创作性、正确性与性能意识三合一"。核心规范:shader_type 强制声明(canvas_item/spatial/particles/sky);Godot 着色语言非原始 GLSL(必须用 TEXTURE/UV/COLOR/ALBEDO 等内置变量);渲染器分级适配(Forward+ → Mobile → Compatibility);uniform hint 强制(hint_range/source_color/hint_normal);纹理采样计数审计(移动端不透明材质 ≤ 6 次采样)。核心交付物:2D CanvasItem 精灵描边着色器、3D Dissolve 溶解着色器、3D 水面着色器、CompositorEffect 全屏后处理、Shader Performance Audit 清单。属 The Agency Game Dev 部门。 -- Concepts created: 无(CanvasItem Shader/Spatial Shader/VisualShader/CompositorEffect/Forward+ Renderer/Mobile Renderer/Compatibility Renderer 各仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用) -- Entities created: 无(Godot/GLSL 各仅出现 1-2 次,未达 ≥2 次独立建页阈值) -- Source page: wiki/sources/godot-shader-developer.md -- Notes: index.md Sources 部分新增 godot-shader-developer.md 条目(置于最顶部);overview.md Game Development 部分新增 godot-shader-developer 独立 entry(置于 godot-gameplay-scripter 之后、Conflict Areas 之前),已建立与 [[godot-gameplay-scripter]](Godot 游戏逻辑)、[[unity-shader-graph-artist]](跨引擎着色器共识)、[[technical-artist]](渲染技术+美术桥梁角色)关联;冲突检测:无与其他 Wiki 页面的内容冲突。 -## [2026-04-26] ingest | Godot Gameplay Scripter -- Source file: Agent/agency-agents/game-development/godot/godot-gameplay-scripter.md -- Status: ✅ 成功摄入 -- Summary: GodotGameplayScripter——Godot 4 游戏逻辑脚本专家 AI Agent 人格规范,核心理念"以软件架构师的纪律性构建类型安全、信号驱动、可组合的游戏玩法系统"。核心规范:GDScript 信号 snake_case + 类型化参数,C# 信号 PascalCase + EventHandler;全静态类型化(无 untyped var);组合优于继承(HealthComponent 节点模式);Autoload 仅用于全局状态(EventBus/设置/存档);场景可独立实例化。核心交付物:Typed Signal 声明(GDSCript + C# 双语)、EventBus Autoload、HealthComponent 组件模式、Typed Array 敌人追踪、GDScript/C# 互操作模式。属 The Agency Game Dev 部门 Godot 专精。 -- Concepts created: 无(Signal-Driven-Architecture/Static-Typing-in-GDScript-2.0/Composition-Over-Inheritance/Event-Bus-Autoload/Type-Safe-Signal-Design/GDScript-CSharp-Interoperability 各仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用) -- Entities created: 无(GDScript-2.0/C#/GDExtension/HealthComponent/EventBus 各仅出现 1-2 次,未达独立建页阈值;以上均为工具/语言/模式,非独立实体) -- Source page: wiki/sources/godot-gameplay-scripter.md -- Notes: index.md Sources 部分新增 godot-gameplay-scripter.md 条目(置于 game-designer 之后、narrative-designer 之前);overview.md Game Development 部分新增 godot-gameplay-scripter 独立 entry(置于 unity-architect 之后、Conflict Areas 之前),已建立与 [[unity-architect]] 的跨引擎共识关联(组合优于继承设计哲学,Unity 使用 ScriptableObject 事件通道,Godot 使用信号总线);冲突检测:与 [[unity-architect]] 在"全局状态管理"上存在实现路径差异但设计哲学一致——两者均反对全局可变状态,仅在具体机制上不同,已在 overview.md 中记录为"跨引擎共识";Entity/Concept 去重:已检查现有 wiki 不存在同名/近义条目,所有概念和实体均仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用。 -- Source file: Agent/agency-agents/game-development/blender/blender-addon-engineer.md -- Status: ✅ 成功摄入 -- Summary: BlenderAddonEngineer——Blender 原生工具开发专家 AI Agent 人格规范,核心理念"Pipeline-first, artist-empathetic, automation-obsessed, reliability-minded"。核心规范:数据 API(bpy.data)优先于操作符(bpy.ops)确保 Operator 可靠性;非破坏性验证(dry-run 模式)确保用户知情同意;Pipeline 可靠性三角(命名确定性 + 变换分离检查 + 材质槽顺序验证 + 集合包含/排除显式规则);批量操作必须精确记录修改内容。核心交付物:PIPELINE_OT_validate_assets(命名/变换/材质槽检查)、Pipeline Export Panel(导出预设 UI)、Naming Audit Report、Validation Report Template。属 The Agency Game Dev 部门 DCC 工具专项。 -- Concepts created: 无(bpy/Asset-Validation/Non-Destructive-Workflow/Export-Presets/Pipeline-Reliability/AddonPreferences/PropertyGroups 各仅出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用) -- Entities created: 无(Blender/BlenderAddonEngineer 各仅出现 1-2 次,未达独立建页阈值;BlenderAddonEngineer 为 Agent 类型非实体,不建 Entity 页) -- Source page: wiki/sources/blender-addon-engineer.md -- Notes: index.md Sources 首位新增 blender-addon-engineer.md 条目(2026-04-26);overview.md Game Development 部分新增 blender-addon-engineer 独立 entry(置于 Technical Artist 之后、Roblox Systems Scripter 之前);冲突检测:与 [[UnityArchitect]] 在"编辑器工具数据修改时机"上存在设计哲学差异——Blender Add-on Engineer 坚持非破坏性验证优先(dry-run 模式),Unity Architect 倾向所见即所得直接修改(ScriptableObject 持久化状态),均为各自平台约束最优解,已在 Source Page Contradictions 节详细记录;Entity/Concept 去重:已检查现有 wiki 不存在重复条目,所有概念和实体均仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用。 - -## [2026-04-26] ingest | Roblox Avatar Creator -- Source file: Agent/agency-agents/game-development/roblox-studio/roblox-avatar-creator.md -- Status: ✅ 成功摄入 -- Summary: RobloxAvatarCreator——Roblox UGC 化身 pipeline 专家 AI Agent 人格规范。核心理念:技术规格精准、视觉打磨到位、平台合规。核心规范:UGC 网格三角面数硬限制(配件 ≤4,000、Bundle 部件 ≤10,000);单 UV 通道且范围严格在 [0,1];所有 transform 导出前必须应用;纹理 256-1024px PNG,UV island 2px padding;Layered Clothing 三层 cage(OuterMesh + InnerCage + OuterCage);附件点标准命名(HatAttachment 等);5 种 body type 全测试。核心交付物:Accessory Export Checklist、AvatarManager.lua(HumanoidDescription 全套换装)、Layered Clothing Cage Setup Guide、Creator Marketplace Submission Package、UGC Shop UI Flow(MarketplaceService)。属 The Agency Game Dev 部门 Roblox Studio 专项,与 [[Roblox Systems Scripter]](Luau 系统架构)、[[Roblox Experience Designer]](玩家变现)协同构成完整 Roblox 开发体系。 -- Concepts created: 无(UGC/LayeredClothing/HumanoidDescription/R15Rig/CreatorMarketplace/AttachmentPoint/RthroBodyType 各仅出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用) -- Entities created: 无(Blender/RobloxStudio/R15TestBodies/DataStore 各仅出现 1-2 次,未达独立建页阈值,保留于 Source Page 内嵌引用) -- Source page: wiki/sources/roblox-avatar-creator.md -- Notes: index.md Sources 顶部新增 roblox-avatar-creator.md 条目(2026-04-26);overview.md Game Development 部分新增 roblox-avatar-creator 独立 entry(紧随 roblox-experience-designer);冲突检测:与 [[UnityArchitect]] 在角色定制系统实现路径上存在平台差异——Roblox 强制服务端权威(HumanoidDescription + DataStore),Unity 可客户端预测,均为各自平台最优解,已在 Source Page Contradictions 节记录;Entity/Concept 去重:已检查现有 wiki 不存在重复条目,所有概念和实体均仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用。 - -## [2026-04-26] ingest | Roblox Systems Scripter -- Source file: Agent/agency-agents/game-development/roblox-studio/roblox-systems-scripter.md -- Status: ✅ 成功摄入 -- Summary: RobloxSystemsScripter——Roblox 平台 Luau 系统脚本工程师 AI Agent 人格规范。核心理念:服务器是唯一真相来源,客户端只显示状态不拥有状态。核心规范:客户端-服务器信任边界(LocalScript 仅显示,Script 仅逻辑);RemoteEvent 安全验证(类型检查+冷却检查+距离检查+权限检查);DataStore 可靠性(pcall + 指数退避重试 + 双保存点 PlayerRemoving + BindToClose);ModuleScript 架构(所有逻辑在 ModuleScript 返回表,Script/LocalScript 仅 bootstrap)。核心交付物:DataManager.lua(含 retryAsync + deepCopy + 双保存点)、CombatSystem.lua(完整验证链路示例)、GameServer.bootstrap.server.lua(五阶段引导模式)。高级能力:Parallel Luau(task.desynchronize + Actor 模型 + SharedTable)、对象池、数据版本迁移(UpdateAsync 原子升级)。属 The Agency Game Dev 部门 Roblox Studio 专项,与 Roblox Experience Designer 协同构成完整 Roblox 开发体系。 -- Concepts created: 无(Server-Authoritative-Architecture/RemoteEvent-Security/DataStore-Reliability/ModuleScript-Architecture/Parallel-Luau/Object-Pooling/UpdateAsync-Atomic-Pattern 各仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用) -- Entities created: 无(Roblox/Luau/DataStoreService/ReplicatedStorage/ServerStorage 各仅出现 1-2 次,未达独立建页阈值,保留于 Source Page 内嵌引用) -- Source page: wiki/sources/roblox-systems-scripter.md -- Notes: index.md Sources 顶部新增 roblox-systems-scripter.md 条目(2026-04-26);overview.md Game Development 部分新增 roblox-systems-scripter 独立 entry(紧随 Technical Artist,Roblox Experience Designer 紧接其后);冲突检测:与 [[UnityArchitect]] 在客户端预测策略上存在平台差异——Roblox Systems Scripter 建议服务器权威不做本地预测(Roblox RemoteEvent 架构天然适合),Unity Architect/UnityMultiplayerEngineer 建议使用服务器回滚式 client prediction 提升响应体验,已在 Source Page Contradictions 节记录,属平台约束差异而非绝对冲突;Entity/Concept 去重:已检查现有 wiki 不存在重复条目,所有概念和实体均仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用。 - -## [2026-04-26] ingest | Roblox Experience Designer -- Source file: Agent/agency-agents/game-development/roblox-studio/roblox-experience-designer.md -- Status: ✅ 成功摄入 -- Summary: RobloxExperienceDesigner——Roblox 平台原生体验设计师 AI Agent 人格规范,专注于 9-17 岁受众的参与度循环设计、变现系统(Game Pass/Developer Product/UGC)与玩家留存。核心方法:DataStore 驱动进度持久化创造沉没成本;每日奖励系统(1-7天循环阶梯)驱动习惯性返回;入职引导三阶段(0-60秒/5分钟/15分钟);AnalyticsService 追踪 D1/D7 留存指标。核心原则:禁止 pay-to-win、DataStore 安全优先、变现伦理(禁止暗黑模式)。成功指标:D1 留存 >30%、D7 >15%、MAU 月增长 >10%、转化率 >3%、零 Roblox 政策违规。核心交付物:PassManager.lua(Game Pass 集中管理)、DailyRewardSystem.lua(每日奖励)、Onboarding Flow Design Document(含 Drop-off Recovery Points)。属 The Agency Game Dev 部门 Roblox Studio 专项。 -- Concepts created: 无(EngagementLoop/DailyRewardSystem/DataStoreProgression/GamePassMonetization/DeveloperProduct/OnboardingFlow/RobloxAlgorithm/AnalyticsService/SoftCurrencyFunnel/PriceAnchoring 均仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用) -- Entities created: 无(RobloxExperienceDesigner/RobloxPlatform/MarketplaceService/DataStoreService/AnalyticsService/VoiceChatService 各仅出现 1 次,未达独立建页阈值,保留于 Source Page 内嵌引用) -- Source page: wiki/sources/roblox-experience-designer.md -- Notes: index.md Sources 顶部新增 roblox-experience-designer.md 条目(2026-04-26);overview.md Game Development 部分新增 roblox-experience-designer 独立 entry(Roblox Experience Designer 紧随 Technical Artist);冲突检测:与 [[UnityArchitect]] 在变现策略上存在受众差异——Roblox 受众(9-17岁)强制伦理变现规范,Unity 平台受众更广可更灵活,已在 Source Page Contradictions 节记录;Entity/Concept 去重:已检查现有 wiki 不存在重复条目,所有概念和实体均仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用。 - -## [2026-04-26] ingest | Unity Architect -- Source file: Agent/agency-agents/game-development/unity/unity-architect.md -- Status: ✅ 成功摄入 -- Summary: UnityArchitect——Unity 游戏架构师 AI Agent 人格规范,专注于数据驱动、ScriptableObject(SO)优先的模块化可扩展架构。核心职责:消除硬引用、单例滥用、God MonoBehaviour 等反模式,通过 SO 事件通道(GameEvent)、RuntimeSet、单一职责组件拆分、Inspector SO 引用连线构建可测试、可设计师扩展的 Unity 系统。核心理念:ScriptableObject-First(所有共享数据存于 SO,绝不跨场景传 MonoBehaviour 字段);零硬引用(禁用 GameObject.Find/单例,通过 SO 事件通道连线);单一职责(每个 MonoBehaviour < 150 行)。高级能力:Addressables 资源管理、SO 状态机、Unity DOTS 混合架构、内存 Profiling。核心交付物:FloatVariable SO(含 OnValueChanged)、RuntimeSet、GameEvent 事件通道、PlayerHealthDisplay 示例、Custom PropertyDrawer。成功指标:零 GameObject.Find();每个 MonoBehaviour < 150 行;Prefab 空场景独立运行。 -- Concepts created: 无(ScriptableObject/RuntimeSet/GameEvent/SingleResponsibility/EventDriven/DataDriven/ScriptableObjectEventChannel/Addressables/UnityDOTS/EditorUtilitySetDirty 均仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用) -- Entities created: 无(UnityArchitect/UnityEditor/UnityDOTS 各仅出现 1 次,未达独立建页阈值,保留于 Source Page 内嵌引用) -- Source page: wiki/sources/unity-architect.md -- Notes: index.md Sources 顶部替换占位条目为正式摘要(2026-04-26,unity-architect.md);overview.md Game Development 部分新增 unity-architect 独立 entry(Unity Architect 紧随 Unity Shader Graph Artist);冲突检测:与 [[unity-multiplayer-engineer]] 在 NetworkVariable 传递方式上存在 SO 抽象程度差异——UnityArchitect 侧重 SO 层引用连线,UnityMultiplayerEngineer 侧重 NetworkBehaviour 直接挂载,属架构风格差异而非绝对冲突,已在 Source Page Contradictions 节记录;Entity/Concept 去重:已检查现有 wiki 不存在重复条目,所有概念和实体均仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用;overview.md Game Development 部分完整性:已新增 Unity Architect entry,与 Unity Shader Graph Artist、Unity Editor Tool Developer、Unity Multiplayer Engineer 共同构成 Game Development Unity 专精团队。 -- Source file: Agent/agency-agents/game-development/unity/unity-multiplayer-engineer.md -- Status: ✅ 成功摄入 -- Summary: UnityMultiplayerEngineer——Unity 多人游戏网络编程专家 AI Agent 人格规范。核心职责:使用 Netcode for GameObjects(NGO)、Unity Gaming Services(Relay/Lobby)构建安全、抗作弊、延迟容忍的多人游戏系统。核心理念:服务器权威非协商原则——服务器拥有所有游戏状态真相,客户端仅发送输入;NetworkVariable 用于持久化状态,RPC 用于一次性事件,二者不可混用。核心规范:ServerRpc 必须服务器端验证所有输入;客户端预测必须与服务器状态调和校正;带宽管理——每玩家稳态 < 10KB/s;Relay 替代直连 P2P 保护主机 IP;Lobby 仅存储元数据不存储游戏状态。核心交付物:Server-Authoritative Player Controller(含客户端预测与调和)、Lobby Manager(创建/快速匹配/心跳)、NetworkVariable 设计参考、反作弊验证逻辑。高级能力:回滚网络代码(战斗游戏风格)、专用服务器 Docker 部署、性能剖析与带宽预算。 -- Concepts created: ServerAuthority、ClientPrediction、NetworkVariable、UnityRelay、UnityLobby、AntiCheatArchitecture、BandwidthManagement、LagCompensation -- Entities created: NetcodeForGameObjects、UnityGamingServices、UnityMultiplayerEngineer、UnrealMultiplayerArchitect -- Source page: wiki/sources/unity-multiplayer-engineer.md -- Notes: index.md Sources 顶部新增 unity-multiplayer-engineer.md 条目(2026-04-26);index.md Entities 新增 4 个实体(NetcodeForGameObjects、UnityGamingServices、UnityMultiplayerEngineer、UnrealMultiplayerArchitect);index.md Concepts 新增 8 个概念;overview.md 未更新(非概述类技术规范文档);冲突检测:与 [[UnrealMultiplayerArchitect]] 在客户端预测实现细节上有差异——Unity 侧使用 NetworkVariable + LateUpdate 调和,Unreal 侧使用帧缓冲和回滚机制,已在 Source Page Contradictions 节记录,两者均遵循服务器权威原则,属框架差异而非绝对冲突;Entity/Concept 去重:已检查现有 wiki 不存在重复条目,所有概念和实体均为首次创建。 -- Source file: Agent/agency-agents/game-development/unity/unity-shader-graph-artist.md -- Status: ✅ 成功摄入 -- Summary: UnityShaderGraphArtist——Unity 渲染效果专家 AI Agent 人格规范。核心职责:精通 Shader Graph 可视化材质创作与 HLSL 性能优化,专注于 URP/HDRP 渲染管线的实时视觉效果开发。核心理念:Shader Graph 是艺术家创作首选,HLSL 仅用于性能关键路径。核心规范:Sub-Graph 强制复用重复逻辑;URP/HDRP API 严格区分不可互换;移动端硬约束(每 Fragment Pass 最多 32 纹理采样,不透明 Fragment 最多 60 ALU);Alpha Clipping 优先于 Alpha Blend;Frame Debugger 强制性能分析后方可发布。核心交付物:Dissolve Shader Graph(含 DissolveCore Sub-Graph)、OutlineRendererFeature(URP 自定义描边通道)、CustomLit.hlsl(URP 兼容 PBR Shader)、Shader Complexity Audit 模板。高级能力:Compute Shader GPU 处理、RenderDoc Shader 调试、自定义深度后处理通道、程序化纹理生成。 -- Concepts created: 无(Shader Graph/Sub-Graph/ScriptableRendererFeature/AlphaClipping/HLSL 均仅出现 1-2 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用) -- Entities created: 无(UnityTechnologies/DissolveCore/OutlineRendererFeature/CustomLit.hlsl 各仅出现 1 次,未达独立建页阈值,保留于 Source Page 内嵌引用) -- Source page: wiki/sources/unity-shader-graph-artist.md -- Notes: index.md Sources 顶部新增 unity-shader-graph-artist.md 条目(2026-04-26);overview.md Game Development 部分新增 unity-shader-graph-artist 独立 entry;冲突检测:与 [[unreal-technical-artist]] 在渲染管线选择上存在平台差异(Unity Shader Graph vs Unreal HLSL),属平台特性差异而非绝对冲突,已在 Source Page Contradictions 节记录;Entity/Concept 去重:所有 Key Concepts/Key Entities 均仅在本 Source 出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用。 - -## [2026-04-26] ingest | Unity Editor Tool Developer -- Source file: Agent/agency-agents/game-development/unity/unity-editor-tool-developer.md -- Status: ✅ 成功摄入 -- Summary: UnityEditorToolDeveloper——Unity 编辑器扩展开发工程师 AI Agent 人格规范。核心职责:通过 EditorWindows、PropertyDrawers、AssetPostprocessors、Build Validators 自动化团队工作流,减少人工错误并提升艺术/设计/工程团队效率。核心理念:最佳工具是隐形的——在问题到达 QA 前自动拦截,在创意人员意识到需求前提前自动化。核心规范:Editor 脚本必须置于 Editor 文件夹或 #if UNITY_EDITOR 保护;EditorWindow 必须通过 [SerializeField]/EditorPrefs 持久化状态;AssetPostprocessor 必须幂等(同一资源重复导入产生相同结果);PropertyDrawer 必须调用 BeginProperty/EndProperty;构建验证失败必须抛出 BuildFailedException。高级能力:Assembly Definition 架构(编辑器/运行时程序集分离)、CI/CD 集成(-batchmode + GitHub Actions)、Scriptable Build Pipeline、UI Toolkit (UIElements) 编辑器工具。 -- Concepts created: 无(EditorWindow/AssetPostprocessor/PropertyDrawer/BuildValidation 各仅出现 1 次,未达 ≥2 次建页阈值,保留于 Source Page 内嵌引用) -- Entities created: 无(本 Source 无人 Entity) -- Source page: wiki/sources/unity-editor-tool-developer.md -- Notes: index.md Sources 替换占位条目为正式摘要(2026-04-26,unity-editor-tool-developer.md);overview.md Game Development 部分新增 unity-editor-tool-developer 独立 entry;冲突检测:与 [[unreal-systems-engineer]] 在"构建前验证"模式上互补——Unity 侧通过 IPreprocessBuildWithReport 在打包前验证,Unreal 侧通过 UAssetCheckConfig 在编辑器内实时检查,属互补而非冲突,已在 Source Page Contradictions 节记录;Entity/Concept 去重:EditorWindow/AssetPostprocessor/PropertyDrawer/AssemblyDefinitionFiles/BuildValidation 均仅在本 Source 出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用。 - -## [2026-04-26] ingest | Unreal Systems Engineer -- Source file: Agent/agency-agents/game-development/unreal-engine/unreal-systems-engineer.md -- Status: ✅ 成功摄入 -- Summary: UnrealSystemsEngineer——Unreal Engine 5 系统架构工程师 AI Agent 人格规范。核心职责:构建 AAA 级 UE5 游戏系统的性能与混合架构,涵盖 C++/Blueprint 边界决策、Nanite 几何管线、GAS 网络配置、智能指针内存安全、Unreal Build System 反射宏规范。核心理念:Tick 逻辑必须 C++,Blueprint 是设计师 API 而非运行时引擎;Nanite 单场景 1600 万实例上限需提前规划;所有 UObject 指针必须 UPROPERTY() 声明。关键规范:C++ 承担所有每帧逻辑;Blueprint 适用于:高层游戏流、UI 原型、设计师可扩展层;Nanite 不兼容骨骼网格/复杂 clip/样条网格/程序化网格;TWeakObjectPtr/TSharedPtr 处理非拥有引用;FGameplayTag 替代字符串标识符;GAS 通过 UAbilitySystemComponent 复制。高级能力:Mass Entity(Unreal ECS,处理海量 NPC)、Chaos 破坏系统(Geometry Collection 实时断裂)、Lyra 模块化框架(GameFeatureAction 运行时注入)。成功指标:零 Blueprint Tick 函数(已交付代码)、Nanite 实例预算已规划、无 UPROPERTY() 缺失警告、帧预算 60fps(目标硬件)。 -- Concepts created/updated: [[GAS-Gameplay-Ability-System]](更新 sources 字段,新增 UnrealSystemsEngineer 补充:Tick 逻辑必须 C++、FGameplayTag 优于字符串、GAMEPLAYATTRIBUTE_REPNOTIFY 宏)、[[Nanite]](更新 sources 字段,新增 UnrealSystemsEngineer 补充:1600万实例上限、显式切线禁用、r.Nanite.Visualize 兼容检测) -- Entities updated: [[UnrealEngine5]](Unreal Technical Artist 已有,无需新建) -- Source page: wiki/sources/unreal-systems-engineer.md -- Notes: index.md Sources 替换占位条目为正式摘要(2026-04-26,unreal-systems-engineer.md);index.md Concepts 无需新增条目(GAS/Nanite 均已存在);overview.md Game Development 部分新增 unreal-systems-engineer 独立 entry,与 unreal-multiplayer-architect/unreal-technical-artist 共同构成 UE5 专精团队;冲突检测:与 [[UnrealMultiplayerArchitect]] 在 GAS 职责边界存在互补关系——系统工程师负责 C++ 实现和网络复制配置,网络架构师负责 RPC 层安全和服务器权威验证,已在 Source Page Contradictions 节记录;Entity 去重:UnrealEngine5 已在其他来源出现,无需新建;Entity/Concept 去重:Mass Entity/Chaos Physics/Lyra 高级能力各仅在 Advanced Capabilities 部分出现 1 次,未达≥2次独立建页阈值,保留于 Source Page 内嵌引用。 - -## [2026-04-26] ingest | Unreal Multiplayer Architect -- Source file: Agent/agency-agents/game-development/unreal-engine/unreal-multiplayer-architect.md -- Status: ✅ 成功摄入 -- Summary: Unreal Multiplayer Architect——Unreal Engine 5 多人游戏网络架构师 AI Agent 人格规范。核心职责:构建服务器权威的 UE5 多人游戏网络系统,涵盖 Actor 复制、RPC 安全验证、网络预测、GAS 复制及专用服务器配置。核心理念:服务器拥有真相,客户端仅发送请求——所有游戏状态变更必须由服务器执行。关键规范:每个游戏影响型 Server RPC 必须实现 `_Validate()`(缺失即构成作弊漏洞);`HasAuthority()` 检查必须在每次状态变更前执行;网络复制频率按 Actor 类型精细调整(投射物 100Hz/NPC 20Hz/环境物 2Hz);GameMode 仅运行于服务器从不复制,GameState 复制到所有客户端,PlayerController 仅复制给拥有者。成功指标:带宽 < 15KB/s/玩家,200ms 延迟下调和事件 < 1次/玩家/30秒,RPC 安全审计零作弊向量。 -- Concepts created/updated: [[Server-Authoritative-Model]](更新 sources 字段)、[[Actor-Replication]](更新 sources 字段)、[[RPC-Remote-Procedure-Call]](更新 sources 字段)、[[Network-Prediction]](更新 sources 字段)、[[Replication-Graph]](新建——UE5 空间分区复制优化系统)、[[GAS-Gameplay-Ability-System]](新建——UE5 技能与属性管理框架,含网络预测) -- Entities updated: [[UnrealMultiplayerArchitect]](已有,更新来源关联) -- Source page: wiki/sources/unreal-multiplayer-architect.md -- Notes: index.md Sources 新增条目(2026-04-26,unreal-multiplayer-architect.md);index.md Concepts 新增 GAS-Gameplay-Ability-System 条目;新建 concepts/Replication-Graph.md 和 concepts/GAS-Gameplay-Ability-System.md;overview.md Game Development 部分新增 unreal-multiplayer-architect 独立 entry;冲突检测:无已知冲突(Source Page Contradictions 节为空——本技术领域为独立领域)。 - -## [2026-04-26] ingest | Unreal World Builder Agent Personality -- Source file: Agent/agency-agents/game-development/unreal-engine/unreal-world-builder.md -- Status: ✅ 成功摄入 -- Summary: UnrealWorldBuilder——Unreal Engine 5 开放世界环境架构工程师 AI Agent 人格规范。核心职责:使用 UE5 World Partition、Landscape、PCG、HLOD 系统构建 4km²~64km² 超大规模开放世界。核心理念:用格子大小控制流送预算,用 RVT 消除地形层混合成本。关键规范:World Partition 格子策略(密集城区64m/空旷地形128m/沙漠海洋256m+);Always Loaded 层存放全局内容,关键游戏内容禁止放格子边界;Landscape 单区域最多4层材质,超过2层必须启用RVT;HLOD 覆盖所有500m+可见区域;PCG 大规模植被使用 Nanite 预烘焙;Foliage Tool 仅用于手工放置主角物件;LWC 在任何轴>2km的世界必须启用。高级能力:LWC 双精度坐标(20km后浮点精度误差)、OFPA 多用户协作、Unreal Insights 性能分析。成功指标:地面疾跑无>16ms流送卡顿、1km²+区域预烘焙、HLOD覆盖500m+区域、Landscape层数永不超4。 -- Concepts created: [[WorldPartition]](新建)、[[RuntimeVirtualTexturing]](新建)、[[LargeWorldCoordinates]](新建) -- Concepts updated: [[PCG]](追加 unreal-world-builder 来源)、[[LOD]](追加 unreal-world-builder 来源)、[[Nanite]](追加 unreal-world-builder 来源) -- Entities updated: [[UnrealEngine5]](追加 unreal-world-builder 来源) -- Source page: wiki/sources/unreal-world-builder.md -- Notes: index.md Sources 新增条目(紧随 unreal-systems-engineer 之后);overview.md UnrealSystemsEngineer 条目后新增 unreal-world-builder 独立 entry;冲突检测:未发现与现有 Wiki 内容的冲突;Entity 去重:Epic Games 仅提及1次,未达≥2次阈值;UnrealEngine5 已存在,直接追加来源;HLOD 已在 LOD.md 提及,无需独立建页。 - -## [2026-04-26] ingest | Game Designer Agent Personality -- Source file: Agent/agency-agents/game-development/game-designer.md -- Status: ✅ 成功摄入 -- Summary: Game Designer Agent——游戏系统与机制设计师 AI Agent 人格规范。以"循环、杠杆、玩家动机"为思维框架,将创意愿景转化为可执行、无歧义的游戏设计文档(GDD)。核心理念:从玩家动机出发设计,从功能列表出发设计。五步工作流:概念→设计支柱→纸面原型→GDD撰写→调优迭代。三层核心循环:瞬间体验(0-30秒)→会话目标(5-30分钟)→长期进阶(数小时至数周)。所有数值从假设开始,用 [PLACEHOLDER] 标记直至测试验证。高级能力:行为经济学应用(Cialdini 影响原则/损失厌恶/变率奖励/沉没成本)、跨类型机制移植(机制活检分析)、高级经济设计(供给-需求模型/通胀检测/Monte Carlo 模拟)、系统性涌现设计(系统交互矩阵/最小可行复杂度)。 -- Concepts created: [[Core-Gameplay-Loop]](核心游戏循环三层模型)、[[Economy-Balance]](游戏经济平衡设计——供给-需求模型、玩家画像、通胀检测) -- Entities created: 无(本文档未明确提及具体人物或公司,均为通用游戏开发概念,未达 Entity 建页阈值;GameDesigner Agent 本身属于 Agent 类型而非 Entity 类型) -- Source page: wiki/sources/game-designer.md -- Notes: index.md Sources 新增条目(2026-04-26,game-designer.md);index.md Concepts 新增 2 个条目(Core-Gameplay-Loop/Economy-Balance);overview.md Game Development 部分新增 game-designer 独立 entry(与 technical-artist/narrative-designer/level-designer 构成完整 Game Dev 设计体系);冲突检测:无已知冲突(Source Page Contradictions 节为空);Entity 去重:无 Entity 达标(GameDesigner Agent/Narrative Designer/Level Designer/Game Audio Engineer/Technical Artist 均为 Agent 类型,不建 Entity 页面)。 - -## [2026-04-26] ingest | Unreal Technical Artist -- Source file: Agent/agency-agents/game-development/unreal-engine/unreal-technical-artist.md -- Status: ✅ 成功摄入 -- Summary: Unreal Technical Artist——Unreal Engine 5 视觉系统工程师 AI Agent 人格定义。拥有 Material Editor、Niagara VFX、PCG、Substrate 和 Nanite 全栈专业能力,负责 UE5 项目的美术-引擎视觉管线。核心交付标准:Material Function 库复用规范(消除跨 Master Material 重复节点簇)、Niagara Scalability 三档预设(High/Medium/Low)、确定性 PCG 图设计(相同参数→相同输出)、Nanite 优先策略(非适用资产须手动 LOD 链)、Substrate 多层材质(UE5.3+ 替代 SSS workaround)。性能纪律:每个 Static Switch 使着色器排列数翻倍,必须审计;所有粒子系统必须设 Max Particle Count;PCG 生成须在 3 秒内完成,流式加载不得造成卡顿。 -- Concepts created: [[MaterialFunction]](UE5 材质系统中可复用的节点逻辑封装单元)、[[NiagaraVFX]](UE5 新一代粒子和 VFX 系统,支持 GPU/CPU 模拟分离与 Scalability 分级)、[[PCG]](程序化内容生成框架,通过图节点控制开放世界资产分布)、[[Nanite]](UE5 虚拟几何体系统,支持自动 LOD 和海量实例化渲染)、[[Substrate]](UE5.3+ 多层物理材质系统,替代传统 SSS workaround)、[[LOD]](Level of Detail,根据距离动态切换网格精度)、[[QualitySwitch]](UE5 材质质量分层节点,支持 Mobile/Console/PC 三档) -- Entities created: [[UnrealEngine5]](Epic Games 开发的游戏引擎,提供 Material Editor、Niagara、PCG、Nanite 等视觉工具链) -- Source page: wiki/sources/unreal-technical-artist.md -- Notes: index.md Sources 新增条目(2026-04-26,unreal-technical-artist.md);index.md Entities 新增 UnrealEngine5 条目;index.md Concepts 新增 7 个条目(MaterialFunction/NiagaraVFX/PCG/Nanite/Substrate/LOD/QualitySwitch);overview.md Game Development 部分新增 unreal-technical-artist 独立 entry,与 Technical Artist 基类形成继承关系;index.md 中 LOD-Pipeline 重复条目已清理;冲突检测:无已知冲突(Source Page Contradictions 节为空)。 - -- Source file: Agent/agency-agents/game-development/narrative-designer.md -- Status: ✅ 成功摄入 -- Summary: Narrative Designer Agent——游戏叙事设计师 AI Agent 人格规范。核心职责:将叙事设计为一套选择-后果-世界一致性的系统,与游戏机制深度整合。关键规范:对话必须通过"真实人物说话"测试;选择必须类型不同且有 2 beats 内后果;Lore 三层可选深度(Surface/Engaged/Deep);环境叙事通过道具无声讲述故事;叙事-玩法整合矩阵确保故事节点连接游戏机制;玩家叙事代理权与机械代理权必须匹配。 -- Concepts created: [[Branching-Narrative]](分支叙事设计——选择树结构、收敛策略、后果可见性)、[[Character-Voice-Pillars]](角色声音柱五维度体系)、[[Choice-Architecture]](选择架构——有意义选择、Fake Choice 刻意使用、延迟后果、后果可见性映射)、[[Dialogue-Writing-Standards]](对话写作标准——无"as you know"、三遍编辑法)、[[Lore-Architecture]](Lore 三层可选深度架构 + 世界圣经)、[[Narrative-Gameplay-Integration]](叙事-玩法整合矩阵)、[[Narrative-Debt-Tracking]](叙事债务追踪——伏笔承诺管理);existing: [[Environmental-Storytelling]](更新:新增 Narrative Designer 为来源,新增 Lore Architecture 连接) -- Entities created: 无(本文档未明确提及具体人物或公司,均为通用游戏开发概念,未达 Entity 建页阈值) -- Source page: wiki/sources/narrative-designer.md -- Notes: index.md Sources 新增条目(game-development 类,置于 Game Audio Engineer 后);index.md Concepts 新增 7 个条目(Branching-Narrative/Character-Voice-Pillars/Choice-Architecture/Dialogue-Writing-Standards/Lore-Architecture/Narrative-Debt-Tracking/Narrative-Gameplay-Integration);overview.md Game Development 部分新增 narrative-designer 独立 entry;冲突检测:与 [[Level Designer Agent]] 在环境叙事执行边界存在职责分工争议——叙事设计师定义叙事内容架构,关卡设计师执行物理空间设计,已在 Source Page Contradictions 节记录;Entity 去重:无 Entity 达标(Ink/Yarn/Twine 为工具术语,不建页)。 - -## [2026-04-26] ingest | Level Designer Agent Personality -- Source file: Agent/agency-agents/game-development/level-designer.md -- Status: ✅ 成功摄入 -- Summary: Level Designer Agent——游戏关卡设计师 AI Agent 人格规范。核心职责:通过空间架构引导、挑战和沉浸玩家。关键规范:关键路径必须视觉可读(除非刻意设计迷路);每个战斗遭遇必须包含读图时间、多种战术选项和退守位置;难度先从空间出发再考虑数值缩放;灰盒纪律(设计决策在灰盒阶段锁定,禁止在未测试布局上美术包装)。六阶段工作流:意图定义→纸面布局→灰盒搭建→遭遇战调优→美术交接→打磨验收。高级能力:空间心理学(prospect-refuge/figure-ground/Lynch 城市设计)、程序化关卡生成、速通设计、多人/竞技空间设计。 -- Concepts created: [[Flow-And-Readability]](关卡流与可读性)、[[Encounter-Design]](遭遇战设计)、[[Environmental-Storytelling]](环境叙事)、[[Blockout-Discipline]](灰盒纪律)、[[Pacing-Architecture]](节奏架构)、[[Spatial-Psychology]](空间心理学)、[[Procedural-Level-Design]](程序化关卡设计)、[[Speedrun-Design]](速通设计) -- Entities created: 无(本文档未明确提及具体人物或公司,均为通用游戏开发概念,未达 Entity 建页阈值) -- Source page: wiki/sources/level-designer.md -- Notes: index.md Sources 替换"expected: source missing"为正式条目(2026-04-26);index.md Concepts 新增 8 个 Concept 条目(Blockout-Discipline/Environmental-Storytelling/Encounter-Design/Flow-And-Readability/Pacing-Architecture/Procedural-Level-Design/Spatial-Psychology/Speedrun-Design);冲突检测:无已知冲突(Source Page Contradictions 节为空);overview.md:属于 Game Development 分支,与现有 game-designer、technical-artist、game-audio-engineer 等同属,无冲突,无需更新 overview;Entity 去重:无 Entity 达标(Technical Artist 文档中提及但未在本文档重复出现)。 - -## [2026-04-26] ingest | Game Audio Engineer -- Source file: Agent/agency-agents/game-development/game-audio-engineer.md -- Status: ✅ 成功摄入 -- Summary: Game Audio Engineer Agent——游戏交互式音频工程师 AI Agent 人格规范,设计自适应音乐系统、空间音频架构和音频中间件集成方案。核心规范:所有游戏音频必须通过 FMOD/Wwise 中间件事件系统触发,自适应音乐通过 tension parameter(0–1)驱动层切换(tempo-synced),空间音频通过 raycast 驱动 occlusion 参数(800Hz 低通截止,每帧最多 4 个 raycast),语音预算 PC 64/Console 48/Mobile 24,FMOD DSP 每帧 ≤1.5ms,Reverb Zone 分四类(Outdoor/Indoor/Cave/Metal Room)。 -- Concepts created: [[AdaptiveMusic]](由游戏状态参数驱动的动态音乐系统,通过中间件参数 API 实现实时层切换与混音)、[[SpatialAudio]](基于 3D 空间化的音效定位与衰减系统,含 occlusion raycast 驱动的参数和 reverb zone 匹配规范) -- Entities created: [[FMOD]](Firelight Technologies 开发的游戏音频中间件,事件驱动架构,跨引擎支持);其他实体(Wwise/Unity/Unreal/Godot/Dolby Atmos/DTS:X)各仅出现 1 次,未达 Entity 建页阈值(≥ 2 次) -- Source page: wiki/sources/game-audio-engineer.md -- Notes: index.md Sources 替换"expected: source missing"为正式条目(2026-04-26);index.md Concepts 新增 2 个条目(AdaptiveMusic/SpatialAudio);index.md Entities 新增 FMOD 条目;overview.md 新增"Game Development"独立 section(置于 Specialized 部门与 Conflict Areas 之间);冲突检测:无已知冲突(Source Page Contradictions 节为空);Entity 去重:FMOD 出现 2 次(FMOD Event System 集成 + C# AudioManager 示例),达到建页阈值;其他中间件/引擎各 1 次,未达阈值。 - -## [2026-04-26] ingest | AI Citation Strategist -- Source file: Agent/agency-agents/marketing/marketing-ai-citation-strategist.md -- Status: ✅ 成功摄入 -- Summary: AI Citation Strategist Agent——专注于 AI 推荐引擎优化(AEO/GEO)的营销 Agent。审计品牌在 ChatGPT、Claude、Gemini、Perplexity 四大 AI 平台上的引用可见性,识别竞品被引用的原因,生成优先级 Fix Pack 改善内容信号。核心方法:多平台 Citation Audit Scorecard → Lost Prompt Analysis → 竞品内容结构映射 → Schema markup + 实体信号优化 → Fix Pack 优先级实施。关键指标:30 天内引用率提升 20%+、Lost Prompts 恢复率 40%+、3+ 平台被引用。核心理念:AI 引用与传统 SEO 是不同策略,必须作为独立策略对待。 -- Concepts created: [[Answer Engine Optimization (AEO)]](AI 问答引擎优化,使品牌内容被 AI 引用)、[[Generative Engine Optimization (GEO)]](生成式 AI 引擎可见性优化,信号工程提升引用概率)、[[Citation Rate]](AI 引用率,衡量品牌在 AI 推荐引擎中可见性的核心指标)、[[Fix Pack]](AI 引用审计后的优先级修复包,含具体修改方案和预期改善幅度)、[[Lost Prompt Analysis]](识别品牌缺席但竞品胜出的查询场景,分析失败原因)、[[Entity Optimization]](强化品牌实体信号,使 AI 引擎清晰识别和信任品牌实体) -- Entities created: 无(ChatGPT/Claude/Gemini/Perplexity 均为知名 AI 产品平台,业界通用概念,无需独立 Entity 页面;相关 Platform-Specific Patterns 作为 Concept 内嵌,未达 Entity 建页阈值) -- Source page: wiki/sources/marketing-ai-citation-strategist.md -- Notes: index.md 新增 Sources 条目(2026-04-26);index.md Concepts 新增 6 个 Concept 条目(Answer-Engine-Optimization/Generative-Engine-Optimization/Citation-Rate/Fix-Pack/Lost-Prompt-Analysis/Entity-Optimization);overview.md 新增 AI Citation Strategist 独立 entry,置于 nexus-spatial-discovery 之前;冲突检测:与 [[Marketing SEO Specialist]] 存在核心策略冲突——传统 SEO 成功不能自动转化为 AI 可见性,AEO 与 SEO 必须作为不同策略对待,已在 Source Page Contradictions 节记录;overview.md Conflict Areas 新增第 20 条冲突点(SEO vs AEO 策略体系差异);Entity 去重:ChatGPT/Claude/Gemini/Perplexity 四平台均为业界通用 AI 产品概念,无需独立 Entity 页面;Platform-Specific Patterns 作为 Concept 内嵌概念,未达 Entity 建页阈值(出现频次 < 2,且为核心功能描述而非独立实体)。 - -## [2026-04-26] ingest | Marketing Growth Hacker -- Source file: Agent/agency-agents/marketing/marketing-growth-hacker.md -- Status: ✅ 成功摄入 -- Summary: 增长黑客 Agent——通过数据驱动的实验和非常规营销策略,实现快速、可规模化的用户获取与留存。核心方法:增长漏斗优化(Awareness→Acquisition→Activation→Retention→Revenue→Referral)+ A/B/多变量实验体系(每月10+实验,30%胜出率)+ 病毒系数工程(K-factor > 1.0)+ 北极星指标体系(North Star Metric)+ LTV:CAC 经济学(LTV:CAC ≥ 3:1)。关键指标:月环比自然增长 20%+、K-factor > 1.0、CAC 回本周期 < 6个月、首周激活率 60%+、Day 7 留存 40%。核心理念:找到那个还没被人涉足的流量渠道,然后把它规模化。 -- Concepts created: [[GrowthFunnelOptimization]](增长漏斗优化:AARRR 六阶段全链路转化率提升)、[[ViralLoop]](病毒裂变机制:K-factor = 邀请率 × 接受率,K > 1.0 实现指数级自然增长)、[[NorthStarMetric]](北极星指标:产品核心价值的单一衡量指标,驱动增长优先级)、[[KFactor]](病毒系数:K > 1.0 意味着指数级自然增长,K = 邀请率 × 接受率)、[[CACandLTV]](单位经济学:客户获取成本与生命周期价值,LTV:CAC ≥ 3:1 为健康门槛)、[[ProductLedGrowth]](产品导向增长:通过产品体验驱动获取与留存,而非依赖营销渠道) -- Entities created: 无(Growth Hacker Agent/The Agency 均为 Agent 角色/组织概念,不满足 Entity 实体定义,无需独立 Entity 页面) -- Source page: wiki/sources/marketing-growth-hacker.md -- Notes: index.md 新增条目(Sources 首位,2026-04-26);index.md Concepts 首位新增 6 个 Concept 条目;overview.md 新增 "Data-Driven Growth & Experimentation" 段落,置于 Content Strategy & Production 与 Professional Social Media 之间,阐述 Growth Hacker 与 Content Creator/Social Media Strategist/TikTok Strategist 的协同关系及策略差异;冲突检测:与 [[marketing-tiktok-strategist]] 存在渠道优先级冲突——TikTok Strategist 以平台内容为核心预设 TikTok 为最重要渠道,Growth Hacker 以实验数据为核心不预设平台偏好,已在 Source Page Contradictions 节记录;Entity/Concept 去重:Growth Hacker Agent(Agent 角色定义,非具体实体,不建页)、The Agency(组织概念,不建页);本次 6 个概念均已抽象为独立 Concept 页面(GrowthFunnelOptimization/ViralLoop/NorthStarMetric/KFactor/CACandLTV/ProductLedGrowth),满足可复用、可抽象原则。 - -## [2026-04-26] ingest | Marketing Xiaohongshu Specialist -- Source file: Agent/agency-agents/marketing/marketing-xiaohongshu-specialist.md -- Status: ✅ 成功摄入 -- Summary: 小红书(中国生活方式种草平台)品牌营销专家 Agent——将品牌打造为小红书顶流,通过生活方式品牌定位 + 趋势驱动内容策略 + 微内容优化 + 社区互动 + 数据迭代五阶段工作流实现增长。核心公式:70%有机生活内容 + 20%趋势参与 + 10%品牌直接推广。关键指标:互动率5%+、收藏率8%+、分享率2%+、每月1-2条爆款(100k+浏览)。核心原则:社区优先互动(发帖后2小时内回复)、审美一致性、真实叙事、算法趋势驾驭(24小时内识别并参与趋势)。 -- Concepts created: [[ContentMixStrategy]](70/20/10内容配比策略)、[[TrendRiding]](趋势驾驭方法论)、[[MicroInfluencerPartnership]](微影响者合作策略) -- Entities created: [[XiaohongshuPlatform]](小红书平台 Entity 页面) -- Source page: wiki/sources/marketing-xiaohongshu-specialist.md -- Notes: index.md 新增条目(Sources 首位,2026-04-26);冲突检测:与 [[marketing-tiktok-strategist]] 存在内容时长偏好冲突——小红书最优视频15-60秒 vs TikTok最优60-90秒,已在 Source Page Contradictions 节记录;Entity/Concept 去重:B站(已存在 Entity)/GenZMillennials(通用术语,不新建)/KOLKOC(通用术语,不新建);其他概念(MicroContentOptimization/CommunityFirstEngagement/UGCCampaign)本次以内嵌 wikilink 保留于 Source Page,未达独立建 Concept 阈值。 - -## [2026-04-26] ingest | Marketing Bilibili Content Strategist -- Source file: Agent/agency-agents/marketing/marketing-bilibili-content-strategist.md -- Status: ✅ 成功摄入 -- Summary: B站(Bilibili)平台内容策略与 UP主增长专家 Agent——专注于弹幕文化精通、B站算法优化、社区建设和品牌内容原生化。核心理念:社区第一、质量优先、B站用户最讨厌硬广。核心方法:四阶段工作流(平台洞察→内容架构→发布激活→增长优化);弹幕互动设计模板;三连率(Coin+Favorite+Like)驱动的内容包装体系(目标>5%);恰饭内容原生化策略;内容分区(知识区/科技区/生活区等)独立赛道逻辑。关键指标:三连率>5%、弹幕密度>30条/分钟、每月至少一条视频进入"每周必看"或"热门推荐"。 -- Concepts created: 无新 Concept(B站推荐算法/三连率/弹幕互动设计/恰饭内容/内容分区 均未达可独立抽象建页阈值,以内嵌 wikilink 保留于 Source Page) -- Entities created: 无(B站/UP主/花火平台/BML/三连 均为平台概念或通用营销术语,无需独立 Entity 页面) -- Source page: wiki/sources/marketing-bilibili-content-strategist.md -- Notes: index.md 新增条目(Sources 首位,2026-04-26);overview.md 新增独立 entry,置于 Douyin Strategist 与 TikTok Strategist 之间,补充与 Douyin Strategist/Kuaishou Strategist/China Market Localization Strategist/Video Optimization Specialist 的协同关系;冲突检测:与 [[marketing-douyin-strategist]] 存在策略差异冲突——抖音以算法推荐驱动流量爆发(中心化分发),B站 以社区文化和弹幕互动为核心(订阅关系),两者不可套用同一策略,已在 Source Page Contradictions 节记录。 - -## [2026-04-26] ingest | Marketing Content Creator -- Source file: Agent/agency-agents/marketing/marketing-content-creator.md -- Status: ✅ 成功摄入 -- Summary: 多平台内容创作专家 Agent——专注于跨平台品牌内容策略制定、叙事构建和受众互动优化。核心能力:内容策略框架(编辑日历+内容支柱+受众优先规划)、多格式创作(图文/视频/播客/信息图/社媒)、品牌叙事、SEO 内容优化(目标40%有机流量增长)、视频制作全链路(目标70%完播率)、绩效分析(目标5:1 ROI)。核心理念:在每个受众所在的平台上,创作有吸引力的故事。 -- Concepts created: 无新 Concept(Content Strategy/Brand Storytelling/SEO Content/Video Production/Copywriting 等在本次源文档中为核心能力描述,未达可独立抽象建页阈值,均以内嵌 wikilink 保留于 Source Page) -- Entities created: 无(YouTube/TikTok/Instagram/Podcast 均为平台类型,TikTok 已在其他 Agent 中提及,本次作为内嵌引用不新建 Entity) -- Source page: wiki/sources/marketing-content-creator.md -- Notes: index.md 新增条目(Sources 首位,2026-04-26);overview.md 新增 "Content Strategy & Production" 段落,置于 TikTok E-commerce Operations 与 Professional Social Media 之间,阐述与 Social Media Strategist/Twitter Engager/LinkedIn Content Creator/TikTok Strategist/Video Optimization Specialist/Growth Hacker 的协同关系;冲突检测:无已知冲突——Content Creator 与其他营销 Agent 构成"内容生产→平台分发"的互补关系,无竞争性冲突;Entity/Concept 去重:各平台(YouTube/TikTok/Instagram/Podcast)均无独立 Entity 页面,本次作为内嵌引用,不新建;Thought Leadership/Content Strategy/Brand Storytelling 等均作为方法论描述保留于 Source Page,不独立建 Concept 页。 - -- Source file: Agent/agency-agents/marketing/marketing-twitter-engager.md -- Status: ✅ 成功摄入 -- Summary: Twitter 实时互动与思想领袖建立专家 Agent——通过真实对话参与、领袖思想内容创作和社区驱动增长构建品牌权威。核心理念:Twitter 成功来自真实参与而非广播。核心方法:内容配比策略(教育25%/个人故事20%/行业评论20%/社区互动15%/推广10%/娱乐10%);四阶段工作流(实时监控→思想领袖建立→社区建设→效果优化);Twitter Spaces(200+ 实时听众);危机管理协议(<30 分钟响应)。关键指标:互动率≥2.5%、回复率80%(2小时内)、教育 thread≥100 转推。 -- Concepts created: 无新 Concept(Thread-Mastery、Community-Building、Crisis-Management、Twitter-Spaces 等在本次源文档中为方法论描述,未达可独立抽象建页阈值,均以内嵌 wikilink 保留于 Source Page;[[Thought-Leadership]] 已存在,本次直接引用) -- Entities created: 无(Twitter 作为平台无需 Entity 页面;Brand Authority 为抽象概念而非具体实体) -- Source page: wiki/sources/marketing-twitter-engager.md -- Notes: index.md 新增条目(Sources 首位,2026-04-26);overview.md 在 marketing-social-media-strategist 条目后新增独立 entry,补充与 Social Media Strategist/Growth Hacker/LinkedIn Content Creator 的协同关系;冲突检测:无已知冲突——与 Wiki 中其他营销 Agent 构成互补而非竞争关系;Entity/Concept 去重:Thought-Leadership 已存在 Entity 页面,本次直接 wikilink 引用;其余概念本次均以内嵌方式保留于 Source Page。 - - -- Source file: Agent/agency-agents/marketing/marketing-livestream-commerce-coach.md -- Status: ✅ 成功摄入 -- Summary: 直播带货全链路运营教练 Agent——覆盖主播孵化(五阶段话术框架+三阶段主播进阶)、流量运营(自然流量放大+千川付费投放+三阶段流量演进模型)、产品排品策略、数据复盘体系,覆盖抖音/快手/淘宝直播/微信视频号四大平台。核心公式「流量×转化率×客单价=GMV」,算法优先级「停留时长>互动率>点击率>购买转化率」。 -- Concepts created: [[Five-Phase-Script-Framework]](五阶段话术框架——留人钩子→产品介绍→信任建立→紧迫成交→追单挽留)、[[Host-Incubation-System]](主播孵化体系——素人→能播4h→能控节奏→能拉自然流量三阶段进阶)、[[Organic-Traffic-Amplification]](自然流量放大——通过停留时长和互动率触发平台推荐算法,核心指标:停留>60s、互动率>5%) -- Source page: wiki/sources/marketing-livestream-commerce-coach.md -- Notes: index.md 新增条目(Sources 首位,2026-04-26);index.md Concepts 首位新增三个 Concept 条目;overview.md 在 marketing-kuaishou-strategist 条目后插入完整 entry,阐述与 Douyin/Kuaishou 两大策略 Agent 的协同关系;冲突检测:无已知冲突——五阶段话术框架与快手 3-2-1 公式属互补框架(不同场景配比),停留时长核心指标与 Douyin Strategist 一致,成熟期自然流量>50% 与 Private Domain Operator 公域→私域转化模型一致;Entity 去重:Douyin/Kuaishou/OceanEngine 均已存在 Entity 页面,本次以内嵌 wikilink 引用,不新建;Taobao/Channels 仅提及1次,不满足≥2次门槛,不新建 Entity。 - -- Source file: Agent/agency-agents/marketing/marketing-tiktok-strategist.md -- Status: ✅ 成功摄入 -- Summary: TikTok 病毒式内容创作与品牌增长策略专家 Agent——深度掌握 TikTok 推荐算法机制、病毒内容公式和社区建设策略。核心理念:TikTok 的核心不是"制作好看的视频",而是"驾驭算法和文化浪潮,将品牌转化为病毒级现象"。核心方法:3秒黄金钩子法则(每条视频前3秒必须捕获注意力);40/30/20/10 内容配比(教育40%/娱乐30%/激励20%/促销10%);互动速度优化(发布后第一小时内最大化点赞、评论、分享);四级创作者分层(Nano/Micro/Mid-tier/Macro)。绩效指标:互动率 8%+(行业均值5.96%)、品牌内容完播率 70%+、品牌 hashtag 挑战 1M+ 浏览、创作者合作 ROI 4:1。交付物涵盖病毒脚本结构、跨平台适配策略(Reels/Shorts)、TikTok Ads 全漏斗架构(In-feed/Spark Ads/TopView)。 -- Concepts created: 无新 Concept(ForYouPageAlgorithm、ViralContentFormula、ContentPillarStrategy、CreatorEconomy、EngagementVelocity 等在 Source Page 内嵌定义,未达独立建页阈值) -- Entities created: 无(TikTok 作为平台在 index 中已存在或待确认;Instagram Reels/YouTube Shorts 各仅提及 1 次,不满足≥2次门槛,本次均以内嵌 wikilink 保留于 Source Page) -- Source page: wiki/sources/marketing-tiktok-strategist.md -- Notes: index.md 新增条目(置于 Sources 首位,2026-04-26);overview.md 在 Douyin Strategist 条目后插入独立 Marketing TikTok Strategist 完整条目,补充算法权重差异(完播率 vs 分享率/互动率)、受众文化差异的详细对比;冲突检测:与 [[MarketingLinkedInContentCreator]] 存在内容风格冲突(短视频娱乐 vs 长文专业),与 [[MarketingWeChatOfficialAccount]] 存在公域 vs 私域策略差异,已在 Contradictions 中记录;Entity/Concept 去重:Instagram Reels/YouTube Shorts/UGCCampaign 等各仅提及 1 次,本次不单独建页。 - -## [2026-04-26] ingest | Marketing SEO Specialist -- Source file: Agent/agency-agents/marketing/marketing-seo-specialist.md -- Status: ✅ 成功摄入 -- Summary: Google 搜索生态 SEO 专家 Agent——通过技术 SEO、关键词集群策略、内容优化、链接权威建设和搜索分析实现可持续有机流量增长。核心理念:可持续有机增长来自技术卓越、高质量内容和权威链接档案三者的交叉点;排名是价值的自然结果。五阶段工作流:发现→关键词策略→cannibalization 检测→技术执行→权威建设→测量迭代。强制 cannibalization 审查(Pillar+Satellite 集群架构)、Core Web Vitals 基准(LCP<2.5s,INP<200ms,CLS<0.1)。白帽 SEO 是唯一合规方式。高级能力:国际化 SEO、程序化 SEO、算法恢复、AI 搜索优化。 -- Concepts created: 无新 Concept(TopicCluster/ContentCannibalization/CoreWebVitals/E-E-A-T/SchemaMarkup/SearchIntent/InternalLinking/LinkAuthority/SERPFeature/ProgrammaticSEO/AISearchOptimization 等在本次源文档中为框架性提及,未达独立建页阈值,均以内嵌 wikilink 保留于 Source Page) -- Entities created: 无(ScreamingFrog/Sitebulb/GoogleSearchConsole/LookerStudio 等在本次源文档中为工具列举,不满足独立 Entity 建页条件,均以内嵌 wikilink 保留于 Source Page) -- Source page: wiki/sources/marketing-seo-specialist.md -- Notes: index.md 新增条目(置于 Sources 首位);overview.md 新增 Marketing SEO Specialist 条目(置于 App Store Optimizer 条目末尾,补充与 baidu-seo-specialist 的市场差异化说明);冲突检测:与 [[marketing-baidu-seo-specialist]] 存在算法体系不可通用的根本差异——两者目标搜索引擎不同(Google vs 百度),已在 Contradictions 中记录;Entity/Concept 去重:ScreamingFrog/Sitebulb 等工具性提及、CoreWebVitals 等框架性概念,本次均以内嵌 wikilink 保留于 Source Page,不单独建页。 - -- Source file: Agent/agency-agents/marketing/marketing-china-market-localization-strategist.md -- Status: ✅ 成功摄入 -- Summary: 中国市场全栈本地化增长策略师 Agent——将实时趋势信号转化为可执行选品/内容/渠道 GTM 策略。核心理念:本地化不是翻译,是文化再工程。核心方法:7+ 中国平台热榜实时监控(见微知著/交叉验证/反直觉/MECE 四模型);双轨分析(内容轨 + 评论轨);六阶段 GTM 门控(P0 信号验证 → P5 成熟运营);平台原生策略(绝不跨平台复制)。绩效指标:趋势信号在主流平台峰值前 ≥ 72 小时识别,每条建议附带 P0-P5 优先级。 -- Concepts created: [[Trend-To-Action]](趋势行动框架——信号采集→深度分析→策略设计→GTM执行→测量迭代的完整闭环,双轨分析驱动);[[Dual-Track-Analysis]](双轨分析——内容轨+评论轨同时运行);[[Phased-GTM-Gate]](六阶段 GTM 门控 P0-P5);[[Real-Time-Trend-Intelligence]](实时趋势情报——四信号检测模型);[[China-Consumer-Psychology]](中国消费心理——面子/从众/性价比/国潮);[[Seasonal-Consumption-Cycle]](季节性消费周期——618/双十一/春节等关键节点) -- Entities created: 无(Douyin/WeChat/Bilibili/Xiaohongshu/Weibo/Zhihu/Kuaishou 均已存在 Entity 页面,本次以内嵌 wikilink 引用,不新建) -- Source page: wiki/sources/marketing-china-market-localization-strategist.md -- Notes: index.md 新增条目;overview.md 在 Douyin Strategist 后插入统领性 China Market Localization Strategist 条目,作为中国全平台营销矩阵的战略上层;更新 [[Cross-Platform-Strategy]] 概念,新增中国市场平台矩阵(微博/抖音/小红书/知乎/B站/微信/快手);冲突检测:与 [[marketing-douyin-strategist]] 可能存在视角差异(抖音作为独立增长引擎 vs 作为 GTM 漏斗放大环节),已在 Contradictions 中记录;Entity 去重:Douyin/WeChat/Bilibili 等平台已存在 Entity 页面,本次以内嵌 wikilink 引用。 - -## [2026-04-26] ingest | App Store Optimizer -- Source file: Agent/agency-agents/marketing/marketing-app-store-optimizer.md -- Status: ✅ 成功摄入 -- Summary: App Store 优化(ASO)全栈专家 Agent——专注于应用商店搜索可见性优化、视觉资产转化率提升和可持续用户增长。核心理念:数据驱动 + 转化优先 + A/B 测试系统性优化。绩效目标:有机下载月增长 30%+、关键词前 10 排名 20+ 个、转化率提升 25%+、评分 4.5 星+。四阶段工作流:市场研究分析 → 策略开发 → 实施测试 → 优化规模化。 -- Concepts created: 无新 Concept(App-Store-Optimization-ASO、Conversion-Rate-Optimization、A-B-Testing、Keyword-Research 等在其他 Source Page 中已作为 wikilink 使用,未达独立建页阈值;本次均以内嵌 wikilink 保留于 Source Page) -- Entities created: 无(App Store、iOS、Android 等作为 Agent 运营平台提及,不满足≥2次独立 Entity 门槛,均以 wikilink 保留于 Source Page) -- Source page: wiki/sources/marketing-app-store-optimizer.md -- Notes: index.md 原占位条目(2026-04-22 expected)已替换为完整摘要;overview.md 新增 App Store Optimizer 条目(置于微信运营之后);冲突检测:与 [[Marketing-SEO-Specialist]] 存在方法论差异但非冲突——ASO 与 SEO 分别服务 App Store 和 Web 两个不同发现渠道,实为互补关系,已在 Contradictions 中明确记录;Entity/Concept 去重:App Store/iOS/Android/Review-Management 等未达到≥2次独立 Entity 门槛,本次不单独建页。 - -## [2026-04-26] ingest | Marketing WeChat Official Account Manager -- Source file: Agent/agency-agents/marketing/marketing-wechat-official-account.md -- Status: ✅ 成功摄入 -- Summary: 微信公众号全栈运营专家 Agent——将公众号打造为高互动、强忠诚的社群中心。核心理念:公众号不是广播频道而是关系建设工具。核心方法:60/30/10 内容规则(60% 价值内容 + 30% 社群互动 + 10% 推广内容);五阶段运营工作流(订阅者分析→内容策略→内容创作→自动化运营→数据分析);微信原生功能整合(自动回复/关键词响应/菜单架构/小程序)。绩效目标:打开率 30%+(行业均值 2 倍)、菜单点击率 20%+、转化率 2-5%。 -- Concepts created: [[Content-60-30-10-Rule]](内容比例法则——60% 价值内容 + 30% 社群互动 + 10% 推广内容) -- Entities created: [[WeChat]](微信——中国最大私域社交平台,公众号是其核心商业通讯渠道) -- Source page: wiki/sources/marketing-wechat-official-account.md -- Notes: 与 [[marketing-weibo-strategist]] 存在互补关系——微博公域引爆→公众号私域沉淀;与 [[marketing-private-domain-operator]] 形成漏斗下游——公众号订阅者→企业微信私域运营。已在 [[marketing-weibo-strategist]] 的 Connections 中记录公众号为 complements 关系。 -## [2026-04-26] ingest | LinkedIn Content Creator -- Source file: Agent/agency-agents/marketing/marketing-linkedin-content-creator.md -- Status: ✅ 成功摄入 -- Summary: LinkedIn 专业内容创作者 Agent——专注于思想领导力内容、个人品牌建设和高互动专业内容生成,帮助用户将专业技能转化为可见的专业影响力。核心方法:七阶段完整工作流(受众分析→钩子工程→帖子构建→格式优化→轮播/文章制作→主页优化→互动策略);基于算法的内容结构设计(保存率/早期velocity/停留时间三大信号);按受众类型(创始人/求职者/开发者/B2B营销)定制化内容策略。核心理念:每个帖子必须有可辩护的观点;中性内容产生中性结果。 -- Concepts created: 无新 Concept(Thought-Leadership/Content-Pillar 已在 Wiki 中存在,本次更新其 Source 引用;Hook-Engineering/LinkedIn-Algorithm/Personal-Brand 等在其他 Source Page 中作为 wikilink 使用,未达独立建页阈值) -- Source page: wiki/sources/marketing-linkedin-content-creator.md -- Notes: index.md 原占位条目(2026-04-21 expected)已替换为完整摘要;冲突检测:与 [[Marketing-Social-Media-Strategist]] 为宽窄互补关系(非冲突——前者提供 LinkedIn 平台的具体执行方法论,后者提供跨平台战略框架);overview.md 无需修订(已有大量营销内容,暂不需要修订综合摘要);Entity/Concept 去重:Thought-Leadership/Content-Pillar 已存在,LinkedIn-Campaign-Manager 已存在,均无需重复创建,仅更新 sources 字段。 - -## [2026-04-26] ingest | Marketing Baidu SEO Specialist -- Source file: Agent/agency-agents/marketing/marketing-baidu-seo-specialist.md -- Status: ✅ 成功摄入 -- Summary: 百度搜索生态优化与中国市场 SEO 专家 Agent——专注于中文搜索引擎排名、百度生态整合(百科/知道/贴吧/文库/经验矩阵)、ICP 合规、中文关键词研究与移动优先索引。核心理念:ICP 备案是不可妥协的法定前提("without ICP备案, nothing else matters");百度与 Google SEO 根本不同(需从零学习百度算法体系)。四阶段工作流:合规基础 → 关键词研究 → 站内技术优化 → 站外权威建设。五大算法应对:飓风(原创)/ 细雨(反堆砌)/ 惊雷(反点击操纵)/ 蓝天(新闻质量)/ 清风(反标题党)。与 Douyin/Kuaishou 属互补关系——百度捕获搜索意图用户(高意向),短视频平台创造需求引流。 -- Concepts created: [[Baidu-SEO]](百度搜索引擎优化,与 Google SEO 有根本差异)、[[ICP-Filing]](ICP 备案,中国网站合法运营的法定前提)、[[Baidu-Ecosystem-Integration]](百度生态矩阵整合策略) -- Entities created: [[Baidu]](百度,中国最大搜索引擎,五大生态产品矩阵) -- Source page: wiki/sources/marketing-baidu-seo-specialist.md -- Notes: index.md 原占位条目(2026-04-21 expected)已替换为完整摘要;overview.md 新增百度 SEO 条目,置于 Carousel Growth Engine 之前;Entity 去重检查:Baidu 未在 Wiki 中存在同名页面,新建 Baidu.md;Concept 去重检查:Baidu-SEO、ICP-Filing、Baidu-Ecosystem-Integration 均未在 Wiki 中存在同名页面;冲突检测:① 与 [[Marketing-Douyin-Strategist]] 和 [[Marketing-Kuaishou-Strategist]]:搜索意图(百度)vs 算法推送(短视频)互补而非竞争;② 与 Google SEO 最佳实践:百度有独立算法体系、ICP 备案要求、生态平台偏好、内容审查——Google 经验不可迁移已在 Contradictions 中记录。 - -## [2026-04-26] ingest | Marketing Private Domain Operator -- Source file: Agent/agency-agents/marketing/marketing-private-domain-operator.md -- Status: ✅ 成功摄入 -- Summary: 企业微信(WeCom)私域运营专家 Agent——专注于 SCRM 系统配置、分层社群 SOP 自动化、用户生命周期管理与全漏斗转化优化。核心理念:私域的本质是将信任建立为资产,通过系统化运营实现用户从首次接触到终身价值的全链路管理。五大核心模块:WeCom 生态搭建(渠道码/标签/SCRM 集成/合规存档)→ 分层社群运营(获客群/福利群/VIP 群/超 级用户群)→ 小程序电商联动 → 用户生命周期自动化 → 全漏斗转化。关键红线:社群内容 70%+ 价值/30% 促销、新客 7 天首购转化应超 20%、流失预警触发人工介入。 -- Concepts created: [[私域运营]](私域运营全链路核心概念)、[[SCRM]](社交客户关系管理工具与方法) -- Entities created: [[WeCom]](企业微信,私域运营核心载体) -- Source page: wiki/sources/marketing-private-domain-operator.md -- Notes: index.md 原占位条目(2026-04-21 expected)已替换为完整摘要;冲突检测:无冲突——该 Agent 与公域运营 Agent(Douyin Strategist、Kuaishou Strategist 等)属互补关系,私域是公域流量的承接终点,无内容矛盾;Entity 去重检查:WeCom 未在 Wiki 中存在同名页面,新建 WeCom.md;Concept 去重检查:SCRM 和私域运营未在 Wiki 中存在同名页面,新建对应 Concept 页;overview.md 本次未更新(已有大量营销内容,暂不需要修订综合摘要)。 - -## [2026-04-26] ingest | Marketing Social Media Strategist -- Source file: Agent/agency-agents/marketing/marketing-social-media-strategist.md -- Status: ✅ 成功摄入 -- Summary: 跨平台社交媒体战略专家 Agent——专注于 LinkedIn、Twitter 等专业社交平台的企业级品牌建设和社群运营。核心能力:LinkedIn 全栈运营(公司页面/个人品牌/专栏文章/新闻通讯/LinkedIn Ads);Twitter 实时协同(与 Twitter Engager Agent 协作保持一致声音);B2B 社交销售策略与销售管道开发;员工倡导计划设计与品牌大使激活;跨平台内容瀑布流(LinkedIn 首发 → Twitter 适配 → 其他平台分发)。成功指标:LinkedIn 互动率 3%+(公司页面)/5%+(个人品牌)、每月受众覆盖增长 20%、50%+ 内容达到平台基准、社交广告 ROI 3 倍+。 -- Concepts created: [[Cross-Platform-Strategy]](跨平台统一消息策略,根据各平台特性调整内容形式)、[[B2B-Social-Selling]](B2B 社交销售策略与管道开发)、[[Employee-Advocacy]](员工倡导计划设计与品牌大使激活);[[Thought-Leadership]] 已在 Wiki 中存在,本次更新其 Source 引用 -- Entities created: 无(LinkedIn、Twitter 等作为 Agent 运营工具提及,不满足≥2次独立 Entity 门槛,均以 wikilink 保留于 Source Page) -- Source page: wiki/sources/marketing-social-media-strategist.md -- Notes: index.md 原占位条目(2026-04-21 expected)已替换为完整摘要;overview.md 新增 "Professional Social Media (LinkedIn & Twitter)" 区域(置于 Douyin Short-Video & Livestream Commerce 之前);冲突检测:与 [[Marketing-Douyin-Strategist]] 和 [[Marketing-TikTok-Strategist]] 的平台差异已体现——后者专注短视频/直播电商,前者专注专业社交平台有机运营,策略目标和受众定位不同,无实质冲突。与 [[Paid-Media-Paid-Social-Strategist]] 互补关系已在 overview 中明确记录。 - -## [2026-04-26] ingest | Marketing Kuaishou Strategist -- Source file: Agent/agency-agents/marketing/marketing-kuaishou-strategist.md -- Status: ✅ 成功摄入 -- Summary: 快手平台下沉市场营销策略师 Agent——专注于低线城市短视频营销、直播带货运营与老铁经济社区信任构建。核心理念:真实性高于一切。核心方法:均衡分发算法(日常一致性优先于病毒爆发)+ 老铁关系构建(信任先于销售)+ 直播带货3-2-1公式(3痛点→2演示→1报价)+ 私域运营(粉丝团+微信私域)。核心禁忌:绝不将抖音内容直接复用到快手。 -- Concepts created: [[老铁经济]](快手特有兄弟文化)、[[均衡分发算法]](快手核心推荐机制)、[[下沉市场]](低线城市用户群)、[[直播带货]](快手核心商业模式)、[[3-2-1产品介绍公式]](快手直播话术框架) -- Entities created: [[Kuaishou]](快手平台 Entity,与抖音构成中国短视频双平台) -- Source page: wiki/sources/marketing-kuaishou-strategist.md -- Notes: index.md 原占位条目(2026-04-21 expected)已替换为完整摘要;overview.md Douyin Short-Video & Livestream Commerce 区域新增完整条目(置于 Instagram Curator 之后);冲突检测:与 [[Marketing-Douyin-Strategist]] 的平台差异已于 Source Page Contradictions 节详细记录,overview.md Conflict Areas 第3条已有记录,无新冲突;Entity 层面:Kuaishou(快手)作为平台核心实体首次创建(≥5次出现),Douyin(抖音)Entity 由 Douyin Strategist Source Page 引用管理。 - -## [2026-04-26] ingest | Marketing Video Optimization Specialist -- Source file: Agent/agency-agents/marketing/marketing-video-optimization-specialist.md -- Status: ✅ 成功摄入 -- Summary: YouTube 视频增长与留存优化专家 Agent——专注于 YouTube 算法优化(CTR+留存率双驱动)、策略性章节划分、高转化率缩略图设计和跨平台内容分发。核心理念:前30秒(The Hook)决定视频生死,留存率图谱驱动视频结构优化,以频道会话视角而非单视频维度优化。成功指标:8%+ 平均 CTR、50%+ 第3分钟留存率、20%+ 平均观看时长提升。完整交付模板涵盖包装策略→视频结构→SEO 元数据的全链路。 -- Concepts created: [[Video-Hook]](视频开场钩子,30秒框架,与 [[Golden-3-Second-Hook]] 的3秒抖音框架对应但时间尺度不同) -- Entities created: [[YouTube]](YouTube 平台 Entity,算法机制与关键指标定义) -- Source page: wiki/sources/marketing-video-optimization-specialist.md -- Notes: overview.md Doubin Short-Video & Livestream Commerce 区域新增完整条目(置于 Douyin Strategist 与 Book Co-Author 之间);index.md 已添加新条目;冲突检测:与 [[Golden-3-Second-Hook]] 存在"时间尺度差异"——前者30秒长格式框架,后者3秒短格式框架,非冲突而是互补,已在 [[Video-Hook]] Concept 中明确两者关系。 - -## [2026-04-26] ingest | Marketing Instagram Curator -- Source file: Agent/agency-agents/marketing/marketing-instagram-curator.md -- Status: ✅ 成功摄入 -- Summary: Instagram 营销专家 Agent 个性定义——通过视觉品牌开发、多格式内容策略、社区培养与社交电商将品牌打造成 Instagram 主力账号。核心四阶段工作流(品牌美学开发 → 多格式内容策略 → 社区建设与电商 → 绩效优化);1/3 内容法则(品牌/教育/社区内容各占1/3);绩效目标:互动率 3.5%+、Story 完成率 80%+、购物转化 2.5%+、UGC 月产 200+ 条。核心理念:将粉丝转化为品牌拥护者、将互动转化为可衡量的商业增长。 -- Concepts created: 无(Key Concepts 均仅出现1次,不满足≥2次独立创建阈值,以 wikilink 形式保留于 Source Page Key Concepts 节) -- Entities created: 无(Key Entities 均仅出现1次,不满足≥2次独立创建阈值,以 wikilink 形式保留于 Source Page Key Entities 节) -- Source page: wiki/sources/marketing-instagram-curator.md -- Notes: index.md 原占位条目(2026-04-21 expected)已替换为完整摘要;冲突检测:与 [[Marketing-TikTok-Strategist]] 在"平台特性差异"上的潜在张力已记录——Instagram 侧重视觉一致性与社区粘性,TikTok 侧重算法流量获取与趋势跟随,内容节奏与运营策略有本质差异。 - -## [2026-04-26] ingest | Marketing Short-Video Editing Coach -- Source file: Agent/agency-agents/marketing/marketing-short-video-editing-coach.md -- Status: ✅ 成功摄入 -- Summary: 短视频剪辑技术教练 Agent——覆盖完整后期制作流水线:剪辑软件选择决策树(CapCut Pro 主推高效日更/Pr 商业项目/DaVinci Resolve 调色行业标准/Final Cut Pro Mac首选);镜头语言体系(景别/运镜/转场);色彩调色二元体系(初级校正恢复真实 + 次级调色风格化);音频工程三步骤(降噪→人声增强→BGM混音);动态图形与VFX;字幕设计与多平台导出优化;AI辅助剪辑(自动字幕/智能抠像/文字成片/数字人配音)。核心理念:剪辑核心不是软件熟练度,而是叙事能力和节奏感;每一帧都必须有其存在的理由。 -- Concepts created: [[Color-Grading]](色彩调色——二元体系:初级校正+次级调色);[[Speed-Ramping]](速度曲线变速——短视频最常用的动态视觉手法);[[Beat-Sync]](BGM节拍同步——音画合一冲击力);[[Proxy-Editing]](代理编辑——高分辨率工作流必备技术);[[Template-Based-Production]](模板化批量生产——效率4倍提升);[[AI-Assisted-Editing]](AI辅助剪辑——承担60%重复工作,保留40%人工创意) -- Entities created: [[CapCut-Pro]](剪映专业版——AI功能业界领先,最适合个人创作者和MCN批量生产);[[Adobe-Premiere-Pro]](行业标准——广告/影视后期首选,与AE/AU/PS无缝集成);[[DaVinci-Resolve]](调色行业标准——免费版已极强,Fairlight音频+Fusion VFX);[[Final-Cut-Pro]](Mac首选——磁力时间线+M系列芯片极致优化,一次买断无订阅) -- Source page: wiki/sources/marketing-short-video-editing-coach.md -- Notes: index.md 原占位条目(2026-04-21 expected)已替换为完整摘要;overview.md Doubin Short-Video & Livestream Commerce 区域新增完整条目(置于 Kuaishou Strategist 之后);冲突检测:与 [[Marketing-Douyin-Strategist]] 的时长策略差异(后者强调7-15秒完播率优先,本 Coach 建议1-3分钟叙事)已在 Source Page Contradictions 节详细记录——解决方向为两者互补(3秒快节奏开篇钩子 + 后续1-3分钟完整叙事);与 [[Marketing-Video-Optimization-Specialist]] 的时间尺度差异(3-30秒 vs 3分钟+)已在 Contradictions 节记录——均为正确但适用于不同平台;Entity 层面:CapCut/Adobe Premiere/DaVinci Resolve/Final Cut Pro 作为核心工具实体首次创建(4个软件均满足≥5次出现阈值);Concepts 层面:6个核心概念(Color Grading/Speed Ramping/Beat Sync/Proxy Editing/Template-Based Production/AI-Assisted Editing)均满足可抽象/可复用/非具体实例的创建条件。 -- Source file: Agent/agency-agents/marketing/marketing-china-ecommerce-operator.md -- Status: ✅ 成功摄入 -- Summary: The Agency 营销部门的中国电商多平台运营专家 Agent——跨淘宝/天猫/拼多多/京东/抖音店铺全渠道运营,核心方法:多平台差异化策略 + 直播带货运营 + T-60大战役框架(618/双11/双12)+ 广告ROAS优化(直通车≥3:1)+ 私域运营(微信CRM/会员体系/社群电商)。核心理念:每个平台算法、受众和规则不同,永远不能复制策略;利润保护优先于GMV;大促准备须提前45-60天。 -- Concepts created: 无(Key Concepts 均仅出现1次,不满足≥2次独立创建阈值,以 wikilink 形式保留于 Source Page Key Concepts 节) -- Entities created: 无(Key Entities 均仅出现1次,不满足≥2次独立创建阈值,以 wikilink 形式保留于 Source Page Key Entities 节) -- Source page: wiki/sources/marketing-china-ecommerce-operator.md -- Notes: index.md 原占位条目(2026-04-21 expected)已替换为完整摘要;overview.md Douyin Short-Video & Livestream Commerce 区域新增完整条目;冲突检测:与 [[Marketing-Douyin-Strategist]] 在"抖音平台视角"上的潜在张力已记录于 Source Page Contradictions 节,建议分工:前者负责抖音店铺整体运营(含广告/直播/数据分析),后者负责内容策略(短视频/达人合作),互补而非竞争。 - -## [2026-05-06] ingest | Marketing Reddit Community Builder -- Source file: Agent/agency-agents/marketing/marketing-reddit-community-builder.md -- Status: ✅ 成功摄入 -- Summary: AI Agent 角色定义——以 Reddit 文化专家身份,通过真实价值贡献和长期关系培养,在 Reddit 上建立品牌影响力。核心四阶段执行框架(社区研究 → 内容策略 → 社区建设 → 战略价值),核心规则 90/10 价值法则(90% 价值内容 + 10% 推广)。成功关键:成为社区有价值成员,而非推销品牌。 -- Concepts created: [[90-10-Rule]](90%价值内容+10%推广比例法则)、[[Community-First-Engagement]](关系优先策略)、[[Subreddit-Research]](社区研究流程)、[[AMA-Coordination]](Ask Me Anything 协调)、[[Reputation-Management]](声誉管理)、[[Reddit-Advertising-Integration]](Reddit广告整合) -- Source page: wiki/sources/marketing-reddit-community-builder.md -- Notes: index.md 原占位条目(2026-04-21 expected)已替换为完整摘要;冲突检测:与 [[Marketing-Short-Video-Editing-Coach]] 在"推广节奏"上的潜在张力已记录——Reddit 以月/年为周期积累型信任,短视频以周为周期爆发型传播;Entity 层面 Reddit/Subreddit 等均<2次提及,暂不创建独立 Entity 页面。 - -## [2026-05-05] ingest | Nexus Spatial: Full Agency Discovery Exercise -- Source file: Agent/agency-agents/examples/nexus-spatial-discovery.md -- Status: ✅ 成功摄入 -- Summary: 8个 The Agency 专业 Agent 并行协作,完成 AI 空间指挥中心产品 Nexus Spatial 的完整规划(10分钟 wall-clock time)。涵盖:市场验证(AI 编排 $13.5B + 空间计算 $170-220B 交叉空白)、技术架构(8服务 Rust 编排引擎)、品牌策略(定义 [[SpatialAIOps]] 新品类)、GTM 计划(3阶段渐进:2D→WebXR→VisionOS)、UX 研究(调试为杀手级用例)、空间界面架构(命令剧院 + 7态节点系统)、项目执行(35周,5团队)。跨 Agent 独立共识:2D-first / WebXR 优先 / 调试 killer use case。 -- Concepts created: [[SpatialAIOps]](空间AI运营新品类)、[[Command-Theater-Interface]](命令剧院界面范式)、[[Debugging-Visualization]](调试可视化杀手级用例)、[[Semantic-Zoom]](4级语义缩放导航)、[[Growth-Loop]](增长飞轮) -- Entities created: [[Nexus-Spatial]](AI Agent 沉浸式3D命令中心产品)、[[CrewAI]](竞争产品;CLI-first,可视化能力有限) -- Source page: wiki/sources/nexus-spatial-discovery.md -- Notes: index.md 原占位条目(2026-04-21 expected)已替换为完整摘要;overview.md 已追加 nexus-spatial-discovery 综合摘要条目;与 [[Multi-Agent-System-Reliability]] 在协调机制设计上的张力已记录于 Source Page Contradictions 节——Nexus Spatial 采用 Yjs CRDT 去中心化协作(面向人类协作者),Multi-Agent-System-Reliability 侧重自主 Agent 间显式协调(面向任务协调),场景不同但技术选择有潜在关联待研究。 - -## [2026-05-05] ingest | Book Co-Author -- Source file: Agent/agency-agents/marketing/marketing-book-co-author.md -- Status: ✅ 成功摄入 -- Summary: AI 代笔专家 Agent——将创始人/专家/运营者的语音笔记和碎片想法转化为结构化第一人称书籍章节。核心五阶段工作流:Pressure-Test Brief → Define Chapter Intent → Draft in First-Person Voice → Strategic Revision Pass → Deliver Revision Package。版本化管理 + 编辑 Gap 可视化。核心理念:作者必须保持可见、禁止空洞套话、书籍必须强化品类定位而非仅解释想法。 -- Concepts created: 无新概念页(Ghostwriting/Narrative Architecture/First-Person Voice 等核心概念由 [[Thought-Leadership]] 覆盖) -- Source page: wiki/sources/marketing-book-co-author.md -- Notes: index.md 已在 Sources 节首位插入条目;overview.md 已插入「Douyin Short-Video」section 末尾;与 [[design-visual-storyteller]] 的潜在张力已记录于 Source Page Contradictions 节(视觉叙事 vs 文字叙事,互补而非竞争);与 [[workflow-book-chapter]] 关系已说明(通用工作流 vs 专用 Agent);与 [[marketing-zhihu-strategist]] 互补(短内容建立信誉 vs 长内容巩固权威)。 - -## [2026-05-05] ingest | Examples - Agency Multi-Agent Collaboration Showcase -- Source file: Agent/agency-agents/examples/README.md -- Status: ✅ 成功摄入 -- Summary: agency-agents 示例目录——展示多个专业 Agent 如何协作完成真实任务的案例文档。核心价值:8 个专业 Agent 并行运行,产出连贯且相互引用的完整计划,无需协调开销;具体案例 Nexus-Spatial-Discovery 涵盖市场验证、技术架构、品牌策略、GTM 计划等 8 个领域。 -- Concepts created: 无(Multi-Agent-Collaboration 和 Nexus-Spatial-Discovery 均依赖实际 Source Page 内容,不在本文档范围内创建独立 Concept) -- Entities created: 无(8 个参与 Agent 均已在 wiki 中有独立 Source Page;Nexus-Spatial-Discovery 已在 index.md 占位待实际案例文档摄入后完善) -- Source page: wiki/sources/readme.md -- Notes: index.md 原有 12 个过期 OpenCode Integration readme.md 占位条目,清理并替换为新条目;冲突检测:与 Multi-Agent-System-Reliability 在"是否需要显式协调机制"上的潜在冲突已记录于 Source Page Contradictions 节。 - -- Source file: Agent/agency-agents/support/support-infrastructure-maintainer.md -- Status: ✅ 成功摄入 -- Summary: Infrastructure Maintainer——The Agency Support 部门的基础设施维护专家 Agent,核心理念"Keeps the lights on, the servers humming, and the alerts quiet",通过 Prometheus 监控/Terraform IaC/自动化灾备/安全合规实现运维自动化,确保 99.9%+ 服务可用性,降低 70%+ 人工运维任务,年度成本效率提升 20%+。与 Support Responder 和 Analytics Reporter 构成依赖链。 -- Concepts created: 无(Key Concepts 均为单来源特定概念/工具,不满足可独立复用阈值,均以 wikilink 形式记录于 Source Page Key Concepts 节) -- Entities created: 无(Terraform/Prometheus/AWS-RDS/HashiCorp 等 Key Entities 均已在其他来源中存在,无需重复创建,均以 wikilink 形式记录于 Source Page Key Entities 节) -- Source page: wiki/sources/support-infrastructure-maintainer.md -- Notes: index.md 原占位条目(2026-04-21 source missing)已替换为完整摘要;overview.md Support 部门新增 support-infrastructure-maintainer 段落,位于 support-analytics-reporter 之后、Paid Media 部门之前;冲突检测:与 support-legal-compliance-checker 在"变更速度 vs 合规验证"上的张力已记录于 Source Page Contradictions 节,建议合规验证作为 CI/CD 流水线 Gate,不阻断常规变更但强制阻断高风险变更。 - -## [2026-05-05] ingest | Support Responder Agent Personality -- Source file: Agent/agency-agents/support/support-support-responder.md -- Status: ✅ 成功摄入 -- Summary: Support Responder——The Agency Support 部门的客户支持专员 Agent,核心理念"客户满意度优先于内部效率指标",通过多渠道(邮件/聊天/电话/社交媒体/应用内消息)提供全渠道支持,实现 85% 首次联系解决率和 2 小时首次响应 SLA。三级分层支持体系(Tier1 General/Tier2 Technical/Tier3 Specialists)通过明确升级标准和路由机制确保问题高效分流。配套 SupportAnalytics Python 框架(数据分析/趋势识别/改进建议/主动外展列表)和 KnowledgeBaseManager 知识库系统(文章创建/模板生成/交互式故障排除/内容优化)。成功指标:客户满意度 4.5+/5、首次联系解决率 80%+、SLA 合规率 95%+、知识库贡献减少相似工单 25%+。 -- Concepts created: 无(Omnichannel-Support/First-Contact-Resolution/Support-Tier-System 等 Key Concepts 均为单来源特定概念,不满足可独立复用阈值,均以 wikilink 形式记录于 Source Page Key Concepts 节) -- Entities created: 无(Support-Responder-Agent/Support-Analytics-Dashboard/Knowledge-Base-Manager 等 Key Entities 均为单来源工具/交付物名称,不满足 ≥2 次出现阈值,均以 wikilink 形式记录于 Source Page Key Entities 节) -- Source page: wiki/sources/support-support-responder.md -- Notes: index.md 原占位条目(2026-04-21 source missing)已替换为完整摘要;overview.md Support 部门新增 support-support-responder 完整条目(含 Agent 间协作关系:Support Responder 产生工单数据→ Analytics Reporter 分析洞察;合规问题升级至 Legal Compliance Checker);冲突检测:与 support-legal-compliance-checker 在"问题解决优先 vs 合规优先"上的张力已记录于 Source Page Contradictions 节,建议分工:常规问题以 Support Responder 为主,涉及合规风险的问题升级至 Legal Compliance Checker。 - -## [2026-05-05] ingest | Analytics Reporter Agent Personality -- Source file: Agent/agency-agents/support/support-analytics-reporter.md -- Status: ✅ 成功摄入 -- Summary: Analytics Reporter——The Agency Support 部门的数据分析与商业智能专家 Agent,核心理念"用数据讲故事,用统计说话",核心使命将原始数据转化为可操作业务洞察。四步工作流:数据发现验证 → 分析框架开发 → 洞察生成可视化 → 业务影响测量。技术栈覆盖 SQL(CTE 复杂业务指标)、Python(pandas/scikit-learn RFM 客户分层)、统计分析(p-value 显著性检验、回归、预测)。交付物模板:Executive Dashboard、Customer Segmentation Analysis(RFM 分层)、Marketing Attribution Dashboard(多触点归因 + ROI)。核心原则:数据质量优先(p < 0.05)、业务影响聚焦、可重现性保证。成功指标:分析准确率 95%+、建议实施率 70%+、满意度 4.5+/5。 -- Concepts created: [[RFM-Analysis]](客户价值三维分层分析)、[[Marketing-Attribution]](多触点营销归因模型) -- Entities created: 无(Key Entities 均为单来源工具/交付物名称,不满足 ≥2 次出现阈值) -- Source page: wiki/sources/support-analytics-reporter.md -- Notes: index.md 原占位条目(2026-04-21 source missing)已替换为完整摘要;overview.md Support 部门新增 support-analytics-reporter 完整条目(含 Agent 间协作关系:数据→洞察→传递完整链路);冲突检测无发现(Source Page Contradictions 节标记为暂无冲突);与 testing-test-results-analyzer 共享统计分析方法论但前者侧重 BI 业务分析,后者侧重 QA 测试数据。 - -## [2026-05-05] ingest | Support Legal Compliance Checker Agent Personality -- Source file: Agent/agency-agents/support/support-legal-compliance-checker.md -- Status: ✅ 成功摄入 -- Summary: Legal Compliance Checker——The Agency Support 部门的法律合规专家 Agent,核心理念"合规优先",负责确保企业运营符合多司法管辖区法规(GDPR/CCPA/HIPAA/PCI-DSS/SOX/FERPA)。四阶段工作流:监管格局评估 → 风险评估与差距分析 → 政策制定与实施 → 培训与文化建设。提供 Python PrivacyPolicyGenerator(多辖区隐私政策生成)和 ContractReviewSystem(关键词扫描风险评估,≥10分高风险需法律审查)。目标合规评分 98%+,数据泄露 72 小时内通报监管机构。 -- Concepts created: 无(Key Concepts 均为单来源特定方法论,不满足可独立复用阈值) -- Entities created: 无(Key Entities 均为单一框架名称,不满足 ≥2 次创建阈值) -- Source page: wiki/sources/support-legal-compliance-checker.md -- Notes: index.md 原占位条目(2026-04-21 source missing)已替换为完整摘要;overview.md 新增 Support 部门段落(含 Legal Compliance Checker 完整条目)位于 Testing 部门和 Paid Media 部门之间;与 testing-reality-checker 在质量标准严格度上的张力已记录于 Source Page Contradictions 节(合规达标 = 合规 vs Reality Checker 要求压倒性视觉证明)。 - -## [2026-05-05] ingest | Accessibility Auditor Agent Personality -- Source file: Agent/agency-agents/testing/testing-accessibility-auditor.md -- Status: ✅ 成功摄入 -- Summary: AccessibilityAuditor——The Agency Testing 部门的无障碍审计专家 Agent,核心理念"If it's not tested with a screen reader, it's not accessible",通过 WCAG 2.2 AA 标准 POUR 四原则评估和自动化+手动双重测试(axe-core/Lighthouse + VoiceOver/NVDA/JAWS + 键盘导航)发现约 70% 自动化工具无法检测的无障碍问题。强调语义化 HTML 优于 ARIA,自定义组件默认有罪需逐个审查。 -- Concepts created: 无(Key Concepts 均为单来源特定概念/工具,未达独立复用阈值) -- Entities created: 无(Key Entities 均为单来源工具,未达 ≥2 次创建阈值) -- Source page: wiki/sources/testing-accessibility-auditor.md -- Notes: index.md 原占位条目(2026-04-21 source missing)已替换为完整摘要;overview.md Testing 部门已新增 testing-accessibility-auditor 段落;无 Entity/Concept 页面创建需求(均不满足 ≥2 次出现阈值);与 testing-tool-evaluator 在自动化工具充分性上的潜在冲突已记录于 Source Page Contradictions 节。 - -## [2026-05-05] ingest | Tool Evaluator Agent Personality -- Source file: Agent/agency-agents/testing/testing-tool-evaluator.md -- Status: ✅ 成功摄入 -- Summary: Tool Evaluator——The Agency Testing 部门的技术评估与战略工具采纳专家,专注于 ROI 导向的工具分析、竞争对比和战略技术采纳建议。核心理念:量化一切可量化的,成本-功能-风险三维权衡。核心能力:7维加权评分体系(功能25%/可用性20%/性能15%/安全15%/集成10%/支持8%/成本7%)、4阶段工作流(需求收集→全面测试→财务风险分析→实施规划)、TCO/ROI 量化计算框架。Python 框架:pandas + numpy + requests + dataclass 评分模型。成功指标:90%+ 推荐准确性,85%+ 6个月采用率,20%+ 成本优化,25%+ ROI。 -- Concepts created: TotalCostOfOwnership, ReturnOnInvestment, ServiceLevelAgreement, UserAcceptanceTesting, ChangeManagement, WeightedScoringModel -- Entities created: 无(Tool Evaluator Agent 为单来源,不满足 ≥2 次创建阈值) -- Source page: wiki/sources/testing-tool-evaluator.md -- Notes: 无内容冲突。index.md 原占位条目已替换为完整摘要;overview.md Testing 部门已有 testing-evidence-collector / testing-test-results-analyzer / testing-performance-benchmarker / testing-reality-checker / testing-workflow-optimizer / testing-api-tester 覆盖,testing-tool-evaluator 补充了战略评估维度,与 testing-reality-checker 互补(量化评分 vs 现实核查)。与 testing-evidence-collector / testing-test-results-analyzer / testing-performance-benchmarker 的协同关系已在 Source Page Connections 节记录。 - -## [2026-05-05] ingest | Test Results Analyzer Agent Personality -- Source file: Agent/agency-agents/testing/testing-test-results-analyzer.md -- Status: ✅ 成功摄入 -- Summary: Test Results Analyzer——The Agency Testing 部门的测试结果分析与质量情报专家 Agent,通过统计分析方法、机器学习预测模型和可视化报告将原始测试数据转化为战略决策依据。核心理念:数据驱动的质量决策,所有结论必须通过统计方法验证。核心能力:测试覆盖率分析、失败模式统计分类、基于 RandomForest 的缺陷易发性预测、发布就绪多维度评估、质量投资 ROI 分析。Python 框架:pandas + numpy + scipy.stats + sklearn RandomForestClassifier + matplotlib/seaborn。成功指标:质量风险预测准确率 95%+、24 小时内报告交付、干系人满意度 4.5/5。 -- Concepts created: 无(Key Concepts 均为单来源特定方法论,不满足可独立复用阈值) -- Entities created: 无(Key Entities 均为单来源技术栈,不满足 ≥2 次创建阈值) -- Source page: wiki/sources/testing-test-results-analyzer.md -- Notes: 无内容冲突。index.md 已添加条目;overview.md Testing 部门新增 testing-test-results-analyzer 段落。与 testing-performance-benchmarker 的协同关系已在 Source Page 和 overview.md 中记录(Performance Benchmarker 提供性能维度数据,Test Results Analyzer 提供整体质量情报视图)。 - -## [2026-05-05] ingest | Testing Evidence Collector Agent Personality -- Source file: Agent/agency-agents/testing/testing-evidence-collector.md -- Status: ✅ 成功摄入 -- Summary: EvidenceQA——The Agency Testing 部门的截图驱动型 QA Agent,核心理念"截图不会撒谎",以 Playwright 自动化截图作为唯一可靠的质量评估依据。强制默认发现 3-5+ 问题,"零问题"报告为红色警报。质量评级默认 FAILED,不接受无视觉证据支撑的声称。提供标准化 QA 报告模板(Reality Check Results / Visual Evidence Analysis / Interactive Testing Results / Issues Found / Honest Quality Assessment)。 -- Concepts created: 无(Key Concepts 均为单来源特定方法论,不满足可独立复用阈值) -- Entities created: 无(Key Entities 均为单来源 Agent,不满足 ≥2 次创建阈值) -- Source page: wiki/sources/testing-evidence-collector.md -- Notes: 无内容冲突。index.md 已添加条目;overview.md Testing 部门已有相关 Testing Agent 覆盖,无需额外修订。与声称"零问题"报告的冲突已在 Source Page Contradictions 节记录。与 testing-reality-checker / testing-test-results-analyzer / testing-performance-benchmarker 的协同关系已在 Source Page Connections 节记录。 - -## [2026-05-05] ingest | Performance Benchmarker Agent Personality -- Source file: Agent/agency-agents/testing/testing-performance-benchmarker.md -- Status: ✅ 成功摄入 -- Summary: Performance Benchmarker——The Agency Testing 部门的性能测试与优化专家 Agent,通过系统性性能测试确保系统以 95% 置信度满足 SLA 要求。核心理念:量化一切可量化的,用数据证明优化价值。核心能力:负载/压力/耐力/可扩展性测试,Core Web Vitals 优化(LCP < 2.5s / FID < 100ms / CLS < 0.1),k6 性能测试框架,统计置信区间分析,容量规划与成本-性能权衡。成功指标:95% 系统持续满足性能 SLA,Core Web Vitals 达到"良好"评级(90th percentile),关键用户体验指标改善 25%,支持 10x 当前负载。 -- Concepts created: 无(所有 Key Concepts 均为单来源特定概念,不满足独立复用阈值) -- Entities created: 无(所有 Key Entities 均为单来源 Agent,不满足 ≥2 次创建阈值) -- Source page: wiki/sources/testing-performance-benchmarker.md -- Notes: 无内容冲突。index.md 原占位条目已替换为完整摘要;overview.md Testing 部门已新增 testing-performance-benchmarker 段落。与 testing-reality-checker 的互补张力(指标量化 vs 用户感受)已在 Source Page Contradictions 节记录。 - -## [2026-05-05] ingest | Testing Reality Checker Agent Personality -- Source file: Agent/agency-agents/testing/testing-reality-checker.md -- Status: ✅ 成功摄入 -- Summary: Testing Reality Checker——The Agency Testing 部门的最后一道防线 Agent,通过自动化截图证据截断"幻想型认证",要求压倒性视觉证明才授予生产就绪状态。默认"NEEDS WORK",强制三步验证流程(Reality Check 命令 → QA 交叉验证 → 端到端截图分析)。C+/B- 评级属正常;第一次实现通常需要 2-3 轮修订。 -- Concepts created: 无(所有 Key Concepts 均为单来源特定概念,不满足独立复用阈值) -- Entities created: 无(所有 Key Entities 均为单来源 Agent,不满足 ≥2 次创建阈值) -- Source page: wiki/sources/testing-reality-checker.md -- Notes: 无内容冲突。index.md 原占位条目已替换为完整摘要;overview.md Testing 部门已新增 testing-reality-checker 段落。与 testing-workflow-optimizer 的潜在张力(效率 vs 真实性)和与 testing-api-tester 的互补关系(截图 vs 接口)已在 Source Page Contradictions 节记录。 - -## [2026-05-05] ingest | Workflow Optimizer Agent Personality -- Source file: Agent/agency-agents/testing/testing-workflow-optimizer.md -- Status: ✅ 成功摄入 -- Summary: Workflow Optimizer——The Agency Testing 部门的流程优化与工作流自动化专家 Agent,基于系统思维方法论分析、优化和自动化跨业务功能的工作流。核心理念:找到瓶颈,修复流程,其余自动化。四阶段工作流(现状分析→优化设计→实施规划→自动化执行),融合 Lean/Six Sigma/Kaizen/统计过程控制/变更管理/人本设计六大方法论体系。核心交付物:WorkflowOptimizer Python 框架。成功指标:40% 周期时间改善、60% 常规任务自动化率、75% 流程错误减少、90% 优化流程 6 个月内成功采纳、30% 员工满意度提升。 -- Concepts created: [[Lean]], [[Six-Sigma]], [[Kaizen]], [[Value-Stream-Mapping]], [[Statistical-Process-Control]], [[Human-Centered-Design]], [[Design-Thinking]](共 7 个,其中 Change-Management 已存在) -- Entities created: 无(The Agency 已在 entities/ 中存在;各工具仅出现 1 次,不满足 ≥2 次创建阈值) -- Source page: wiki/sources/testing-workflow-optimizer.md -- Notes: 无内容冲突。index.md 原占位条目已替换为完整摘要;overview.md Testing 部门已新增 testing-workflow-optimizer 段落;7 个新 Concept 页面已创建并添加到 index.md。与 specialized-workflow-architect(设计与执行的分层关系)和 product-behavioral-nudge-engine(自动化 vs 人机交互互补张力)已在 Source Page Contradictions 节记录。 - -## [2026-05-05] ingest | API Tester Agent Personality -- Source file: Agent/agency-agents/testing/testing-api-tester.md -- Status: ✅ 成功摄入 -- Summary: API Tester Agent——The Agency Testing 部门的 API 测试专家智能体人格定义,涵盖功能、性能、安全三大维度的全面 API 质量保障方法论与自动化实现框架。核心理念"Breaks your API before your users do",通过 Playwright/REST Assured/k6 框架实现 95%+ API 端点覆盖率,CI/CD 流水线集成,性能 SLA(95p < 200ms、10x 负载、< 0.1% 错误率),OWASP API Security Top 10 安全验证。 -- Concepts created: 无(API Testing、Performance Testing、Security Testing、Contract Testing、CI/CD Integration、OWASP API Security Top 10 等概念均已在本文档出现,未达独立创建阈值) -- Entities created: 无(Playwright、REST Assured、k6、perf_hooks 等工具均仅在本文档出现,未达创建阈值) -- Source page: wiki/sources/testing-api-tester.md -- Notes: 无内容冲突。index.md 和 overview.md 已更新。新增 Testing 部门 section 到 overview.md。 -- Source file: Agent/agency-agents/integrations/opencode/README.md -- Status: ✅ 成功摄入 -- Summary: OpenCode Integration——The Agency Agent roster 与 OpenCode 编辑器的子 Agent 集成方案,通过 `./scripts/install.sh --tool opencode` 安装,将 .md 格式 Agent 转换为 OpenCode 的 `.opencode/agents/` 格式。核心机制:`mode: subagent` 使 Agent 仅在 `@agent-name` 触发时出现,不在 Tab 循环中占位;命名颜色自动映射为十六进制颜色代码。支持项目级和全局级两种安装范围。与 [[readme|Cursor Integration]](.mdc)、[[github-copilot|GitHub Copilot Integration]]、[[windsurf-integration|Windsurf Integration]] 同属 The Agency 多 IDE 集成生态。 -- Concepts created: 无(Subagent、OpenCode 仅在本文档出现1次,未达创建阈值) -- Entities updated: 无([[The Agency]] 已在其他来源中覆盖,无需新建 OpenCode entity) -- Source page: wiki/sources/readme.md -- Notes: 无内容冲突。index.md 和 overview.md 已更新。 - -## [2026-05-04] ingest | Kimi Code CLI Integration -- Source file: Agent/agency-agents/integrations/kimi/README.md -- Status: ✅ 成功摄入 -- Summary: Kimi Code CLI Integration——将 Agency agents 项目转换为 Kimi Code CLI 可用的 agent specification,通过 `convert.sh` 和 `install.sh` 脚本生成 `agent.yaml` + `system.md` 目录结构,安装到 `~/.config/kimi/agents/`。使用 `--agent-file` 标志激活,支持 `extend: default` 继承 Kimi 内置工具集。与 [[readme|Cursor Integration]] 和 [[github-copilot|GitHub Copilot Integration]] 同属 The Agency 多 IDE/CLI 集成生态。 -- Concepts created: 无(YAML配置文件、Agent规范、SystemPrompt 均仅在本文档出现1次,未达创建阈值) -- Entities created: 无(Kimi Code CLI、Moonshot AI 均仅在本文档出现1次,未达创建阈值) -- Source page: wiki/sources/kimi.md -- Notes: 无内容冲突。index.md 和 overview.md 已更新。 - -## [2026-05-04] ingest | Antigravity Integration -- Source file: Agent/agency-agents/integrations/antigravity/README.md -- Status: ✅ 成功摄入 -- Summary: Antigravity Integration——The Agency Agent roster 与 Antigravity/Gemini 的集成方案,通过 `./scripts/install.sh --tool antigravity` 将全部 Agent roster 转换为 Antigravity SKILL.md 文件,复制到 `~/.gemini/antigravity/skills/`。所有 skill slug 统一使用 `agency-` 前缀避免命名冲突。用户可通过自然语言激活对应 agent。与 [[Cursor Integration]](.mdc 规则)、[[Windsurf Integration]](.windsurfrules)、[[GitHub Copilot Integration]](原生兼容)共同构成 The Agency 的完整多平台集成生态。 -- Concepts updated: 无需更新(SKILL.md Format、Antigravity Skills、Skill Prefix Convention 等概念已在其他来源中覆盖) -- Entities created: 无(Antigravity/Gemini、Agency Agents 均已在其他来源中出现,无需新建) -- Source page: wiki/sources/antigravity-integration.md -- Notes: 无内容冲突。index.md 和 overview.md 已更新。与 [[Cursor Integration]] 在"多 IDE 集成覆盖"定位上存在功能重叠,已在 Contradictions 节标注区分(前者 GUI 编辑器生态,后者 Gemini 生态)。 - -## [2026-05-03] ingest | Windsurf Integration -- Source file: Agent/agency-agents/integrations/windsurf/README.md -- Status: ✅ 成功摄入 -- Summary: Windsurf Integration——The Agency Agent roster 与 Windsurf 编辑器的集成方案,通过 `.windsurfrules` 文件将 Agent roster 聚合为单一规则文件,install.sh 从项目根目录安装,项目级生效。在 prompt 中按名称引用 Agent 即可激活。与 [[Cursor Integration]](.mdc)和 [[Aider Integration]](CONVENTIONS.md)同为项目级 IDE 集成,共同构成 The Agency 的多 IDE 覆盖体系。 -- Concepts updated: [[Agent-Activation-Pattern]](补充 Windsurf 应用场景)、[[Project-Scoped-Tools]](替代 Project-Scoped-Integration,与 integrations-readme.md 保持一致) -- Entities created: [[Windsurf]](Windsurf.md,Codeium 开发的 AI 代码编辑器,跨 3 个 source 页面出现) -- Source page: wiki/sources/windsurf-integration.md -- Notes: 无内容冲突。index.md 和 overview.md 已更新。slug 避免与同名 readme.md 冲突(已有多条同名占位条目),采用 windsurf-integration.md。 - -## [2026-04-26] ingest | Gemini CLI Integration -- Source file: Agent/agency-agents/integrations/gemini-cli/README.md -- Status: ✅ 成功摄入 -- Summary: Gemini CLI Integration——将 61 个 Agency Agents 打包为 Gemini CLI 扩展插件,安装到 `~/.gemini/extensions/agency-agents/`,安装后可在 Gemini CLI 中通过自然语言按名称激活 Agent skill(如 `frontend-developer`)。 -- Entities created: 无(Agency Agents 已在其他来源中出现,无需新建;Agent Skill 和 Extension 机制未达到 ≥2 次出现阈值) -- Concepts created: 无 -- Source page: wiki/sources/gemini-cli.md -- Notes: 无内容冲突。 - -## [2026-05-03] ingest | Cursor Integration -- Source file: Agent/agency-agents/integrations/cursor/README.md -- Status: ✅ 成功摄入 -- Summary: Cursor Integration——将 Agency roster 中的 agent 转换为 Cursor `.mdc` 规则文件,安装到项目根目录的 `.cursor/rules/` 下,**项目级别生效**。支持 `@agent-slug` 引用特定 agent,或通过 `alwaysApply: true` 设为常驻规则。与 Aider Integration 形成 IDE 集成互补。 -- Entities created: 无(Agency Agents 和 Cursor 未达到 ≥2 次出现阈值) -- Concepts created: 无(Cursor.mdc Rules/Agency Roster/Project-Scoped Rules 仅出现 1 次,不满足 ≥2 次阈值,均以 wikilink 形式记录于 Source page) -- Source page: wiki/sources/readme.md -- Notes: 无内容冲突。overview.md 已新增 Cursor Integration 段落于 The Agency 贡献指南段落后。与 [[Aider Integration]] 存在功能重叠(两个工具都将 Agency agents 集成到不同 IDE),已在 Source page Contradictions 节记录。 - -## [2026-05-03] ingest | OpenClaw Integration -- Source file: Agent/agency-agents/integrations/openclaw/README.md -- Status: ✅ 成功摄入 -- Summary: The Agency Agent 与 OpenClaw 多智能体框架的集成方案——通过 convert.sh 将 Agent 转换为 OpenClaw workspace(含 SOUL.md/AGENTS.md/IDENTITY.md),install.sh 复制到 ~/.openclaw/agency-agents/,openclaw gateway restart 使 Agent 通过 agentId 可用。slug 采用 openclaw-integration.md 以避免与同名 Aider Integration 的 readme.md 冲突。 -- Entities created: 无(OpenClaw/The-Agency/OpenClaw-Gateway 在 overview.md 已出现多次,不满足新建阈值) -- Concepts created: 无(OpenClaw-Workspace/Workspace-Based-Agent/Agent-Conversion 仅在源页面内出现 1 次,不满足 ≥2 次阈值,均以 wikilink 形式记录于 Source page) -- Source page: wiki/sources/openclaw-integration.md -- Notes: 无内容冲突。overview.md 已有 OpenClaw 相关内容,无需修订。integrations-readme.md 已有 OpenClaw wikilink,无需重复创建 Entity 页面。 +- Summary: Pipeline Analyst Agent 文档更新——补充 Contradictions 节(与 sales-deal-strategist 和 sales-coach 的 MEDDPICC 应用视角张力与协调方案)、新增 Key Quotes(精确诊断示例)、扩充 Key Claims(预测准确性指标、销售辅导效果数据)、新增 Key Concepts(ForecastAccuracy/LeadIndicator/SalesCycleLength)、丰富 Key Entities(补充 SalesCoach 角色描述)、补充 Connections 细节说明。Source page date 更新至 2026-05-18。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page:PipelineVelocity/MEDDPICC/DealHealthScoring/QualityAdjustedCoverage/RevenueOperations/ForecastAccuracy/LeadIndicator/SalesCycleLength) +- Source page: wiki/sources/sales-pipeline-analyst.md(更新:date 2026-05-18,补充 Contradictions 节、扩充 Key Claims/Key Quotes/Key Concepts/Key Entities/Connections) + +## [2026-05-29] ingest | Identity Graph Operator(更新) +- Source file: Agent/agency-agents/specialized/identity-graph-operator.md +- Status: ✅ 成功摄入(更新) +- Summary: Identity Graph Operator 更新摄取——raw 文件更新于 2026-04-26(source page date 2026-04-24)。本次更新:Summary 节扩充"跨编排框架身份联邦"和"共享记忆"维度;Key Quotes 新增第四句(何时需要 Identity Graph Operator);Key Concepts 扩充 Multi-Agent Identity Coordination 说明;其他节内容与原版一致。Source page date 更新至 2026-04-26。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page:Identity Resolution/Blocking/Fuzzy Matching/Confidence Score/Optimistic Locking/Evidence-based Merge Proposal/Multi-Agent Identity Coordination) +- Source page: wiki/sources/identity-graph-operator.md(更新:date 2026-04-26,扩充 Summary/Key Quotes/Key Concepts) +- Notes: 步骤1完成:读取原始文档(raw/ 2026-04-26 更新版);步骤2完成:读取 index.md(条目已存在 Line 400,原日期 2026-04-24)和 overview.md;步骤3完成:生成 source page 更新版(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md 日期补全(2026-04-24→2026-04-26);步骤5完成:overview.md 无需修订(已有相关摘要);步骤6-7完成:Entity(BackendArchitect/AgentsOrchestrator/RealityChecker/SupportResponder/AgenticIdentityTrustArchitect 等)和 Concept(IdentityResolution/Blocking/FuzzyMatching 等)均以 wikilinks 形式记录于 source page,未达到独立建页阈值;步骤8完成:无新跨页面冲突;步骤9完成:log.md 追加记录 +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md 和 overview.md(overview.md 第915行已有完整 sales-pipeline-analyst 综合摘要);步骤3完成:更新 source page(日期更新+内容扩充:Key Claims扩充3条/Key Quotes扩充1条/Key Concepts扩充3个/Key Entities扩充SalesCoach描述/Connections补充细节/新增Contradictions节);步骤4完成:index.md 第407行补全日期(2026-05-18)和一行摘要;步骤5完成:overview.md 第915行已有完整综合摘要,内容一致无需修订;步骤6完成:Entity 未创建独立页面(Key Entities 均以 wikilinks 记录于 source page);步骤7完成:Concept 均以 wikilinks 形式记录于 source page,未达到独立建页阈值;步骤8完成:检测并记录两个 Contradictions(与 sales-deal-strategist 的 MEDDPICC 诊断vs战略张力,与 sales-coach 的 Deal评估vs代表能力评估张力);步骤9完成:log.md 追加记录 + +## [2026-05-29] ingest | Healthcare Marketing Compliance Specialist +- Source file: Agent/agency-agents/specialized/healthcare-marketing-compliance.md +- Status: ✅ 成功摄入 +- Summary: Healthcare Marketing Compliance Specialist 完整摄取——The Agency Specialized 部门的医疗营销合规专家,覆盖中国医疗健康全品类(药品/医疗器械/医美/保健食品/互联网医疗)营销合规。核心能力:医疗广告审查、处方药/OTC药广告分规管理、医疗器械三类分级合规、医美"容貌焦虑"红线防控、保健品"蓝帽子"标识管理、互联网诊疗合规、患者隐私 PIPL 合规、学术推广合规。关键原则:合规不是"堵营销",而是"保护品牌";"事前审查"优于"事后补救"。成功指标:年度零监管处罚、平台违规 < 3次/年、100% 内容发布前合规审查覆盖率。 +- Concepts created: (未创建独立 Concept 页面,Key Concepts 均以 wikilinks 形式记录于 source page:医疗广告审查证明/处方药广告禁令/保健食品功能声称范围/医疗器械分类管理/互联网诊疗红线/患者隐私敏感信息/医美广告容貌焦虑禁令/学术推广合规) +- Source page: wiki/sources/healthcare-marketing-compliance.md +- Notes: 步骤1完成:读取原始文档;步骤2完成:读取 index.md(条目已存在 Line 405,缺少日期)和 overview.md(Line 929 已有完整综合摘要);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md Line 405 补全日期格式和一行摘要;步骤5完成:overview.md Line 929 已有完整综合摘要,无需修订;步骤6完成:Entity 均以 wikilinks 形式记录于 source page,未达到独立建页阈值;步骤7完成:Concept 均以 wikilinks 形式记录于 source page,未达到独立建页阈值;步骤8完成:检测并记录与 [[Marketing-Content-Creator]] 的内容创作灵活性张力,记录于 Contradictions 节;步骤9完成:log.md 追加记录 + +## [2026-05-29] ingest | MCP Builder Agent(重新验证) +- Source file: Agent/agency-agents/specialized/specialized-mcp-builder.md +- Status: ✅ 成功摄入(验证通过) +- Summary: MCP Builder Agent 重新验证——AI Agent 的 MCP(Model Context Protocol)服务器开发专家。核心方法:工具命名原则(verb_noun)、类型化参数验证(Zod/Pydantic)、结构化错误返回(isError: true)、无状态设计、真实 Agent 测试循环。高级能力:多传输支持(Stdio/SSE/Streamable HTTP)、认证安全模式、动态工具注册、OpenAPI-to-MCP 自动生成、可组合服务器架构。与 [[lsp-index-engineer]] 存在确定性 vs 优雅降级张力,已在 Contradictions 节记录。 +- Concepts: 无需创建独立页面(Model Context Protocol/MCP Server/Tool Interface Design 等 Key Concepts 均已在之前摄入时处理,当前以 wikilinks 形式记录于 source page) +- Entities: 无需创建独立页面(@modelcontextprotocol/sdk/FastMCP 等 Entity 均已在之前摄入时处理) +- Source page: wiki/sources/specialized-mcp-builder.md(已存在,本次验证并补充:last_updated 日期、Advanced Capabilities 相关内容(Dynamic Tool Registration/OpenAPI-to-MCP/Composable Server Architecture)、与 lsp-index-engineer 的 Contradiction) +- Notes: 步骤1完成:读取原始文档(247行);步骤2完成:读取 index.md(条目已存在于 Line 391)、overview.md(1139行);步骤3完成:source page 已存在且格式完整,本次验证并补充 Advanced Capabilities 相关 Key Claims/Key Concepts/Contradictions;步骤4完成:index.md 条目已存在(Line 391),无需修改;步骤5完成:overview.md 无需修订(MCP Builder 属 Specialized Agent 个性定义文档);步骤6-7完成:Entity 和 Concept 均已在之前摄入时处理完毕,本次无需新建;步骤8完成:补充与 lsp-index-engineer 的确定性 vs 优雅降级张力至 Contradictions 节;步骤9完成:log.md 追加记录 + +## [2026-05-30] ingest | Korean Business Navigator +- Source file: Agent/agency-agents/specialized/specialized-korean-business-navigator.md +- Status: ✅ 成功摄入(补充 Entity + Concept 建页) +- Summary: Korean Business Navigator 增量补充分享——原 source page 2026-04-25 已存在(index.md Line 396、overview.md Line 949 已有完整综合摘要),本次补充分享 7 个 Entity 页面(Chaebol/SME/도장 新建,KakaoTalk/품의 已存在更新 sources 字段)和 6 个 Concept 页面(Nunchi/Proof-Project-Strategy/회식/Relationship-Lifecycle/Korean-Corporate-Hierarchy 新建,기타 已存在更新 sources 字段)。Source page 已有内容:frontmatter、Summary(含核心主题/问题域/方法/结论)、Key Claims×8条、Key Quotes×4条、Key Concepts×7个(含品의/Nunchi/KakaoTalk商务礼仪/회식/Proof Project/Korean Corporate Hierarchy/Relationship Lifecycle)、Key Entities×4个(Chaebol/SME/KakaoTalk/도장)、Connections×6条、Contradictions×2条(vs 西方"快速成交"直觉、vs 西方"沉默=拒绝"直觉)。 +- Entities created: [[Chaebol]](韩国财阀大企业集团,品의 12-16 周,7-10 级审批链,Samsung/LG/SK/Lotte 代表)、[[SME]](中小企业,品의 6-10 周,2-3 级审批链,外国顾问最易进入的市场)、[[도장]](韩国印章,法律凭证,合同执行的物理确认,品의最后一步) +- Entities updated: [[KakaoTalk]](追加 sources: specialized-korean-business-navigator)、[[품의]](追加 sources: specialized-korean-business-navigator) +- Concepts created: [[Nunchi]](눈치读心术——通过观察语境/情绪/行为线索理解未直接表达的意图,含完整 Nunchi 解码表)、[[Proof-Project-Strategy]](信任未建立时用有边界小项目证明,2-3 周/固定交付物/固定价格,刻意超额交付120%)、[[회식]](公司聚餐饮酒文化,出席是预期而非可选,含完整礼仪规范和购买信号分析)、[[Relationship-Lifecycle]](소개→신뢰→계약三阶段关系管理,含季节性维护日历)、[[Korean-Corporate-Hierarchy]](韩国企业职级体系,会长→代理十级,含决策权力映射和越级禁忌) +- Concepts updated: [[품의]](追加 sources: specialized-korean-business-navigator) +- Source page: wiki/sources/specialized-korean-business-navigator.md(已存在,无需更新) +- Notes: 步骤1完成:读取原始文档(216行);步骤2完成:读取 index.md(条目已存在于 Line 396)、overview.md(Line 949 已有完整综合摘要,无需修订);步骤3完成:source page 已存在且格式完整,本次无需更新;步骤4完成:index.md Line 396 已有条目,无需修改;步骤5完成:overview.md Line 949 已有完整综合摘要,无需修订;步骤6-7完成:新建 3 个 Entity(Chaebol/SME/도장)和 5 个 Concept(Nunchi/Proof-Project-Strategy/회식/Relationship-Lifecycle/Korean-Corporate-Hierarchy),更新 2 个已有 Entity/Concept 的 sources 字段,index.md Entities 和 Concepts 节同步更新;步骤8完成:无跨页面内容冲突(기타.md 和 KakaoTalk.md 已存在,本次补充来源引用);步骤9完成:log.md 追加记录 + +## [2026-05-30] ingest | Data Consolidation Agent +- Source file: Agent/agency-agents/specialized/data-consolidation-agent.md +- Status: ✅ 成功摄入 +- Summary: Data Consolidation Agent 完整摄取——The Agency Specialized 部门的销售数据聚合与实时仪表盘专家 Agent。核心职责:将分散的销售数据(Excel/数据库)聚合为实时仪表盘,支持地域、代表、管道多维度视图。核心方法:并行查询所有数据维度 → 聚合计算派生指标(revenue/quota达成率) → 结构化为 Dashboard-friendly JSON → 含生成时间戳。核心交付物:地域绩效汇总(YTD/MTD)、个人代表绩效排名、管道快照(Stage/Count/Value/加权值)、6个月趋势数据、Top 5绩效代表、地域详细报告。成功指标:< 1秒加载、60秒自动刷新、零数据不一致。Source page 含 6 条 Key Claims、3 条 Key Quotes、6 个 Key Concepts、2 个 Key Entities、4 条 Connections。 +- Entities: Data-Consolidation-Agent(本体,首次出现,暂不创建独立页面)、Sales-Data-Extraction-Agent(已存在,上游数据源) +- Concepts: Territory-Performance/Quota-Attainment/Pipeline-Metrics/MTD-YTD/Dashboard-Friendly-JSON/Trend-Analysis(均以 wikilinks 形式记录于 source page,未达到独立建页阈值) +- Source page: wiki/sources/data-consolidation-agent.md +- Notes: 步骤1完成:读取原始文档(60行);步骤2完成:读取 index.md(条目已存在于 Line 411,source page 不存在需新建)、overview.md(无独立综合段落,无需修订);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims×6条、Key Quotes×3条、Key Concepts×6个、Key Entities×2个、Connections×4条、Contradictions);步骤4完成:index.md Line 411 已有条目,无需修改;步骤5完成:overview.md 无独立综合段落,无需修订;步骤6-7完成:Data-Consolidation-Agent 首次出现暂不创建独立 Entity 页面,Key Concepts 均以 wikilinks 形式记录于 source page,未达到独立建页阈值;步骤8完成:无跨页面内容冲突,与 Sales-Data-Extraction-Agent 为上下游关系(非竞争);步骤9完成:log.md 追加记录 + +## [2026-05-01] ingest | Developer Advocate +- Source file: Agent/agency-agents/specialized/specialized-developer-advocate.md +- Status: ✅ 成功摄入 +- Summary: Developer Advocate 完整摄取——The Agency Specialized 部门的开发者体验与社区运营专家智能体,核心定位"产品团队与开发者社区之间的桥梁",通过 DX 工程审计、技术内容创作、社区运营、产品反馈闭环四步工作流驱动平台采用。Source page 含 5 条 Key Claims(含 DX-first 原则、Authentic 伦理约束、量化成功指标)、4 条 Key Quotes、5 个 Key Concepts(DX Engineering/Technical Content Creation/Community Building/Product Feedback Loop/Advocacy Ethics)、2 个 Key Entities(The Agency/Developer Community)、3 条 Connections、1 条 Contradiction。 +- Entities created: 无(The Agency/Developer Community 已在其他 Source 页覆盖) +- Entities already existed: The Agency、Developer Community +- Concepts created: 无(5个 Key Concepts 均以 wikilinks 形式记录于 source page,未达到独立建页阈值) +- Concepts already existed: 无 +- Source page: wiki/sources/specialized-developer-advocate.md +- Notes: 步骤1完成:读取原始文档(317行);步骤2完成:读取 index.md(source page 不存在,overview.md Line 959 已有综合摘要条目)、overview.md 确认已存在,无需修订;步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims×5、Key Quotes×4、Key Concepts×5、Key Entities×2、Connections×3、Contradictions×1);步骤4完成:index.md Line 20 新增 specialized-developer-advocate 条目;步骤5完成:overview.md Line 959 已存在 Developer Advocate 综合摘要,无需修订;步骤6-7完成:Key Entities 和 Key Concepts 均已在其他 Source 页覆盖或未达独立建页阈值,无需新建 Entity/Concept 页面;步骤8完成:识别与 engineering-technical-writer 的内容质量标准冲突、与 specialized-workflow-architect 的 DX-first vs 快速交付哲学张力,均已记录至 Contradictions;步骤9完成:log.md 追加记录 + +## [2026-05-01] ingest | Product Manager Agent +- Source file: Agent/agency-agents/product/product-manager.md +- Status: ✅ 成功摄入 +- Summary: Product Manager Agent(Alex)完整摄取——The Agency 产品部门核心战略 Agent,10年+经验,横跨 B2B SaaS/消费者应用/平台业务。核心理念:Outcome vs Output 思维。核心交付物:PRD(8章模板)、Opportunity Assessment(RICE评分)、Now/Next/Later 路线图、GTM Brief、Sprint Health Snapshot。六阶段工作流:Discovery → Framing → Definition → Delivery → Launch → Measurement。八大关键原则:①先问题后方案 ②写新闻稿再写PRD ③无Owner/Metric/Time Horizon不上路线图 ④经常说"不" ⑤发布前验证/发布后测量 ⑥对齐≠共识 ⑦惊喜即失败 ⑧范围蔓延是产品杀手。Source page 含 5 条 Key Claims、2 条 Key Quotes、10 个 Key Concepts、1 个 Key Entity、6 条 Connections、2 条 Contradictions。 +- Entities created: [[Alex-Product-Manager]] +- Entities already existed: 无 +- Concepts created: [[Product-Requirements-Document]](PRD 模板)、[[RICE-Prioritization-Score]](RICE评分框架)、[[Outcome-vs-Output]](结果导向思维)、[[Go-to-Market-Brief]](GTM发布计划) +- Concepts already existed: 无 +- Source page: wiki/sources/product-manager.md +## [2026-05-02] ingest | Academic Psychologist +- Source file: Agent/agency-agents/academic/academic-psychologist.md +- Status: ✅ 成功摄入 +- Summary: Academic Psychologist Agent 摄入——Psychologist Agent(临床与研究心理学家角色),专注于人格、动机、创伤和群体动力学,为角色构建提供心理学可信的行为框架。核心方法:Big Five 人格模型、依恋理论、Vaillant 防御机制层级、Karpman 戏剧三角、CBT 认知扭曲分类。关键原则:拒绝将角色简化为诊断标签;区分流行心理学与研究实证心理学;创伤反应具有多样性。 +- Concepts created: [[BigFive]], [[AttachmentTheory]], [[PsychodynamicDefenseMechanisms]], [[KarpmanDramaTriangle]], [[CBT-CognitiveDistortions]], [[EriksonPsychosocialStages]], [[PolyvagalTheory]], [[Groupthink]], [[SocialIdentityTheory]], [[TransactionalAnalysis]] +- Concepts already existed: 无 +- Entities created: [[PsychologistAgent]] +- Entities already existed: 无 +- Source page: wiki/sources/academic-psychologist.md +- Notes: 步骤1完成:读取原始文档(118行);步骤2完成:读取 index.md(line 519 已有条目,补全日期和摘要)、overview.md(添加完整条目并链接至人文社科 AI 研究者矩阵);步骤3完成:source page 创建于 wiki/sources/academic-psychologist.md(含 frontmatter、Summary、6条 Key Claims、4条 Key Quotes、10个 Key Concepts、1个 Key Entity、2条 Connections、1条 Contradiction);步骤4完成:index.md 条目补全(日期 2026-04-25 + 摘要);步骤5完成:overview.md 添加完整条目(psychologist 为 narrative-designer 提供心理学基础,academic-historian 提供心理-历史交叉视角);步骤6-7完成:1个 Entity 页面(PsychologistAgent)、10个 Concept 页面创建(BigFive/AttachmentTheory/PsychodynamicDefenseMechanisms/KarpmanDramaTriangle/CBT-CognitiveDistortions/EriksonPsychosocialStages/PolyvagalTheory/Groupthink/SocialIdentityTheory/TransactionalAnalysis);步骤8完成:Contradiction 已记录(与流行心理学刻板印象的冲突:标签化 vs 行为-框架映射);步骤9完成:log.md 追加记录 + +## [2026-04-30] ingest | Aider Integration +- Source file: Agent/agency-agents/integrations/aider/README.md +- Status: ✅ 成功摄入 +- Summary: Aider Integration 摄入——The Agency Agent roster 与 Aider 编辑器的集成方案。核心机制:通过 `install.sh --tool aider` 安装,将全部 Agent roster 汇总到单一 `CONVENTIONS.md` 文件;Aider 自动读取项目根目录的 CONVENTIONS.md;在会话中按名称引用 Agent 即可激活;`convert.sh --tool aider` 可重新生成。与 Windsurf/Cursor 同为项目级 IDE 集成,共同构成 The Agency 多编辑器支持生态。 +- Concepts created: 无(CONVENTIONS.md/Agent Integration 出现次数未达阈值) +- Concepts already existed: [[AgentIntegration]](来自 integrations/readme.md) +- Entities created: 无(Aider 出现1次,未达2次阈值) +- Entities already existed: [[Aider]](来自 integrations/readme.md) +- Source page: wiki/sources/aider-readme.md +- Notes: 步骤1完成:读取原始文档(38行);步骤2完成:读取 index.md(确认已有 readme.md 为 integrations/README.md,新文档对应 aider/README.md,故 slug 为 aider-readme)、overview.md(Line 47 已有相关条目);步骤3完成:source page 创建于 wiki/sources/aider-readme.md;步骤4完成:index.md 在 OpenCode Integration 前插入 Aider Integration 条目;步骤5完成:overview.md 在 Windsurf Integration 后添加 Aider Integration 完整条目;步骤6-7完成:Entity 和 Concept 均未达到创建条件(Aider 仅1次出现,Agent Integration/CONVENTIONS.md 已有页面);步骤8完成:无冲突(与 readme.md 互补);步骤9完成:log.md 追加记录 ## [2026-05-02] ingest | MCP Memory Integration - Source file: Agent/agency-agents/integrations/mcp-memory/README.md -- Status: ✅ 成功摄入 -- Summary: MCP Memory Integration——通过在 Agent 提示词中加入标准化的 Memory Integration 段落,为 The Agency 中任意 Agent 添加跨会话持久记忆能力。MCP Memory Server 提供 remember/recall/rollback/search 四个核心工具。Rollback 是杀手级功能:QA 失败或架构决策出错时恢复到已知良好状态,无需手动 undo。无代码修改,仅需在 prompt 中加入标准化指令段。 -- Entities created: 无(The-Agency 已存在于 entities/,Backend-Architect/Startup-MVP-Workflow 仅出现 1 次,均不满足 ≥2 次阈值) -- Concepts created: 无(Cross-Session-Memory/Handoff-Continuity/Rollback/Memory-Integration-Pattern/MCP-Memory-Tools/Checkpoint 均仅出现 1 次,均不满足 ≥2 次阈值,均以 wikilink 形式记录于 Source page) +- Status: ✅ 成功摄入(source page 已存在,本次补录 index 条目) +- Summary: MCP Memory Integration 摄入——通过 MCP 为任意 Agent 添加跨会话持久记忆能力。核心机制:在 Agent prompt 中加入 Memory Integration 指令段,Agent 自动调用 remember/recall/rollback/search 四个 MCP 内存工具。Rollback 是杀手级功能。 +- Concepts created: 无(页面已存在,concept 已在首次摄入时创建) +- Entities already existed: [[The-Agency]]、[[MCP]](页面已存在) - Source page: wiki/sources/mcp-memory-integration.md -- Notes: 无内容冲突。index.md 和 overview.md 已更新(新增 MCP Memory Integration 段落于 The Agency 段落后)。 +- Notes: source page 已存在(53行,完整);本次操作:确认步骤1-3已完成,步骤4补录 index.md 条目,步骤5-8已由首次摄入完成,步骤9追加 log.md -## [2026-05-02] ingest | Claude Code Integration -- Source file: Agent/agency-agents/integrations/claude-code/README.md -- Status: ✅ 成功摄入 -- Summary: The Agency Agent 资产与 Claude Code 的原生集成方案。The Agency 从一开始就为 Claude Code 构建,无需任何格式转换,Agent 天然使用 `.md` + YAML frontmatter 格式。通过 install.sh 或手动复制将 Agent 部署到 `~/.claude/agents/`,在 Claude Code 会话中通过名称引用即可激活对应 Agent。 -- Entities created: 无(Claude Code/The Agency 均仅出现 1 次,不满足 ≥2 次阈值,以 wikilink 形式记录于 Source page) -- Concepts created: 无(Agent-Activation-Pattern 仅出现 1 次,不满足 ≥2 次阈值) -- Source page: wiki/sources/claude-code-integration.md -- Notes: 无内容冲突。slug 冲突解决:原 Aider Integration 已占用 `readme.md`,Claude Code README 同名,故采用 `claude-code-integration.md`。overview.md 无需修订(内容属配置说明,集成概述由 integrations-readme.md 覆盖)。 -## [2026-05-02] ingest | Aider Integration -- Source file: Agent/agency-agents/integrations/aider/README.md +## [2026-05-01] ingest | OpenClaw Integration +- Source file: Agent/agency-agents/integrations/openclaw/README.md - Status: ✅ 成功摄入 -- Summary: Aider 编辑器集成 The Agency Agent 资产的安装与使用指南。核心机制:通过 install.sh 将 Agent 配置转换为 Aider 可读的 CONVENTIONS.md 文件,Aider 自动读取并激活 Agent 角色。 -- Entities created: 无(Aider 仅出现 2 次,未达到 ≥2 次阈值,以 wikilink 形式记录于 Source page) -- Concepts created: 无(CONVENTIONS.md/Project-Scoped-Integration 仅出现 1 次,不满足 ≥2 次阈值) +- Summary: OpenClaw Integration 摄入——OpenClaw Agent 工作区安装与激活机制文档。核心要点:OpenClaw Agent 以工作区(Workspace)为单位安装,包含 SOUL.md + AGENTS.md + IDENTITY.md 三文件;安装脚本将工作区复制到 ~/.openclaw/agency-agents/ 并注册;通过 agentId 在 OpenClaw 会话中激活;Gateway 已运行时需重启生效。Slug 冲突说明:本页与 integration/README.md 均映射到 readme.md,前者为 OpenClaw 专用安装说明,后者为 11 种工具总览。 +- Concepts created: [[AgentWorkspace]] +- Concepts already existed: [[AgentIntegration]](已更新,补充来源引用和日期更新至 2026-05-01) +- Entities created: 无(OpenClaw 已在 OpenClaw.md Entity 中,信息已覆盖,仅补充来源引用和日期更新至 2026-05-01) +- Entities already existed: [[OpenClaw]](已 patch,添加 [[OpenClaw Integration]] 来源 + last_updated → 2026-05-01) - Source page: wiki/sources/readme.md -- Notes: 无内容冲突。index.md 占位条目已替换为完整条目。overview.md 无需修订(The Agency 集成生态已有 integrations-readme.md 覆盖)。integrations-readme.md 已有 Aider wikilink,无需重复创建 Entity 页面。 +- Notes: 步骤1完成:读取原始文档(34行);步骤2完成:读取 index.md(现有多个 readme.md 条目)、overview.md(45处 OpenClaw 提及,无需修订);步骤3完成:source page 覆写于 wiki/sources/readme.md(注意 slug 冲突:integration 总览和 openclaw 专篇均用 readme.md);步骤4完成:index.md 在 Backend Architect 后插入带描述的 OpenClaw Integration 条目;步骤5完成:overview.md 无需修订;步骤6完成:OpenClaw Entity 已存在,已 patch 来源引用和日期;步骤7完成:AgentWorkspace 新 Concept 创建;AgentIntegration 已 patch 来源引用和日期;步骤8完成:已在 Source Page Contradictions 节记录 slug 冲突;步骤9完成:log.md 追加记录。 -## [2026-05-02] ingest | The Agency Integrations README +## [2026-05-09] ingest | API Tester Agent Personality +- Source file: Agent/agency-agents/testing/testing-api-tester.md - Status: ✅ 成功摄入 -- Summary: The Agency 多智能体编码系统与 11 种主流 Agentic Coding 工具的集成指南。覆盖 Claude Code(原生)、GitHub Copilot(原生)、Antigravity、Gemini CLI(需 convert)、OpenCode(项目级)、OpenClaw(需 convert)、Cursor(项目级)、Aider(项目级)、Windsurf(项目级)、Kimi Code(需 convert)、Qwen Code(需 convert)。统一通过 install.sh 和 convert.sh 脚本实现跨平台部署。 -- Entities created: 无(各工具实体均仅出现 1 次,不满足 ≥2 次创建阈值) -- Concepts created: 无(Project-Scoped-Tools/Global-Scoped-Tools 仅出现 1 次) -- Source page: wiki/sources/integrations-readme.md -- Notes: 无内容冲突。index.md 和 log.md 已更新,overview.md 无需修订(已含 The Agency 段落)。 +- Summary: API Tester Agent Personality 重摄入——The Agency Testing 部门的 API 测试专家智能体人格定义,涵盖功能、性能、安全三大维度的全面 API 质量保障方法论与自动化实现框架。更新 Key Claims(新增数据库查询性能优化、缓存效果验证、生产环境 API 健康监控三条);扩展 Key Concepts(新增 Load Testing、Rate Limiting、Input Validation、Endpoint Coverage 四个);扩展 Key Entities(新增 JWT、OWASP 两个);更新日期至 2026-05-09。 +- Concepts already existed: [[API Testing]](多处引用)、[[Performance Testing]](多处引用)、[[Security Testing]](多处引用)、[[Contract Testing]](testing-api-tester 提及)、[[CI/CD Integration]](多处引用)、[[OWASP API Security Top 10]](testing-api-tester 提及);[[Load Testing]] 已内嵌于 [[Scalability]] 页面,无需独立建页 +- Entities created: [[K6]](k6 在 testing-api-tester + testing-performance-benchmarker 两处提及,满足≥2次条件;Grafana 开源负载测试工具,JavaScript/Go 编写) +- Source page: wiki/sources/testing-api-tester.md +- Notes: 步骤1完成:读取原始文档(305行);步骤2完成:读取 index.md(400行有现有条目)、overview.md(1155行,162行有完整 testing-api-tester 条目,无需修订);步骤3完成:source page 覆写完成;步骤4完成:index.md 日期从 2026-04-30 更新为 2026-05-09;步骤5完成:overview.md 已有完整条目,无需修订;步骤6完成:Playwright Entity 已存在(无需重复创建);k6 Entity 本次新建(满足≥2次条件);JWT/OWASP 提及仅一次,不满足≥2次条件,跳过;步骤7完成:所有 Concept 均已存在或内嵌于其他页面,无需独立新建;步骤8完成:暂无冲突内容;步骤9完成:log.md 追加记录。 -## [2026-05-02] ingest | Academic Geographer -- Source file: Agent/agency-agents/academic/academic-geographer.md +## [2026-05-09] ingest | Testing Reality Checker +- Source file: Agent/agency-agents/testing/testing-reality-checker.md - Status: ✅ 成功摄入 -- Summary: Academic Geographer——AI Agent 中的地理学家角色,专注于物理与人文地理的系统性建模,为虚拟世界构建地理连贯性。核心理念:"Geography is destiny — where you are determines who you become"。通过严格地理连贯性规则(河流不分叉、气候成系统、地理非装饰)、五步工作流(板块构造→气候→水文→生物群落→人类定居)、交付物模板驱动 Agent 行为。理论基础涵盖 Koppen 气候分类、Christaller 中心地理论、Mackinder 心脏地带理论、雨影效应等。 -- Entities created: [[Jared-Diamond]], [[Acemoglu]], [[Mackinder]] -- Concepts created: [[Geographic-Coherence]], [[Environmental-Determinism]], [[Mackinder-Heartland-Theory]] -- Source page: wiki/sources/academic-geographer.md -- Notes: 与 [[academic-historian]](历时性时间维度)、[[academic-anthropologist]](共时性文化系统)、[[academic-narratologist]](叙事维度)共同构成"人文社科 AI 研究者矩阵",已在 overview.md 添加独立段落。Entity/Concept 页面已创建。无已知内容冲突。 +- Summary: Testing Reality Checker Agent Personality 摄入——The Agency Testing 部门的终极集成测试专家智能体人格定义,核心职责是阻止"幻想型认证"(Fantasy Approval),要求基于压倒性截图证据的生产就绪性评估。采用三步强制流程:Reality Check 命令执行、QA 交叉验证、端到端系统验证;默认状态为"NEEDS WORK",除非有压倒性证据支持;首次实现通常需要 2-3 轮修订周期,C+/B- 评分正常且可接受。提供完整的集成报告模板,包含视觉系统证据、用户旅程测试、规范符合性验证。 +- Concepts already existed: [[IntegrationTesting]](内嵌于 testing-api-tester 等页面,未独立建页)、[[Playwright]](Entity 已存在);无新 Concept 需创建 +- Entities already existed: [[TestingRealityChecker]](本页面提及1次,不满足≥2次条件,跳过)、[[QA Agent]](提及仅1次,不满足≥2次条件,跳过) +- Source page: wiki/sources/testing-reality-checker.md +- Notes: 步骤1完成:读取原始文档(236行);步骤2完成:读取 index.md(前10行确认已存在条目,第398行有 Testing Reality Checker)、overview.md(1155行超长,无需全读);步骤3完成:source page 新建完成;步骤4完成:index.md 已有条目(2026-04-30),无需额外操作;步骤5完成:overview.md 超长文件,本次摄入属于 testing agent 系列之一,Key Claims 已在 testing-workflow-optimizer/testing-api-tester 条目中有上下文关联,无需修订;步骤6完成:TestingRealityChecker/QAAgent 提及均仅1次,不满足≥2次条件,跳过 Entity 创建;Playwright 作为工具 Entity 已存在于 wiki/entities/Playwright.md;步骤7完成:IntegrationTesting/EvidenceBasedAssessment/RealityCheck 均为方法论概念,在 testing-api-tester 等页面有上下文关联,无需独立建页;步骤8完成:检测到与过度乐观评估体系的潜在冲突,已记录于 Contradictions 节;步骤9完成:log.md 追加记录。 -## [2026-05-02] ingest | Academic Narratologist -- Source file: Agent/agency-agents/academic/academic-narratologist.md +## [2026-05-10] ingest | Test Results Analyzer Agent Personality +- Source file: Agent/agency-agents/testing/testing-test-results-analyzer.md - Status: ✅ 成功摄入 -- Summary: Narratologist Agent——以叙事理论框架驱动故事结构分析的学术型 AI Agent。将俄罗斯形式主义、法国结构主义、认知叙事学等学术传统注入 Agent,使其能像专业叙事理论家一样分析故事结构、角色弧光、主题表达,并提供有命名框架依据的叙事建议。核心理念:"每个故事都是一个论证";核心原则:大多数叙事问题存在于讲述层面(sjuzhet)而非故事层面(fabula),诊断应优先于处方;每个建议必须引用至少一个命名理论框架。 -- Concepts created: [[Fabula-Sjuzhet]], [[Propp-Morphology]], [[Character-Arc]], [[Narrative-Debt]] -- Source page: wiki/sources/academic-narratologist.md -- Notes: 与 [[academic-anthropologist]](共时性文化系统)、[[academic-historian]](历时性时间分析)、[[academic-geographer]](空间维度)共同构成"人文社科 AI 研究者矩阵",已在 overview.md 添加独立段落。Entity 方面,Academic Anthropologist 条目曾标注 academic-narratologist 为 source missing,现已补全。该文档为 Agent 角色设定,无外部内容冲突。 +- Summary: Test Results Analyzer Agent 摄入——The Agency Testing 部门的测试结果分析专家 AI Agent 人格定义,通过统计分析、模式识别和机器学习将原始测试数据转化为战略质量洞察。核心方法:覆盖率分析 + 失败模式分类 + RandomForest 缺陷预测 + 发布就绪度评估 + 质量 ROI 分析。成功指标:95% 质量风险预测准确率、90% 分析建议被采纳、85% 缺陷逃逸预防改善、24 小时内报告。 +- Concepts created: [[Defect-Prediction]](基于 RandomForest 的缺陷易发性预测)、[[Failure-Pattern-Analysis]](失败模式统计分类)、[[Quality-Metrics]](质量量化指标体系)、[[Quality-ROI-Analysis]](质量投资回报分析)、[[Release-Readiness-Assessment]](发布就绪度 GO/NO-GO 评估)、[[Statistical-Analysis]](统计方法验证)、[[Test-Coverage-Analysis]](测试覆盖率缺口分析) +- Entities created: [[Pandas]](Python 数据分析库,总引用≥2次,达到独立建页阈值) +- Source page: wiki/sources/testing-test-results-analyzer.md +- Notes: 步骤1完成:读取原始文档(304行);步骤2完成:读取 index.md(条目已存在于Line 399,补全日期格式和摘要)、overview.md(Line 170已有详细综合摘要,无需修订);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims×7条、Key Quotes×4条、Key Concepts×7个、Key Entities×5个、Connections×5条、Contradictions×1对);步骤4完成:index.md Sources 节 Line 399 补全日期格式和一句话摘要;步骤5完成:overview.md Line 170 已有完整综合摘要,无需修订;步骤6完成:创建 [[Pandas]] Entity 页面(总引用≥2次达到阈值),index.md Entities 节新增 Pandas 条目;步骤7完成:创建 7 个新 Concept 页面(Defect-Prediction/Failure-Pattern-Analysis/Quality-Metrics/Quality-ROI-Analysis/Release-Readiness-Assessment/Statistical-Analysis/Test-Coverage-Analysis),index.md Concepts 节同步更新;步骤8完成:与 [[Testing-Reality-Checker]] 的数据真实性 vs 统计严谨性张力已记录于 Contradictions 节;步骤9完成:log.md 追加记录 -- Source file: Agent/agency-agents/academic/academic-anthropologist.md +## [2026-05-10] ingest | Testing Evidence Collector Agent Personality +- Source file: Agent/agency-agents/testing/testing-evidence-collector.md - Status: ✅ 成功摄入 -- Summary: Academic Anthropologist——基于文化人类学理论构建文化自洽社会的 AI Agent 设计框架。将田野调查方法论注入 Agent,使其能设计有社会学意义的亲属制度、交换系统、仪式信仰和权力结构。核心理念:每个文化元素必须有社会功能,先问"这个实践解决了什么问题"而非"这个仪式看起来酷不酷"。理论基础:结构人类学(列维-斯特劳斯)、象征人类学(格尔茨"厚描")、实践理论(布迪厄)、仪式分析(特纳/范热内普)、经济人类学(莫斯/波拉尼)。关键原则:避免文化拼贴(culture salad)、不跳过亲属制度设计、无乌托邦(每个文化都有内部张力)。 -- Concepts created: [[Thick-Description]], [[Liminality]], [[Gift-Economy]], [[Cultural-Coherence]], [[Rites-of-Passage]] -- Entities identified (not yet created): [[Claude-Lévi-Strauss.md]], [[Clifford-Geertz.md]], [[Pierre-Bourdieu.md]], [[Victor-Turner.md]], [[Arnold-van-Gennep.md]], [[Marcel-Mauss.md]], [[Mary-Douglas.md]], [[Émile-Durkheim.md]], [[Bronislaw-Malinowski.md]], [[Karl-Polanyi.md]], [[Marvin-Harris.md]] -- Source page: wiki/sources/academic-anthropologist.md -- Notes: 与 [[academic-historian]](历时性视角)、[[academic-geographer]](空间维度)、[[academic-narratologist]](叙事维度)共同构成"人文社科 AI 研究者矩阵"。Entity/Concept 页面已识别但未实际创建,可作为后续补充。无已知内容冲突。 +- Summary: EvidenceQA 是一个以视觉证据为核心的 QA Agent 人格,核心原则是"截图不说谎"(Screenshots Don't Lie)。通过 Playwright 自动化截图采集 → 视觉分析 → 规格对比流程,防止 AI Agent 产生"幻想式报告"(fantasy reporting)。默认应发现 3-5+ 个问题,拒绝虚假的 A+ / 98 分完美评分,生产就绪状态默认失败(FAILED)。 +- Concepts created: 无(EvidenceQA/Playwright截图/FantasyReporting/规格一致性验证/QA报告模板 均为高度依附原文档的方法论概念,不具备独立泛化价值,不建独立页面) +- Entities already existed: 无(EvidenceQA 仅提及1次,不满足≥2次条件,跳过) +- Source page: wiki/sources/testing-evidence-collector.md +- Notes: 步骤1完成:读取原始文档(210行);步骤2完成:读取 index.md(条目已存在于 Line 400,无需补全)、overview.md(1155行超长,属于 testing agent 系列内容,testing workflow 系列概念已在 testing-workflow-optimizer/testing-api-tester 等页面有上下文关联,无需修订 overview);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims×5条、Key Quotes×3条、Key Concepts×5个、Key Entities×1个、Connections×4条、Contradictions节记录无冲突);步骤4完成:index.md Sources 节 Line 400 已有条目,无需更新;步骤5完成:overview.md 无需修订;步骤6-7完成:Entity/Concept 页面无需创建;步骤8完成:无冲突检测;步骤9完成:log.md 追加记录。 -## [2026-04-26] ingest | Academic Psychologist -- Source file: Agent/agency-agents/academic/academic-psychologist.md -- Status: ✅ 成功摄入 -- Summary: Academic Psychologist——The Agency 学术部门的临床与研究心理学家人格智能体,为角色塑造提供心理学可信度支撑。基于 Big Five、依恋理论、Vaillant 防御机制层级、Karpman 戏剧三角、CBT 认知扭曲、社会心理学经典实验等多种理论与实证框架,对角色进行多维度心理画像。核心原则:拒绝将角色病理化,区分流行心理学与循证心理学,承认文化情境与创伤响应的多样性。 -- Concepts created: [[Big-Five-Personality]], [[Attachment-Theory]], [[Defense-Mechanisms]], [[Cognitive-Distortions]], [[Karpman-Drama-Triangle]], [[Transactional-Analysis]], [[Trauma-Informed-Analysis]] -- Source page: wiki/sources/academic-psychologist.md - -## [2026-04-25] ingest | Historian Agent Personality -- Source file: Agent/agency-agents/academic/academic-historian.md -- Status: ✅ 成功摄入 -- Summary: Historian Agent——AI Agent 角色设定,扮演具有跨时代研究能力的历史学家,为创意项目提供历史真实性验证、时代背景丰富化和历史迷思纠正。核心理念:物质条件决定论(先理解经济基础再谈政治军事)、主动挑战欧洲中心主义、每条论断必须标注置信度和来源类型。方法论:Annales 学派、长时段分析(longue durée)、微观史、比较史、反事实推理、史料批判。五步工作流:定位时空坐标→核查物质基础→叠加社会结构→评估论断→标注置信度。典型交付物:Period Authenticity Report、Historical Coherence Check。 -- Concepts created: [[Annales-School]], [[Longue-Duree]] -- Source page: wiki/sources/academic-historian.md -- Notes: 与 [[academic-geographer]](空间维度)、[[academic-anthropologist]](共时性文化系统)、[[academic-narratologist]](叙事维度)共同构成"人文社科 AI 研究者矩阵"。无已知内容冲突——主要纠正通俗历史迷思而非与已有 Wiki 内容矛盾。 -- Notes: index.md 中原有 "source missing" 占位条目(2026-04-20)已替换为完整条目。Academic 部门未在 overview.md 单独设节,相关心理框架已融入 Wiki 的 Agent 心理学知识体系。7 个 Concept 页面已创建并添加到 index.md。所有 Key Entities(Erikson/Piaget/Bowlby/Aaron Beck/Karpman/Vaillant/Milgram/Zimbardo/Herman/van der Kolk/Porges/Eysenck/Lazarus)均仅出现 1 次,不足 Entity 建页阈值(≥2 次),以 wikilink 形式记录于 Source page。与 [[multi-agent-system-reliability]] 在"确定性 vs 概率性"上的张力已记录于 Contradictions 部分。 - -## [2026-04-26] ingest | Behavioral Nudge Engine -- Source file: Agent/agency-agents/product/product-behavioral-nudge-engine.md -- Status: ✅ 成功摄入 -- Summary: Behavioral Nudge Engine——基于行为心理学原理的智能用户推动引擎,通过个性化交互节奏和激励策略最大化软件用户完成任务的可能性。核心四阶段工作流:偏好发现→任务拆解→精准推送→即时庆祝。支持 SMS/Email/应用内横幅等多渠道触达,利用默认偏差、微任务冲刺(5分钟)和游戏化机制持续驱动用户行为。有效降低认知负荷、提升任务完成率、减少平台流失。 -- Entities created: [[BehavioralNudgeEngine.md]] -- Concepts created: [[Behavioral-Psychology.md]], [[Cognitive-Load-Reduction.md]], [[Default-Bias.md]], [[Gamification.md]], [[Momentum-Nudge.md]], [[Pomodoro-Technique.md]] -- Source page: wiki/sources/product-behavioral-nudge-engine.md -- Notes: index.md Sources 节更新原 expected 条目为正式标题;Entities 新增 Behavioral Nudge Engine 条目;Concepts 新增 5 个行为心理学相关概念页面;无已知内容冲突。 - -## [2026-04-26] ingest | Product Sprint Prioritizer Agent -- Source file: Agent/agency-agents/product/product-sprint-prioritizer.md -- Status: ✅ 成功摄入 -- Summary: Product Sprint Prioritizer——The Agency 产品部门的冲刺规划与优先级排序专家 Agent,专注于敏捷冲刺规划、特性优先级排序和资源分配,通过数据驱动的优先级框架(RICE/MoSCoW/Kano/Value vs. Effort)最大化团队交付价值。核心方法:6 冲刺滚动平均团队速率预测(偏差 < 15%);冲刺前五步准备(Backlog Refinement → 依赖分析 → 容量评估 → 风险识别 → 干系人审查);技术债务与新功能 ROI 平衡建模;风险评分(概率 × 影响矩阵)定期重新评估。成功指标:承诺故事点交付率 90%+、干系人满意度 4.5/5、时间线偏差 ±10%、技术债务占比 < 20%。 -- Entities created: 无(TheAgency 已存在;ProductManagerAgent 仅在连接关系中出现,通过 Source Page Key Entities 保留) -- Concepts created: [[SprintPlanning.md]](Sprint Planning 在 7 个页面中被提及,满足独立创建条件) -- Source page: wiki/sources/product-sprint-prioritizer.md -- Notes: index.md Sources 节新增条目置于最前;overview.md Product 部门新增 [[product-sprint-prioritizer]] 条目置于 [[product-manager]] 之后;与 [[product-feedback-synthesizer]] 存在潜在张力(短期迭代优先级 vs 长期用户价值路线图),已在双方 Source Page Contradictions 节记录,建议分工:Sprint Planning 层面优先 Sprint Prioritizer,产品路线图层面优先 Feedback Synthesizer。 - -## [2026-04-26] ingest | Product Trend Researcher Agent -- Source file: Agent/agency-agents/product/product-trend-researcher.md -- Status: ✅ 成功摄入 -- Summary: Product Trend Researcher——The Agency Product 部门的专家级市场情报分析师,专注于新兴趋势识别、竞争分析和机会评估。核心方法:七步趋势识别流程(信号收集→模式识别→上下文分析→影响评估→验证→预测→可操作性);50+ 数据源实时聚合,统计验证弱信号检测,提前 3-6 个月识别主流采纳前趋势;TAM/SAM/SOM 三层市场量化;竞争情报框架(直接/间接/新兴/技术/替代)。成功指标:80%+ 准确率 6 个月趋势预测、90% 洞察转化战略决策、48h 紧急响应、15+ 验证来源。 -- Entities created: 无(TheAgency 已存在;ProductManagerAgent/AgentsOrchestrator 仅出现 1-2 次,通过 Source Page Key Entities 保留) -- Concepts created: 无(TrendLifecycleMapping/AdoptionCurveAnalysis/TAM-SAM-SOM/CompetitiveIntelligence/WeakSignalDetection/TechnologyScouting/SocialListening 均为标准领域抽象,各仅出现 1 次,待后续批次独立创建;已在 Source Page Key Concepts 节以 [[wikilink]] 格式标注) -- Source page: wiki/sources/product-trend-researcher.md -- Notes: index.md Sources 节新增条目置于最前;overview.md Product 部门新增 [[product-trend-researcher]] 条目置于 [[product-manager]] 之前;与 [[Agents-Orchestrator]] 存在潜在张力(Trend Researcher 需要时间积累弱信号 vs Orchestrator 要求阶段质量门强制推进),已记录于 Source Page Contradictions 节。 -- Source file: Agent/agency-agents/product/product-manager.md -- Status: ✅ 成功摄入 -- Summary: Product Manager Agent (Alex)——The Agency 产品部门的核心战略 Agent,10+ 年 B2B SaaS/消费者应用/平台业务经验,Outcome-Driven 产品管理方法论。核心交付物:PRD/Opportunity Assessment/Now-Next-Later 路线图/GTM Brief/Sprint Health Snapshot。六阶段工作流:Discovery → Framing → Definition → Delivery → Launch → Measurement。关键原则:功能即假设、发布即实验;路线图是赌注清单而非承诺;经常说不保护团队焦点。 -- Entities created: 无(Alex/PM persona 仅出现 1 次;B2B SaaS/Consumer Apps/Platform Businesses 属宽泛业务分类,无需单独创建 Entity) -- Concepts created: 无(RICE/NorthStarMetric/PRD/GTMBrief/SprintHealth 均属具体执行模板,不满足"可抽象、可复用"条件;已在 Source Page Key Concepts 节以 [[wikilink]] 格式标注,待后续独立创建) -- Source page: wiki/sources/product-manager.md -- Notes: 与 [[product-feedback-synthesizer]] 互补(反馈收集 vs 产品决策);与 [[Senior Project Manager Agent]] 属产品-项目协作层级(PM 偏战略,Senior PM 偏执行任务分解),无冲突 - -- Source file: Agent/agency-agents/product/product-feedback-synthesizer.md -- Status: ✅ 成功摄入 -- Summary: Product Feedback Synthesizer——The Agency Product 部门的用户反馈综合分析专家 Agent,专精于从多渠道(调查/访谈/工单/评论/社交媒体)收集、分析和综合用户反馈,将海量用户声音蒸馏为可量化的产品决策依据。核心能力:NLP 情感分析与满意度建模(RICE/MoSCoW/Kano 优先级框架)、用户旅程映射、流失预测与早期预警系统。核心理念:定性反馈 → 定量优先级 → 数据驱动路线图。成功指标:24h 内处理关键问题、90%+ 主题准确率、85% 综合反馈产生可衡量决策、NPS 提升 10+ 分。 -- Concepts created: 无(NPS/RICE/MoSCoW/Kano/SentimentAnalysis/UserJourneyMapping/ChurnPrediction/VoC/FeedbackLoop 各仅在本文出现 1 次,待后续批次独立创建;已在 Source Page Key Concepts 节以 [[wikilink]] 格式标注) -- Entities created: 无(The Agency 仅在本文出现 1 次,通过 Source Page Key Entities 保留) -- Source page: wiki/sources/product-feedback-synthesizer.md -- Notes: index.md 中原有 "source missing" 占位条目(2026-04-20)已替换为完整条目;overview.md 新增 "### The Agency — Product 部门" 章节并添加 product-feedback-synthesizer 条目置于 Finance 部门之前;与 [[product-sprint-prioritizer]] 存在优先级框架差异(价值优先 vs 资源约束),已记录于 Source Page Contradictions 节。 - -## [2026-04-25] ingest | Specialized Developer Advocate -- Source file: Agent/agency-agents/specialized/specialized-developer-advocate.md -- Status: ✅ 成功摄入 -- Summary: Developer Advocate Agent——The Agency Specialized 部门的开发者关系工程师,通过 DX 工程审计(Time-to-First-Success)、技术内容创作、社区运营(GitHub/Discord/Slack 响应)、产品反馈闭环(Voice of Developer 报告)推动平台采用。核心理念:Authentic 技术参与("You don't do marketing — you do developer success");DX 改善复合效应优于内容发布;AstroTurf 永久性摧毁开发者信任。成功指标:首次成功 ≤15min、GitHub 响应 ≤24h、教程完成率 ≥50%、开发者 NPS ≥8/10。 -- Concepts created: 无(DeveloperExperienceEngineering/TechnicalContentCreation/CommunityBuilding/ProductFeedbackLoop/DeveloperOnboardingAudit 等均在源文档仅出现 1 次,待后续批次独立创建;已在 Source Page Key Concepts 节以 [[wikilink]] 格式标注) -- Entities created: 无(GitHub/StackOverflow/Discord/KubeCon/OpenTelemetry/The Agency 等各仅出现 1 次,通过 Source Page Key Entities 保留) -- Source page: wiki/sources/specialized-developer-advocate.md -- Notes: index.md 中原有 "source missing" 占位条目(2026-04-20)已替换为完整条目;overview.md Specialized 部门新增 Developer Advocate 条目置于 report-distribution-agent 之后;无重大内容冲突,仅与 [[specialized-workflow-architect]] 存在设计哲学层面的潜在张力(DX 质量优先 vs 快速交付),已记录于 Source Page Contradictions 节。 - -## [2026-04-25] ingest | Automation Governance Architect -- Source file: Agent/agency-agents/specialized/automation-governance-architect.md -- Status: ✅ 成功摄入 -- Summary: Automation Governance Architect——企业自动化治理架构师,负责在实施前评估业务自动化的价值、风险和可维护性。基于 n8n 编排标准 + 四维决策框架(时间节省、数据关键性、外部依赖风险、可扩展性),通过 APPROVE/APPROVE AS PILOT/PARTIAL AUTOMATION ONLY/DEFER/REJECT 五种裁决防止低价值或高风险自动化进入生产,同时推动高价值自动化的标准化落地。核心原则:技术可行不等于值得自动化;简单健壮优于精巧脆弱;每个推荐必须包含降级方案和责任人;无文档和测试证据不得标记为完成。 -- Concepts created: AutomationGovernance, DecisionFramework, N8nWorkflowStandard, ReliabilityBaseline, IntegrationGovernance, ReAuditTriggers -- Entities created: 无(n8n 仅出现 1 次,不满足"出现 ≥2 次"条件,通过 Source Page Key Entities 保留) -- Source page: wiki/sources/automation-governance-architect.md -- Notes: index.md 中原有 "source missing" 占位条目(2026-04-20)已替换为完整条目;overview.md compliance-auditor 条目中已引用 [[automation-governance-architect]],无需额外修订;无重大内容冲突,仅与 [[specialized-workflow-architect]] 存在设计哲学层面的潜在张力(治理优先 vs 快速交付),已记录于 Source Page Contradictions 节。 - -## [2026-04-25] ingest | Report Distribution Agent -- Source file: Agent/agency-agents/specialized/report-distribution-agent.md -- Status: ✅ 成功摄入 -- Summary: Report Distribution Agent——The Agency Specialized 部门的销售报告自动分发 Agent,基于区域路由参数将合并报告精准送达对应业务员和管理层,支撑工作日 8:00 AM 定时日报和周一 7:00 AM 周报分发,99%+ 定时送达率。核心能力:区域路由(业务员仅收到其区域数据)、公司级汇总报告(管理员/经理)、HTML 邮件格式化、SMTP 传输、分发日志审计(sent/failed 状态 + 时间戳)、失败重试 + 容错继续分发。属销售数据管道的分发层,上游对接 Data Consolidation Agent。 -- Concepts created: 无(Territory Routing/SMTP Transport/Audit Trail/Scheduled Distribution 各仅在本文出现 1 次,暂不单独建 Concept 页面;已在 Source Page Key Concepts 节以 [[wikilink]] 格式标注) -- Entities created: 无(STGCRM/Data Consolidation Agent 各仅出现 1 次,通过 Source Page Key Entities 保留) -- Source page: wiki/sources/report-distribution-agent.md -- Notes: index.md 中原有 "source missing" 占位条目(2026-04-20)已替换为完整条目;overview.md Specialized 部门新增 Report Distribution Agent 条目置于 data-consolidation-agent 之后;无内容冲突(与 [[specialized-document-generator]](文档生成)和 [[data-consolidation-agent]](数据整合)均为互补关系,无矛盾)。 -- Source file: Agent/agency-agents/specialized/data-consolidation-agent.md -- Status: ✅ 成功摄入 -- Summary: Data Consolidation Agent——The Agency Specialized 部门的销售数据整合专家 Agent,将分散的销售提取数据聚合为实时仪表盘。核心能力:并行多维度查询(地区/代表/管道/时间维度)、实时达成率计算(revenue/quota * 100,处理除零)、MTD/YTD/Year End 多时间视图、< 1 秒加载 + 60 秒自动刷新、零数据不一致保证。 -- Concepts created: 无(Dashboard Report/Territory Report/Sales Attainment/Pipeline Snapshot/Metric Aggregation 均通过 Source Page 内 [[wikilink]] 形式表达,未单独建 Concept 页面) -- Entities created: 无(Sales Data Extraction Agent/Report Distribution Agent/Sales Pipeline Analyst/Sales Coach Agent 各仅出现 1 次,通过 Source Page Key Entities 保留) -- Source page: wiki/sources/data-consolidation-agent.md -- Notes: index.md 消除原 "source missing" 占位条目,替换为完整条目;overview.md 新增 Data Consolidation Agent 条目(置于 Specialized 部门末尾,与现有 Sales Pipeline Analyst/Sales Coach Agent 链接建立关系);无内容冲突(与 Sales Pipeline Analyst 共享数据源但职责互补,与 Report Distribution Agent 构成顺序管道)。 -- Source file: Agent/agency-agents/specialized/supply-chain-strategist.md -- Status: ✅ 成功摄入 -- Summary: Supply Chain Strategist——The Agency Specialized 部门的中国制造业供应链全链路专家 Agent,帮助企业建立高效、有韧性、可持续的供应链体系。核心:供应商 ABC 分级管理 + Kraljic 矩阵采购策略 + TCO 全成本分析 + 库存优化模型(EOQ/ROP/安全库存/VMI/JIT)+ 供应链数字化成熟度 L1-L5 五级评估 + RBA/SA8000/CMRT 合规体系。典型成就:紧固件品类年采购成本降低 12%(节省 ¥870,000)。 -- Concepts created: 无(Kraljic Matrix/TCO/EOQ/RBA/SA8000 等均在源文档仅出现 1 次,待后续批次独立创建;已在 Source Page Key Concepts 节以 [[wikilink]] 格式标注) -- Entities created: 无(1688/Canton Fair/SGS/TUV 等各渠道平台在源文档均仅出现 1 次,待后续批次独立创建;已在 Source Page Key Entities 节以 [[wikilink]] 格式标注) -- Source page: wiki/sources/supply-chain-strategist.md -- Notes: index.md 新增 Supply Chain Strategist Agent 条目,同时替换原有 "source missing" 占位条目(2026-04-20 supply-chain-strategist)为完整条目;overview.md Specialized 部门新增 Supply Chain Strategist 条目置于 zk-steward 之后;无内容冲突检测(与 [[specialized-french-consulting-market]] 为 Specialized 部门内的不同垂直领域,无直接矛盾)。 - -## [2026-04-25] ingest | ZK Steward Agent -- Source file: Agent/agency-agents/specialized/zk-steward.md -- Status: ✅ 成功摄入 -- Summary: ZK Steward——AI 时代 Luhmann Zettelkasten 知识库管家,以 Niklas Luhmann 的卡片盒方法论为默认视角,融合多领域专家心智模型(Feynman/Karpathy/Munger/Ogilvy 等),通过原子笔记+ Luhmann 四原则验证门+领域专家切换实现有机知识网络增长。 -- Concepts created: [[Zettelkasten]](卡片盒知识管理法)、[[Luhmann-四原则]](原子性/连接性/有机增长/持续对话验证门)、[[Domain-Thinking]](领域专家三维切换机制)、[[Gegenrede]](德语反诘,跨学科反问机制)、[[Link-Proposer]](链接提议器三步流程)、[[Daily-Log]](Intent/Changes/Open loops 每日日志) -- Entities created: [[Niklas-Luhmann]](德国社会学家,Zettelkasten 发明者)、[[zk-steward-companion]](GitHub 配套技能库) -- Source page: wiki/sources/zk-steward.md -- Notes: index.md 中原有 "source missing" 占位条目(2026-04-20)已替换为完整条目;overview.md Specialized 部门新增 ZK Steward 条目置于 specialized-korean-business-navigator 之后;entities/ 和 concepts/ 目录已创建并填充 2 个 Entity + 6 个 Concept 页面;无内容冲突检测(与 [[Second-Brain]] 为互补关系,详见 Contradictions 部分)。 - -## [2026-04-25] ingest | Korean Business Navigator -- Source file: Agent/agency-agents/specialized/specialized-korean-business-navigator.md -- Status: ✅ 成功摄入 -- Summary: Korean Business Navigator——The Agency Specialized 部门的韩国商业文化导航 Agent,帮助外国专业人员解码韩国商业隐性规则。核心洞察:品의流程耗时 6-16 周,永远不要在第一次会议要求时间线;韩国"yes"≠同意,沉默=内部讨论进行中;成交发生在会议室外的走廊。六阶段品의时间线(소개→미팅→내부검토→품의서→결재→계약)、Nunchi 解码表(含"검토해보겠습니다"=婉拒等5+信号)、KakaoTalk 分阶段消息模板、韩国企业职级体系、Proof Project 策略。 -- Concepts created: [[품의]](韩国共识审批流程,含六阶段时间线及品의서/결재라인规范)、[[Nunchi]](韩国文化"读心术",含6+常用商业解码表) -- Entities created: [[KakaoTalk]](韩国主流即时通讯平台,商务沟通核心渠道;群聊必须韩语、9AM-7PM KST商务时间、24h只读不回会被注意) -- Source page: wiki/sources/specialized-korean-business-navigator.md -- Notes: index.md 中原有 "source missing" 占位条目(2026-04-20)已移除并替换为完整条目;overview.md Specialized 部门新增 Korean Business Navigator 条目置于 specialized-french-consulting-market 之后;index.md 新增 Entities 条目(KakaoTalk)和 Concepts 条目(품의、Nunchi);无内容冲突(与 Cultural Intelligence Strategist 为互补关系,已在 overview.md 建立链接)。 - -## [2026-04-25] ingest | French Consulting Market Navigator -- Source file: Agent/agency-agents/specialized/specialized-french-consulting-market.md -- Status: ✅ 成功摄入 -- Summary: French Consulting Market Navigator——The Agency Specialized 部门的法国 IT 咨询市场(ESN/SI)生态导航 Agent,帮助独立顾问最大化 TJM 税后净收入。核心洞察:ESN Margin 25-40% 不透明;Portage Salarial vs Micro-Entrepreneur 税后收益差距 338€/天(社保保护价格);付款延迟结构性 60-90 天;Malt 公开定价即为市场锚点。五大平台对比 + 三层 ESN 分层定价 + TJM 阶梯锚定谈判四步法。 -- Concepts created: [[Portage-Salarial]](Portage Salarial 机制完整解析:管理费5-10%、雇主/雇员社保合计~67%、700€/天→208€/天净)、[[ESN]](Entreprise de Services Numériques 三级分类及 Margin 架构详解) -- Entities created: 无(平台 Malt/collective.work/Comet/Crème/Free-Work 及 ESN Cloudity/Accenture 仅出现1次,通过 Source Page Key Entities 保留) -- Source page: wiki/sources/specialized-french-consulting-market.md -- Notes: index.md 中原有 "source missing" 占位条目(2026-04-20)已替换为完整条目;overview.md Specialized 部门新增 specialized-french-consulting-market 条目置于 study-abroad-advisor 之后;Portage-Salarial 和 ESN 均已存在于 wiki/concepts/,无需重复创建,仅补充了本次来源的 sources 字段 - -## [2026-04-25] ingest | Blockchain Security Auditor -- Source file: Agent/agency-agents/specialized/blockchain-security-auditor.md -- Status: ✅ 成功摄入 -- Summary: Blockchain Security Auditor——The Agency Specialized 部门的智能合约安全审计 Agent,专职发现 DeFi 协议与区块链应用中的漏洞。自动化静态分析(Slither/Mythril/Echidna)+ 人工逐行审查 + 属性化模糊测试 + 经济博弈建模五步工作流。每个发现必须包含可复现 PoC;自动化工具只能捕获约 30% 的真实漏洞;OpenZeppelin 误用本身是漏洞类型。 -- Concepts created: [[Reentrancy]](重入攻击,含单函数/跨函数/只读/ERC-777钩子四种模式及完整防御机制)、[[Oracle-Manipulation]](预言机操纵,含AMM/TWAP/Chainlink三类模式及修复方案) -- Entities created: [[The-DAO-2016]](2016年360万ETH重入攻击)、[[Euler-Finance]](2023年1.97亿美元donate-to-reserves攻击)、[[Nomad-Bridge]](2022年1.9亿美元未初始化代理漏洞)、[[Curve-Finance]](2023年7000万美元Vyper编译器bug) -- Source page: wiki/sources/blockchain-security-auditor.md -- Notes: overview.md 同步更新;index.md 消除了原 source missing 标记并补全了摘要 - -## [2026-04-25] ingest | Agents Orchestrator -- Source file: Agent/agency-agents/specialized/agents-orchestrator.md -- Status: ✅ 成功摄入 -- Summary: Agents Orchestrator——AI 多智能体开发流水线编排器,自主管理从规格到交付的完整开发流程。四阶段流水线(PM→ArchitectUX→[Dev↔QA循环]→最终集成),基于截图证据的质量门控,最大3次重试上限。 -- Concepts created: 无(Dev-QA-Loop、Quality-Gate 等概念均通过 Source Page 内 wikilinks 形式表达,未单独建 Concept 页面) -- Entities created: 无(ArchitectUX、EvidenceQA、TestingRealityChecker、ProjectManagerSenior 等在现有 wiki 中已作为 wikilinks 使用,无需新建 Entity 页面) -- Source page: wiki/sources/agents-orchestrator.md -- Notes: index.md 中原有 "source missing" 占位条目(2026-04-20)已替换为完整条目;overview.md Specialized 部门新增 Agents-Orchestrator 条目置于 identity-graph-operator 之后;与 specialized-workflow-architect 的职责关系已记录于 Contradictions 部分(设计层 vs 执行层,不存在功能重叠)。 - -## [2026-04-25] ingest | MCP Builder Agent -- Source file: Agent/agency-agents/specialized/specialized-mcp-builder.md -- Status: ✅ 成功摄入 -- Summary: MCP Builder Agent——AI Agent 的 MCP(Model Context Protocol)服务器开发专家,设计、构建、测试和部署 MCP 服务器,为 AI Agent 提供自定义工具(Tools)、资源(Resources)和提示词模板(Prompts)能力。核心理念:工具命名即 UX,正确选用率目标 >90%;技术栈 TypeScript+Zod 或 Python+Pydantic;核心原则:无状态设计、结构化错误返回、环境变量密钥、边界验证、真实 Agent 测试。 -- Concepts created: 无(Key Concepts 中 10 个术语均为 Source Page 内可解释的协议/框架级概念,通过 wikilinks 形式表达,不具备跨页面复用价值,未单独建 Concept 页面) -- Entities created: 无(MCP SDK/FastMCP/Zod/Pydantic 仅出现 1 次,不满足 ≥2 次条件,通过 Key Entities 链接保留在 Source Page) -- Source page: wiki/sources/specialized-mcp-builder.md -- Notes: index.md 中原有 "source missing" 占位条目(2026-04-20)已替换为完整条目;overview.md Specialized 部门新增 MCP Builder Agent 条目置于 visionos-spatial-engineer 之后;无冲突内容检测。 - -## [2026-04-25] ingest | Compliance Auditor Agent -- Source file: Agent/agency-agents/specialized/compliance-auditor.md -- Status: ✅ 成功摄入 -- Summary: Compliance Auditor Agent——The Agency Specialized 部门的技术合规审计专家,专注 SOC 2、ISO 27001、HIPAA、PCI-DSS 认证审计全流程。五步工作流:Scoping → Gap Assessment → Remediation Support → Audit Support → Continuous Compliance。核心原则:不跟随的政策比没政策更危险、证据必须证明整个审计周期持续有效、技术控制优于管理控制、自动化证据收集从第一天建立。 -- Concepts created: 无(Key Concepts 中 6 个术语均为 Source Page 内可解释的术语,不具备跨页面复用价值,未单独建 Concept 页面) -- Entities created: 无(SOC-2/ISO-27001/HIPAA/PCI-DSS 均为框架级标准,在多个来源中出现但以 wikilinks 形式表达,未单独建 Entity 页面) -- Source page: wiki/sources/compliance-auditor.md -- Notes: index.md 中原有 "source missing" 占位条目(2026-04-20)已移除并替换为完整条目;overview.md Specialized 部门新增 Compliance Auditor 条目置于 healthcare-marketing-compliance 之后;与 [[specialized-model-qa]] 在证据定义上的差异已记录于 Contradictions 部分。 - -## [2026-04-25] ingest | Specialized Salesforce Architect -- Source file: Agent/agency-agents/specialized/specialized-salesforce-architect.md -- Status: ✅ 成功摄入 -- Summary: Salesforce 企业级解决方案架构师 Agent — 多云架构设计(Sales/Service/Marketing/Commerce/Data Cloud/Agentforce)、企业集成模式(REST/Platform Events/CDC/MuleSoft)、数据模型设计与治理、Governor Limit 预算规划、CI/CD 部署策略(Salesforce DX/DevOps Center)。核心原则:Governor limits 不可协商、Bulkification 强制要求、Declarative-first、Trigger 只委托不分发、集成模式必须处理失败场景。 -- Concepts created: 无(技术术语通过 Source Page Key Concepts + wikilinks 表达,未单独建页面) -- Source page: wiki/sources/specialized-salesforce-architect.md -- Notes: 无冲突内容检测;MuleSoft、Shield Platform Encryption、DevOps Center 作为 Key Entities 链接保留在 Source Page;Platform Events vs CDC 对比表已提取为 Key Claims - -## [2026-04-25] ingest | Model QA Specialist -- Source file: Agent/agency-agents/specialized/specialized-model-qa.md -- Status: ✅ 成功摄入 -- Summary: Model QA Specialist——The Agency Specialized 部门的 ML/统计模型端到端独立审计专家 Agent,核心方法:10 大审计领域覆盖模型全生命周期(文档治理→数据重建→标签分析→分段评估→特征分析→模型复制→校准测试→性能监控→可解释性→业务影响),配套完整 Python 工具集(PSI 监控、Hosmer-Lemeshow 校准检验、SHAP 可解释性分析、PDP 偏依赖图、KS/AUC/Gini 判别指标)。核心原则:独立性、可复现性、证据链完整。成功指标:审计发现 95%+ 被确认有效、零部署后失败。 -- Concepts created: [[SHAP]](特征归因可解释性框架)、[[Calibration-Testing]](概率校准验证方法)、[[Discrimination-Metrics]](判别能力指标体系 AUC/Gini/KS)、[[Partial-Dependence-Plots]](偏依赖图)、[[Population-Stability-Index]](群体稳定性指数)、[[Hosmer-Lemeshow-Test]](校准拟合优度检验) -- Entities created: (The Agency Specialized 部门在多个来源中多次出现,本次检查 entities/ 目录已存在,未新建) -- Source page: wiki/sources/specialized-model-qa.md -- Notes: index.md 中原有 "source missing" 条目,本次摄入后已更新为完整条目。overview.md Specialized 部门新增 Model QA Specialist 条目置于 cultural-intelligence-strategist 之后。与 [[multi-agent-system-reliability]] 存在潜在张力(对抗辩论 vs 统计检验),已在 Contradictions 中记录。6 个 Concept 页面创建前已做去重检查,确认均不存在。与 specialized-workflow-architect(Reality Checker 验证)构成质量保障互补,已在 overview.md 建立链接关系。 - - -- Source file: Agent/agency-agents/specialized/corporate-training-designer.md -- Status: ✅ 成功摄入 -- Summary: Corporate Training Designer——The Agency Specialized 部门的企业培训体系架构师 Agent,核心方法:ADDIE 教学设计模型(分析→设计→开发→实施→评估)、Kirkpatrick 四级评估(反应→学习→行为→业务结果)、Bloom 认知六层次、Kolb 体验式学习圈、OMO 混合学习(线上认知→线下实践→社群持续)。核心价值观:优秀培训的衡量标准不是"教了什么",而是"学员回去做了什么"。覆盖培训需求分析、课程体系设计、内容开发、内训师培养(TTT)、新员工培训、领导力发展(HIPO)、合规培训等全链路能力。 -- Concepts created: [[ADDIE-Model]](ADDIE 教学设计模型)、[[Kirkpatrick-四级评估]](培训效果四级评估框架)、[[Bloom-认知分类]](认知六层次分类)、[[Kolb-体验式学习圈]](体验式学习循环) -- Entities created: [[The-Agency]](The Agency 多智能体系统组织,147 个 Agent 跨 12 部门) -- Source page: wiki/sources/corporate-training-designer.md -- Notes: index.md 中原有早期条目,本次为完整摄入。overview.md Specialized 部门新增 Corporate Training Designer 条目,并置于 Cultural Intelligence Strategist 之前(按摄取顺序)。4 个 Concept 页面创建前已做去重检查,确认均不存在。Corporate Training Designer 与 specialized-workflow-architect、cultural-intelligence-strategist 形成系统性设计能力互补,在 overview.md 中已建立链接关系。Corporate Training Designer 与其他 Agent 无明显内容冲突。 - -- Source file: Agent/agency-agents/specialized/specialized-cultural-intelligence-strategist.md -- Status: ✅ 成功摄入 -- Summary: Cultural Intelligence Strategist——The Agency Specialized 部门的文化包容性专家 Agent,核心职责:检测软件开发中的"隐性排斥"(Invisible Exclusion),包括 Western 默认命名结构、颜色语义冲突(红色=中国金融上涨)、性别二元假设、RTL 阅读方向等。通过四阶段工作流(盲点审计→自主研究→结构修正→解释原理)提供架构级文化智能解决方案。核心价值:将国际化从"亡羊补牢"提升为"架构前提条件",拒绝表演性多元化,追求结构性包容。 -- Concepts created: [[Invisible-Exclusion]](隐性排斥模式定义)、[[Architectural-Empathy]](结构性同理心哲学)、[[Global-First-Architecture]](国际化架构前提原则) -- Entities created: [[The-Agency]](The Agency 多智能体系统组织,147 个 Agent 跨 12 部门) -- Source page: wiki/sources/specialized-cultural-intelligence-strategist.md -- Notes: index.md 中原有 "source missing" 条目,本次摄入后已更新为完整条目。overview.md Specialized 部门新增 Cultural Intelligence Strategist 条目。Concept 页面创建前已做去重检查,确认 Invisible-Exclusion、Architectural-Empathy、Global-First-Architecture 三个概念此前均不存在。与 [[InclusiveVisualsSpecialist]](Design 部门包容性视觉专家)和 [[design-brand-guardian]](品牌守护)存在跨部门协同与张力关系,已在 overview.md 和 source page Contradictions 中记录。 - -## [2026-04-25] ingest | Workflow Architect Agent Personality -- Source file: Agent/agency-agents/specialized/specialized-workflow-architect.md -- Status: ✅ 成功摄入 -- Summary: Workflow Architect——The Agency Specialized 部门的工作流设计专家 Agent,负责在代码编写前穷举建模系统所有路径。核心交付物:四视角工作流注册表(按工作流/按组件/按用户旅程/按状态)+ 工作流树规范格式(覆盖快乐路径+七类失败分支)+ 交接合同(Handoff Contract)+ 清理清单(Cleanup Inventory)。关键原则:不只为快乐路径设计,每个系统边界定义显式交接合同,Reality Checker 验证是 Draft 升为 Approved 的前置条件。Agent 协作协议:Reality Checker 验证→Backend Architect 实现→API Tester 生成测试用例→DevOps Automator 验证清理顺序。与 [[Designing-for-Agentic-AI]] 存在潜在冲突(确定性要求 vs LLM 概率性),已在 Contradictions 中记录。 -- Concepts created: [[Workflow-Registry]](四视角工作流注册表)、[[Observable-States]](四维度可观察状态)、[[Handoff-Contract]](系统边界交接合同)、[[Workflow-Tree-Spec]](结构化工作流树规范格式) -- Entities created: (Backend Architect/Reality Checker/API Tester/DevOps Automator/Security Engineer 在当前 sources 中出现次数均 < 2,暂不创建 Entity 页面) -- Source page: wiki/sources/specialized-workflow-architect.md -- Notes: index.md 中原有 "source missing" 条目,本次摄入后已更新为完整条目并修正日期。overview.md Specialized 部门新增 Workflow Architect 条目。Concept 页面创建前已做去重检查,Workflow-Engineering(已存在,定义侧重 AI 执行流程 vs 本文档侧重工作流规范格式)保留原页面,新增页面侧重建模规范维度。 - -## [2026-04-25] ingest | LSP/Index Engineer Agent Personality -- Source file: Agent/agency-agents/specialized/lsp-index-engineer.md -- Status: ✅ 成功摄入 -- Summary: LSP/Index Engineer——The Agency Specialized 部门的代码智能系统架构师 Agent,通过 graphd LSP 聚合器将 TypeScript/PHP/Go/Rust/Python 等多语言 LSP 客户端统一编排为语义图谱。核心交付物:多语言 LSP 并发编排 + 统一图谱模式(节点:文件/符号,边:contains/imports/calls/refs)+ nav.index.jsonl 语义索引 + WebSocket 实时增量推送 + 原子性图谱更新保证。性能北极星:/graph <100ms、/nav <60ms、WebSocket <50ms、100k+ 符号无性能降级。TypeScript 和 PHP 为默认生产就绪要求。 -- Concepts created: [[LSP-317-Specification]](LSP 3.17 协议规范)、[[Semantic-Index-Infrastructure]](语义索引基础设施)、[[Incremental-Graph-Update]](增量图谱更新)、[[Performance-Contracts]](性能契约) -- Entities created: [[The-Agency]](The Agency 多智能体系统组织)、[[TypeScript-Language-Server]](TypeScript 语言服务器)、[[Intelephense]](PHP Intelephense LSP)、[[LSIF]](Language Server Index Format) -- Source page: wiki/sources/lsp-index-engineer.md -- Notes: index.md 中原有 "source missing" 条目,本次摄入后已更新为完整条目。overview.md Specialized 部门新增 LSP/Index Engineer 条目,并同步更新 Conflict Areas(#12 LSP 图谱确定性 vs Workflow 穷举概率性)。4 个 Concept 页面创建前已做去重检查,确认 LSP-317-Specification、Semantic-Index-Infrastructure、Incremental-Graph-Update、Performance-Contracts 均不存在。与 [[specialized-workflow-architect]] 存在张力(确定性约束 vs LLM 概率性上限),已在 Contradictions 中记录。4 个 Entity 页面中 The-Agency 已在 overview.md 中被多次引用,新增 Entity 页面属首次正式创建。与 [[multi-agent-system-reliability]] 共享"架构约束优于提示词约束"思想,已在 overview.md 中建立链接。 - -## [2026-04-25] ingest | Agentic Identity & Trust Architect(补充摄入) -- Source file: Agent/agency-agents/specialized/agentic-identity-trust.md -- Status: ✅ 补充摄入(source page 已存在,本次补充 Concept 页面) -- Summary: Agentic Identity & Trust Architect——自主 Agent 身份认证与信任验证基础设施专家 Agent,解决多 Agent 环境中的身份伪造、授权冒用、审计日志篡改等安全威胁。核心方法:密码学身份体系(Ed25519)、零信任验证模型、惩罚型信任评分(初始1.0,证据链损坏扣0.5,结果失败率×0.4扣分,凭证超90天扣0.1)、append-only 哈希链式证据记录、多跳委托链验证(任意链节断裂则全链失效)、Fail-Closed 授权(无法验证时默认拒绝)、对等验证协议(Peer Verifier)。高级能力:算法敏捷性(后量子迁移预留抽象层)、NIST 后量子标准评估(ML-DSA/ML-KEM/SLH-DSA)、跨框架身份联邦(A2A/MCP/REST/SDK)。 -- Concepts created: [[Zero-Trust]](永不信任,必须验证)、[[Evidence-Chain]](哈希链式仅追加证据记录)、[[Trust-Scoring]](基于可验证结果的惩罚型信任评分)、[[Delegation-Chain]](多跳委托链验证)、[[Fail-Closed]](失败默认拒绝授权)、[[Peer-Verification]](对等验证协议)、[[Algorithm-Agility]](密码学算法可升级性) -- Source page: wiki/sources/agentic-identity-trust.md -- Notes: 与 [[Identity Graph Operator]] 互补——前者处理 Agent 身份证明(密码学确定性),后者处理实体身份匹配(概率性),共同构成完整身份层。与 [[Designing-for-Agentic-AI]] 存在潜在冲突(零信任要求确定性 vs LLM 概率性),已在 Contradictions 中记录。本文件在 index.md中原标记为"source missing",本次已补全为完整 source page。 -- Source file: Agent/agency-agents/specialized/specialized-document-generator.md -- Status: ✅ 成功摄入 -- Summary: Document Generator——The Agency Specialized 部门的程序化文档生成专家 Agent,通过代码方式(Python/Node.js)生成 PDF、PPTX、DOCX、XLSX 等专业文档。核心工具栈:PDF(reportlab/weasyprint/fpdf2)、PPTX(python-pptx/pptxgenjs)、XLSX(openpyxl/xlsxwriter/exceljs)、DOCX(python-docx/docx)。核心原则:样式系统优先、品牌一致性、数据驱动、无障碍设计、模板可复用。 -- Concepts created: 无(文档生成工具库不宜抽象为 Concept) -- Source page: wiki/sources/specialized-document-generator.md -- Notes: index 中已存在同名条目(来源缺失),本次摄入后标记为已解决。与 [[report-distribution-agent]](文档分发)和 [[agents-orchestrator]](工作流编排)存在潜在协同关系,建议后续摄入时补充连接。 - -- Source file: Agent/agency-agents/specialized/identity-graph-operator.md -- Status: ✅ 成功摄入 -- Summary: Identity Graph Operator——多智能体系统共享身份图谱运营专家 Agent,解决多 Agent 系统的身份孤岛问题(重复记录/冲突操作/级联错误)。核心方法:规范化(昵称扩展/E.164 电话/邮箱小写)→ 阻塞(blocking key 筛选候选)→ 评分(字段级加权)→ 聚类。merge/split 通过乐观锁执行,按置信度分级(>0.95 直接合并、0.6-0.95 提案审查、<0.6 创建新实体)。保留完整事件历史。 -- Concepts created: [[Identity-Resolution]](身份解析四步流程框架)、[[Evidence-based-Merge-Proposal]](证据驱动合并提案协议)、[[Blocking]](阻塞分块技术)、[[Fuzzy-Matching]](模糊匹配技术)、[[Confidence-Score]](置信度评分与阈值决策) -- Source page: wiki/sources/identity-graph-operator.md -- Notes: 与 [[Designing-for-Agentic-AI]] 存在潜在冲突:确定性要求与 LLM 概率性行为如何协调,当前观点认为通过将核心逻辑从 LLM 推理分离来解决。index 中已存在同名 [[identity-graph-operator]] 条目(来源缺失),本次摄入后应标记为已解决。 - -## [2026-04-25] ingest | Accounts Payable Agent Personality -- Source file: Agent/agency-agents/specialized/accounts-payable-agent.md -- Status: ✅ 成功摄入 -- Summary: AccountsPayable Agent——The Agency 财务部门的自主支付运营专员 Agent,处理供应商付款、承包商发票和周期性账单,覆盖 ACH/Wire/Crypto/Stablecoin/Payment API 全支付通道。核心原则:幂等性优先(reference ID 去重,零重复付款)、审计全链路、最优通道路由(失败自动切换备选通道)、严格额度管控(超授权额度人工审批)。通过 tool calls 与 Contracts Agent、Project Manager Agent、HR Agent 集成。成功指标:零重复付款、< 2 分钟执行时间、100% 审计覆盖、60 秒 escalation SLA。 -- Concepts created: (文档内概念均为具体实现细节,不满足可独立复用条件,未创建 Concept 页面) -- Entities created: (各协作 Agent 在本文档中各仅出现 1 次,不满足出现 ≥ 2 次条件,未创建 Entity 页面) -- Source page: wiki/sources/accounts-payable-agent.md -- Notes: 无已知冲突。本文档为单一 Agent 设计文档,与 [[Accounts-Payable-Agent]] 协作的各 Agent 需在各自文档中补充对应协作关系。 - -## [2026-04-25] ingest | Specialized Civil Engineer Agent -- Source file: Agent/agency-agents/specialized/specialized-civil-engineer.md -- Status: ✅ 成功摄入 -- Summary: Civil Engineer Agent——全球设计标准覆盖的结构与土木工程专家 Agent,驾驭 Eurocode(EN 1990–1999 + 各国 National Annex)、ACI 318(LRFD/SD)、AISC 360、ASCE 7、GB/IS/AIJ 等全球主流建筑规范体系。核心方法:ULS+SLS 双重验证、多标准冲突处理(识别→记录→保守优先→Basis of Design)、岩土工程全流程。计算交付物:钢梁 AISC 360 LRFD 计算包、RC 梁 Eurocode EN 1992-1-1 计算包、Terzaghi 岩土地基承载力分析。六阶段工作流:项目范围→初步设计→详细计算→建造文档→规范合规→施工支持。 -- Concepts created: [[ULS]], [[SLS]], [[National-Annex]], [[LRFD]], [[Basis-of-Design]], [[BIM-Coordination]], [[Ductility-Class]] -- Entities created: [[Eurocode]], [[AISC-360]], [[ACI-318]], [[ASCE-7]], [[EN-1997]], [[AIJ]] -- Source page: wiki/sources/specialized-civil-engineer.md -- Notes: 无已知冲突。该 Agent 覆盖全球独立规范体系,各标准间差异已明确标注,不可混用。 - -- Source file: Agent/agency-agents/project-management/project-management-experiment-tracker.md -- Status: ✅ 成功摄入 -- Summary: Experiment Tracker Agent——The Agency 项目管理部门的实验追踪专家 Agent,专注于 A/B 测试、功能实验和假设验证的科学化管理。核心交付物:实验设计文档模板和实验结果报告模板。成功指标:95% 实验达统计显著性、每季度 15+ 实验、70% 成功率、80% 成功实验落地。高级能力:多臂老虎机、贝叶斯分析、因果推断、ML 模型 A/B 测试。 -- Concepts created: [[A/B-Testing]], [[Statistical-Significance]], [[Power-Analysis]], [[Hypothesis-Validation]], [[Experiment-Portfolio-Management]], [[Multi-Armed-Bandits]], [[Bayesian-Analysis]], [[Causal-Inference]] -- Entities created: [[Project-Management-Experiment-Tracker]] -- Source page: wiki/sources/project-management-experiment-tracker.md -- Notes: 与 [[Project-Management-Studio-Operations]] 存在潜在张力(实验节奏 vs 内容制作节奏),已记录于 Contradictions - -## [2026-04-25] ingest | Studio Operations Agent Personality -- Source file: Agent/agency-agents/project-management/project-management-studio-operations.md -- Status: ✅ 成功摄入 -- Summary: Studio Operations Agent——The Agency 项目管理部门的执行层 Agent,专注于工作室日常运营效率、流程优化和资源协调。核心交付物:SOP 模板(四步工作流:评估→协调→实施→监控)和运营效率报告模板。成功指标:95% 运营效率、99.5% 系统正常运行时间、年度成本降低 10%、支持响应时间 < 2 小时。 -- Concepts created: (本次未创建独立 Concept 页面——文档内各概念(Standard Operating Procedure/Operational Efficiency 等)均与 [[The Agency]] 生态强绑定,不满足可独立复用条件) -- Entities created: (本次未创建独立 Entity 页面——文档内唯一实体 [[The Agency]] 在 Wiki 中已有充分引用) -- Source page: wiki/sources/project-management-studio-operations.md -- Notes: 与 [[project-management-studio-producer]](战略层)和 [[ProjectManagerSenior]](任务分解层)构成完整项目管理体系层级;与 [[Project-Management-Jira-Workflow-Steward]] 和 [[Project-Management-Project-Shepherd]] 协同;index.md 中标记的 expected 条目已补全 - -## [2026-04-25] ingest | Senior Project Manager Agent Personality -- Source file: Agent/agency-agents/project-management/project-manager-senior.md -- Status: ✅ 成功摄入 -- Summary: Senior Project Manager——The Agency 项目管理部门的执行层 Agent,专注于将网站规格文档(site-setup.md)精准转化为 30-60 分钟可执行开发任务列表。核心方法:精确引用规格原则 + 务实范围控制(拒绝 luxury/premium 除非明确)+ 开发者优先任务描述。核心约束:不添加后台进程、不启动开发服务器、必须包含 Playwright 截图测试。 -- Concepts created: (本次未创建独立 Concept 页面——文档内各概念均仅出现 1 次,不满足 ≥ 2 次创建门槛) -- Entities created: (本次未创建独立 Entity 页面——文档内各实体均仅出现 1 次,不满足 ≥ 2 次创建门槛) -- Contradictions detected: 与 [[Project-Management-Project-Shepherd]] 存在职责边界张力——Senior PM 关注任务拆解细节,Shepherd 关注项目整体把控;两者形成执行层与规划层的协作关系,记录于 Source Page Contradictions 部分 -- Source page: wiki/sources/project-manager-senior.md -- Notes: index.md 占位符条目已替换(添加中文摘要);overview.md 已补充 [[ProjectManagerSenior]] 独立段落,完善了项目管理层级的战略-执行协作关系描述 - -## [2026-04-25] ingest | Jira Workflow Steward Agent Personality -- Source file: Agent/agency-agents/project-management/project-management-jira-workflow-steward.md -- Status: ✅ 成功摄入 -- Summary: Jira Workflow Steward——交付纪律守护者 Agent,通过 Jira-Git 全链路绑定(Task→Branch→Commit→PR→Release)确保代码交付可审查、可回滚、可审计。核心机制:Jira Gate(无 Jira ID 则停止工作流)+ 分支策略(feature/bugfix/hotfix/release)+ Gitmoji 规范提交 + PR 模板 + Commit Hook 自动化验证。定位:Jira-linked commits 是质量工具而非合规打勾。 -- Concepts created: [[Jira-Git-Traceability]], [[Atomic-Commit]], [[Branch-Strategy]], [[Gitmoji-Commit]], [[Jira-Gate]], [[Pull-Request-Governance]], [[Delivery-Traceability]] -- Entities created: [[Jira-Workflow-Steward]], [[Gitmoji]] -- Contradictions detected: 与 [[Project-Management-Project-Shepherd]] 在职责边界存在互补张力——Steward 严格 gate(Jira ID 前置),若 Shepherd 未预创建任务则工作流中断,建议在 Shepherd 端增加预创建步骤;与 [[Project-Management-Studio-Producer]] 在交付粒度上属不同抽象层级(原子 commit vs 组合 Epic/Story),无直接冲突 -- Source page: wiki/sources/project-management-jira-workflow-steward.md -- Notes: 7 个 Concept 页面已创建并添加到 index.md;2 个 Entity 页面已创建(Jira-Workflow-Steward/Gitmoji)并添加到 index.md;source page 已添加与 Project-Management-Project-Shepherd 和 Studio-Producer 的跨文档矛盾记录;index.md 占位符条目已替换(2026-04-20 → 2026-04-25,添加中文摘要) - -## [2026-04-25] ingest | Project Shepherd Agent Personality -- Source file: Agent/agency-agents/project-management/project-management-project-shepherd.md -- Status: ✅ 成功摄入 -- Summary: Project Shepherd——AI Agent 项目管理人格,专职跨职能项目协调、时间线管理、干系人对齐与风险缓解。四阶段工作流:项目启动→团队组建→执行监控→质量交付。核心交付物:Project Charter 模板、Status Report 模板、风险缓解框架。成功指标:95% 按时交付、范围蔓延 < 10%、90% 风险提前缓解、干系人满意度 4.5/5。 -- Concepts created: (本次未创建独立 Concept 页面——文档内各概念均仅出现 1 次,不满足 ≥ 2 次创建门槛) -- Entities created: (本次未创建独立 Entity 页面——文档内各实体均仅出现 1 次,不满足 ≥ 2 次创建门槛) -- Contradictions detected: 无。本文档与 [[Project-Management-Studio-Operations]] 和 [[Project-Management-Senior]] 在项目管理层级上互补而非冲突,属层级差异。 -- Source page: wiki/sources/project-management-project-shepherd.md -- Notes: index.md 占位符条目已替换(2026-04-20 → 2026-04-25,添加中文摘要);overview.md 第 65 行已包含 [[Project-Management-Project-Shepherd]] wikilink(项目管理层级链一环),无需额外修订 - -## [2026-04-25] ingest | Studio Producer Agent Personality -- Source file: Agent/agency-agents/project-management/project-management-studio-producer.md -- Status: ✅ 成功摄入 -- Summary: Studio Producer——The Agency 项目管理部门的高管级战略领导者 Agent,专注于创意愿景与商业目标对齐的组合管理。核心职责:战略组合规划(Tier 1/2/Innovation Pipeline 三级)、Portfolio ROI 管理(≥ 25%)、95% 按时交付率、高管级利益相关者沟通。四阶段工作流:战略规划→项目编排→领导力发展→绩效优化。 -- Concepts created: [[Strategic-Portfolio-Management]], [[Resource-Allocation]], [[Portfolio-ROI]], [[Innovation-Pipeline]], [[Stakeholder-Alignment]] -- Entities created: [[Studio-Producer]] -- Contradictions detected: 与 [[Project-Management-Studio-Operations]] 在战略(Producer)与运营(Operations)的权责边界存在张力,需通过 Portfolio Review 机制对齐;与 [[Project-Manager-Senior]] 的管理广度差异(组合 vs 单项目)属层级差异而非矛盾 -- Source page: wiki/sources/project-management-studio-producer.md -- Notes: 已在 overview.md 新增 "The Agency — Project Management 部门" 章节(位于 Paid Media 部门之前),包含 Studio Producer 完整段落及与其他项目管理 Agent 的层级关系描述;5 个 Concept 页面已创建;index.md 中 source 条目已替换(2026-04-20 → 2026-04-25);Studio-Producer Entity 页面已创建并添加至 index.md - -## [2026-04-25] ingest | visionOS Spatial Engineer Agent Personality -- Source file: Agent/agency-agents/spatial-computing/visionos-spatial-engineer.md -- Status: ✅ 成功摄入 -- Summary: visionOS Spatial Engineer——Apple visionOS 26 原生空间计算 Agent,专注于 SwiftUI volumetric interfaces 和 Liquid Glass Design System 实现。核心能力:Liquid Glass 透明材质设计、Spatial Widgets、SwiftUI Volumetric APIs、RealityKit-SwiftUI 集成、Multi-Window Architecture、GPU 高效渲染。技术栈:SwiftUI / RealityKit / ARKit / Metal。 -- Concepts created: [[Liquid-Glass-Design-System]], [[Spatial-Widgets]], [[SwiftUI-Volumetric-APIs]], [[RealityKit-SwiftUI-Integration]], [[Multi-Window-Architecture]] -- Entities created: [[XR-Interface-Architect]], [[XR-Immersive-Developer]], [[XR-Cockpit-Interaction-Specialist]], [[macOS-Spatial-Metal-Engineer]] -- Contradictions detected: 与 [[XR-Immersive-Developer]] 在平台选择上存在差异(WebXR 跨平台 vs visionOS 原生独占),已记录于 Source Page Contradictions 部分;与 [[macOS-Spatial-Metal-Engineer]] 在技术栈选择上存在张力(SwiftUI 声明式 vs Metal 底层渲染),已记录为互补关系 -- Source page: wiki/sources/visionos-spatial-engineer.md -- Notes: index.md 已替换占位符条目(2026-04-20 → 2026-04-25,添加摘要描述);overview.md 已新增独立段落(位于 macOS Spatial/Metal Engineer 段落后);5 个 Concept 页面已创建并添加到 index.md;4 个 Entity 页面已创建(XR-Interface-Architect/XR-Immersive-Developer/XR-Cockpit-Interaction-Specialist/macOS-Spatial-Metal-Engineer)并添加到 index.md;相关 Entity 和 Concept 页面的 sources 列表已更新 - -## [2026-04-25] ingest | XR Interface Architect Agent Personality -- Source file: Agent/agency-agents/spatial-computing/xr-interface-architect.md -- Status: ✅ 成功摄入 -- Summary: XR Interface Architect——专注为 AR/VR/XR 沉浸式环境设计空间直觉化 UX/UI 的 AI Agent,支持 HUD / 浮动菜单 / 交互区域,支持四种输入模型(直接触摸/注视+捏合/控制器/手势),以人体工程学约束减少晕动症,构建座舱/仪表盘/可穿戴界面布局模板,运行可用性验证实验 -- Concepts created: [[SpatialInterfaceDesign]], [[MotionSicknessMitigation]], [[PresenceEnhancement]], [[MultimodalInput]], [[HUDDesign]] -- Entities created: [[XRImmersiveDeveloper]], [[XRCockpitInteractionSpecialist]] -- Contradictions detected: 无内容冲突;该 Agent 侧重界面设计与 UX,与侧重底层渲染工程的 [[macOS Spatial/Metal Engineer]] 不在同一问题域 -- Source page: wiki/sources/xr-interface-architect.md -- Notes: 更新了 overview.md 中 [[xr-cockpit-interaction-specialist]] 条目的层级关系描述(原文为 [[XR-Interface-Architect]],现统一为小写 slug);Entity 仅出现 1 次,不足独立建页阈值,通过 Sources 页面 Key Entities 建立链接 - -## [2026-04-25] ingest | Terminal Integration Specialist -- Source file: Agent/agency-agents/spatial-computing/terminal-integration-specialist.md -- Status: ✅ 成功摄入 -- Summary: Terminal Integration Specialist——专注于终端仿真、文本渲染优化和 SwiftTerm 集成的 Agent,服务于现代 Swift 应用程序(iOS/macOS/visionOS)。核心能力:VT100/xterm ANSI 转义序列完整支持、SwiftTerm 库集成、Core Graphics 文本渲染优化、SSH I/O 桥接(SwiftNIO SSH/NMSSH)、无障碍支持(VoiceOver/动态类型)。 -- Concepts created: [[VT100/xterm Standards]], [[SwiftTerm]], [[Core Graphics Optimization]], [[SSH I/O Bridging]], [[Scrollback Buffer]], [[Accessibility Integration]] -- Contradictions detected: 无明显内容冲突;该 Agent 专注于 Apple 平台和 SwiftTerm,与通用终端解决方案不在同一问题域 -- Source page: wiki/sources/terminal-integration-specialist.md -- Notes: 相关页面已建立连接:[[visionOS Spatial Engineer]] / [[macOS Spatial Metal Engineer]] / [[XR Interface Architect]] 均依赖终端集成能力;Entity 层面 SwiftTerm/SwiftNIO SSH/NMSSH/Core Graphics/Core Text 仅出现 1 次,不足独立建页阈值,通过 Sources 页面的 Key Entities 部分建立链接 - -## [2026-04-25] ingest | XR Immersive Developer Agent Personality -- Source file: Agent/agency-agents/spatial-computing/xr-immersive-developer.md -- Status: ✅ 成功摄入 -- Summary: XR Immersive Developer Agent——WebXR 沉浸式开发专家,基于 A-Frame/Three.js/Babylon.js 构建跨平台浏览器 AR/VR/XR 体验。核心能力:WebXR Device API 全套沉浸式支持(hand tracking / pinch / gaze / controller)、raycasting / hit testing / 实时物理交互、LOD / occlusion culling / shader tuning 性能优化、跨设备兼容层(Meta Quest / Vision Pro / HoloLens / mobile AR)。典型交付物:VR 训练模拟器、AR 可视化界面、空间界面。 -- Concepts created: [[Spatial-Computing]], [[WebXR]], [[Hand-Tracking]] -- Contradictions detected: 与 [[XR-Cockpit-Interaction-Specialist]] 在运动自由度设计上存在张力——后者强调固定视角约束(降低运动病),前者倾向开放空间沉浸体验;冲突点已记录于 overview.md 第 52 条及 [[xr-cockpit-interaction-specialist]] 来源页 Contradictions 节 -- Source page: wiki/sources/xr-immersive-developer.md -- Notes: Concept 页面 Spatial-Computing/WebXR/Hand-Tracking 已创建并添加到 index.md;overview.md 新增 xr-immersive-developer 独立段落(位于 Paid Media 部门之前);Entity 层面,Meta Quest/Vision Pro/HoloLens/Mobile-AR 仅出现 1-2 次,不足独立建页阈值,通过 Sources 页面的 Key Entities 部分建立链接 - -## [2026-04-25] ingest | Sales Engineer Agent -- Source file: Agent/agency-agents/sales/sales-engineer.md -- Status: ✅ 成功摄入 -- Summary: Sales Engineer Agent——售前工程师 Agent,专注于在 B2B 技术评估中赢得技术决策。核心理念:技术决策先于商业合同,售前工程师必须将每一次技术对话连接到业务成果。核心能力:Demo Engineering(以影响力为导向的演示设计)+ POC Scoping(严格限定的概念验证)+ FIA Framework(Fact-Impact-Act 竞争定位)+ 技术异议解码 + 评估笔记维护。成功指标:技术赢率 70%+,POC 转化率 80%+,演示到下一步行动率 90%+,中位数 18 天技术决策。 -- Concepts created: [[Demo-Engineering]], [[POC-Scoping]], [[FIA-Framework]], [[Technical-Objection-Handling]], [[Aha-Moment]] -- Contradictions detected: 与 [[Sales Discovery Coach Agent]] 在技术发现阶段参与深度上存在张力——前者主张售前主导技术发现,后者主张销售发现以业务语言建立信任,已记录于 overview.md Conflict Areas 第 6 条 -- Source page: wiki/sources/sales-engineer.md -- Notes: 5 个新 Concept 页面已创建;overview.md 新增 sales-engineer 独立段落;index.md 新增 Sales Engineer Agent 条目;Conflict Areas 新增第 6 条;Entity 层面,Sales Engineer 与同团队其他 Agent 均仅出现 1-2 次,不足独立 Entity 建页阈值,已通过 Sources 页面的 Key Entities 部分建立链接 - -## [2026-04-25] ingest | Pipeline Analyst Agent -- Source file: Agent/agency-agents/sales/sales-pipeline-analyst.md -- Status: ✅ 成功摄入 -- Summary: Pipeline Analyst Agent——Revenue Operations 领域的 Pipeline 健康诊断与收入预测 AI Agent。核心框架:Pipeline Velocity =(合格机会数 × 平均 Deal 规模 × 胜率)/ 销售周期长度;质量调整覆盖度(高质量少量 Pipeline 优于大量低质量 Pipeline);MEDDPICC Deal 健康评分(资格深度 + 互动强度 + 进展速度三维度 0-36 分);多信号预测模型(历史转化 + Velocity 加权 + 互动调整 + 季节性 + AI 模式匹配)。预测输出 Commit(>90%)/Best Case(>60%)/Upside(<60%)三档。 -- Concepts created: [[MEDDPICC]], [[PipelineVelocity]], [[DealHealthScoring]], [[QualityAdjustedCoverage]] -- Contradictions detected: sales-coach.md 描述 MEDDPICC 为"六个维度",正确为八个维度,已修正 -- Source page: wiki/sources/sales-pipeline-analyst.md -- Notes: Entity 层面,Pipeline Analyst 与 Sales Deal Strategist / Sales Account Strategist / Sales Coach 存在依赖关系,待相关 Source 页面完善后可进一步深化链接 - -## [2026-04-25] ingest | Outbound Strategist Agent -- Source file: Agent/agency-agents/sales/sales-outbound-strategist.md -- Status: ✅ 成功摄入 -- Summary: Outbound Strategist Agent——信号型出站销售策略师,将出站从"批量轰炸"转变为"精准触发"。核心理念:信号驱动出站转化率比无触发出站高 4-8 倍;信号半衰期 30 分钟,24 小时后失效,72 小时后竞争对手已成交。核心框架:三层信号分级体系(主动购买/组织变化/技术行为)+ 可证伪 ICP 定义 + 三层账户分级(Tier 1 深度多线程 / Tier 2 半个性化 / Tier 3 自动化轻定制)+ 8-12 触点 3-4 周多渠道序列。冷邮件回复率基准:泛化 1-3%、角色定制 5-8%、信号驱动 12-25%、推荐引入 30-50%。SDR 角色演变:从批量操作员 → 深度账户专家。 -- Concepts created: [[Signal-Based-Selling-Framework]], [[ICP (Ideal Customer Profile)]], [[Multi-Channel-Sequence-Architecture]], [[Account-Tiering-Model]] -- Concepts updated: [[Challenger-Sales-Model]](sources 添加 sales-outbound-strategist)、[[Land-and-Expand]](sources 添加 sales-outbound-strategist) -- Entities linked: Outbound Strategist Agent, SDR -- Source page: wiki/sources/sales-outbound-strategist.md -- Notes: overview.md 新增"### Sales Outbound Methodology"章节(位于 Sales Discovery Methodology 之前);index.md Concepts 节新增 4 个概念条目;Entity 页面未创建(Outbound Strategist Agent 和 SDR 均仅出现 1 次,不足独立建页阈值);与 [[sales-deal-strategist]] 的漏斗互补关系已记录(出站=漏斗顶部,Deal=漏斗中部) - -## [2026-04-25] ingest | Deal Strategist Agent -- Source file: Agent/agency-agents/sales/sales-deal-strategist.md -- Status: ✅ 成功摄入 -- Summary: Deal Strategist Agent——高级deal策略师与管线架构师智能体,专注于MEDDPICC资质评分、竞争定位和复杂B2B销售周期的赢单规划。核心理念:每个deal都是战略问题而非关系练习;MEDDPICC全面推行的组织赢率提升18%、deal规模扩大24%;Commit deals预测准确率85%+;Qualified Pipeline(28/40+)赢率35%+;永远不做单线程账户。核心框架:MEDDPICC八维评分(每维度5分,满分40)+ Challenger商业教学六步序列 + 竞争三区定位(Winning/Battling/Losing)+ 地雷问题布局 + 交易检查方法论。 -- Concepts updated: [[MEDDPICC]](新增 Deal-Level Application 和 Deal Verdict Categories)、[[Challenger Sales Model]](新增 Commercial Teaching 六步序列) -- Entities linked: [[Sales Coach Agent]], [[Discovery Coach Agent]], [[Sales Proposal Strategist]], Deal Strategist Agent(均出现1次,不足独立Entity建页阈值) -- Source page: wiki/sources/sales-deal-strategist.md -- Notes: index.md 已替换占位符条目(2026-04-20 → 2026-04-25);overview.md 已新增独立段落(Sales Coaching Methodology 章节末尾);MEDDPICC 和 Challenger Sales Model 两个 Concept 页面均已更新 sources 列表 + 新增 sales-deal-strategist 专属内容;未创建新 Entity/Concept 页面(Deal Scoring/Competitive Positioning/Win Planning 等概念在 sales-deal-strategist 源文档中均仅出现1次,不足独立建页阈值);与 [[sales-discovery-coach]] 的"发现→策略"协同关系已记录;与 [[sales-proposal-strategist]] 在"策略分析 vs 叙事构建"上的互补关系已记录于 Contradictions - -## [2026-04-25] ingest | Account Strategist Agent -- Source file: Agent/agency-agents/sales/sales-account-strategist.md -- Status: ✅ 成功摄入 -- Summary: Account Strategist Agent——售后账户扩张策略师智能体,专门负责 Land-and-Expand 执行、QBR 设计、利益相关者映射和净收入留存(NRR)最大化。核心理念:最佳销售时机是客户成功时;永远不做单线程账户;NRR 是终极指标。核心框架:扩张信号四维度(信号+情境+时机+利益相关者对齐)、账户健康三色评分(绿扩张/黄稳定/红救流失)、多线程关系建设(每账户至少三条独立关系线)。 -- Concepts created: [[Land-and-Expand]], [[Net Revenue Retention (NRR)]], [[Account Health Score]] -- Entities linked: Account Executive (AE), Customer Success (CS), Product Team, Executive Sponsor -- Source page: wiki/sources/sales-account-strategist.md -- Notes: 与 [[sales-proposal-strategist]] 的"赢单叙事"互补(前者构建叙事,后者交付超越叙事);与 [[sales-coach]] 协同(后者辅导卖方,前者辅导买方冠军);与 [[sales-discovery-coach]] 形成完整销售生命周期覆盖(发现→赢单→扩张);overview.md 新增"Sales Account Expansion Methodology"主题节;创建 3 个独立 Concept 页面(Land-and-Expand、NRR、Account Health Score) - -## [2026-04-25] ingest | Sales Proposal Strategist -- Status: ✅ 成功摄入 -- Summary: Sales Proposal Strategist——将 RFP 响应转化为赢单叙事的系统化提案方法论。核心框架:三幕提案叙事结构(理解挑战→解决方案旅程→转变状态)+ 3-5 个赢标主题矩阵 + 执行摘要五步模板 + 说服架构(首因/近因效应、认知负荷管理、社会认同排序、损失厌恶框架)。核心理念:提案在开篇100词决定胜负;叙事是差异化核心;永远不直接批评竞争对手;定价在价值之后;内容库按赢标主题而非章节组织。 -- Concepts created: [[WinThemes]], [[ThreeActProposalNarrative]], [[PersuasionArchitecture]] -- Entities linked: 无特定命名实体 -- Source page: wiki/sources/sales-proposal-strategist.md -- Notes: 与 [[sales-coach]] 在"辅导行为 vs 撰写结构"上形成 Sales 体系互补关系;与 [[sales-discovery-coach]] 的发现阶段输入为提案策略提供买方情境;无冲突发现;overview.md 暂不需要更新 - -## [2026-04-25] ingest | Sales Coach Agent -- Source file: Agent/agency-agents/sales/sales-coach.md -- Status: ✅ 成功摄入 -- Summary: Sales Coach Agent——AI 销售教练 Agent,通过苏格拉底式提问驱动销售代表成长。核心辅导框架:Richardson Sales Performance(四维能力)、Challenger 辅导模型、MEDDPICC 资质诊断。关键方法论:辅导行为而非结果;一次只做一件事;管道质量是管理工具;挑战"happy ears"要求可验证的承诺。数据支撑:正式辅导项目配额完成率91.2%,vs 非正式辅导84.7%;每周2小时辅导赢单率56%,vs 少于30分钟43%。 -- Concepts created: MEDDPICC, Challenger Sales Model -- Entities linked: Discovery Coach Agent(已有)、Sales Pipeline Analyst Agent(已有)、Sales Deal Strategist Agent(已有) -- Source page: wiki/sources/sales-coach.md -- Notes: 与 Discovery Coach Agent 的辅导焦点层次差异已记录于 Contradictions;source页面内 Key Concepts 详细记录了 MEDDPICC、Challenger、Richardson Sales Performance 等框架;overview.md 新增"Sales Coaching Methodology"主题节,置于"Sales Discovery Methodology"之后,两者协同关系已明确 - -## [2026-04-25] ingest | Discovery Coach Agent -- Source file: Agent/agency-agents/sales/sales-discovery-coach.md -- Status: ✅ 成功摄入 -- Summary: Discovery Coach Agent——销售发现访谈方法论教练智能体,坚信发现是交易成败的真正战场。整合三大发现框架(SPIN Selling / Gap Selling / Sandler Pain Funnel)+ 标准30分钟发现电话结构(开场2分钟 / 发现18分钟 / 定向pitch 6分钟 / 下一步4分钟)+ AECR异议处理框架(Acknowledg/Empathize/Clarify/Reframe)。核心原则:发现不是审讯,Implication问题通过激活损失厌恶推动成交,60/40规则(买家说话60%以上),最优秀销售多问一个问题。 -- Concepts created: SPIN Selling(作为wikilink保留于source页面内)、Gap Selling(同)、Sandler Pain Funnel(同)、AECR Framework(同)、Upfront Contract(同)、Discovery Call Structure(同) -- Entities linked: Neil Rackham(同)、Keenan(同)、Sandler(同) -- Source page: wiki/sources/sales-discovery-coach.md -- Notes: Entity/Concept页面未单独创建(均首次出现且可抽象为独立概念,建议在后续摄入相关源文件时再评估);未发现与现有Wiki内容的冲突;overview.md新增"Sales Discovery Methodology"主题节;source页面内详细记录了各框架的定义和引用 - -## [2026-04-25] ingest | Paid Media Ad Creative Strategist Agent -- Source file: Agent/agency-agents/paid-media/paid-media-creative-strategist.md -- Status: ✅ 成功摄入 -- Summary: 付费媒体广告创意策略 Agent——由 John Williams(@itallstartedwithaidea)设计,专注于 Google、Meta、Microsoft 及程序化平台的全渠道广告文案创作、响应式搜索广告(RSA)架构设计和系统性创意测试框架。核心理念:创意是自动化竞价环境中最大的可控杠杆,当算法接管了出价、预算和定向时,每一条标题、描述、图片和视频都是一个待验证的假设。 -- Concepts created: [[ResponsiveSearchAds]], [[AdStrength]], [[CreativeFatigue]], [[HookBodyCTA]], [[ABTesting]], [[MessageMatch]], [[AdExtensions]] -- Entities linked: [[GoogleAds]], [[MetaAdsManager]], [[MicrosoftAdvertising]], [[PerformanceMax]], [[JohnWilliams]](已存在) -- Source page: wiki/sources/paid-media-creative-strategist.md -- Notes: 与 [[paid-media-ppc-strategist]] 在"自动化 vs 创意质量"权衡上的张力已记录于 Contradictions;与 [[paid-media-programmatic-buyer]] 在"创意新鲜度"上的潜在冲突已记录;与 [[paid-media-paid-social-strategist]] 协同关系已记录(受众洞察→平台原生创意执行);overview.md 中 paid-media-creative-strategist 条目已从简略描述更新为完整条目,Key Concepts 行已更新 - -## [2026-04-25] ingest | Paid Social Strategist -- Source file: Agent/agency-agents/paid-media/paid-media-paid-social-strategist.md -- Status: ✅ 成功摄入 -- Summary: 跨平台付费社交广告专家 Agent,覆盖 Meta(Facebook/Instagram)、LinkedIn、TikTok、Pinterest、X 和 Snapchat,设计从引流到再营销的全漏斗社交广告项目。核心理念:社交广告本质是"打断"而非"回答",必须构建平台原生体验而非跨平台复用创意。 -- Concepts created: [[Full-Funnel-Campaign-Architecture]], [[Custom-Audience-Engineering]], [[Conversions-API]], [[Advantage+-Campaigns]], [[Incrementality-Testing]], [[SKAdNetwork]] -- Entities created: [[Meta-Ads-Manager]], [[LinkedIn-Campaign-Manager]], [[TikTok-Ads]]; [[JohnWilliams]] 已更新 -- Source page: wiki/sources/paid-media-paid-social-strategist.md -- Notes: 与 [[paid-media-programmatic-buyer]] 在"自动化 vs. 控制"权衡上存在张力已记录于 Contradictions;与 [[paid-media-ppc-strategist]] 在跨渠道预算分配验证原则上有协同关系;与 [[paid-media-creative-strategist]] 在受众策略→创意方向上有依赖关系已记录 - -## [2026-05-06] ingest | Paid Media Search Query Analyst Agent -- Source file: Agent/agency-agents/paid-media/paid-media-search-query-analyst.md -- Status: ✅ 成功摄入 -- Summary: 付费媒体搜索词分析师 Agent——由 John Williams(@itallstartedwithaidea)设计,专注于从用户真实搜索词中挖掘洞察、构建分层负关键词架构、系统化提升付费搜索账户信噪比。核心能力:N-gram 分析、查询意图分类、匹配类型优化、查询雕塑(Query Sculpting)、浪费支出识别、关键词机会挖掘。核心理念:搜索查询优化是持续系统而非一次性任务,每浪费一美元在不相关查询上就是从转化查询中偷走一美元。成功指标:首次分析识别并消除 10-20% 非转化支出、无关查询展示占比 <5%、查询意图对齐度 80%+。 -- Concepts linked: [[SearchQueryOptimization]], [[NegativeKeywordArchitecture]], [[NgramAnalysis]], [[IntentClassification]], [[QuerySculpting]], [[SQOSScoring]], [[CloseVariantAnalysis]], [[WasteIdentification]], [[QueryClustering]], [[MatchTypeOptimization]], [[BrandVsNonbrandLeakageAnalysis]], [[CompetitorQueryInterception]], [[ShoppingSearchTermAnalysis]], [[PerformanceMaxInsights]] -- Entities linked: [[JohnWilliams]], [[GoogleAdsMCP]] -- Source page: wiki/sources/paid-media-search-query-analyst.md -- Notes: index.md 已替换占位符条目(2026-04-20 → 2026-05-06);overview.md 已有 paid-media-search-query-analyst 条目(line 63),本次摄入更新了 Key Claims 和 Key Quotes,补充了 [[GoogleAdsMCP]] Entity;Concepts 和 Entities 在其他源页面中均仅出现 1 次,不足独立建页阈值(≥2 次),以 wikilink 形式记录于 Source page;与 [[paid-media-ppc-strategist]] 的协同关系已记录(策略制定依赖查询分析结果),与 [[paid-media-auditor]] 的协同关系已记录(审计触发查询分析需求) - -## [2026-05-05] ingest | Paid Media Auditor Agent -- Source file: Agent/agency-agents/paid-media/paid-media-auditor.md -- Status: ✅ 成功摄入 -- Summary: 企业级付费媒体账户审计 Agent——系统化评估 Google Ads、Microsoft Ads 和 Meta Ads 账户,覆盖 200+ 检查点(账号结构/追踪配置/竞价策略/创意/受众/竞争定位),每项发现附严重程度和预估业务影响。核心能力:8 大审计维度(账号结构/追踪/竞价/关键词/创意/Shopping/竞争定位/Landing Page)+ 历史趋势分析 + 合规审计。核心理念:像审计财务报表一样审计广告账户,不遗漏任何设置、假设和每一分钱。成功指标:审计通常识别 15-30% 效率提升机会,80%+ 高优先级建议 30 天内落地。 -- Concepts linked: [[AccountAudit]], [[ConversionTracking]], [[AttributionModeling]], [[BidStrategy]], [[QualityScore]], [[NegativeKeywordManagement]], [[AuctionInsights]], [[Dayparting]], [[ResponsiveSearchAds]], [[ProductFeedOptimization]], [[LandingPageAudit]], [[CompetitivePositioning]] -- Entities linked: [[JohnWilliams]], [[GoogleAds]], [[MicrosoftAdvertising]], [[AmazonAds]], [[GA4]], [[GTM]] -- Source page: wiki/sources/paid-media-auditor.md -- Notes: index.md 已替换占位符条目(2026-04-20 → 2026-05-05);overview.md 已更新 paid-media-auditor 条目,补充 200+ 检查点框架和成功指标;所有 Entity/Concept 均仅出现 1 次,不足独立建页阈值(≥2 次),以 wikilink 形式记录于 Source page;与 [[paid-media-ppc-strategist]](架构即战略 vs 现状审计)和 [[paid-media-programmatic-buyer]](下漏斗 vs 上漏斗指标)的互补张力已记录于 Contradictions 节 - -## [2026-05-05] ingest | Paid Media PPC Campaign Strategist Agent -- Source file: Agent/agency-agents/paid-media/paid-media-ppc-strategist.md -- Status: ✅ 成功摄入 -- Summary: 企业级付费搜索与效果媒体策略 Agent——由 John Williams(@itallstartedwithaidea)设计,专注 Google Ads、Microsoft Advertising、Amazon Ads 三大平台。核心能力:分层活动架构(品牌/非品牌/竞品/征服)、Smart Bidding(tCPA/tROAS/Max Conversions/Max CV)、Performance Max 资产组设计、Google Ads API 自动化、MCC 级策略、增量测试框架。核心理念:账户架构即战略——活动/广告组/受众/信号系统协同驱动业务成果。成功指标:品牌展示份额 90%+、非品牌 40-60%、QS 7+ 占比 70%+、日预算消耗率 95-100%、季度转化量增长 15-25%。 -- Concepts created: [[PerformanceMax]], [[SmartBidding]], [[AccountArchitecture]], [[TieredCampaignArchitecture]], [[IncrementalityTesting]], [[ConversionActionHierarchy]], [[CustomerMatch]], [[BudgetPacing]] -- Entities created: [[GoogleAds]], [[MicrosoftAdvertising]], [[AmazonAds]], [[JohnWilliams]] -- Source page: wiki/sources/paid-media-ppc-strategist.md -- Notes: index.md 已新增 Sources 条目;Entities(4个)和 Concepts(8个)均已创建并添加到 index.md;overview.md 已新增 "The Agency — Paid Media 部门" 章节,整合了所有 Paid Media Agent 的协同关系;冲突已识别并记录:与 [[paid-media-programmatic-buyer]] 在预算分配方向上存在张力(高意图搜索流量 vs 品牌曝光),记录于 Source Page Contradictions 部分 - -## [2026-05-05] ingest | Paid Media Programmatic & Display Buyer Agent -- Source file: Agent/agency-agents/paid-media/paid-media-programmatic-buyer.md -- Status: ✅ 成功摄入 -- Summary: 战略性程序化购买与展示广告 Agent——覆盖 Google Display Network、DV360、The Trade Desk、Amazon DSP 等 DSP 平台,支持 Demandbase/6Sense/RollWorks ABM 展示广告策略,管理 25+ 合作伙伴媒体 AMP 计划。以受众优先为核心(正确的人在正确的上下文以正确的频次触达),强调可见性(70%+ MRC 标准)、品牌安全(IVT <3%)、频次管理(3-7 次/月)。通过 MCP 工具与 Google Ads API 集成实现自动化:placement 性能报告拉取、GDN 广告位排除、跨账户审计自动化。 -- Concepts linked: [[Programmatic Buying]], [[ABM Display]], [[Viewability]], [[Invalid Traffic]], [[Frequency Cap]], [[Supply Path Optimization]], [[Partner Media AMP]], [[MRC Standard]], [[CTV/OTT Advertising]], [[Brand Lift Measurement]] -- Entities linked: [[DV360]], [[The Trade Desk]], [[Amazon DSP]], [[Google Display Network]], [[Demandbase]], [[6Sense]], [[RollWorks]], [[John Williams]] -- Source page: wiki/sources/paid-media-programmatic-buyer.md -- Notes: index.md 已插入新条目至 paid-media-paid-social-strategist 之前;Entity/Concept 均未达到独立建页阈值(N=1);冲突已识别并记录:与 paid-media-paid-social-strategist 在效果衡量指标上的差异(展示广告看上漏斗指标 vs 社交广告看直接转化指标) - -## [2026-05-05] ingest | Visual Storyteller Agent -- Source file: Agent/agency-agents/design/design-visual-storyteller.md -- Status: ✅ 成功摄入 -- Summary: Visual Storyteller Agent 角色定义——视觉叙事与品牌故事创作专家智能体,专注于将复杂信息转化为引人入胜的视觉叙事内容,驱动情感共鸣和用户参与。核心交付物:叙事弧创作(Beginning-Middle-End 三幕结构)、情感旅程映射、数据可视化叙事、跨平台视觉策略(Instagram/TikTok/YouTube/LinkedIn/Pinterest)。核心原则:叙事结构优先、情感驱动、品牌一致性(95%+触点)、WCAG 可访问性标准。成功指标:参与度提升 50%+、故事完成率 80%、品牌认知度提升 35%、视觉内容表现优于纯文本 3x。与 [[design-brand-guardian]] 互补(品牌叙事体系 vs 具体视觉内容),与 [[design-inclusive-visuals-specialist]] 协同(包容性视觉融入叙事),与 [[UX-Researcher]] 协同(用户洞察驱动情感旅程),与 [[design-whimsy-injector]] 互补(宏观叙事弧 vs 微交互趣味),共同为 [[LuxuryDeveloper]] 提供完整的品牌体验设计支撑。 -- Concepts linked: [[Story-Arc-Creation]], [[Emotional-Journey-Mapping]], [[Data-Storytelling]], [[Cross-Platform-Adaptation]], [[Motion-Graphics]], [[Visual-Pacing]], [[Progressive-Disclosure]], [[Brand-Narrative-Strategy]] -- Entities linked: [[Visual-Storyteller-Agent]], [[The-Agency]], [[LuxuryDeveloper]] -- Source page: wiki/sources/design-visual-storyteller.md -- Notes: index.md 已替换占位符条目(2026-04-20 → 2026-05-05);overview.md 已新增独立段落(置于 design-whimsy-injector 和 design-image-prompt-engineer 之间);无新 Entity/Concept 需创建(所有概念均为方法论术语,不足独立建页阈值);无内容冲突检测到 - -## [2026-05-05] ingest | UI Designer Agent Personality -- Source file: Agent/agency-agents/design/design-ui-designer.md -- Status: ✅ 成功摄入 -- Summary: UI Designer Agent 角色定义——视觉界面设计专家智能体,专注于视觉设计系统、组件库和像素级界面交付。核心交付物:设计令牌系统(CSS 变量管理颜色/字体/间距/阴影/过渡)、响应式设计框架(Mobile-first,4个断点 640/768/1024/1280px)、可访问性标准(WCAG AA,色彩对比度 4.5:1)、组件文档与设计 QA 流程。核心理念:Design System First(先建组件基础再创建界面)、Accessibility Built-In(从架构层面内置无障碍)、Developer Handoff(详细规格实现 90%+ 准确率)。与 [[design-brand-guardian]] 互补(品牌身份 vs 视觉执行),与 [[design-whimsy-injector]] 存在张力——前者追求 95%+ 视觉一致性,后者在规范内注入趣味元素,通过预定义可配置槽位协调。与 [[ArchitectUX]](技术架构)和 [[UX-Researcher]](用户研究)协同,构成 [[The Agency]] 设计部门完整设计支撑体系。 -- Concepts linked: [[Design-System]], [[Design-Tokens]], [[Visual-Hierarchy]], [[Responsive-Design]], [[WCAG-AA]], [[Component-Library]], [[Dark-Mode]], [[Design-QA]], [[Accessibility-First-Design]] -- Entities linked: [[The Agency]], [[ArchitectUX]], [[design-brand-guardian]], [[design-whimsy-injector]], [[UX-Researcher]], [[LuxuryDeveloper]] -- Source page: wiki/sources/design-ui-designer.md -- Notes: index.md 已新增 Sources 条目(置于 design-brand-guardian 之前);overview.md 已新增独立段落并替换原有 design-ux-architect 条目,新增 design-brand-guardian 条目,调整各 Agent 描述使其更准确;无新 Entity/Concept 需创建(Design-System/WCAG/Component-Library 等概念均在 Agency Agent 系统上下文中以方法论形式出现,不足独立建页阈值);与 [[design-whimsy-injector]] 存在一致性与趣味性的张力,已记录于 Contradictions 部分——通过预定义可配置槽位协调(如微交互动画) - -## [2026-05-05] ingest | Design Brand Guardian -- Source file: Agent/agency-agents/design/design-brand-guardian.md -- Status: ✅ 成功摄入 -- Summary: Brand Guardian Agent 角色定义——品牌战略与身份守护专家智能体,负责创建 cohesive 品牌体系、确保跨所有触点的品牌表达一致性、并通过品牌保护策略维护品牌价值。核心交付物:品牌战略框架(Purpose/Vision/Mission/Values/Personality 五要素)、视觉身份系统(CSS 变量定义的品牌色彩/字体/间距/Logo 变体)、品牌声音指南、品牌保护策略。核心原则:Brand-First(先建品牌基础再战术执行)、一致性优先(95%+ 触点保持一致)、战略性演进(随市场变化成长而不失核心身份)。与 [[design-whimsy-injector]] 互补(Brand Guardian 建边界,Whimsy Injector 在边界内注入个性),共同为 [[LuxuryDeveloper]] 提供完整品牌体验设计。与 [[ArchitectUX]](技术架构)和 [[UX-Researcher]](用户研究)协同,构成 [[The Agency]] 设计部门完整设计支撑体系。 -- Concepts linked: [[Brand-Strategy]], [[Visual-Identity-System]], [[Brand-Voice-Guidelines]], [[Brand-Protection-Strategy]] -- Entities linked: [[The Agency]], [[ArchitectUX]], [[design-whimsy-injector]], [[UX-Researcher]], [[LuxuryDeveloper]] -- Source page: wiki/sources/design-brand-guardian.md -- Notes: index.md 已替换占位符条目;overview.md 已新增独立段落(置于 design-whimsy-injector 和 multi-agent-system-reliability 之间);无新 Entity/Concept 需创建(Brand-Strategy/Visual-Identity-System/Brand-Voice-Guidelines/Brand-Protection-Strategy 及 ArchitectUX/LuxuryDeveloper 仅出现 1 次,不足建页阈值);与 [[design-whimsy-injector]] 存在品牌一致性与创意表达的张力,已记录于 Contradictions 部分——两者互补而非互斥 - -## [2026-04-24] ingest | Inclusive Visuals Specialist -- Source file: Agent/agency-agents/design/design-inclusive-visuals-specialist.md -- Status: ✅ 成功摄入 -- Summary: Inclusive Visuals Specialist Agent 角色定义——包容性视觉表征专家智能体,专门对抗 AI 图像/视频生成模型(Midjourney、Sora、Runway Gen-3、DALL-E)中内嵌的系统性刻板印象偏见,生成具有文化真实性、尊严感和无歧视性的人类视觉表征。核心挑战:克隆脸(Clone Faces)、异域化偏见(Exoticism Bias)、文化符号乱码、地理/建筑失真。核心技术:结构化提示词架构(Subject → Sub-actions → Context → Camera Spec → Color Grade → Explicit Exclusions)+ 负向提示库 + 视频物理学定义。四阶段工作流:Brief Intake → Annotation Framework → Video Physics Definition → 7-Point QA Review Gate。成功指标:表征准确度 100%、AI 伪影消除率 100%、社区验证认可。 -- Concepts created: [[InclusiveVisuals]], [[NegativePromptingLibrary]] -- Concepts linked: [[IntersectionalRepresentation]], [[CommunityValidation]], [[AIArtifactElimination]], [[PromptEngineering]] -- Entities linked: [[TheAgency]], [[Midjourney]], [[Sora]], [[Runway-Gen-3]], [[DALL-E]], [[InclusiveVisualsSpecialist]] -- Source page: wiki/sources/design-inclusive-visuals-specialist.md -- Notes: index.md 已替换占位符条目(2026-04-20 → 2026-04-24);overview.md 已新增 InclusiveVisualsSpecialist 独立段落(置于 design-image-prompt-engineer 和 design-brand-guardian 之间);新增 Concept 页面 [[InclusiveVisuals]] 和 [[NegativePromptingLibrary]];与 [[design-image-prompt-engineer]] 互补(摄影美学精准度 vs 消除表征偏见),与 [[design-whimsy-injector]] 存在张力——Kumbaya 库存照片套路和表演性象征主义是包容性设计必须坚决拒绝的 - -## [2026-04-24] ingest | UX Researcher Agent Personality -- Source file: Agent/agency-agents/design/design-ux-researcher.md -- Status: ✅ 成功摄入 -- Summary: UX Researcher Agent 角色定义——用户体验研究专家智能体,通过定性和定量研究方法验证设计决策。核心交付物:用户画像模板、用户旅程映射、可用性测试协议、A/B 测试框架。核心理念:研究方法论优先、证据优先沟通、研究推荐 80%+ 实施率。与 [[ArchitectUX]](技术架构)和 [[design-whimsy-injector]](品牌趣味)协同,共同为 [[LuxuryDeveloper]] 提供完整的用户中心设计支撑。 -- Concepts linked: [[Mixed-Methods Research]], [[Usability Testing]], [[User Persona]], [[User Journey Mapping]], [[Triangulation]], [[A/B Testing]], [[Accessibility Research]], [[Behavioral Analytics]], [[Research Repository]] -- Entities linked: [[Design Teams]], [[Product Teams]], [[Stakeholders]], [[The Agency]] -- Source page: wiki/sources/design-ux-researcher.md -- Notes: index.md 已新增 Sources 条目;overview.md 已新增独立段落(Multi-Agent AI Systems 主题下,置于 design-whimsy-injector 之前);无新 Entity/Concept 需创建(大多数概念和实体在源文档中出现次数不足建页阈值);与 [[design-whimsy-injector]] 存在设计理性与创意表达的互补张力,已记录于 Contradictions 部分 - -## [2026-05-05] ingest | Design Whimsy Injector -- Source file: Agent/agency-agents/design/design-whimsy-injector.md -- Status: ✅ 成功摄入 -- Summary: Whimsy Injector Agent 角色定义——品牌个性化和愉悦感注入专家,通过战略趣味设计为品牌体验增添个性、微交互和游戏化元素。核心交付物:品牌个性框架(专业/休闲/错误/成功四种场景人格光谱)、Whimsy 分类学(微妙/交互/发现/情境四类趣味)、微交互设计系统(CSS 动画 + 彩蛋 + 成就系统)。核心理念:有目的的趣味 + 包容性愉悦设计。与 [[ArchitectUX]] 互补,共同为 [[LuxuryDeveloper]] 提供完整品牌体验设计。 -- Concepts linked: [[Whimsy-Injector]], [[Micro-Interaction-Design]], [[Gamification-System]], [[Inclusive-Delight-Design]] -- Entities linked: [[ArchitectUX]], [[LuxuryDeveloper]], [[The Agency]] -- Source page: wiki/sources/design-whimsy-injector.md -- Notes: index.md 已替换占位符条目;overview.md 已新增独立段落(置于 design-ux-architect 和 multi-agent-system-reliability 之间);无新 Entity/Concept 需创建(ArchitectUX/LuxuryDeveloper/Micro-Interaction-Design 等仅出现 1 次,不足建页阈值);无内容冲突 - -## [2026-05-05] ingest | Contributing to The Agency -- Source file: Agent/agency-agents/CONTRIBUTING.md -- Status: ✅ 成功摄入 -- Summary: The Agency 多智能体框架贡献者指南英文原版——涵盖 Code of Conduct、四大贡献方式(创建智能体/优化现有/分享案例/报告问题)、智能体设计模板(YAML frontmatter + 结构化文档)、五大设计原则(鲜明性格/明确交付物/可量化指标/验证工作流/学习记忆)、PR 流程规范(单文件优先/Discussion 前置/提交前检查)、代码风格指南。 -- Concepts linked: [[Agent-Design-Principles]], [[Agent-Template]], [[Multi-Agent-Team]], [[Multi-Agent-System-Reliability]] -- Entities linked: [[The Agency]], [[OpenClaw]], [[msitarzewski]] -- Source page: wiki/sources/contributing.md -- Notes: index.md 已替换占位符条目;overview.md 已更新 contributing_zh-cn 条目,补充英文原版 wikilink;无新 Entity 需创建(msitarzewski/The Agency 仅出现 1 次,不足建页阈值);无实质内容冲突,与 contributing_zh-cn 差异属语言版本差异 - -## [2026-05-05] ingest | 为 The Agency 贡献代码 -- Source file: Agent/agency-agents/CONTRIBUTING_zh-CN.md -- Status: ✅ 成功摄入 -- Summary: The Agency 项目(agency-agents)贡献者指南,定义智能体设计规范、贡献流程和社区标准。核心贡献方式:创建全新智能体(8大分类)、优化现有智能体、分享成功案例、反馈问题。智能体设计五原则:鲜明性格、明确交付物、可量化指标、经过验证的工作流、学习记忆。PR 流程含提交前检查(真实场景测试、遵循模板、补充示例)、社区评审与迭代优化。 -- Concepts created: [[Agent-Design-Principles]], [[Agent-Template]] -- Entities created: none(The Agency 已在 Wiki 中存在引用,无需新建 Entity 页面) -- Concepts linked: [[Multi-Agent-System-Reliability]], [[Multi-Agent-Team]] -- Source page: wiki/sources/contributing_zh-cn.md -- Notes: index.md 已新增 Sources 条目;overview.md 已新增独立段落(Multi-Agent AI Systems 主题下,置于 multi-channel-assistant 之前);Agent-Design-Principles 和 Agent-Template 为新创建 Concept 页面;无 Entity 需创建;无冲突内容 - -## [2026-05-05] ingest | CTP Topic 12 Using SES SMTP service terraform module -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/03_Terraform/ctp-topic-12-using-ses-smtp-service-terraform-module.md -- Status: ✅ 成功摄入 -- Summary: Christian Deckelmann 和 Filos Christolakis 主讲,Micro Focus 团队通过 Terraform 模块自动化部署 AWS SES SMTP 服务以替代传统本地 SMTP 网关——SES 是网络安全部门唯一批准的云端邮件发送方案;Terraform 模块封装 SMTP 终端节点配置,支持现有应用程序通过标准 SMTP 协议集成;VPC 端点私有连接 + IAM 用户凭证转 SMTP 认证信息存储于 Secrets Manager;自动化 DKIM 验证和 Infoblox DNS 记录创建;两个手动步骤(脱离 Sandbox Mode + 手动更新 DNS TXT 记录);未来计划收件人限制和凭证滚动更新。 -- Concepts created: [[VPC-Endpoint]], [[DKIM-Email-Authentication]], [[SES-Sandbox-Mode]] -- Entities created: none(Christian Deckelmann、Filos Christolakis、Infoblox 出现频次不足建页阈值,以 wikilink 形式记录于 Source page) -- Concepts linked: [[Infrastructure-as-Code]], [[Secrets-Management]] -- Source page: wiki/sources/ctp-topic-12-using-ses-smtp-service-terraform-module.md -- Notes: index.md 已替换占位符条目(日期 2026-04-14);overview.md 已新增独立段落(Terraform 段落末尾,置于 RDS via Terraform 和 Topic 21 之间);VPC-Endpoint/DKIM-Email-Authentication/SES-Sandbox-Mode 为新创建 Concept 页面;Secrets-Management 已存在,已建立 wikilink;无其他 Entity 需创建 -- Conflicts: 与 [[ctp-topic-36-sendgrid-as-an-email-service]] 在邮件服务选型上的差异——SendGrid 被选定为新标准云邮件服务,SES 则服务现有应用通过 SMTP 协议平滑迁移上云,两者互补而非互斥 - -## [2026-05-05] ingest | design-ux-architect -- Source file: Agent/agency-agents/design/design-ux-architect.md -- Status: ✅ 成功摄入 -- Summary: ArchitectUX 智能体角色定义——为 LuxuryDeveloper 提供坚实的技术架构和 UX 基础。核心交付物:CSS 设计系统(颜色/排版/间距令牌,light/dark/system 三模式)、响应式布局框架(Grid/Flexbox/mobile-first)、ThemeManager JS 类、信息架构规范。核心原则:Foundation-First 和消除开发者架构决策疲劳。所有新站点强制要求主题切换功能。 -- Concepts linked: none(CSS 设计系统/ThemeManager 等属单一来源概念,以 wikilink 形式记录于 Source page,不足建 Concept 页阈值) -- Entities linked: [[ArchitectUX]], [[LuxuryDeveloper]], [[The Agency]] -- Source page: wiki/sources/design-ux-architect.md -- Notes: index.md 已替换占位符条目;overview.md 已新增独立段落(置于 multi-agent-system-reliability 之前);无新 Entity/Concept 需创建(ArchitectUX/LuxuryDeveloper 仅出现 1 次,不足建 Entity 页阈值);无实质内容冲突 - -## [2026-05-05] ingest | Learning Sessions Cloud Transformation Programme-20230808 183322-Meeting Recording -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/03_Terraform/learning-sessions-cloud-transformation-programme-20230808-183322-meeting-recordi.md -- Status: ✅ 成功摄入 -- Summary: JP 和 Raja M 主讲,CTP/SRE 团队通过 Terraform IaC 实现 ECS 容器化应用自动化部署——基于 Gruntwork 仓库构建 ECS 模块,支持 Docker 容器/EC2 部署;核心功能:自动扩缩容、自动故障恢复、金丝雀部署;Listener 集中管理方式;前置条件:VPC/ELB 安全组/EFS 卷挂载;集成 CloudWatch/Splunk/Grafana/Prometheus。ECS 作为 AWS 原生技术与 AWS 服务深度集成。 -- Concepts linked: [[Infrastructure-as-Code]], [[Canary-Deployment]], [[ECS-Module]] -- Entities linked: [[Gruntwork]], [[AWS]], [[Cloud-Transformation-Programme]] -- Source page: wiki/sources/learning-sessions-cloud-transformation-programme-20230808-183322-meeting-recordi.md -- Notes: index.md 已替换占位符条目;overview.md 已新增同主题 wikilink;JP 和 Raja M 各出现 1 次,不足独立 Entity 建页阈值,以 wikilink 形式记录于 Source page;无实质性内容冲突,ECS vs EKS 选型差异记录于 Contradictions 节 -- Conflicts: 与 [[ctp-topic-64-scaling-out-with-amazon-eks]] 在容器编排选型上的差异——ECS 强调 AWS 原生集成,EKS 强调可移植性,两者适用于不同场景但可互补 - -## [2026-05-05] ingest | CTP Topic 16 Cross-account Terraform modules -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/03_Terraform/ctp-topic-16-cross-account-terraform-modules.md -- Status: ✅ 成功摄入 -- Summary: Fibos 主讲,多账号 AWS 环境中跨账号 Terraform 模块的中心化部署方案——基于 Shared Account(共享账号)作为中转站,Jenkins + ECS Deploy Runner + Assume Role 三联动。核心机制:Jenkins 检测 `cross-account.json` 标记文件触发 ECS Deploy Runner,通过 Assume Role 访问目标账号的 TF state bucket accessor 和 cross-account ECS deploy runner role。三大目标:安全性(无 Workload 账号间直接信任)、自动化(Jenkins 自动识别模块类型)、可复用性(模块代码不硬编码特定账号角色)。 -- Concepts created: [[Cross-account-Terraform-Modules]] -- Entities created: none(Gruntwork 已存在) -- Source page: wiki/sources/ctp-topic-16-cross-account-terraform-modules.md -- Notes: index.md 已替换占位符条目;overview.md 已新增独立段落(置于 ECS Deployment 和 Topic 21 之间);Entity Jenkins/Fibos 提及次数不足建页阈值,以 wikilink 形式记录于 Source page;无实质性内容冲突,演进关系记录于 Contradictions 节 - -## [2026-05-05] ingest | Learning Sessions ECS Deployment using IAC - 20230808 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/03_Terraform/learning-sessions-ecs-deployment-using-iac-20230808-183322-meeting-recording.md -- Status: ✅ 成功摄入 -- Summary: JP 和 Raja M 主讲,CTP/SRE 团队通过 Terraform IaC 实现 ECS 容器化应用自动化部署——基于 Gruntwork 仓库构建 ECS 模块,支持 Docker 容器/EC2 部署;核心功能:自动扩缩容、自动故障恢复、金丝雀部署;Listener 集中管理方式;前置条件:VPC/ELB 安全组/EFS 卷挂载;集成 CloudWatch/Splunk/Grafana/Prometheus。ECS 作为 AWS 原生技术与 AWS 服务深度集成。 -- Concepts created: [[Canary-Deployment]], [[Infrastructure-as-Code]] -- Entities created: [[Gruntwork]] -- Source page: wiki/sources/learning-sessions-ecs-deployment-using-iac-20230808-183322-meeting-recording.md -- Notes: index.md 已替换占位符条目;overview.md 已新增独立段落(置于 Terraform 工具选型后);ECS 与 EKS 选型冲突记录于 Contradictions 节;JP 和 Raja M 各出现 1 次,不足独立 Entity 建页阈值,以 wikilink 形式记录于 Source page;无其他内容冲突 -- Conflicts: 与 [[ctp-topic-64-scaling-out-with-amazon-eks]] 在容器编排选型上的差异——ECS 强调 AWS 原生集成,EKS 强调可移植性,两者适用于不同场景但可互补 - -## [2026-05-05] ingest | CTP Topic 48 Terraform vs Terragrunt -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/03_Terraform/ctp-topic-48-terraform-vs-terragrunt.md -- Status: ✅ 成功摄入 -- Summary: Bob(AWS Solutions Architect)对比 Terraform 与 Terragrunt——Terraform(HashiCorp 出品)是云厂商无关的 Golang 应用,通过状态文件绑定期望状态与实际环境;Terragrunt 是轻量封装,贯彻 DRY 原则,管理 provider 和 remote_state 块减少跨环境重复声明。两者命令和语法高度一致,Terragrunt 通过减少硬编码优化大规模企业部署。辅助工具:Terraform Enterprise、Gruntwork、Atlantis、tfsec、Terratest -- Concepts created: [[DRY Principle]], [[State-File-Management]] -- Entities created: [[HashiCorp]], [[Terragrunt]], [[Atlantis]] -- Entities updated: [[Terraform]], [[Gruntwork]] -- Concepts updated: [[Infrastructure-as-Code]] -- Source page: wiki/sources/ctp-topic-48-terraform-vs-terragrunt.md -- Notes: 视频由 Gemini 摘要,原文状态为 "summarized (Gemini 摘要)";来源 NAS 路径为 `/volume2/work/Public Cloud Learning Sessions/CTP _ Topic 48_ Terraform vs Terragrunt.mp4` - -## [2026-05-12] ingest (complete) | Public Cloud Learning Sessions (OpenText) - AI Use Cases - 20241126 160106 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/09_Serverless_AI/public-cloud-learning-sessions-opentext-ai-use-cases-20241126-160106-meeting-rec.md -- Status: ✅ 成功摄入(完整版,含 Entity/Concept 页面创建) -- Summary: AWS AI 专家 Stephen Frank 分享 Gen2 生成式 AI 落地实践——AI 四代演进、Gen2 崛起两大驱动力(数据爆发+算力)、通用/企业 AI 应用场景、数据整合三大方法(RAG/Fine-tuning/持续预训练)、AWS 三层产品战略(基础设施/Bedrock/AI 应用)、负责任 AI 原则 -- Concepts created: Fine-Tuning.md -- Entities created: Stephen-Frank.md -- Entities updated: Amazon-Bedrock.md、Amazon-Q.md、Amazon-SageMaker.md(均追加来源引用) -- Concepts updated: Foundation-Models.md、Responsible-AI.md(均追加来源引用) -- Source page: wiki/sources/public-cloud-learning-sessions-opentext-ai-use-cases-20241126-160106-meeting-rec.md -- Notes: 步骤3完成:新建 source page(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md 第297行已有条目,补充日期前缀(2024-11-26)和一行摘要;步骤5完成:overview.md 第403行已有该来源详细综合摘要,内容一致无需修订;步骤6完成:新建 Stephen-Frank.md Entity 页面,更新 Amazon-Bedrock.md/Amazon-Q.md/Amazon-SageMaker.md 追加来源引用,index.md Entities 节追加 Stephen-Frank;步骤7完成:新建 Fine-Tuning.md Concept 页面,更新 Foundation-Models.md/Responsible-AI.md 追加来源引用,index.md Concepts 节追加 Fine-Tuning;步骤8完成:记录与 Generative AI & Prompt Engineering 分享的视角冲突(数据整合 vs Prompt Engineering);步骤9完成:log.md 追加记录 -- Conflicts: 与 [[public-cloud-learning-sessions-opentext-generative-ai-prompt-engineering-2024111.md]] 视角差异——Stephen Frank 强调数据整合是差异化关键;Prompt Engineering 分享更侧重技巧本身;当前观点:两者互补,数据整合决定 AI 能说什么,Prompt Engineering 决定 AI 怎么说 - -## [2026-05-05] ingest | Public Cloud Learning Sessions (OpenText) - AI Use Cases - 20241126 160106 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/09_Serverless_AI/public-cloud-learning-sessions-opentext-ai-use-cases-20241126-160106-meeting-rec.md -- Status: ✅ 成功摄入 -- Summary: AWS AI 专家 Stephen Frank 分享 Gen2 AI 发展驱动力(数据爆发+算力提升)、企业级 AI 应用场景(客户体验/洞察提取/流程自动化/内容生成)、AWS 三层产品战略(基础设施→Bedrock→AI 应用)、数据差异化策略(RAG/Fine-tuning/持续预训练)、Amazon Q 企业知识问答、负责任 AI 原则 -- Concepts linked: [[RAG]], [[Fine-Tuning]], [[Continued-Pre-Training]], [[Responsible-AI]] -- Entities linked: [[AWS]], [[Amazon-Bedrock]], [[Amazon-SageMaker]], [[Amazon-Q]], [[Stephen-Frank]] -- Source page: wiki/sources/public-cloud-learning-sessions-opentext-ai-use-cases-20241126-160106-meeting-rec.md -- Notes: index.md 已替换占位符条目(日期修正为 2026-04-14);overview.md 已新增独立段落(Serverless & AI 专题,置于提示工程后);RAG/Fine-Tuning/Responsible-AI/Stephen-Frank/Amazon-Q/Amazon-SageMaker 在 wiki 中出现频次不足独立建页阈值,以 wikilink 形式记录于 Source page;无内容冲突 -- Conflicts: 无 - -## [2026-05-05] ingest | Public Cloud Learning Sessions (OpenText) - Event Driven Architecture Part 2 - 20240917 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/09_Serverless_AI/public-cloud-learning-sessions-opentext-event-driven-architecture-part-2-2024091.md -- Status: ✅ 成功摄入 -- Summary: EDA 进阶实践——三组件(事件生产者/消费者/代理)、事件路由器(EventBridge/SNS)与事件存储(SQS/Kinesis)、编排与编排模式(Choreography vs Orchestration)、幂等性、事件排序、去中心化团队所有权、Fan-out 模式、竞争消费者模式、死信队列、EventBridge 最佳实践 -- Concepts updated: [[Event-Driven-Architecture]](补充 Part 2 内容:EDA 三组件、编排模式对比、生产级最佳实践:幂等性/事件排序/团队独立性、扩展 Event Patterns:Fan-Out/Competing Consumer/DLQ) -- Entities existing (no new): [[AWS]], [[Amazon-EventBridge]], [[Amazon-SQS]], [[Amazon-SNS]], [[AWS-Lambda]], [[AWS-Step-Functions]] -- Source page: wiki/sources/public-cloud-learning-sessions-opentext-event-driven-architecture-part-2-2024091.md -- Notes: index.md 已替换占位符条目(日期修正为 2026-05-05);overview.md 已添加 Part 2 独立段落(新增于 Serverless 段落和 Part 1 之间),同时更新 Part 1 引用指向 Part 2;Event-Driven-Architecture 概念页已更新 sources + last_updated,新增 EDA 三组件/编排模式/生产级最佳实践内容,扩展 Event Patterns;Kinesis-Data-Streams 出现 1 次,不足独立建 Entity 阈值,以 wikilink 形式记录于 Concept 页 -- Conflicts: 与 [[ctp-topic-64-scaling-out-with-amazon-eks]] 在扩展方式上的差异——EDA 通过事件驱动异步扩展(消费者按需处理),EKS 通过容器编排横向扩展(Pod 副本数调整),两者适用于不同场景但可互补使用 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/09_Serverless_AI/public-cloud-learning-sessions-opentext-event-driven-architecture-part-1-2024091.md -- Status: ✅ 成功摄入 -- Summary: EDA 入门——AWS 解决方案架构师 Dr. Anil Giri 介绍 EventBridge/SQS/SNS 事件驱动架构与 Enterprise Integration Patterns;会议因 Teams 屏幕共享故障仅完成开场介绍,完整演示参见 Part 2 -- Concepts linked: [[Event-Driven-Architecture]], [[Enterprise-Integration-Patterns]], [[Amazon-EventBridge]], [[Amazon-SQS]], [[Amazon-SNS]] -- Entities linked: [[Dr.-Anil-Giri]], [[AWS]], [[OpenText]], [[Micro-Focus]] -- Source page: wiki/sources/public-cloud-learning-sessions-opentext-event-driven-architecture-part-1-2024091.md -- Notes: index.md 已替换占位符条目(日期修正为 2026-04-19);overview.md 已补充(Serverless & AI 专题段落新增,置于无服务器计算后);Dr. Anil Giri/AWS/OpenText/Micro Focus 在 wiki 中出现频次不足独立建 Entity 页阈值,以 wikilink 形式记录于 Source page;EventBridge/SQS/SNS/Enterprise-Integration-Patterns 概念频次不足独立建 Concept 页阈值;已建立与 Part 2(public-cloud-learning-sessions-opentext-event-driven-architecture-part-2-2024091)、无服务器计算(public-cloud-learning-sessions-opentext-serverless-computing-20240903-160139-mee)的 Connections 关系;冲突记录与 ctp-topic-64-scaling-out-with-amazon-eks 的扩展方式差异已记录于 Contradictions 节 -- Conflicts: 与 [[ctp-topic-64-scaling-out-with-amazon-eks]] 在扩展方式上的差异——EDA 通过事件驱动异步扩展,EKS 通过容器编排横向扩展,两者适用于不同场景但可互补使用 - -## [2026-05-05] ingest | Public Cloud Learning Sessions - Serverless Computing - 20240903 -- Status: ✅ 成功摄入 -- Summary: AWS 无服务器计算深度解析——Lambda 事件驱动模型(同步/异步/事件源映射)、Step Functions 状态机编排(Standard/Express)、API Gateway(边缘优化/区域/私有)、SAM 本地开发和部署;Serverless 业务价值(快速上市/按需付费/自动扩展/内置安全);AWS 与客户共担运维责任 -- Entities created: [[AWS-Lambda]], [[AWS-Step-Functions]], [[Amazon-API-Gateway]], [[SAM-Serverless-Application-Model]] -- Concepts linked: [[Serverless-Computing]], [[Event-Driven-Architecture]] -- Source page: wiki/sources/public-cloud-learning-sessions-opentext-serverless-computing-20240903-160139-mee.md -- Notes: index.md 已更新(替换占位符条目,日期修正为 2026-04-14);overview.md 已补充(Cloud Transformation & DevOps 章节新增独立段落,置于 AI/ML 入门与 CTP Topic 20 之间);Entity 页均按字母顺序插入 index.md Entities 节;无内容冲突(Serverless-Computing 概念页已存在,内容一致) -- Conflicts: 无 - -## [2026-05-05] ingest | Public Cloud Learning Sessions - Introduction to AI/ML with AWS -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/09_Serverless_AI/public-cloud-learning-sessions-introduction-to-artificial-intelligence-ai-machin.md -- Status: ✅ 成功摄入 -- Summary: AWS AI/ML 与生成式 AI 入门——AI 定义(复制人类智能任务的系统)、三类 AI(分类/预测/生成式 AI)、AWS 20 年 ML 积累、Amazon Bedrock 全托管服务(Titan 基础模型+微调+持续预训练+RAG+Agents+Guardrails)、SageMaker Canvas 无代码工具、ML Ops 数据/训练/推理三流水线 -- Concepts linked: [[RAG]], [[MLOps]], [[Foundation-Models]], [[Amazon-Bedrock]], [[Amazon-SageMaker-Canvas]], [[Responsible-AI]] -- Entities linked: [[AWS]], [[Amazon-Bedrock]], [[Amazon-Titan]] -- Source page: wiki/sources/public-cloud-learning-sessions-introduction-to-artificial-intelligence-ai-machin.md -- Notes: index.md 已更新(替换占位符条目);overview.md 已补充(Cloud Transformation & DevOps 章节新增 Serverless & AI 专题段落,置于 FinOps 后);Suraav Paul/AWS Senior Solutions Architect 仅出现 1 次,以 wikilink 形式记录于 Source page;RAG/MLOps/Responsible AI 频次不足独立建页阈值;本来源属于 Cloud Transformation Programme 的 Serverless & AI 专题(09_Serverless_AI);无内容冲突 -- Conflicts: 无 - -## [2026-05-05] ingest | Cloud Learning Master Index -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/_Index/cloud-learning-master-index.md -- Status: ✅ 成功摄入 -- Summary: OpenText/微焦点云转型学习会话视频总索引——NAS 源 `/volume2/work/Public Cloud Learning Sessions/`,覆盖 10 大技术领域共 111 个视频:AWS Landing Zone(22)、OpenText Series(21)、EKS & Kubernetes(14)、Security(9)、Networking(9)、Serverless & AI(9)、FinOps & Cost(10)、CI/CD & GitOps(8)、IAM & Identity(3)、Terraform & IaC(6)。该索引是所有 CTP 专题视频的元数据入口。 -- Concepts created: 无(所有关键技术概念已通过其他来源创建独立页面;该索引为元数据文件,无需新建 Concept) -- Source page: wiki/sources/cloud-learning-master-index.md -- Notes: index.md 已更新(Sources 节新增条目置于顶部);overview.md 已补充(Cloud Transformation & DevOps 章节新增 cloud-learning-master-index 段落);CTP-Team 和 OpenText 以 wikilink 形式记录于 Source page(出现次数不足独立建页阈值);Cloud-Transformation-Programme 已通过 Micro Focus Entity 页覆盖;无内容冲突 -- Conflicts: 无 - -## [2026-05-05] ingest | CTP Topic 27 AWS Instance Scheduler -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/05_FinOps/ctp-topic-27-aws-instance-scheduler.md -- Status: ✅ 成功摄入 -- Summary: AWS Instance Scheduler 原生方案——通过 CloudFormation + CloudWatch Events(每15分钟)+ Lambda + DynamoDB 调度配置表,自动定时启停 EC2/RDS 实例;通过标签(Schedule/Period)关联调度规则;由 Guardrails 框架自动推送至公司月消费10美元以上账号;基于"时间表"而非"空闲率"触发;RDS 维护窗口智能协同;关机行为必须设为"停止"而非"终止" -- Concepts created: 无(所有概念仅出现 1 次,以 wikilink 形式记录于 Source page) -- Source page: wiki/sources/ctp-topic-27-aws-instance-scheduler.md -- Notes: index.md 已更新(替换占位符条目,日期修正为 2026-04-14);overview.md 已补充(FinOps 章节新增段落,置于 ctp-topic-63 后);已建立与 ctp-topic-13(政策框架)、ctp-topic-63(Terraform Scheduler 互补)、ctp-topic-71(RightSizing 互补)的 Connections 关系;冲突记录:与 ctp-topic-63 在实现路径上的差异(AWS 原生 vs Terraform 层)已于 Contradictions 节说明为互补而非互斥 -- Conflicts: 与 [[ctp-topic-63-optimise-resource-cost-using-automation]] 就 EC2/RDS 自动调度的实现路径差异——Instance Scheduler(AWS 原生方案)覆盖广账户层,Terraform Scheduler(IaC 层)提供细粒度控制,两者互补而非互斥 - -## [2026-04-30] ingest | Public Cloud Learning Sessions - Budget Control - 20240319 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/05_FinOps/public-cloud-learning-sessions-budget-control-20240319-160204-meeting-recording.md -- Status: ✅ 成功摄入 -- Summary: AWS 账户预算控制自动化解决方案 — 通过 AWS Budget + SNS + Lambda + Step Functions 实现多层级告警(forecast/actual/severe/enforcement)和 SCP 强制执行,引入评分系统和宽限期避免误罚,支持细粒度资源级和用户级成本可视化 -- Concepts created: FinOps, AWS Budget Service, Service Control Policy (SCP), Source Identity, Scoring System, Grace Period -- Entities mentioned: Daniela, Evan, Alan, Daniel, Oli, FinOps Team, SRE Core Team -- Source page: wiki/sources/public-cloud-learning-sessions-budget-control-20240319-160204-meeting-recording.md -- Notes: Source Identity 属性可在多角色切换场景下追踪原始登录身份;Top Services Report 数据来源于 Athena,Top Users Report 数据来源于 Cost Explorer;预算评估每 8 小时执行一次 - -## [2026-04-29] ingest | CTP Topic 63 Optimise resource cost using automation -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/05_FinOps/ctp-topic-63-optimise-resource-cost-using-automation.md -- Status: ✅ 成功摄入 -- Summary: 使用自动化手段优化 AWS 云资源成本——五大策略:批准区域标准化、Graviton ARM 实例选型(比 Intel 便宜 20-25%)、承诺计划(1年 40% / 3年 64% 折扣)、GP2→GP3 存储优化(节省 20%)、基于标签的 EC2/RDS 自动化调度(每天只运行 10 小时可节省 70% 成本) -- Concepts created: 无(已存在的 [[Savings-Plans]] 涵盖承诺计划;Graviton/RightSizing 等概念在本 wiki 中出现频次不足以独立建页) -- Source page: wiki/sources/ctp-topic-63-optimise-resource-cost-using-automation.md -- Notes: Pushka 演示 Terraform Scheduler 模块配置(`auto_shutdown = yes` 标签);无内容冲突 - -## [2026-04-24] ingest | Public Cloud Learning Sessions - Best practices for EC2 cost optimization in AWS - 20240529 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/05_FinOps/public-cloud-learning-sessions-best-practices-for-ec2-cost-optimization-in-aws-2.md -- Status: ✅ 成功摄入 -- Summary: Mike Dukes 和 Steele Taylor(AWS 专家)主讲 EC2 成本优化最佳实践——AWS Nitro 系统外部化网络/存储/安全组件提升效率;Graviton ARM 处理器基于 ARM64 架构,提供 40% 性价比提升,功耗减少 60%;EC2 Spot 实例利用闲置容量提供 90% 折扣;购买选项包括 On-Demand/Savings Plans/Spot Instances;Spot Invaders 游戏展示容错混沌工程实践;Spot + Graviton + 容器组合实现最大化成本节省 -- Concepts created: [[Nitro-System]], [[EC2-Purchase-Options]] -- Concepts linked: [[Graviton]], [[Spot Instances]], [[Savings Plans]], [[FinOps]], [[Cloud Cost Optimization]] -- Entities identified: Mike Dukes 和 Steele Taylor 为演讲者,但提及次数不足 2 次,以 wikilink 形式记录于 Source page -- Source page: wiki/sources/public-cloud-learning-sessions-best-practices-for-ec2-cost-optimization-in-aws-2.md -- Notes: index.md 已更新(Sources 节新增条目);overview.md 已补充(FinOps 章节新增段落,置于 ctp-topic-13 后);Nitro-System 和 EC2-Purchase-Options 不存在于现有 Wiki,新建 Concept 页面;已建立与 public-cloud-learning-sessions-reducing-cloud-costs-20250318-170100-meeting-reco、ctp-topic-13-cloud-finops-policies 的 Connections 关系 -- Conflicts: 与 ctp-topic-14-octane-hub-on-aws 可能的冲突(Graviton 对有状态服务的适用性),已记录于 Source page Contradictions 节 - -## [2026-04-25] ingest | Public Cloud Learning Sessions - Storage Cost Optimization - 20240305 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/05_FinOps/public-cloud-learning-sessions-storage-cost-optimization-20240305-160037-meeting.md -- Status: ✅ 成功摄入 -- Summary: AWS EBS(GP3 20% 节省+独立扩展 IOPS/吞吐)、EFS/FSx(生命周期分层)、S3(Intelligent Tiering 自动冷热迁移+生命周期策略+PrivateLink 规避数据传输费)、ADM 三阶段迁移案例(OpenZFS → 自管理 NetApp on EC2 → FSx for NetApp ONTAP 实现 60% 成本削减) -- Concepts linked: [[EBS-GP3]], [[EBS-Snapshot-Archive]], [[Data-Lifecycle-Manager]], [[AWS-Backup]], [[EFS-Infrequent-Access]], [[S3-Intelligent-Tiering]], [[S3-Lifecycle-Policies]], [[FSx-for-NetApp-ONTAP]], [[AWS-PrivateLink]], [[FinOps]], [[Cloud Cost Optimization]] -- Entities linked: [[AWS]], [[ADM]] -- Source page: wiki/sources/public-cloud-learning-sessions-storage-cost-optimization-20240305-160037-meeting.md -- Notes: index.md 已更新(Sources 节新增条目,置于 ctp-topic-71 前);overview.md 已补充(FinOps 章节新增存储成本优化专题段落);ADM 提及仅 1 次,以 wikilink 形式记录于 Source page;所有 AWS 服务特性概念(EBS-GP3/Snapshot-Archive/EFS-IA/S3-IntelligentTiering 等)已记录于 Source page Key Concepts 节,暂不单独建页;已建立与 public-cloud-learning-sessions-reducing-cloud-costs-20250318、ctp-topic-13-cloud-finops-policies 的 Connections 关系 -- Conflicts: 与 ctp-topic-14-octane-hub-on-aws 可能的 EFS vs EBS 选型冲突,已记录于 Source page Contradictions 节 - -## [2026-04-25] ingest | Public Cloud Learning Sessions - Reducing Cloud Costs - 20250318 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/05_FinOps/public-cloud-learning-sessions-reducing-cloud-costs-20250318-170100-meeting-reco.md -- Status: ✅ 成功摄入 -- Summary: Vinay(FinOps)主讲 AWS 云成本优化——工作负载优化(现代化:EC2 新代际/Graviton 20-25% 节省/AMD 6-10% 节省/GP2→GP3 存储 20% 节省/EKS 最新版避免扩展支持费/Spot 实例 90% 折扣)和 Right Sizing(EC2 Right Sizing 报告/实例调度/闲置资源清理);费率优化(Savings Plans/RI 两种承诺类别 + 实施流程);关键规则:承诺计划仅无预付选项,最低 $5k/年,仅 Phenops 团队实施 -- Concepts created: [[Savings-Plans]], [[Spot-Instances]] -- Concepts linked: [[Cloud Cost Optimization]], [[Graviton]], [[Right Sizing]], [[EKS Extended Support]], [[EDP (Enterprise Discount Program)]] -- Entities created: [[Vinay]], [[Phenops-Team]] -- Entities linked: [[AWS]] -- Source page: wiki/sources/public-cloud-learning-sessions-reducing-cloud-costs-20250318-170100-meeting-reco.md -- Notes: index.md 已更新(Sources 节新增条目,Entities 节新增 Phenops-Team 和 Vinay,Concepts 节新增 Savings-Plans 和 Spot-Instances);overview.md 已补充(FinOps 章节新增段落,Key Entities 新增 Vinay 和 Phenops-Team);Graviton/Spot-Instances/Savings-Plans 均满足 Concept 可复用条件,新建页面;Vinay 出现 ≥2 次新建 Entity,Phenops-Team 出现 ≥2 次新建 Entity;与 [[ctp-topic-13-cloud-finops-policies]] 构成政策层→技术实施层互补关系,已记录于 Connections;无内容冲突 -- Conflicts: 无 - -## [2026-04-25] ingest | CTP Topic 13 Cloud FinOps Micro Focus Policies best practices to optimize the costs -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/05_FinOps/ctp-topic-13-cloud-finops-micro-focus-policies-best-practices-to-optimize-the-co.md -- Status: ✅ 成功摄入 -- Summary: PCG 团队 Uday 和 Vinay 主讲 Cloud FinOps 成本优化政策与最佳实践;PCG 三层服务模型(成本管理→成本优化→治理与自动化);5 大核心策略(账单可见性、标签合规、预算责任、Reserved Instances 集中管理、区域限制);安全控制(Godrails/MFA/告警重定向);Cloud Health 工具;标准化实例选型 + Graviton;研发环境三合一优化 -- Concepts identified: [[FinOps(云财务管理)]](已存在)、[[Showback/Chargeback]](已有引用) -- Entities identified: [[PCG]](提及但 <2 次)、[[Cloud-Health]](提及但 <2 次) -- Source page: wiki/sources/ctp-topic-13-cloud-finops-micro-focus-policies-best-practices-to-optimize-the-co.md -- Notes: PCG 和 Cloud Health 出现次数不足 2 次,不满足独立 Entity 页面创建条件,以 wikilink 形式记录于 Source page;index.md 已更新(替换 expected 条目为实际内容);overview.md Cloud Transformation 章节已补充(置于 ctp-topic-65 后);已建立与 ctp-topic-63(自动化调度优化)、ctp-topic-71(Rightsizing)、ctp-topic-27(AWS Instance Scheduler)的连接关系;FinOps 概念页已存在于 wiki/concepts/,无需新建 -- Conflicts: 与 [[ctp-topic-53-why-bother-with-cloud]] 存在视角差异:Topic 13 假设已在云上聚焦优化,Topic 53 聚焦是否应迁移的决策论证;已在 Source page Contradictions 节记录 - -## [2026-04-26] ingest | Public Cloud Learning Sessions - Budget Control - 20240319 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/05_FinOps/public-cloud-learning-sessions-budget-control-20240319-160204-meeting-recording.md -- Status: ✅ 成功摄入 -- Summary: SRE Core 团队(Daniela/Evan/Alan)分享 AWS Budget Control 自动化——解决账户蔓延导致的成本失控。核心架构:AWS Budget → SNS → Lambda → Step Functions → SCP Enforcement(服务控制策略封禁新资源创建)。4 类告警:Forecast/Actual 80-98%/Severe/Enforcement。Source Identity 通过 CloudTrail 追踪联邦登录跨角色切换的原始用户身份。初始范围仅限 Lab 账户。 -- Concepts created: [[AWS-Source-Identity]] -- Concepts linked: [[FinOps]], [[SCP-Enforcement]], [[CloudTrail]], [[Step-Functions]], [[Cost-Explorer]], [[AWS-Budget-Alerts]] -- Entities linked: [[SRE-Core-Team]], [[Phenops-Team]], [[NetIQ]] -- Source page: wiki/sources/public-cloud-learning-sessions-budget-control-20240319-160204-meeting-recording.md -- Notes: index.md 已更新(Sources 节新增条目,Concepts 节新增 AWS-Source-Identity);overview.md 已补充(FinOps 章节新增段落,置于 reducing-cloud-costs-20250318 后);AWS-Source-Identity 为 Source Identity 追踪机制的完整概念页,满足可复用条件;已建立与 ctp-topic-13(治理自动化政策层)、ctp-topic-63(主动优化)、reducing-cloud-costs-20250318(优化手段)的 Connections 关系;无内容冲突 - -## [2026-04-25] ingest | CTP Topic 15 Working with Renovatebot -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/06_CI_CD_GitOps/ctp-topic-15-working-with-renovatebot.md -- Status: ✅ 成功摄入 -- Summary: Paul Hopkins 主讲 Renovate Bot 自动化管理云原生基础设施依赖项更新;解决"依赖地狱"问题,实时扫描 Docker/Terraform/Terragrunt/pre-commit 版本标签并自动发起 Pull Request;通过 Dependency Dashboard 提供全局依赖状态视图;集成 Jenkins 流水线,使用 Podman 容器化运行并配置 Rate Limiting -- Concepts created: [[Renovate-Bot]], [[Dependency-Management]], [[Semantic-Versioning]] -- Source page: wiki/sources/ctp-topic-15-working-with-renovatebot.md -- Notes: Renovate-Bot 出现在 6 个以上来源中(index 有 416 行引用记录),满足 ≥2 次条件,创建独立 Concept 页面;Dependency-Management 和 Semantic-Versioning 作为支撑概念也一并创建;index.md 和 overview.md 均已更新;已建立与 ctp-topic-9(Gruntwork CI/CD)、ctp-topic-33(GitOps 入门)、ctp-topic-32(Atlantis CI/CD)的连接关系;Gruntwork 已有 Entity 页面(wiki/entities/Gruntwork.md),无需新建 -- Conflicts: (暂无) - -## [2026-04-24] ingest | Public Cloud Learning Sessions - Ollie Workflow and The Demand Process - 20240416 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/06_CI_CD_GitOps/public-cloud-learning-sessions-ollie-workflow-and-the-demand-process-20240416-16.md -- Status: ✅ 成功摄入 -- Summary: Oli 工作流(超大规模云厂商支出审批三级工作流)+ 需求管理自动化端到端流程(ITIL 框架、Octane/Qixi 提交入口、主服务目录嵌入 SMACs、"机器做机器能做的事"理念) -- Concepts identified: [[Demand-Management]], [[ITIL-Service-Management]], [[FinOps]], [[SMACs]] -- Entities identified: [[Tom-Bice]], [[FPNA-Team]], [[MUI]], [[Shannon]], [[Octane]], [[Qixi]] -- Source page: wiki/sources/public-cloud-learning-sessions-ollie-workflow-and-the-demand-process-20240416-16.md -- Notes: entities 和 concepts 目录均为空(无历史页面);未满足 ≥2 次出现条件,不新建独立页面,以 wikilink 形式记录于 Source page;index.md 已更新;overview.md Cloud Transformation 章节已补充(置于 ctp-topic-57 后);已建立与 ctp-topic-57(Backlog 管理管道)、ctp-topic-65(价值量化)、public-cloud-learning-sessions-applicable-business-analysis-techniques-20240109(需求分析前置技法)、ctp-topic-4(敏捷实践)的连接关系 -- Conflicts: (暂无) - -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/06_CI_CD_GitOps/ctp-topic-3-deploy-and-maintain-infrastructure.md -- Status: ✅ 成功摄入 -- Summary: Landing Zone 环境下通过 Terraform/Terragrunt 实现基础设施部署与维护的完整方法论;核心区分 Service Module(业务视角)与 Regular Module(技术视角)的分层抽象;Terragrunt HCL 版本锁定;Service Catalog 三级复用(单账户→产品团队→跨团队) -- Concepts identified: [[Service Module]], [[Service Catalog]], [[Terragrunt]], [[Infrastructure as Code]], [[Terraform Module]] -- Entities identified: [[Gruntwork]], [[AWS Landing Zone]] -- Source page: wiki/sources/ctp-topic-3-deploy-and-maintain-infrastructure.md -- Notes: 已建立与 ctp-topic-1(Gruntwork LZ 架构)、ctp-topic-9(CI/CD with Gruntwork)、ctp-topic-32(Atlantis CI/CD)、ctp-topic-33(GitOps 入门)、ctp-topic-39(EKS Atlantis 约束差异)的连接关系;Service Module/Service Catalog 仅出现 1 次,不满足 ≥2 次建页条件,以 wikilink 形式记录于 Source page;index.md 已更新;overview.md Cloud Transformation & DevOps 章节已更新 -- Conflicts: 与 [[ctp-topic-39-implementing-eks-in-the-aws-lab-landing-zone]] 存在 Atlantis EKS 支持约束差异(Topic 3 通用原则 vs Topic 39 具体实践) - -## [2026-04-24] ingest | CTP Topic 9 CI CD with Gruntwork -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/06_CI_CD_GitOps/ctp-topic-9-ci-cd-with-gruntwork.md -- Status: ✅ 成功摄入 -- Summary: CTP Topic 9 CI/CD 与 Gruntwork 在 AWS Landing Zone 中的实践视频;源文档状态为"待 Whisper 转录",基于文件元数据生成初始页面 -- Concepts identified: [[CI/CD Pipeline]], [[Infrastructure as Code]], [[Gruntwork]], [[Terraform]], [[Terragrunt]] -- Entities identified: [[Gruntwork]], [[AWS Landing Zone]], [[Cloud Transformation Programme]] -- Source page: wiki/sources/ctp-topic-9-ci-cd-with-gruntwork.md -- Notes: 源视频待转录,Key Claims/Key Quotes 为占位内容;已建立与 ctp-topic-1(Gruntwork LZ 架构)、ctp-topic-2(Git)、ctp-topic-33(GitOps 入门)、ctp-topic-32(Atlantis CI/CD)的连接关系;index.md 已更新;overview.md Cloud Transformation & DevOps 章节已更新;无需新建 Entity/Concept 页面 -- Conflicts: (暂无,待视频转录后补充) - -## [2026-04-14] ingest | CTP Topic 32 Using Atlantis CICD for Infrastructure Deployments -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/06_CI_CD_GitOps/ctp-topic-32-using-atlantis-cicd-for-infrastructure-deployments.md -- Status: ✅ 成功摄入 -- Summary: Atlantis 替代 Jenkins 用于 Terraform IaC 部署的 CTP 学习视频,涵盖 Atlantis 架构(单 EC2 + GitHub Webhook)、PR 评论式协作模型、跨账户 IAM 角色访问、并行构建、模块锁定机制 -- Concepts identified: [[GitOps]], [[Infrastructure-as-Code]], [[CI/CD Pipeline]], [[Terraform]] -- Source page: wiki/sources/ctp-topic-32-using-atlantis-cicd-for-infrastructure-deployments.md -- Notes: Source page 已创建;index.md 已更新(Sources 节顶部);overview.md Cloud Transformation & DevOps 章节已更新;GitOps.md sources 列表已更新;已识别与 ctp-topic-39(EKS 不支持 Atlantis)的矛盾点并记录于 Contradictions 节 -- Conflicts: [[ctp-topic-39-implementing-eks-in-the-aws-lab-landing-zone]](Atlantis 不支持 EKS 部署 vs Atlantis 可替代 Jenkins 全面部署) - -## [2026-04-14] ingest | CTP Topic 2 Git -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/06_CI_CD_GitOps/ctp-topic-2-git.md -- Status: ✅ 成功摄入 -- Summary: CTP Topic 2 Git 版本控制系统基础与实践视频讲座,作为 CI/CD/GitOps 系列开篇;源文档状态为"待 Whisper 转录" -- Concepts identified: [[Git]], [[Version Control]], [[DevOps]] -- Entities identified: [[Cloud Transformation Programme]] -- Source page: wiki/sources/ctp-topic-2-git.md -- Notes: 源视频待转录,Key Claims/Key Quotes 为占位内容;已建立与 ctp-topic-9(CI/CD with Gruntwork)和 ctp-topic-33(GitOps 入门)的连接关系;index.md 已更新,overview.md Cloud Transformation & DevOps 章节已更新 - -## [2026-04-14] ingest | CTP Topic 24 Micro Focus Product Privacy Framework -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/07_Security/ctp-topic-24-micro-focus-product-privacy-framework.md -- Status: ✅ 成功摄入 -- Summary: Micro Focus 产品隐私框架在云转型中的应用——PSAC 与法律顾问合作,将 GDPR/CCPA 等晦涩法律条款翻译为约 110 项低级别技术要求;隐私框架是 STLC(安全开发生命周期)中 13 个安全与隐私轨道之一;通过五类需求(架构类/文档类/法律类/实现类/SAS 运营类)和成熟度模型(0-4 级)评估产品隐私合规状态;通过"蜘蛛图"直观展示产品隐私 KPI 合规现状 -- Concepts identified: [[Product Privacy Framework(产品隐私框架)]], [[STLC(Security Development Life Cycle)]], [[PSAC(Product Security Advisory Committee)]], [[PII(Personally Identifiable Information)]], [[Maturity Model(成熟度模型)]], [[Spider Chart(蜘蛛图)]], [[Product Privacy Settings Document]], [[Data Controller vs. Data Processor]], [[Anonymization & Pseudonymization]] -- Entities identified: [[Micro Focus]], [[Shlomi Ben-Hur]] -- Source page: wiki/sources/ctp-topic-24-micro-focus-product-privacy-framework.md -- Notes: 无冲突检测;CTP Topic 21 和 Topic 24 均由 Shlomi Ben-Hur 主讲,PSAC 作为产品安全顾问委员会在多个 topic 中出现,实体创建条件待后续评估;STLC 作为 SDLC 的安全扩展已有提及,本次独立建 Concept 页面;overview.md 已更新,新增条目和 Key Concepts/Entities - -## [2026-04-24] ingest | CTP Topic 49 Container Lifecycle Hardening Standards -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/07_Security/ctp-topic-49-container-lifecycle-hardening-standards.md -- Status: ✅ 成功摄入 -- Summary: Micro Focus 产品安全小组 Ashish 主讲,容器镜像构建阶段 11 条安全加固标准——基础镜像选择、Init 系统(tini 防止僵尸进程)、只读根文件系统(readOnlyRootFilesystem: true)、emptyDir Volume、禁用 Kubernetes API 自动挂载(automountServiceAccountToken: false)、私有服务账号+RBAC、避免 hostNetwork/hostPort -- Concepts created: [[Container-Lifecycle-Hardening]], [[Pod-Security-Context]], [[emptyDir-Volume]] -- Entities created: [[Ashish]], [[Product-Security-Group]], [[tini]] -- Source page: wiki/sources/ctp-topic-49-container-lifecycle-hardening-standards.md -- Notes: 与 [[ctp-topic-39-implementing-eks-in-the-aws-lab-landing-zone]] 就 hostNetwork 配置存在场景冲突(Topic 39 Lab 环境特例 vs Topic 49 通用最佳实践);检测到 3 个潜在概念(Container-Lifecycle-Hardening/Pod-Security-Context/emptyDir-Volume)和 3 个实体(Ashish/Product-Security-Group/tini),均已创建 Entity/Concept 页面;overview.md 已更新 - -## [2026-04-14] ingest | CTP Topic 21 Supply Chain Security in Micro Focus -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/07_Security/ctp-topic-21-supply-chain-security-in-micro-focus.md -- Status: ✅ 成功摄入 -- Summary: Micro Focus 软件供应链安全新方法——供应链(产品层面)涵盖 SCM/CI/CD 全环节;驱动因素:SolarWinds 攻击事件、美国网络安全行政命令、AWS/SaaS 迁移风险;安全观念转变:从 99% 关注研发安全转向全生命周期防护;供应链安全成为 SDL 第五支柱,强调 CI 和 CD 过程完整性 -- Concepts identified: [[Supply Chain Security(供应链安全)]], [[SolarWinds Hack]], [[CI/CD Security]], [[SDL(Security Development Lifecycle)]], [[Executive Order on Cybersecurity]], [[Lateral Movement]] -- Entities identified: [[Micro Focus]], [[Shlomi Ben-Hur]] -- Source page: wiki/sources/ctp-topic-21-supply-chain-security-in-micro-focus.md -- Notes: 无冲突检测;Micro Focus 已在多处来源提及但无独立 Entity 页面,本次补充创建;SolarWinds/Shlomi Ben-Hur 仅出现一次,不满足 Entity 创建条件 - -## [2026-04-24] ingest | CTP Topic 52 3 Lines of Defence (3LoD) Framework Cloud Security Posture Management -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/07_Security/ctp-topic-52-3-lines-of-defence-3lod-framework-cloud-security-posture-management.md -- Status: ✅ 成功摄入 -- Summary: 3LoD 安全治理框架落地(业务单元→集团职能部门→审计三层责任分层)+ Cloud Guard CSPM 工具选型(态势管理/资产管理/网络可视化/事件管理/威胁情报)+ 新账户创建流程中自动纳入 Cloud Guard -- Concepts identified: [[Three Lines of Defence(3LoD)]], [[Cloud Security Posture Management(CSPM)]] -- Source page: wiki/sources/ctp-topic-52-3-lines-of-defence-3lod-framework-cloud-security-posture-management.md -- Notes: 无冲突内容;3LoD/CSPM 均属行业通用概念,已有 CSPM 相关内容于 cloud-security.md;Cloud Guard 为该组织专用 CSPM 工具,暂不单独建 Entity 页面 - -## [2026-04-24] ingest | CTP Topic 55 AWS Firewall Manager -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/07_Security/ctp-topic-55-aws-firewall-manager.md -- Status: ✅ 成功摄入 -- Summary: AWS Firewall Manager 在 Grand Torque 多 Landing Zone 环境中的集中化安全策略管理实践——跨 RLABS/R&D/SAS/CAT 多个 Landing Zone 统一部署基线安全组;三种策略类型(通用/审计强制/清理冗余);通过 AWS Config + Lambda 实现自动修复;RAM 前缀列表跨账户共享规则;独立 Firewall Manager 账户支持跨 LZ 部署;Demo 展示 EC2 实例安全组的自动附加与移除 -- Concepts identified: [[Security-Group]], [[Prefix-List]], [[Auto-Remediation]], [[WAF-Rules-Management]] -- Entities identified: [[AWS-Firewall-Manager]], [[Landing-Zones]], [[QALIS]], [[Checkpoint-Firewall]] -- Source page: wiki/sources/ctp-topic-55-aws-firewall-manager.md -- Notes: 无冲突检测;与 [[ctp-topic-10-aws-landing-zone-lz-data-collection-tagging-related-security]] 中的 Checkpoint 方案属互补关系(网络边界防火墙 vs 实例级安全组基线),已于 Contradictions 节记录 - -## [2026-04-30] ingest | CTP Topic 37 Secrets Certificates Management -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/07_Security/ctp-topic-37-secrets-certificates-management.md -- Status: ✅ 成功摄入 -- Summary: 云转型计划密钥与证书管理解决方案选型与实施——30天试点对比 AWS Secrets Manager 与 HashiCorp Vault,AWS Secrets Manager 以更低成本和更简实施胜出;实施阶段从 Control Tower 开始,从 CI/CD 流程清除明文密钥,集中化管理。 -- Concepts identified: [[Secrets-Management]], [[AWS-Secrets-Manager]] -- Entities identified: [[Micro-Focus]], [[CCLE]](CCLE 在 2022 年 3 月负责评估工作,关键组织角色) -- Source page: wiki/sources/ctp-topic-37-secrets-certificates-management.md -- Notes: 无冲突;与 [[ctp-topic-62-aws-secrets-manager]] 的关系记录于 Contradictions 节(Topic 37 试点结论 + Topic 62 深度实践,属补充关系而非冲突) - -## [2026-04-30] ingest | CTP Topic 62 AWS Secrets Manager -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/07_Security/ctp-topic-62-aws-secrets-manager.md -- Status: ✅ 成功摄入 -- Summary: AWS Secrets Manager 企业级密钥管理——Nurit & Daniel 分享。选型:HashiCorp Vault vs AWS Secrets Manager POC,AWS Secrets Manager 以更低成本和更简实施胜出。分阶段实施:集中化密钥 → 自动化获取 → 轮换。核心原则:开发者无需直接访问密钥,IAM 角色+标签控制访问。实施案例:Oracle DB 密码轮换(Lambda)、SendGrid API 密钥集中化轮换(无需应用重启)、JDBC Wrapper + AWS SDK 免密登录。 -- Concepts identified: [[Secrets-Management]], [[Secret-Rotation]], [[JDBC-Wrapper]], [[AWS-Secrets-Manager]], [[HashiCorp-Vault]](HashiCorp Vault 作为备选方案被记录于源页面,实体重要性待定) -- Entities identified: [[Nurit]], [[Daniel]], [[Victor]](CTP Topic 62 演讲者和演示者,作为演讲者提及一次,暂不创建独立页面) -- Source page: wiki/sources/ctp-topic-62-aws-secrets-manager.md -- Notes: 无冲突检测;相关来源 [[ctp-topic-37-secrets-certificates-management]] 和 [[ctp-topic-36-sendgrid-as-an-email-service]] 已于 Contradictions 和 Connections 节记录 - -## [2026-04-29] ingest | Public Cloud Learning Sessions - OpenText GIS Security Policies - 20241015 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/07_Security/public-cloud-learning-sessions-opentext-gis-security-policies-20241015-160257-me.md -- Status: ✅ 成功摄入 -- Summary: OpenText 全球信息安全团队(GIS)安全策略全景——Mike & Ed 主讲。GIS 分层组织架构(安全运营/合规/治理风险验证/隐私);OpenText 分层方法定义安全策略;ISO 27001 姿态框架(2022年更新);Global Information Security Policy(GISP)是最高纲领性政策,季度审查;每月处理 2250 亿条日志,分诊约 350 个案例;FedRAMP 等多项认证支撑多垂直市场销售。 -- Concepts identified: [[ISO-27001]], [[FedRAMP]], [[Global-Information-Security-Policy]], [[Security-Awareness-Training]], [[Third-Party-Penetration-Testing]], [[Threat-Intelligence]], [[BrightCloud]](均以 wikilink 形式记录于 Source page,各仅出现 1 次,暂不创建独立页面) -- Entities identified: [[Mike]](GIS Team 主讲人,仅出现 1 次,以 wikilink 形式记录于 Source page), [[Ed]](GIS Team 主讲人,仅出现 1 次,以 wikilink 形式记录于 Source page) -- Source page: wiki/sources/public-cloud-learning-sessions-opentext-gis-security-policies-20241015-160257-me.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/public-cloud-learning-sessions-opentext-gis-security-policies-20241015-160257-me.md) - - index.md 更新:Sources 节新增条目(日期 2026-04-14,置顶于所有条目最前) - - overview.md 更新:新增 GIS Security Policies 摘要条目(置于 Thor Platform 之后,CTP Topic 28 之前);Key Concepts 新增 ISO-27001/FedRAMP(已有条目)、BrightCloud 等 - - Connections 已建立:与 [[ctp-topic-10-aws-landing-zone-lz-data-collection-tagging-related-security]] 建立 related_to 关系 - - 冲突检测:与 [[ctp-topic-10]] 的互补而非冲突关系已记录于 Source Page Contradictions 节——GISP 定义全局政策纲领,Landing Zone 层面通过标签和 SCP 实现技术落地 - -## [2026-04-25] ingest | CTP Topic 64 Scaling out with Amazon EKS -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/04_EKS/ctp-topic-64-scaling-out-with-amazon-eks.md -- Status: ✅ 成功摄入 -- Summary: Amazon EKS 工作负载扩缩容完整方法论——Pod 层:HPA(标准指标)+ KEDA(事件驱动);Node 层:Cluster Autoscaler(ASG 联动)+ Karpenter(直接 EC2 API);IP 耗尽解决方案:IPv6 双栈 VPC;集群稳定性:API Server PPF + CoreDNS 扩缩容。Suravpul 主讲。 -- Concepts identified: [[Horizontal Pod Autoscaler (HPA)]](已在 ctp-topic-59 提及), [[KEDA]](新), [[Cluster Autoscaler]](已在 ctp-topic-70 提及), [[Karpenter]](已在 Part 1 提及) -- Entities identified: [[Suravpul]](AWS 高级解决方案架构师,ctp-topic-59/64/67 三专题讲师) -- Source page: wiki/sources/ctp-topic-64-scaling-out-with-amazon-eks.md -- Notes: 与 ctp-topic-59(EKS 可靠性,HPA/VPA)和 ctp-topic-70(IaC 部署,Cluster Autoscaler)形成互补知识链路。与 Part 3 EKS Auto Mode 共享 Karpenter 知识节点。 - -## [2026-04-25] ingest | CTP Topic 67 Cloud native observability using OpenTelemetry -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/04_EKS/ctp-topic-67-cloud-native-observability-using-opentelemetry.md -- Status: ✅ 成功摄入 -- Summary: AWS 解决方案架构师 Surav 分享的 EKS/ECS 云原生可观测性深度实践。涵盖可观测性三信号模型(Traces/Metrics/Logs)、OpenTelemetry Collector 架构(Receivers → Processors → Exporters)、ADOT 的多种 EKS/ECS 部署模式。核心观点:构建可观测的应用是开发者的责任;Trace 捕获调用栈各层处理耗时;Correlation ID 实现跨信号关联。 -- Concepts identified: [[OpenTelemetry]], [[Three Signals]], [[SIGV4 Auth Extension]], [[Correlation ID]] -- Source page: wiki/sources/ctp-topic-67-cloud-native-observability-using-opentelemetry.md -- Notes: 与 ctp-topic-60(Hyperscale Observability with Grafana)同属可观测性专题,与 public-cloud-learning-sessions-observability-with-opentelemetry-20240402 同属 OpenTelemetry 主题 - -## [2026-04-24] ingest | Public Cloud Learning Sessions - EKS Optimization Part 2 of 3 - Running Containers with Bottlerocket OS -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/04_EKS/public-cloud-learning-sessions-eks-optimization-part-2-of-3-running-containers-w.md -- Status: ✅ 成功摄入 -- Summary: Bottlerocket OS(火箭瓶)深度解析——AWS 专为容器工作负载优化的最小化开源 Linux 发行版。核心设计理念:最小化(去除包管理器/Shell/SSH,仅打包必要内核组件)、安全更新(分区镜像 A/B 切换确保原子性)、安全加固(dm-verity 根文件系统加密验证 + SE Linux enforcing 模式 + 根文件系统默认只读)。Variant 机制通过平台+架构+工作负载组件组合在构建时定制功能,支持 Bottlerocket for EKS AMI(自管理节点组)、托管节点组(Managed Node Groups)和 Carpenter 节点池三种集成方式。 -- Concepts identified: [[Immutable-Root-Filesystem]], [[dm-verity]], [[SE-Linux-Enforcing]], [[Partition-Updates]], [[CIS-Benchmark]] -- Entities identified: [[Bottlerocket]], [[Amazon EKS]], [[AWS]] -- Source page: wiki/sources/public-cloud-learning-sessions-eks-optimization-part-2-of-3-running-containers-w.md -- Notes: EKS 优化三专题 Part 2(Part 1 = Karpenter 计算优化,Part 3 = EKS Auto Mode)。Bottlerocket Entity 和 5 个 Concept 均为新增。Part 3 的 EKS Auto Mode 默认使用 Bottlerocket 作为节点操作系统,形成知识链路补充。 - -## [2026-04-24] ingest | CTP Topic 42 Grafana Observability Dashboard -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/04_EKS/ctp-topic-42-grafana-observability-dashboard.md -- Status: ✅ 成功摄入 -- Summary: 企业级 Grafana 可观测性平台在 AWS 多账户环境下的架构设计与 Terraform IaC 自动化实践。涵盖 Grafana 核心定位(不存储数据,仅从数据源可视化)、基础设施架构(监控账户部署 Grafana,通过 IAM 角色跨账户访问产品团队 AWS 账户)、用户和团队访问控制、示例仪表盘(CPU/I/O/Network/EBS/Estimated Charges)、告警系统(Microsoft Teams 通知)、Terraform 模块化供给(数据源模块 + 组织模块 + LZSAP 自动化接入)、Prometheus 网络监控(Checkpoint/防火墙 SNMP 指标)。 -- Concepts identified: [[Observability(可观测性)]], [[Prometheus]], [[SNMP(Simple Network Management Protocol)]], [[IAM Role(跨账户角色)]] -- Entities identified: [[AWS CloudWatch]], [[AWS Landing Zone]], [[Micro Focus Operations Bridge Manager]] -- Source page: wiki/sources/ctp-topic-42-grafana-observability-dashboard.md -- Notes: 该视频与 [[ctp-topic-60]] 均介绍 Grafana,视角互补(Grafana 本身 vs Hyperscale 场景),与 [[ctp-topic-54]] 和 [[ctp-topic-67]] 同属可观测性专题,共同构成监控知识体系。长期目标是构建应用级仪表盘替代 Micro Focus OBM。Entity 和 Concept 已有 Grafana/Prometheus/Terraform/Checkpoint 等,无需新建。 - -## [2026-04-25] ingest | CTP Topic 54 ESM SaaS Log Analytics -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/04_EKS/ctp-topic-54-esm-saas-log-analytics.md -- Status: ✅ 成功摄入 -- Summary: ITOM ESM SAS 架构师 Jackie 主讲的企业级日志分析解决方案——ELK/OpenSearch 技术栈架构(BEATS/Filebeat → Logstash → Elasticsearch/OpenSearch → Kibana)、双 VPC 隔离架构、Redis 缓冲层、GDPR 合规区域分割。安全:NVMe 静态加密、TLS 1.2、VPC 私有流量、RBAC。方案对比:AWS OpenSearch(~$1,500/月,SLA 99.9%,推荐)vs Logz.io(~$4,000/月,SLA 99.8%)vs 自托管 ELK vs Microfocus OBA。 -- Concepts identified: [[ELK Stack]], [[OpenSearch]], [[Logstash]], [[Kibana]], [[BEATS]], [[Filebeat]], [[Centralized-Logging]], [[Redis缓存]], [[RBAC]], [[TLS]], [[GDPR]] -- Entities identified: [[AWS OpenSearch]], [[Jackie]] -- Source page: wiki/sources/ctp-topic-54-esm-saas-log-analytics.md -- Notes: 新建 Concept 页面 ELK-Stack.md、BEATS.md;新建 Entity 页面 AWS-OpenSearch.md;已更新 overview.md(Sources 条目 + Key Concepts);Key Concepts 列表中已有 Centralized-Logging、Redis缓存(Redis缓存.md)、TLS,未发现冲突内容 - -## [2026-04-26] ingest | CTP Topic 59 Achieving reliability with Amazon EKS -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/04_EKS/ctp-topic-59-achieving-reliability-with-amazon-eks.md -- Status: ✅ 成功摄入 -- Summary: Amazon EKS 可靠性最佳实践——Surav Paul(AWS 高级解决方案架构师)主讲。涵盖 ECS vs EKS 选型、可靠性五维度(故障检测/优雅降级/确定性故障/自愈/按需扩缩)、Shared Responsibility Model(Fargate 免除节点管理)、应用层可靠性(AZ 分散/拓扑约束/HPA/VPA/部署策略/健康探针/PodDisruptionBudget)、控制平面可靠性(指标监控/认证加固/Webhook 管理/集群升级)和数据平面可靠性(节点问题检测/资源预留/QoS/配额/Pod 优先级)。 -- Concepts identified: [[Reliability(系统可靠性)]], [[Application Reliability(应用可靠性)]], [[Control Plane Reliability(控制平面可靠性)]], [[Data Plane Reliability(数据平面可靠性)]], [[Shared Responsibility Model(EKS)]], [[Pod Anti-Affinity]], [[Topology Spread Constraints]], [[Horizontal Pod Autoscaler (HPA)]], [[Vertical Pod Autoscaler (VPA)]], [[Liveness/Readiness/Startup Probes]], [[PodDisruptionBudget]], [[Rolling/Blue-Green/Canary Deployment]](均以 wikilink 形式记录于 Source page;均仅出现 1 次,暂无独立页面) -- Entities identified: [[Surav Paul]], [[Amazon EKS]], [[Amazon ECS]], [[AWS Fargate]](均以 wikilink 形式记录于 Source page;仅 [[Amazon EKS]] 在多个页面中反复出现,符合独立页面创建条件,其余仅出现 1 次,暂无独立页面) -- Source page: wiki/sources/ctp-topic-59-achieving-reliability-with-amazon-eks.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-59-achieving-reliability-with-amazon-eks.md) - - index.md 更新:新增 CTP Topic 59 条目于 Sources 节顶部 - - overview.md 更新:新增 CTP Topic 59 条目于 Cloud Transformation & DevOps → EKS 知识链路 - - Contradictions 记录:与 ctp-topic-39(EKS Lab LZ 网络部署)存在视角差异——Topic 39 面向受限网络环境的自定义网络方案,Topic 59 提供通用 EKS 可靠性最佳实践,互为补充而非冲突 - - 无需新建 Concept/Entity 独立页面(所有概念和实体仅在本页面出现 1 次;Amazon EKS 虽在多个其他页面提及,但本页面无新增独立维度,不单独创建) - -## [2026-04-26] ingest | CTP Topic 29 Cloud Monitoring – SaaS LZ accounts -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/04_EKS/ctp-topic-29-cloud-monitoring-saas-lz-accounts.md -- Status: ✅ 成功摄入 -- Summary: AWS 云监控解决方案 OpsBridge Cloud Monitoring 覆盖多账户多区域的云原生监控架构——容器化部署于 EKS,支持 20+ AWS 数据服务,数据存储于 Optic Data Lake(Vertica);通过 IAM Role 信任关系实现只读跨账户 CloudWatch 数据采集,无需在被监控账户安装服务器或共享 Access Key;基于标签的监控是最佳实践,自动化识别缺失标签;单一 OpsBridge 实例监控多账户多区域,降低运维成本;与 OpsBridge 产品研发团队协作,报表功能在下一版本持续增强。 -- Concepts identified: [[Cloud Monitoring(AWS)]], [[Tag-Based Monitoring]], [[Vertica]], [[OpsBridge]], [[ITOM(IT Operations Management)]](均以 wikilink 形式记录于 Source page;仅出现 1 次,暂无独立页面) -- Entities identified: [[Micro Focus OpsBridge]], [[AWS CloudWatch]], [[AWS Landing Zone]](均以 wikilink 形式记录于 Source page;仅出现 1 次,暂无独立页面) -- Source page: wiki/sources/ctp-topic-29-cloud-monitoring-saas-lz-accounts.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-29-cloud-monitoring-saas-lz-accounts.md) - - index.md 更新:新增 CTP Topic 29 条目于 Sources 节顶部 - - Contradictions 记录:与 ctp-topic-8(OBM 监控)存在视角差异——Topic 8 描述基础 OBM 组件栈(三层架构),Topic 29 描述 Cloud Monitoring 新模块(容器化+EKS+20+数据服务),当前观点认为两者是同一方案的不同层面 - -## [2026-04-24] ingest | CTP Topic 60 - Monitor AWS using Hyperscale Observability with Grafana -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/04_EKS/ctp-topic-60-monitor-aws-using-hyperscale-observability-with-grafana.md -- Status: ✅ 成功摄入 -- Summary: 使用 Grafana Enterprise 实现 AWS 超大规模可观测性监控——Vinay 主讲(代替休假的 Sashi)。核心内容:Grafana 与多数据源集成、事件追踪、告警配置、实例监控和资源标签化;Optic DR 作为 VaticaDB 插件是导入 Grafana 仪表板的关键数据源;*Opsbridge 监控解决方案使用仪表板展示触发事件;Grafana 告警系统支持多通知渠道,可转发至 Opsbridge 创建工单;Terraform 模块自动化创建 Grafana 组织、用户、文件夹、IAM 角色和仪表板;默认指标不产生额外成本,自定义指标可能产生费用。未来路线图:SSO 认证、报表、URL 监控、进程监控、日志监控、与 PagerDuty/Slack Manager 集成。 -- Concepts identified: [[Hyperscale Observability]], [[Dashboard as Code]], [[Grafana Alert System]], [[Resource Tagging]], [[Instance Monitoring]], [[Event Tracking]](均以 wikilink 形式记录于 Source page) -- Entities identified: [[Vinay]], [[Optic DR]], [[Opsbridge]], [[VaticaDB]], [[Grafana]], [[Terraform]](均以 wikilink 形式记录于 Source page) -- Source page: wiki/sources/ctp-topic-60-monitor-aws-using-hyperscale-observability-with-grafana.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-60-monitor-aws-using-hyperscale-observability-with-grafana.md) - - index.md 更新:新增 CTP Topic 60 条目于 Sources 节顶部 - - Contradictions 记录:与 ctp-topic-8(OBM 监控)的互补而非冲突关系已记录 - -## [2026-04-26] ingest | CTP Topic 8 Implementation of Cloud monitoring using Micro Focus Operations Bridge Manager -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/04_EKS/ctp-topic-8-implementation-of-cloud-monitoring-using-micro-focus-operations-brid.md -- Status: ✅ 成功摄入 -- Summary: 使用 Micro Focus Operations Bridge Manager (OBM) 实现 AWS 公有云监控的完整解决方案——OBM AWS Account 部署 OBM 应用 + Postgres RDS + Operation Agent 三层组件;Agent 通过 AWS Management Pack 利用 IAM Role 跨账户采集 CloudWatch 指标,无需在被监控账户安装服务器或共享 Access Key;Global OBM 作为 Manager of Managers 汇聚 Regional OBM 数据,事件通过 SMACKS 触发工单;新增实例自动发现与策略自动下发,解决云环境动态性监控难题;支持任意公有云(AWS/Azure/GCP)的 CloudWatch 兼容服务。 -- Concepts identified: [[Cloud-Monitoring]], [[Management-Pack]](均已创建独立 Concept 页面) -- Entities identified: [[SMACKS]](已有页面,更新 sources;其余实体仅出现 1 次,以 wikilink 形式记录于 Source page) -- Source page: wiki/sources/ctp-topic-8-implementation-of-cloud-monitoring-using-micro-focus-operations-brid.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-8-implementation-of-cloud-monitoring-using-micro-focus-operations-brid.md) - - 新增 2 个 Concept Page(wiki/concepts/Cloud-Monitoring.md, wiki/concepts/Management-Pack.md) - -## [2026-04-24] ingest | CTP Topic 39 Implementing EKS in the AWS Lab Landing Zone -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/04_EKS/ctp-topic-39-implementing-eks-in-the-aws-lab-landing-zone.md -- Status: ✅ 成功摄入 -- Summary: EKS 在受限 Lab Landing Zone 网络环境下的技术实施方案——Spencer 和 Guy 分享。核心问题:Micro Focus 网络的 AWS Lab 环境 IP 地址池不足,无法满足 Octane(IP 密集型 SaaS 应用)的 EKS Pod 需求。解决方案:创建独立私有子网(非主 VPC 子网)为 EKS Pod 提供充足 IP 池;EKS 模块自定义网络标志控制 Pod IP 分配;Terraform/Terragrunt 模块封装完整 EKS 部署逻辑,支持跨账户角色映射;Pod 规范设置 `hostNetwork: true` 使其同时访问内部 Micro Focus 网络和外部资源。Atlantis 当前不支持 EKS 部署,需通过 Jenkins + Terragrunt 模块替代。 -- Concepts identified: [[Amazon EKS]], [[Kubernetes Custom Networking]], [[Terraform-Terragrunt Module]], [[IAM Role Mapping (EKS)]], [[Host Network Mode (Pod)]], [[Container Hardening]](均以 wikilink 形式记录于 Source page;均仅出现 1 次,暂无独立页面) -- Entities identified: [[Octane-Hub]](已有页面,更新 sources)、[[Terragrunt]], [[Atlantis]](工具名,均仅出现 1 次,以 wikilink 形式记录于 Source page) -- Source page: wiki/sources/ctp-topic-39-implementing-eks-in-the-aws-lab-landing-zone.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-39-implementing-eks-in-the-aws-lab-landing-zone.md) - - index.md 更新:新增 CTP Topic 39 条目于 Sources 节顶部 - - overview.md 更新:新增 CTP Topic 39 条目于 EKS 知识链路 - - 无需新建 Concept/Entity 独立页面(所有概念和实体仅出现 1 次) - -## [2026-04-26] ingest | Public Cloud Learning Sessions EKS Optimization Part 3 of 3 Introduction to EKS Auto Mode -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/04_EKS/public-cloud-learning-sessions-eks-optimization-part-3-of-3-introduction-to-eks-.md -- Status: ✅ 成功摄入 -- Summary: EKS Auto Mode 将 Kubernetes 数据平面管理责任从用户扩展至 AWS。Carpenter Controller 负责节点生命周期和滚动升级;Bottlerocket OS 提供最小化安全容器操作系统,自动应用安全补丁;AWS Load Balancer Controller(eks.aws/alb)管理 ingress;EBS CSI Controller 支持有状态工作负载;Pod Identity Associations 替代 K8s RBAC 实现 Pod 级 IAM 权限控制;Prefix Delegation 默认启用优化 Pod 网络 IP 分配。默认两个节点池(General Purpose AMD64 + System taint),支持自定义 Graviton 节点池。每个 Auto Mode 实例附加 12% 管理溢价。 -- Concepts created: [[EKS Auto Mode]](已创建独立 Concept 页面) -- Source page: wiki/sources/public-cloud-learning-sessions-eks-optimization-part-3-of-3-introduction-to-eks.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/public-cloud-learning-sessions-eks-optimization-part-3-of-3-introduction-to-eks.md) - - 新增 1 个 Concept Page(wiki/concepts/EKS-Auto-Mode.md) - - Entities:AWS 和 Amazon EKS 已在 overview.md 中存在,无需新建 Entity 页面 - -## [2026-04-24] ingest | Image Prompt Engineer Agent -- Source file: Agent/agency-agents/design/design-image-prompt-engineer.md -- Status: ✅ 成功摄入 -- Summary: Image Prompt Engineer Agent 角色定义——AI 图像生成提示词工程专家智能体,专注于将视觉概念精准翻译为可执行的提示词语言,驱动 Midjourney/DALL-E/Stable Diffusion/Flux 等 AI 图像生成工具产出专业级摄影作品。核心方法:五层提示词结构框架(主体描述层 → 环境设定层 → 光线规范层 → 摄影技术层 → 风格美学层)+ 平台特定语法优化 + 体裁专属提示模式(人像/产品/风光/时尚摄影)。核心原则:摄影术语精确性 + 负向提示词 + 宽高比构图。成功指标:视觉概念还原率 90%+。与 [[design-ui-designer]](像素级精确)存在张力,已记录于 Contradictions;与 [[design-brand-guardian]](品牌一致性)、[[design-whimsy-injector]](品牌趣味)协同,构成 [[The Agency]] 设计部门完整设计支撑体系。 -- Concepts linked: [[Prompt-Engineering]], [[Five-Layer-Prompt-Structure]], [[Platform-Specific-Prompt-Optimization]], [[Negative-Prompts]], [[Film-Emulation]], [[Lighting-Patterns]] -- Entities linked: [[Midjourney]], [[DALL-E]], [[Stable-Diffusion]], [[Flux]], [[Annie Leibovitz]], [[Peter Lindbergh]], [[The Agency]] -- Source page: wiki/sources/design-image-prompt-engineer.md -- Notes: index.md 已替换占位符条目;overview.md 已新增独立段落(置于 design-whimsy-injector 之后,design-brand-guardian 之前);无新 Entity/Concept 需创建(Midjourney/DALL-E/Stable-Diffusion/Flux/Prompt-Engineering 等仅出现 1 次,不足建页阈值);与 [[design-ui-designer]] 在概率生成 vs 像素精确的张力已记录于 Contradictions 节——通过确定性约束(具体颜色值/光照参数)协调 -- Conflicts: 与 [[design-ui-designer]] 在视觉还原精度上的差异——Image Prompt Engineer 目标 90%+ 概念还原(概率生成固有不确定性),UI Designer 要求 95%+ 实现准确率(设计到代码的翻译环节);已建立协调方案 - -## [2026-04-24] ingest | CTP Topic 11 AD Integration and Login using AD Accounts -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/02_IAM/ctp-topic-11-ad-integration-and-login-using-ad-accounts.md -- Status: ✅ 成功摄入 -- Summary: Jenkins 与 SW Infra AD 安全域集成,实现基于 AD 账号的统一身份认证与自动化用户管理(入离职无需手动维护本地用户);通过 AD 组策略实现 RBAC 精细化权限控制(只读/读写/流水线创建);pre-commit 框架集成 terraform fmt/TFLint/Checkov 三款工具在代码提交阶段嵌入自动化安全检查;CI/CD 流水线分层治理模式(Commit 检查 → PR 检查+plan → Master 人工审核后 apply),核心理念为"左移"(Shift-Left)将安全问题提前到开发早期。 -- Concepts identified: [[Active Directory Integration]], [[RBAC (Role-Based Access Control)]], [[Pre-commit Framework]], [[Terraform Fmt]], [[TFLint]], [[Checkov]], [[Shift-Left Security]], [[CI/CD Pipeline Governance]](均以 wikilink 形式记录于 Source page;各仅出现 1-2 次,未达 ≥2 次阈值,暂不创建独立页面) -- Entities identified: [[Niranjan]](仅出现 1 次,未达 ≥2 次阈值,以 wikilink 形式记录于 Source page) -- Source page: wiki/sources/ctp-topic-11-ad-integration-and-login-using-ad-accounts.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-11-ad-integration-and-login-using-ad-accounts.md) - - index.md 更新:新增 CTP Topic 11 条目于 Sources 节顶部 - - overview.md 更新:新增 CTP Topic 11 详细条目于身份治理知识体系段落 - - Contradictions 记录:与 Atlantis(ctp-topic-32)关于 terraform apply 审批权的差异已记录 - -## [2026-04-24] ingest | CTP Topic 5 - AWS Identity and Access Management (IAM) -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/02_IAM/ctp-topic-5-aws-identity-and-access-management-iam.md -- Status: ✅ 成功摄入 -- Summary: AWS IAM 核心组件与联邦访问机制——IAM Dashboard 四大资源(用户、组、客户托管策略、角色、身份提供商);联邦用户通过 Active Directory 组映射到 IAM 角色;accounts.json 位于 Landing Zone 根目录;IAM 用户主要用于服务账号,人工用户优先使用联邦访问;角色本身不启用操作,而是将"谁可以做什么"与"可以做什么"关联;策略分为 AWS 托管和客户托管,Terraform 模块可定义 IAM 角色;PFSSO 工具实现 CLI 联邦访问;最小权限原则贯穿始终。 -- Concepts identified: [[IAM(身份和访问管理)]], [[Federation(联邦身份)]], [[Least Privilege(最小权限)]], [[IAM Role(IAM 角色)]], [[IAM Policy(IAM 策略)]], [[Managed Policy vs Inline Policy]], [[Cross-Account Role Assumption]], [[PFSSO]](均以 wikilink 形式记录于 Source page;各仅出现 1 次,未达 ≥2 次阈值,暂不创建独立页面) -- Entities identified: [[accounts.json]], [[VSM]](均以 wikilink 形式记录于 Source page;各仅出现 1 次,未达 ≥2 次阈值) -- Source page: wiki/sources/ctp-topic-5-aws-identity-and-access-management-iam.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-5-aws-identity-and-access-management-iam.md) - - index.md 更新:替换原有缺失条目为完整条目(日期 2026-04-24) - - overview.md 更新:新增 CTP Topic 5 条目于身份治理知识体系段落 - -## [2026-04-24] ingest | Public Cloud Learning Sessions - AWS End User Compute Services - 20240430 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/public-cloud-learning-sessions-aws-end-user-compute-services-20240430-160120-mee.md -- Status: ✅ 成功摄入 -- Summary: AWS EUC 服务全景介绍——覆盖 Workspaces(全持久虚拟桌面)、AppStream 2.0(选择持久/非持久应用流,多租户降本)、Workspace Core(第三方 VDI 集成)、Workspace Web(低成本安全浏览器)四大服务。选型原则:知识工作者完整桌面 → Workspaces;实验室/培训/非持久 → AppStream 2.0;第三方 VDI → Workspace Core;安全浏览 → Workspace Web。安全措施包括 AD 集成、加密、IAM 配置文件、SAML 认证、多因素认证。 -- Concepts identified: [[Amazon-Workspaces]], [[AppStream-2.0]], [[AWS-End-User-Computing]], [[Virtual-Desktop-Infrastructure]], [[WSP-Protocol]], [[BYOD]], [[VDI]], [[SAML-Authentication]], [[VPC-Interface-Endpoints]](均以 wikilink 形式记录于 Source page;各仅出现 1-2 次,未达 ≥2 次阈值,暂不创建独立页面) -- Entities identified: [[Christian-O'Donough]](仅出现 1 次,未达 ≥2 次阈值,以 wikilink 形式记录于 Source page) -- Source page: wiki/sources/public-cloud-learning-sessions-aws-end-user-compute-services-20240430-160120-mee.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/public-cloud-learning-sessions-aws-end-user-compute-services-20240430-160120-mee.md) - - index.md 更新:在 Sources 节顶部新增条目(日期 2026-04-24) - - overview.md 更新:在 ctp-topic-6-aws-workspaces-demo 之后新增摘要段落;与 [[ctp-topic-6-aws-workspaces-demo]] 建立关联关系 - - Connections 已建立:与 [[ctp-topic-6-aws-workspaces-demo]](实操演示)、[[AWS-Landing-Zone]](VPC 架构)建立 depends_on 关系 - - 冲突检测:无已知冲突内容 - -## [2026-04-30] ingest | Public Cloud Learning Sessions - Applicable Business Analysis Techniques - 20240109 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/public-cloud-learning-sessions-applicable-business-analysis-techniques-20240109-.md -- Status: ✅ 成功摄入 -- Summary: 业务分析(Business Analysis)基础技能与三大核心技法——T型技能模型(连接业务与技术)、BOSCARD框架(复杂新工作定义)、干系人轮盘(Stakeholder Wheel)、结合元数据的用户故事需求收集。INVEST原则检查需求质量,SAFe框架补充Features/Capabilities/NFR。核心理念:业务分析将业务需求与技术变更解决方案对齐,帮助定义企业架构中哪些变更是有益的。 -- Concepts identified: [[Business-Analysis]], [[T-Shaped-Skills]], [[BOSCARD]], [[Stakeholder-Wheel]], [[Requirements-Gathering]], [[INVEST]], [[SAFe]], [[RACI]](均以 wikilink 形式记录于 Source page;各仅出现 1 次,未达 ≥2 次阈值,暂不创建独立页面) -- Entities identified: [[BCS]], [[IIBA]], [[OpenText]](均仅出现 1 次,未达 ≥2 次阈值,以 wikilink 形式记录于 Source page) -- Source page: wiki/sources/public-cloud-learning-sessions-applicable-business-analysis-techniques-20240109.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/public-cloud-learning-sessions-applicable-business-analysis-techniques-20240109.md) - - index.md 更新:替换预期占位符为正式条目(日期修正为 2024-01-09,添加摘要) - - overview.md 更新:在 Cloud Transformation & DevOps 部分新增摘要段落(置于 ctp-topic-4 之后);Key Concepts 新增 Business-Analysis、T-Shaped-Skills、BOSCARD、Stakeholder-Wheel、Requirements-Gathering、INVEST、SAFe - - Connections 已建立:与 ctp-topic-4(敏捷实践)、ctp-topic-57(需求管理)、ctp-topic-20(需求流程)、ctp-topic-41(NFR)建立 related_to 关系 - - 冲突检测:与 [[ctp-topic-4-using-agile-to-run-the-cloud-transformation-program]] 互补而非冲突——Topic 4 提供敏捷持续流动实践框架,本视频提供需求定义前置技法,构成云转型计划完整方法论(规划→需求→执行) - -## [2026-04-14] ingest | CTP Topic 23 Introduction to the Technical Architecture Team and Function -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/ctp-topic-23-introduction-to-the-technical-architecture-team-and-function.md -- Status: ✅ 成功摄入 -- Summary: Martin Nash(技术架构经理)介绍技术架构团队的核心职能、组织架构及在云转型中的价值。核心主题:从被动响应转向主动规划。团队推行"云优先"策略,维护 AWS Enterprise Landing Zones。三层架构分工:EA(企业架构)对接业务战略,SA(方案架构)负责中间件与服务优化,TA(技术架构)专注底层技术实施与基础设施治理。通过划分"技术领域"并由首席架构师负责,制定 12-24 个月前瞻性路线图。 -- Concepts created: [[Enterprise-Architecture]], [[Solution-Architecture]], [[Technical-Architecture]](均已创建独立页面) -- Entities created: [[Martin-Nash]](Technical Architecture Manager,已创建独立页面) -- Source page: wiki/sources/ctp-topic-23-introduction-to-the-technical-architecture-team-and-function.md -- Notes: - - 新增 1 个 Source Page - - index.md 更新:替换预期占位符为正式条目(日期修正为 2026-04-14,添加摘要) - - overview.md 更新:在 CTP Topics 部分添加 Topic 23 摘要条目(位于 Topic 47 和 Topic 72 之间) - - 新增 3 个 Concept 页面:Enterprise-Architecture.md, Solution-Architecture.md, Technical-Architecture.md - - 新增 1 个 Entity 页面:Martin-Nash.md - - Key Concepts 新增:[[Cloud-First Strategy]], [[AWS Enterprise Landing Zones]], [[Technical Domains]], [[Enterprise Architecture (EA)]], [[Solution Architecture (SA)]], [[Technical Architecture (TA)]], [[Roadmaps]], [[ITIL Alignment]] - - 无冲突内容 - -## [2026-04-25] ingest | CTP Topic 57 Product backlog managing demand -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/ctp-topic-57-product-backlog-managing-demand.md -- Status: ✅ 成功摄入 -- Summary: CTP 产品待办列表(Backlog)需求管理完整管道——SMACs提交→双周评审(20题问卷)→Octane特性化→Sprint规划(50%新需求/50%支持+技术债)→Prerequisite Phase→SRE构建账号→2周Hyper Care。核心理念:透明化需求管道,确保所有工作以同一标准评估。 -- Concepts identified: [[Product-Backlog]], [[Demand-Management]], [[SMACs]], [[Prerequisite-Phase]], [[Hyper-Care]], [[Sprint-Planning]], [[Octane]](均以 wikilink 形式记录于 Source page) -- Entities identified: [[Matthew Chapman]], [[David Grant]], [[Brendan Starnig]], [[ADM]], [[ITOM]], [[PCG]], [[SRE]](均以 wikilink 形式记录于 Source page;Matthew Chapman/David Grant 仅出现1-2次,未达 ≥2 阈值,暂不创建独立 Entity 页面) -- Source page: wiki/sources/ctp-topic-57-product-backlog-managing-demand.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-57-product-backlog-managing-demand.md) - - index.md 更新:替换预期占位符为正式条目(日期修正为 2026-04-14,添加摘要) - - overview.md 更新:在 CTP Topics 部分添加 Topic 57 摘要条目(位于 Topic 41 和 Topic 65 之间);Key concepts 新增 [[Product-Backlog]], [[Demand-Management]], [[SMACs]], [[Prerequisite-Phase]], [[Hyper-Care]], [[Octane]] - - Connections 已建立:与 CTP Topic 20(需求流程)、CTP Topic 4(敏捷实践)、CTP Topic 30(变更管理)建立 related_to 关系 - - 无冲突内容 - -## [2026-04-25] ingest | Public Cloud Learning Sessions (OpenText) - Thor Platform & Flows -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/public-cloud-learning-sessions-opentext-thor-platform-flows-20241210-160056-meet.md -- Status: ✅ 成功摄入 -- Summary: Arnold Dacan 详解 Project Thor 平台架构与数据流——五大支柱框架(敏捷周期治理、产品发布治理、开发者门户 Backstage、安全治理、Build Hub);核心数据流:源代码(GitLab)→ 制造流程(Build Farms)→ Artifactory → 客户环境;地理分布:主站点 Brook Park + 灾备站点 Sacramento;标准化目标:统一 GitLab/Artifactory/UCMDB 工具链,夯实供应链安全基础。 -- Concepts identified: Project Thor, Supply Chain Security, Build Hub, GitLab Proxy, GitLab Geo, Code Signing(均以 wikilink 形式记录于 Source page,暂不创建独立 Concept 页面) -- Entities identified: Arnold Dacan(仅出现1次,未达 ≥2 阈值,以 wikilink 形式记录于 Source page);GitLab/Artifactory/Backstage/UCMDB(通用工具名称,不创建独立 Entity 页面) -- Source page: wiki/sources/public-cloud-learning-sessions-opentext-thor-platform-flows-20241210-160056-meet.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/public-cloud-learning-sessions-opentext-thor-platform-flows-20241210-160056-meet.md) - - index.md 更新:替换预期占位符为正式条目(添加摘要) - - overview.md 更新:在 GitHub→GitLab 迁移条目后新增 Thor Platform & Flows 摘要条目 - - Connections 已建立:与 GitHub→GitLab 迁移文档建立 extends 关系;与 CTP Topic 21 建立 related_to 关系 - - 无冲突内容 - -## [2026-04-25] ingest | CTP Topic 6 AWS Workspaces Demo -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/ctp-topic-6-aws-workspaces-demo.md -- Status: ✅ 成功摄入 -- Summary: AWS Workspaces 虚拟桌面演示——Windows Server 2016 托管桌面,预装 PFSSO/Terraform/TerraGrunt/Git/VS Code;21分钟完成 TerraGrunt Plan;通过 Federation 访问 AWS Console,GitHub Enterprise 登录(已过期,应为 GitLab) -- Concepts identified: [[AWS Workspaces]], [[Terraform]], [[TerraGrunt]], [[PFSSO]], [[AWS Federation]](均已存在于 Wiki 或通过 Source page 内 wikilink 引用,暂不创建独立页面) -- Entities identified: [[Naga]](仅出现1次,未达 ≥2 阈值,以 wikilink 形式记录于 Source page) -- Source page: wiki/sources/ctp-topic-6-aws-workspaces-demo.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-6-aws-workspaces-demo.md) - - index.md 更新:替换预期占位符为正式条目(日期修正为 2026-04-14,添加摘要) - - overview.md 更新:在 Cloud Transformation & DevOps 部分新增 Topic 6 摘要条目 - - Contradiction 已记录:与 GitHub→GitLab 迁移文档冲突(视频录制时仍使用 GitHub Enterprise,当前已被 GitLab 替代) - -## [2026-04-25] ingest | CTP Topic 53 Why bother with Cloud -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/ctp-topic-53-why-bother-with-cloud.md -- Status: ✅ 成功摄入 -- Summary: Micro Focus 云转型计划商业价值论证——14个数据中心近20,000台资产,年营收25亿美元但VMware利用率不足40%;三个产品从Bublikan迁出后下线575台物理服务器,云端仅需240台虚拟服务器;Redding退出时40%应用直接关机;当前55% AWS成本发生在LZ之外。云迁移不仅是成本节约,更是创新催化剂。 -- Concepts identified: Cloud Transformation Programme, Landing Zone (Labs/SAS/Corporate), AWS Account Tagging Framework, Enterprise Platform, Multi-Cloud Strategy(均已在 overview.md 中以 wikilink 关联,暂不创建独立 Concept 页面) -- Entities identified: Micro Focus, ELT, Bublikan, Redding, Houston, Dart, CCOE, SRE(均已在 overview.md 中以 wikilink 关联,暂不创建独立 Entity 页面) -- Source page: wiki/sources/ctp-topic-53-why-bother-with-cloud.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-53-why-bother-with-cloud.md) - - index.md 更新:替换预期占位符为正式条目(日期修正为 2026-04-14,添加摘要) - - overview.md 更新:在 Cloud Transformation & DevOps 部分添加 Topic 53 摘要条目 - - Contradiction 已记录:与 ctp-topic-43-vmware-cloud-on-aws 的观点张力(完全迁移 vs 混合云中间路线) - -## [2026-04-24] ingest | Public Cloud Learning Sessions (OpenText) - GitHub Enterprise to GitLab Migration -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/public-cloud-learning-sessions-opentext-github-enterprise-to-gitlab-migration-20.md -- Status: ✅ 成功摄入 -- Summary: OpenText 将源代码管理平台从 GitHub Enterprise 迁移至 GitLab——Project Thor 整合工具链,GitLab 作为源代码控制黄金标准;GitHub 许可证12月底到期不续;各团队自服务模式规划迁移;两种迁移方案(镜像同步 / 搬移重构);PHT 跟踪进度;网络挑战通过 Brook Park GitLab 代理解决。 -- Concepts identified: Project Thor(企业工具链整合), Build Hub(中心工具支持团队), Self-Serve Migration(自服务迁移模式), Mirroring(镜像同步迁移), Shift and Lift(搬移重构迁移), Service Account Standard(服务账号标准) -- Entities identified: OpenText, GitHub Enterprise, GitLab, Build Hub, PHT(均未达 ≥2 次阈值,暂不创建独立页面,以 wikilink 关联) -- Source page: wiki/sources/public-cloud-learning-sessions-opentext-github-enterprise-to-gitlab-migration-20.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/public-cloud-learning-sessions-opentext-github-enterprise-to-gitlab-migration-20.md) - - index.md 更新:替换预期占位符为正式条目(日期修正为 2026-04-24) - - overview.md 更新:新增摘要段落(置于 tagging-standard-v2 之后,ctp-topic-28 之前) - - 冲突检测:未发现与其他 Wiki 页面的矛盾冲突 - -## [2026-04-29] ingest | Public Cloud Learning Sessions - OpenText Tagging Standard v2 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/public-cloud-learning-sessions-opentext-tagging-standard-v2-20250429-170111-meet.md -- Status: ✅ 成功摄入 -- Summary: OpenText 云资源标签标准 v2,Martin Rosler 主讲——三大驱动力(成本优化/风险降低/自动化效率);覆盖云账户、云资源、Kubernetes 对象和容器镜像;标准化前缀(OT\_/app.opentext.com/com.opentext.image)确保跨平台语义无歧义;最佳实践:IaC 自动化、禁止标签存敏感数据。 -- Concepts identified: Cloud-Cost-Optimization(成本优化), Tag-Standardization(标签标准化), Kubernetes-Labeling(Kubernetes 标签), Container-Image-Tagging(容器镜像标签), IaC-Tagging-Automation(IaC 标签自动化) -- Entities identified: Martin-Rosler(讲师,出现 1 次,未达 ≥2 次阈值,以 wikilink 关联), Phenops-Team(发起团队,出现 1 次,未达 ≥2 次阈值,以 wikilink 关联) -- Source page: wiki/sources/public-cloud-learning-sessions-opentext-tagging-standard-v2-20250429-170111-meet.md -- Notes: - - 新增 1 个 Source Page(替换 index.md 占位符条目,日期修正为 2026-04-14) - - overview.md 新增摘要段落(置于 ctp-topic-17 之后,ctp-topic-28 之前);Key Entities 新增 Martin Rosler 和 Phenops-Team - - 冲突检测:与 [[ctp-topic-28-aws-tag-validation-tool]] 无矛盾——标签标准定义「应该怎么标」,验证工具发现「谁没标好」,两者互补 - - Terraform/Kubernetes/Container-Images 已在 Key Concepts 中存在,以 wikilink 关联 - - -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/ctp-topic-41-nfrs-and-error-budgets.md -- Status: ✅ 成功摄入 -- Summary: NFR(非功能需求)与 Error Budget(错误预算)在云转型和敏捷开发中的实践——Brendan Standing(Head of SRE)主讲。核心:NFR Epic 模板将 NFR 集成到 Sprint Backlog;AWS 共享责任模型;Error Budget = 1 - SLO,量化系统可容忍的不可靠程度;SLR/SLO/SLA 三层体系;混沌工程主动注入故障验证韧性。核心理念:Error Budget 将失败归一化为开发流程的一部分,弥合开发与运维的文化鸿沟。 -- Concepts identified: NFR(非功能需求), Error Budget(错误预算), Chaos Engineering -- Entities identified: Brendan-Standing, AWS, Micro Focus(各仅出现 1-2 次,未达 ≥2 次阈值,暂不创建独立页面) -- Source page: wiki/sources/ctp-topic-41-nfrs-and-error-budgets.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-41-nfrs-and-error-budgets.md) - - NFR/Error Budget/Chaos Engineering 以 wikilink 形式建立关联,暂不创建独立页面(各仅出现 1 次,未达 ≥2 次阈值) - - Brendan-Standing 以 wikilink 形式建立关联,暂不创建独立页面(仅出现 1 次,未达 ≥2 次阈值) - - index.md 更新:替换预期占位符为正式条目(日期修正为 2026-04-14) - - overview.md 更新:新增 CTP Topic 41 摘要段落(置于 ctp-topic-30 之后,ctp-topic-65 之前);Key Concepts 新增 NFR(非功能需求)、Error Budget(错误预算)、Chaos Engineering - - 冲突检测:与 [[ctp-topic-30-managing-change]] 在 SRE 职责范围上存在视角差异——Topic 30 强调变更管理,Topic 41 强调可靠性工程,两者互补而非矛盾,已记录于 Source Page Contradictions 节 - -## [2026-04-28] ingest | CTP Topic 10 AWS Landing Zone (LZ) Data Collection, Tagging Related Security -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/ctp-topic-10-aws-landing-zone-lz-data-collection-tagging-related-security.md -- Status: ✅ 成功摄入 -- Summary: AWS Landing Zone 部署数据收集策略与基于标签的云原生安全架构——Steve Jarman 和 Pradeep 主讲。核心:OU+SCP 分层治理、标签即凭证(替代 IP 规则)、Checkpoint 有序层防火墙(地理→类型→BU→产品→环境→角色)、Inline 层账号号父子规则。标签缺失/篡改触发 SCP 拒绝策略,确保合规。 -- Concepts identified: Service-Control-Policies-SCPs, Checkpoint-Firewall, AWS-Landing-Zone, Tag-Based-Security, OU-Layered-Security -- Entities identified: Steve-Jarman, Pradeep, Checkpoint, AWS-Organizations -- Source page: wiki/sources/ctp-topic-10-aws-landing-zone-lz-data-collection-tagging-related-security.md -- Notes: - - 新增 1 个 Source Page(替换 2 个占位符条目) - - 5 个 Concepts 以 wikilink 形式建立关联,暂不创建独立页面(Service-Control-Policies-SCPs/Checkpoint 已存在于 entities/;其余各仅出现 1-2 次,未达 ≥2 次阈值) - - 4 个 Entities 以 wikilink 形式建立关联,暂不创建独立页面(Checkpoint 已存在于 entities/;Steve-Jarman/Pradeep/AWS-Organizations 各仅出现 1-2 次,未达 ≥2 次阈值) - - index.md 更新:修正日期为 2026-04-14,移除重复占位符条目(line 416) - - overview.md 更新:修正 CTP Topic 10 段落的 wikilink 指向新 source page;Key Concepts 新增 3 个概念(Service-Control-Policies-SCPs/OU-Layered-Security/Tag-Based-Security) - - 冲突检测:与 [[ctp-topic-28-aws-tag-validation-tool]] 在 SCP 标签强制能力边界上存在视角差异——Topic 10 认为 SCP 可「阻止不合规资源创建」,Topic 28 认为「无法修复存量资源」。两者互补:SCP 负责预防(准入控制),Tag Validation Tool 负责发现(存量审计) - -## [2026-04-27] ingest | CTP Topic 20 Program demand process flow and PoC onboarding -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/ctp-topic-20-program-demand-process-flow-and-poc-onboarding.md -- Status: ✅ 成功摄入 -- Summary: 云转型计划的程序需求流程与 POC 入职流程——Sergio 和 Damian 主讲。核心内容:需求来源(业务案例/战略优先级/产品路线图)、Gate Process 三阶段审批(Gate 0/1/3)、POC 目的(验证架构可行性+熟悉 Gruntwork Landing Zone)、新环境强调 IaC(Terraform/Terragrunt)自动化、PCG 团队职责、成功标准前置定义。 -- Concepts identified: Program-Demand-Process, Proof-of-Concept, Gate-Process, Solution-Design -- Entities identified: Sergio, Damian, PCG-Team, Gruntwork, Terraform, Terragrunt -- Source page: wiki/sources/ctp-topic-20-program-demand-process-flow-and-poc-onboarding.md -- Notes: - - 新增 1 个 Source Page - - 4 个 Concepts 以 wikilink 形式建立关联,暂不创建独立页面(各仅出现 1 次,未达 ≥2 次阈值) - - 6 个 Entities 以 wikilink 形式建立关联,暂不创建独立页面(Sergio/Damian/PCG-Team 各仅出现 1 次;Gruntwork/Terraform/Terragrunt 已存在于 wiki/) - - index.md 更新:替换预期占位符为正式条目(日期修正为 2026-04-14) - - overview.md 更新:新增 CTP Topic 20 摘要段落(置于 ctp-topic-65 之后,ctp-topic-47 之前);Key Concepts 列表新增 4 个概念(Program-Demand-Process/Proof-of-Concept/Gate-Process/Solution-Design) - - 冲突检测:与 [[ctp-topic-4-using-agile-to-run-the-cloud-transformation-program]] 存在流程视角差异——Topic 4 强调 Kanban 持续流动允许随时调整优先级,Topic 20 强调 Gate Process 阶段性审批节点。两者非逻辑矛盾,而是适用场景不同(敏捷迭代 vs 迁移治理),已记录于 Source Page Contradictions 节 - -## [2026-04-24] ingest | CTP Topic 4 Using Agile to Run the Cloud Transformation Programme -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/ctp-topic-4-using-agile-to-run-the-cloud-transformation-program.md -- Status: ✅ 成功摄入 -- Summary: 云转型计划中敏捷实践落地经验——从 Scrum(两周 Sprint)因"Sprint 期间不允许变更"转向 Kanban 持续流动,采用混合框架(Kanban 为主 + 保留 Scrum 仪式)。Microsoft Planner 看板五列布局,最佳实践:单一负责人、依赖链接、优先级和截止日期。核心价值观:快速反馈驱动产品和开发文化持续改进。 -- Entities created: Heather-Norris, Microsoft-Planner -- Concepts created: Scrum, Kanban, Agile-Ceremonies, Continuous-Delivery -- Source page: wiki/sources/ctp-topic-4-using-agile-to-run-the-cloud-transformation-program.md -- Notes: 与 CTP Topic 30 (变更管理) 和 Topic 57 (需求管理) 共同构成项目管理知识体系 - -## [2026-04-26] ingest | CTP Topic 65 Tracing the Value Delivered in Cloud Transformation -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/ctp-topic-65-tracing-the-value-delivered-in-cloud-transformation.md -- Status: ✅ 成功摄入 -- Summary: 云转型价值交付量化框架——涵盖 Process/Value/Value-Stream 基础概念、Lean 三类活动识别、收益四维度量化(财务/生产力/质量/体验)、WSJF 优先级排序(Cost of Delay / Size of Job)、功能级价值拆解方法。核心理念:"以最小投入尽早交付最大价值"。 -- Concepts identified: Process, Value, Value-Stream, Value-Adding, Waste, Benefits-Quantification, Cost-of-Delay, WSJF, SOM, Feature-Level-Value-Breakdown -- Entities identified: CTP(Cloud Transformation Programme),Scaled-Agile(WSJF 来源框架) -- Source page: wiki/sources/ctp-topic-65-tracing-the-value-delivered-in-cloud-transformation.md - - - 新增 1 个 Source Page(wiki/sources/ctp-topic-65-tracing-the-value-delivered-in-cloud-transformation.md) - - 所有 Concepts 和 Entities 均以 wikilink 形式建立关联,暂不创建独立页面(各仅出现 1 次,未达 ≥2 次阈值) - - index.md 更新:替换预期占位符为正式条目(日期修正为 2026-04-14) - - overview.md 更新:新增 CTP Topic 65 摘要段落(置于 ctp-topic-30 之后,ctp-topic-47 之前);Key Concepts 列表新增 10 个概念 - - 冲突检测:与 [[ctp-topic-53-why-bother-with-cloud]] 存在视角张力——Topic 53 质疑迁移必要性,Topic 65 假设迁移已决策并聚焦如何量化交付价值。两者互补而非逻辑矛盾——前者回答"是否迁移",后者回答"如何衡量价值"。已记录于 Source Page Contradictions 节。 - - -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/ctp-topic-30-managing-change.md -- Status: ✅ 成功摄入 -- Summary: 云转型中的变更管理与 SRE 团队协作——Brendan Starnig(SRE Function Lead)主讲。核心内容:①SRE 职责——用软件工程思维解决运维问题,追求可靠性、可测试性、可重复性;②变更分类——Standard Change(预批准,完全自动化)→ Normal Change(需 CAB 审批)→ Emergency Change(立即执行,事后 CAPA);③SRE 三阶段协作——Build/Early Live Support/BAU;④Self-Healing 演进方向。 -- Concepts created: Standard-Change, Normal-Change, Emergency-Change, CAPA, Early-Live-Support -- Entities created: Brendan-Starnig, SMACs -- Source page: wiki/sources/ctp-topic-30-managing-change.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-30-managing-change.md) - - 新增 2 个 Entity 页面(Brendan-Starnig.md, SMACs.md) - - 新增 5 个 Concept 页面(Standard-Change.md, Normal-Change.md, Emergency-Change.md, CAPA.md, Early-Live-Support.md) - - 更新现有 Entity:SRE-Team.md(添加三阶段支持职责和 Topic 30 来源) - - index.md 更新:替换预期占位符为正式条目(日期修正为 2026-04-14) - - overview.md 更新:新增 CTP Topic 30 摘要段落 - - 冲突检测:与 [[ctp-topic-53-why-bother-with-cloud]] 的观点张力——Topic 30 假设迁移决策已做出,聚焦执行层面变更管理;Topic 53 质疑迁移必要性。已记录于 Source Page Contradictions 节。 - -## [2026-04-25] ingest | CTP Topic 69 Best Practices for Migrating On-Premises (IOD) Virtual Machines to VMware Cloud on AWS -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/08_Networking/ctp-topic-69-best-practices-for-migrating-on-premises-iod-virtual-machines-to-vm.md -- Status: ✅ 成功摄入 -- Summary: VMC on AWS 虚拟机迁移最佳实践——HCX 多云管理(每次迭代最多 200 台 VM)、UI 和 CCOE 脚本两种迁移方案、Direct Connect + Virtual Transit Gateway 混合云连接、预/后迁移自动化、Brown to Manage 系统集成 SMACS + HCMX 实现后迁移管理。 -- Concepts created: Direct Connect, Virtual Transit Gateway, BGP, EC2-Bare-Metal, CCOE, SMACS Suite, HCMX -- Source page: wiki/sources/ctp-topic-69-best-practices-for-migrating-on-premises-iod-virtual-machines-to-vm.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-69-best-practices-for-migrating-on-premises-iod-virtual-machines-to-vm.md) - - 所有 Concepts 和 Entities 均以 wikilink 形式建立关联,暂不创建独立页面(各仅出现 1 次,未达 ≥2 次阈值) - - index.md 更新:替换预期占位符为正式条目(日期修正为 2026-04-14) - - overview.md 更新:新增 CTP Topic 69 摘要段落(置于 ctp-topic-43 之后),补充 HCX 和迁移执行层面的详细信息 - - 冲突检测:与 [[ctp-topic-43-vmware-cloud-on-aws]] 互补而非冲突——Topic 43 提供 VMC on AWS 概述,Topic 69 提供迁移执行细节,已记录于 Source Page Contradictions 节 - -## [2026-04-24] ingest | Public Cloud Learning Sessions (OpenText) - Evolving from DR to Recovery Assurance - 20240723 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/public-cloud-learning-sessions-opentext-evolving-from-dr-to-recovery-assurance-2.md -- Status: ✅ 成功摄入 -- Summary: OpenText DR 向 Recovery Assurance 演进框架——Jim Rose 主讲,涵盖 CrowdStrike 事件警示、RTO/RPO 合同差异、DR 测试瓶颈(被动/手动/按客户时间表)、多云复杂性(AWS/GCP/Azure)、混合架构挑战,以及 Design/Software/Build/Environments 四位框架转型路径。SRE + 可观测性工程是核心驱动力。 -- Concepts identified: RTO, RPO, SRE, Observability-Engineering, Disaster-Recovery, Business-Continuity-Plan, Self-Healing, Customer-Zero-Environment -- Entities identified: OpenText, Jim-Rose, CrowdStrike -- Source page: wiki/sources/public-cloud-learning-sessions-opentext-evolving-from-dr-to-recovery-assurance-2.md -- Notes: - - 新增 1 个 Source Page - - Concepts 和 Entities 均以 wikilink 形式建立关联,暂不创建独立页面(各仅出现 1 次,未达 ≥2 次阈值) - - index.md 更新:插入至 Sources 顶部,日期 2026-04-24 - - overview.md 更新:无需更新(已有 ctp-topic-72 覆盖 DR 核心内容,本视频内容已通过 Connections 节与相关 Topic 建立关联) - - 冲突检测:无冲突——与现有 Wiki DR 内容互补,记录于 Source Page Contradictions 节 - -## [2026-04-25] ingest | CTP Topic 31 Network Segregation and Secure Access to the New AWS Landing Zones -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/08_Networking/ctp-topic-31-network-segregation-and-secure-access-to-the-new-aws-landing-zones.md -- Status: ✅ 成功摄入 -- Summary: AWS Landing Zone 网络隔离与安全远程访问方案。核心:①网络隔离——Checkpoint 防火墙 SPI default-deny 阻断内部网络直连 AWS;②安全访问——AWS SSM 替代 VPN,IAM 角色假设 + SSM Agent 实现浏览器/CLI 远程访问。定位为 SD-WAN 实施前过渡方案;长期目标 IaC 化消除控制台访问。与 Topic 18 互补(打通 vs 限制)。 -- Concepts created: (已存在: SD-WAN, AWS-Landing-Zone, Network-Segregation, AWS-Systems-Manager-SSM, SPI-Security-Policy-Infrastructure; 新增 wikilinks 于 source page) -- Entities created: (已存在: Checkpoint) -- Source page: wiki/sources/ctp-topic-31-network-segregation-and-secure-access-to-the-new-aws-landing-zones.md -- Notes: - - 新增 1 个 Source Page - - 冲突记录:与 [[ctp-topic-18-wide-area-networking-in-aws-cloud]] 的视角张力——Topic 18 关注打通网络,Topic 31 关注限制网络;已记录于 source page Contradictions 章节 - -## [2026-04-25] ingest | CTP Topic 18 Wide Area Networking in AWS Cloud -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/08_Networking/ctp-topic-18-wide-area-networking-in-aws-cloud.md -- Status: ✅ 成功摄入 -- Summary: AWS Transit Gateway 全球广域网架构与 SD-WAN 演进路径——Micro Focus IT 网络架构师 Christian Deckelman 主讲。核心架构:全球划分为 APJ/EMEA/AMS 三个地理区域,每个区域设立 Hub,Landing Zones 通过 TGW Peering 以星型拓扑接入 Hub,区域 Hub 之间全网状互联。现状依赖静态路由缺乏 BGP,DR 需人工干预。未来演进:引入 Silver Peak SD-WAN 实现动态路径选择,Pulse VPN 迁移至 Prisma Access (SASE) 实现就近接入。 -- Concepts created: AWS-Transit-Gateway, Hub-and-Spoke, SD-WAN, Overlay-Network, Static-Routing, Prisma-Access, TGW-Peering -- Entities created: (已存在: Micro Focus, AWS, Christian Deckelman, Silver Peak, Palo Alto Networks) -- Source page: wiki/sources/ctp-topic-18-wide-area-networking-in-aws-cloud.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-18-wide-area-networking-in-aws-cloud.md) - - 新增 7 个 Concept 页面 - - index.md 更新:Sources 节新增条目(日期 2026-04-14) - - overview.md 更新:新增 Topic 18 的完整段落 - - 冲突检测:无已知冲突 - -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/08_Networking/ctp-topic-43-vmware-cloud-on-aws.md -- Status: ✅ 成功摄入 -- Summary: VMware Cloud on AWS(VMC on AWS)混合云服务介绍——VMware与AWS联合开发,在AWS裸金属服务器(i3.metal/i3en.metal)上原生安装vSphere 8。工作负载可在数秒内往返迁移于本地与云端之间,通过HCX实现any-to-any vSphere迁移。相比常规云方案节省27%成本,云经济学团队可提供TCO计算。 -- Concepts created: VMware-Cloud-on-AWS, HCX, SDDC, Stretched-Cluster, Hybrid-Cloud -- Entities created: VMware, AWS -- Source page: wiki/sources/ctp-topic-43-vmware-cloud-on-aws.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-43-vmware-cloud-on-aws.md) - - 新增 2 个 Entity 页面(VMware.md, AWS.md) - - 新增 4 个 Concept 页面(VMware-Cloud-on-AWS.md, HCX.md, SDDC.md, Stretched-Cluster.md) - - index.md 更新:Sources 节新增条目(日期 2026-04-25,置顶于所有条目最前);Entities 节新增 VMware 和 AWS;Concepts 节新增 4 个概念 - - overview.md 更新:新增 Topic 43 的完整段落;Key Concepts 新增 VMware-Cloud-on-AWS、VMware、HCX、SDDC、Stretched-Cluster、Hybrid-Cloud - - 冲突检测:与 ctp-topic-53-why-bother-with-cloud 存在是否应迁移至云端的观点张力,已在 source page 中记录为 Contradictions - -## [2026-04-24] ingest | CTP Topic 61 Workload VPC provision with IPAM Automation -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/08_Networking/ctp-topic-61-workload-vpc-provision-with-ipam-automation.md -- Status: ✅ 成功摄入 -- Summary: -- Concepts created: VPC-自动化供给, CIDR-审批流程, Availability-Zone-ID -- Source page: wiki/sources/ctp-topic-61-workload-vpc-provision-with-ipam-automation.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-61-workload-vpc-provision-with-ipam-automation.md) - - index.md 更新:Sources 节新增条目(日期 2026-04-24,置顶于所有条目最前);移除原有的 source missing 条目 - - overview.md 更新:新增 Topic 45 和 Topic 61 的完整段落,描述 IPAM 的"机制 → 应用"完整链路;Key Concepts 新增 [[VPC-自动化供给]] 和 [[CIDR-审批流程]] - - 冲突检测:无已知冲突内容 - - IPAM(IP Address Management)和 Infoblox Grid 概念已在 overview.md Key Concepts 中,无需单独 Concept 页面 - -## [2026-04-24] ingest | CTP Topic 45 Automatic IP address allocation with IPAM -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/08_Networking/ctp-topic-45-automatic-ip-address-allocation-with-ipam.md -- Status: ✅ 成功摄入 -- Summary: 使用 Infoblox NIOS IPAM 实现 AWS VPC 自动化 IP 地址分配的架构实践。核心内容:①传统方式(手工请求→网络团队计算CIDR→电子表格→手工配置YAML)效率低下;②Infoblox NIOS 自动分配下一个可用 IP 地址块(≤/24 自动,>/24 需审批);③新 YAML 配置仅声明期望子网大小和区域父 CIDR,不含硬编码 IP;④销毁 VPC 时自动从 IPAM Grid 清除条目,支持撤销保护;⑤向后兼容旧配置。目标:创建 VPC 无需网络团队参与,建立单一可信数据源。 -- Concepts created: IPAM(IP Address Management),Infoblox-NIOS,VPC-自动化供给 -- Source page: wiki/sources/ctp-topic-45-automatic-ip-address-allocation-with-ipam.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-45-automatic-ip-address-allocation-with-ipam.md) - - index.md 更新:将原有的 source missing 条目替换为正式条目(日期 2026-04-24) - - IPAM 关键概念在 source page 内已有详细说明,无需单独 Concept 页面 - - 冲突检测:无已知冲突内容 - -## [2026-04-24] ingest | CTP Topic 19 Configuring DNS within AWS LZs -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/08_Networking/ctp-topic-19-configuring-dns-within-aws-lzs.md -- Status: ✅ 成功摄入 -- Summary: AWS Landing Zone 多账号环境中的集中化 DNS 配置架构——Sankar Gopov 主讲。核心内容:①设立专用 DNS 账号集中管理所有私有托管区(优于分散管理);②Route 53 Resolver Inbound/Outbound Endpoints 打通混合 DNS(Inbound 接收本地请求,Outbound 转发 AWS 请求至本地);③AWS RAM 跨账号共享 Resolver Rules;④跨账号 VPC 关联必须先授权(Authorization)再关联(Association);⑤Terraform 自动化实现新账号上线即具备完整解析能力。 -- Concepts created: Hybrid DNS Resolution, Route 53 Resolver Rules, VPC Association Authorization, Terraform DNS Automation -- Entities created: Sankar Gopov -- Source page: wiki/sources/ctp-topic-19-configuring-dns-within-aws-lzs.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-19-configuring-dns-within-aws-lzs.md) - - 新增 1 个 Entity 页面(wiki/entities/SankarGopov.md) - - 新增 1 个 Concept 页面(wiki/concepts/HybridDnsResolution.md) - - index.md 更新:Sources 节新增条目(日期 2026-04-24,置顶于所有条目最前) - - overview.md 更新:更新 CTP Topic 22 段落,移除"(待摄入)"标注,补全两条 DNS 视频的知识体系关系描述 - - 冲突检测:与 [[ctp-topic-22-global-dns-service-offerings]] 存在潜在视角差异——DNS 账号是否应包含公共托管区;前者侧重落地配置,后者侧重服务提供架构;两者的冲突是视角互补而非逻辑矛盾 - -## [2026-04-26] ingest | CTP Topic 36 SendGrid as an Email Service -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/08_Networking/ctp-topic-36-sendgrid-as-an-email-service.md -- Status: ✅ 成功摄入 -- Summary: SendGrid 被选定为 CTP 标准邮件服务,替换 Port 25 不安全的语义消息网关和每封限制 50 收件人的 SES。SendGrid 支持每封最多 1,000 收件人、TLS 端到端加密、双因素认证;两种架构(直连 vs 中继);配置要求 software.microcopy.com 域名、smtp.sendgrid.net:587、TLS;SPF/DKIM 必要;API 密钥 180 天轮换;日志 7 天保留。同期更新了 Cyber Suite 加密标准(FIPS/Java/Golang/Node.js/OpenCell 等),可选套件因含 CBC 弱加密仅作向后兼容。 -- Concepts created: SPF, DKIM, TLS, API-Key-Rotation, Cyber-Suite, CBC-Mode -- Entities touched: SendGrid, Twilio, Rejoy Ganapati, Rajiv, Yu-Yan, PSAC -- Source page: wiki/sources/ctp-topic-36-sendgrid-as-an-email-service.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-36-sendgrid-as-an-email-service.md) - - 所有 Concepts 和 Entities 均以 wikilink 形式建立关联,暂不创建独立页面(各仅出现 1 次,未达 ≥2 次阈值) - - index.md 更新:Sources 节新增条目(日期 2026-04-14,置顶于 CTP Topic 34 之后) - - overview.md 更新:新增 CTP Topic 36 摘要段落(置于 ctp-topic-22 之后,ctp-topic-17 之前);Key Concepts 列表新增 8 个概念(SPF/DKIM/TLS/API-Key-Rotation/Cyber-Suite/CBC-Mode/SendGrid/Twilio) - - 冲突检测:与 [[ctp-topic-12-using-ses-smtp-service-terraform-module]] 存在冲突——SES 作为标准邮件服务 vs SendGrid 被选定为新标准;SES 适合 AWS 原生集成场景,SendGrid 为大规模需求首选 - - -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/08_Networking/ctp-topic-22-global-dns-service-offerings.md -- Status: ✅ 成功摄入 -- Summary: 企业级全球 DNS 服务架构详解——Sankar 和 Vino 主讲。核心架构:Route 53 Private Hosted Zone + AD 托管 DNS,通过 Route 53 Resolver 入站/出站终端节点打通 AWS VPC 与本地网络 DNS 查询;Outbound Endpoint 配置多区域 AD 域控制器 IP 实现故障自动切换;Infoblox Anycast 提供本地 DNS 全球低延迟和高可用;AWS EC2 不支持 Anycast;DNS 安全涵盖防隧道攻击、缓存污染等;就近解析优化 Office 365 访问 -- Concepts touched: Hybrid DNS Resolution、Route 53 Private Hosted Zone、Route 53 Resolver、DNS Anycast、Infoblox Grid、IPAM(IP Address Management)、Active Directory DNS、Landing Zone -- Entities touched: AWS、Infoblox、Microsoft Active Directory、Office 365、Sankar、Vino -- Source page: wiki/sources/ctp-topic-22-global-dns-service-offerings.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-22-global-dns-service-offerings.md) - - 所有 Concepts 和 Entities 均以 wikilink 形式建立关联,暂不创建独立页面(各仅出现 1 次,未达 ≥2 次阈值) - - index.md 更新:Sources 节替换预期占位符为正式条目(日期修正为 2026-04-14) - - overview.md 更新:新增 CTP Topic 22 摘要段落(置于 ctp-topic-14 之后,ctp-topic-17 之前);Key Concepts 列表新增 7 个 DNS 相关概念 - - 冲突检测:ctp-topic-19(configuring DNS within AWS LZs)尚未摄入,无法进行完整对比;source page Contradictions 节已记录,待 ctp-topic-19 摄入后补充对比 - -## [2026-04-26] ingest | CTP Topic 50 AMI Roadmap for AWS AMIs -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-50-ami-roadmap-for-aws-amis.md -- Status: ✅ 成功摄入 -- Summary: CCOE AMI 路线图详解——涵盖 CCOE AMI 路线图规划、操作系统 EOL 时间线(Windows Server 2008/2008 R2 已 EOL;CentOS 8 已 EOL;Windows Server 2012 将于 2023 年 10 月 EOL;RHEL 7 和 CentOS 7 将于 2024 年 6 月 EOL)、AMI 通知机制、变更日志(CCRE 门户)、新 AMI 添加流程、当前支持的 AMI 清单及未来路线图。自 2023 年 5 月起所有 ARM AMI 同步发布。路线图优先级主要由 ADM 需求驱动,变更需通过需求管道流程提交。AMI 通过跨账号共享分发给组织内所有账户。 -- Concepts touched: Foundation AMI、OS-End-of-Life、AMI Sharing、ARM-AMI、CCOE、ADM、SSM Agent -- Entities touched: CCOE、AWS、Ubuntu、CentOS、Rocky Linux、Red Hat Enterprise Linux、SLES、Windows Server、McAfee -- Source page: wiki/sources/ctp-topic-50-ami-roadmap-for-aws-amis.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-50-ami-roadmap-for-aws-amis.md) - - 所有 Concepts 和 Entities 均以 wikilink 形式建立关联,暂不创建独立页面(各仅出现 1 次,未达 ≥2 次阈值) - - index.md 更新:Sources 节替换预期占位符为正式条目(日期修正为 2026-04-14) - - overview.md 更新:新增 CTP Topic 50 摘要段落(置于 learning-sessions-standard-amis-updates 之后,ctp-topic-26 之前) - - 冲突检测:与 [[learning-sessions-standard-amis-updates]] 的 EOL 时间线一致(CentOS 7/RHEL 7 将于 2024 年 6 月 EOL);与 [[ctp-topic-26-standard-ami-build-publish-share-processes]] 存在描述角度差异(本话题聚焦路线图规划,Topic 26 聚焦生命周期管理),非矛盾而是互补关系,已记录于 Source Page Contradictions 节 - -## [2026-04-24] ingest | CTP Topic 40 SaaS Database Architecture On AWS Cloud -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-40-saas-database-architecture-on-aws-cloud.md -- Status: ✅ 成功摄入 -- Summary: SAS 数据库团队在 AWS 云上的架构与运维实践——全球分布式团队(美国/加拿大/印度/以色列)提供 24/7 支持,管理 500+ 数据库和 1000+ DB 服务器;支持 Oracle、Vertica、Postgres、DynamoDB、SQL Server、MongoDB、MySQL 等多引擎;高可用架构采用三可用区模式(主库/备用库/见证节点);使用 Oracle Data Guard、Postgres Active-Passive/Active-Active、RDS HA 实现多活;通过 Terraform、AWS CLI、Shell/PowerShell 实现 IaC 自动化;Oracle GoldenGate 支持零停机迁移 -- Concepts created: 无新增(高可用/Oracle Data Guard/Multi-AZ Deployment/Database Migration/DB-as-a-Service 各仅出现 1-2 次,不满足 ≥2 次建页条件,跳过独立建页) -- Entities created: 无新增(AWS/RDS/Aurora/Terraform/Micro Focus 各仅出现 1-2 次,不满足 ≥2 次条件,跳过独立建页) -- Source page: wiki/sources/ctp-topic-40-saas-database-architecture-on-aws-cloud.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-40-saas-database-architecture-on-aws-cloud.md) - - 所有 Concepts 和 Entities 均以 wikilink 形式建立关联,暂不创建独立页面(未达 ≥2 次阈值) - - index.md 更新:Sources 节新增条目(置顶) - - overview.md 更新:新增 CTP Topic 40 摘要段落(置于 ctp-topic-10 之后,ctp-topic-46 之前);Key Concepts 列表新增 Database Migration - - 冲突检测:无明显冲突内容 - -## [2026-04-26] ingest | CTP Topic 26 Standard AMI – build, publish, share processes -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-26-standard-ami-build-publish-share-processes.md -- Status: ✅ 成功摄入 -- Summary: Foundation AMI 全生命周期管理详解——基于市场主流 OS(CentOS/Ubuntu/Windows)进行 CIS 安全基准加固;集成 McAfee EPO + Syslog-ng + AD SSO + SSM Agent + SiteScope;HashiCorp Packer + Jenkins 流水线实现全自动化;跨账号 AMI Sharing 分发至全球多区域(俄勒冈/法兰克福/悉尼);每两个月更新,N-2 版本保留策略;责任共担模型(CCOE 提供 Foundation AMI,产品团队构建产品特定 AMI) -- Concepts created: 无新增(Foundation AMI/OS Hardening/CIS Benchmarks/HashiCorp Packer/SSM Agent/AMI Sharing/Central Repository 各仅出现 1 次,不满足 ≥2 次建页条件,跳过独立建页) -- Entities created: 无新增(Srihari/Alan/Praveen 各仅出现 1 次,不满足 ≥2 次条件;CCOE 仅出现 1 次) -- Source page: wiki/sources/ctp-topic-26-standard-ami-build-publish-share-processes.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-26-standard-ami-build-publish-share-processes.md) - - 7 个 Concept 均以 wikilink 形式建立关联,暂不创建独立页面(未达 ≥2 次阈值) - - index.md 更新:Sources 节替换预期条目占位符为正式条目(日期修正为 2026-04-14) - - overview.md 更新:新增 CTP Topic 26 摘要段落(置于 learning-sessions-standard-amis-updates 之后,替换原 ctp-topic-58 段落位置);Key Concepts 列表新增 Foundation AMI / OS Hardening / CIS Benchmarks / AMI Sharing / Central Repository - - 冲突检测:与 [[ctp-topic-58-aws-ec2-image-builder]] 描述不同 AMI 生命周期阶段——ctp-topic-26 描述当前 Packer+Jenkins 生产实践,ctp-topic-58 描述 EC2 Image Builder 未来演进方向,非冲突而是演进关系,已记录于 Source Page Contradictions 节 - -## [2026-04-23] ingest | CTP Topic 68 Introduction to Redshift -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-68-introduction-to-redshift.md -- Status: ✅ 成功摄入 -- Summary: AWS Redshift 数据仓库入门——核心架构(Leader Node + Compute Node + Slices)、MPP 并行处理、列式存储 vs 行式存储、数据压缩(ZSTD/LZO)、Sort Key / Distribution Key 优化、RA3 实例类型(AWS 托管 NVMe) -- Concepts created: [[MPP]], [[Columnar-Storage]] -- Entities created: [[Amazon-Redshift]] -- Source page: wiki/sources/ctp-topic-68-introduction-to-redshift.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-68-introduction-to-redshift.md) - - 新增 1 个 Entity Page(wiki/entities/Amazon-Redshift.md) - - 新增 2 个 Concept Page(wiki/concepts/MPP.md、wiki/concepts/Columnar-Storage.md) - - index.md 更新:Sources 节移除预期占位符("source missing")替换为正式条目;Entities 节新增 Amazon-Redshift;Concepts 节新增 MPP、Columnar-Storage - - overview.md 更新:新增 CTP Topic 68 摘要段落(置于 ctp-topic-51 之后);Key Concepts 列表新增 Data-Warehouse、MPP、Columnar-Storage、Sort-Key、Distribution-Key - - 冲突检测:与 [[ctp-topic-66-rds-vs-aurora]] 存在架构差异(Redshift 独立 Compute Node vs Aurora 共享存储),记录于 Source Page 的 Contradictions 节 - - Sort Key 和 Distribution Key 概念因在其他页面中暂未出现,本次不创建独立页面 - -## [2026-04-14] ingest | CTP Topic 58 AWS EC2 Image Builder -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-58-aws-ec2-image-builder.md -- Status: ✅ 成功摄入 -- Summary: AWS EC2 Image Builder 替代 Packer/Jenkins 实现企业级 AMI 生命周期自动化——通过 Pipeline/Recipe/Component/Infrastructure Config 四层抽象,将 CCOE 加固脚本转换为可复用组件;POC 实现 CentOS 7 和 Ubuntu 18 端到端流水线;Lambda 工作流触发 AWS Inspector 扫描、邮件通知和 S3 报告归档 -- Concepts identified: [[Golden-AMI]], [[CCOE]], [[Image-Pipeline]], [[Image-Recipe]], [[Image-Component]], [[Infrastructure-Configuration]], [[Distribution-Settings]], [[AWS-Inspector]] -- Entities identified: [[AWS]](仅出现 1 次,不满足 ≥2 次建页条件,跳过独立建页) -- Source page: wiki/sources/ctp-topic-58-aws-ec2-image-builder.md -- Notes: - - 新增 1 个 Source Page - - 新增 8 个 Concept,均仅出现 1 次,不满足 ≥2 次建页条件,本次不创建独立页面 - - AWS Entity 页面已存在于 wiki/entities/(Amazon-RDS.md 等系列页面),本次复用 - - index.md 更新:Sources 节替换预期条目占位符为正式条目(日期修正为 2026-04-14) - - overview.md 更新:新增 CTP Topic 58 摘要段落(置于 learning-sessions-standard-amis-updates 之后) - - 冲突检测:与 [[ctp-topic-26-standard-ami-build-publish-share-processes]] 描述不同 AMI 生命周期阶段,非冲突,记录于 Source Page 的 Contradictions 节 - -## [2023-12-05] ingest | Learning Sessions: Standard AMI Updates 20231205 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/learning-sessions-standard-amis-updates-20231205-160324-meeting-recording-2.md -- Status: ✅ 成功摄入 -- Summary: AWS 标准 AMI 更新机制与生命周期管理——标准 AMI 基于 AWS 原生镜像增加 OS 加固、安全补丁、SSM Agent、QALIS Agent;Jenkins 多分支流水线构建测试 AMI,将验证周期从 3-4 天缩短至 60 分钟;支持 23 种 AMI 涵盖 Amazon Linux/CentOS/OEL/RHEL/Rocky Linux/SUSE/Ubuntu/Windows;机器人框架自动化验证为核心优化手段;CentOS 7/RHEL 7 将于 2024 年 6 月 EOL,由 Rocky Linux 替代;SSM 打补丁方案适用于长期运行实例。 -- Concepts identified: [[Amazon-Machine-Image]], [[Jenkins-Multi-Branch-Pipeline]], [[AWS-Inspector]], [[Robotic-Framework]], [[SSM-Patching]], [[GP3-EBS-Storage]], [[OS-End-of-Life]] -- Entities identified: [[Rocky-Linux]], [[Sentinel-1]](均仅出现 1 次,不满足 ≥2 次建页条件,跳过独立建页) -- Source page: wiki/sources/learning-sessions-standard-amis-updates-20231205-160324-meeting-recording-2.md -- Notes: - - 新增 1 个 Source Page - - 新增 overview.md 条目,置于 CTP Topic 7 之前(按日期 2023-12-05 排序) - - 7 个 Concept 均仅出现 1 次,不满足 ≥2 次建页条件,本次不创建独立 Concept 页面 - - 无内容冲突 - -## [2026-04-23] ingest | CTP Topic 7 SaaS Landing Zone Design -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-7-saas-landing-zone-design.md -- Status: ✅ 成功摄入 -- Summary: SAS(生产)Landing Zone 顶层设计——采用单一 Landing Zone 承载所有产品组;定义四层账户体系(Core Accounts: Shared/Logs/Security;Baseline Accounts: Network/DNS/AD;Shared Services Accounts: Software Factory/Cyber/ARC/Monitoring;Product Accounts);Terraform IaC + GitHub/Jenkins CI/CD 端到端自动化部署链路(GitHub Hook → Jenkins → Management VPC → Lambda → ECS Cluster);工作负载置于私有子网,WAF + CloudFront 提供入站安全;远程接入从 Checkpoint VPN 迁移至 Pulse VPN(AD 认证)。 -- Concepts identified: [[Landing-Zone-Architecture]], [[Active-Directory-Integration]], [[Transit-Gateway]], [[WAF-Web-Application-Firewall]], [[Private-Subnet-Architecture]], [[Terraform-IaC]] -- Entities identified: [[Gruntwork]], [[Jenkins]], [[Checkpoint]], [[CloudFront]], [[Qalis]], [[OBM]](均仅出现 1 次,不满足 ≥2 次建页条件,跳过独立建页) -- Source page: wiki/sources/ctp-topic-7-saas-landing-zone-design.md -- Notes: - - 新增 1 个 Source Page - - 新增 6 个 Concept(Landing-Zone-Architecture/Active-Directory-Integration/Transit-Gateway/WAF-Web-Application-Firewall/Private-Subnet-Architecture/Terraform-IaC),均仅出现 1 次,不满足 ≥2 次建页条件,本次不创建独立页面 - - 新增 6 个 Entity(Gruntwork/Jenkins/Checkpoint/CloudFront/Qalis/OBM),均仅出现 1 次,不满足 ≥2 次条件,跳过独立建页 - - Gruntwork、Checkpoint Entity 页面已存在于 wiki/entities/,本次复用 - - Landing-Zone-Architecture Concept 页面已存在于 wiki/concepts/,本次复用 - - index.md 更新:Sources 节替换预期条目占位符为正式条目 - - overview.md 更新:新增 CTP Topic 7 摘要段落(置于 ctp-topic-1 之前) - - 冲突检测:与 [[ctp-topic-35-aws-landing-zone-design-refresher-saas-labs]] 存在时间维度的架构演进关系(非冲突)——ctp-topic-7 定义原始设计,ctp-topic-35 补充近期变更(网络分段、Pulse VPN 替换 Checkpoint VPN),记录于 Source Page 的 Contradictions 节 - -## [2026-04-14] ingest | CTP Topic 34 Azure Landing Zone Architecture Overview -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-34-azure-landing-zone-architecture-overview.md -- Status: ✅ 成功摄入 -- Summary: Kishore Garlopati 讲解 Azure Landing Zone 在 Micro Focus 的实施架构。核心:Azure Enterprise Enrollment → 管理组(Management Groups)四层分级(Platform/Landing Zones/Decommission/Sandbox)→ 独立订阅隔离目的 → Terraform Cloud IaC 自动化。Platform 层含 Identity 和 Connectivity 两个独立订阅;Connectivity 订阅作为中心枢纽汇聚所有入站/出站 Azure 流量(含 DDoS 防护和 Checkpoint 防火墙);Landing Zones 设计为可扩展、模块化、全自动化;Terraform Cloud 管理跨订阅依赖;PIM/PAG 实现精细化访问控制。 -- Concepts identified: [[Azure Landing Zone]], [[Management Groups]], [[Terraform Cloud]], [[Privileged Identity Management (PIM)]], [[Privileged Access Groups]] -- Source page: wiki/sources/ctp-topic-34-azure-landing-zone-architecture-overview.md -- Notes: - - 新增 1 个 Source Page - - 新增 5 个 Concept(Azure Landing Zone / Management Groups / Terraform Cloud / Privileged Identity Management (PIM) / Privileged Access Groups),均仅出现 1 次,不满足 ≥2 次建页条件,本次不创建独立页面 - - 新增 1 个 Entity(Kishore Garlopati),仅出现 1 次,不满足 ≥2 次条件,本次不创建独立页面 - - index.md 更新:Sources 节替换预期条目占位符为正式条目 - - overview.md 更新:Cloud Transformation & DevOps 节新增 Azure Landing Zone 概念标注 - - 无冲突检测到 - - 本文档原状态为"🟡 Awaiting Whisper transcription → Summary",现已摄入完成 - -## [2026-04-23] ingest | CTP Topic 35 AWS Landing Zone Design Refresher (SaaS Labs) -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-35-aws-landing-zone-design-refresher-saas-labs.md -- Status: ✅ 成功摄入 -- Summary: AWS Landing Zone 设计复习,明确 SaaS(生产)与 Labs(开发)的职责划分。SaaS LZ 为每个产品区域提供客户专属产品账户,连接共享服务账户(安全、日志、网络);核心账户组含 AD、DNS、Network 账户;Gruntwork 账户跨所有账户管理 AMI、日志和安全。近期变更:网络分段阻断 SaaS 工作负载直接连通性;CCOEs CloudTrail 取代 Gruntworks CloudTrail;入站流量通过 Network 账户 Checkpoint 重新路由;AWS Backup 有望强制化;新账户可能取消 Management VPC。核心结论:SaaS = 生产,Labs = 开发;PoC LZ 并入 Labs。 -- Concepts created: [[AWS-Landing-Zone]], [[Gruntwork]], [[Shared-Services-Account]], [[Core-Accounts]], [[Product-Accounts]], [[Gruntwork-Accounts]], [[CCOEs-CloudTrail]], [[Network-Segmentation]] -- Source page: wiki/sources/ctp-topic-35-aws-landing-zone-design-refresher-saas-labs.md -- Notes: - - 新增 1 个 Source Page - - 新增 8 个 Concept(AWS-Landing-Zone/Gruntwork/Shared-Services-Account/Core-Accounts/Product-Accounts/Gruntwork-Accounts/CCOEs-CloudTrail/Network-Segmentation) - - 新增 1 个 Entity(Cloud-Technology-Design-Forum,仅在本文档提及,不满足 ≥2 次条件,跳过独立建页) - - overview.md 更新:新增 CTP Topic 35 摘要段落(置于 ctp-topic-1 之前) - - index.md 更新:Sources 节替换预期条目占位符为正式条目 - - 无冲突检测到 - -## [2026-04-14] ingest | CTP Topic 47 Enterprise Architecture Cloud Standards -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-47-enterprise-architecture-cloud-standards.md -- Status: ✅ 成功摄入 -- Summary: Lindsay 分享企业架构云标准。核心:Landing Zone 框架聚焦安全、合规和可管理性;账户结构与环境和角色对齐,零信任+最小权限原则;Terraform/Terragrunt 实现 IaC 标准化;云防护栏文档捕获强制性要求和最佳实践;功能分区将单体应用拆分为更小的独立模块或无服务器函数;强调需要应用团队输入完善防护栏。 -- Concepts created: [[Landing Zone]], [[Cloud Guardrails]], [[Functional Partitioning]] -- Source page: wiki/sources/ctp-topic-47-enterprise-architecture-cloud-standards.md -- Notes: - - 新增 1 个 Source Page - - 新增 3 个 Concept(Landing Zone / Cloud Guardrails / Functional Partitioning) - - overview.md 更新:新增 CTP Topic 47 摘要段落(置于 ctp-topic-17 之后) - - 无 Entity 创建(Lindsay 仅出现 1 次,不满足 ≥2 次条件) - - 无冲突检测到 - -## [2026-04-14] ingest | CTP Topic 72 Implementing an Enterprise DR Strategy Using AWS Backup -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-72-implementing-an-enterprise-dr-strategy-using-aws-backup.md -- Status: ✅ 成功摄入 -- Summary: AWS 解决方案架构师 Sabith 深入讲解企业级灾难恢复策略与 AWS Backup 架构设计。核心:HA(高可用)关注运行时间和 MTBF,DR(灾难恢复)专注防止数据丢失;RPO/RTO 定义恢复目标;AWS Backup 集中化、基于策略,支持跨账户跨区域复制;四级 DR 架构模式(Backup and Restore → Pilot Light → Warm Standby → Active-Active);增量备份节省成本;Vault Lock 合规模式防勒索软件;Bunker Account + Forensic Account 增强隔离性和测试验证。 -- Concepts created: [[高可用(High Availability)]], [[灾难恢复架构模式]], [[Vault Lock]], [[跨账户备份]], [[增量备份]], [[全量备份]], [[AWS Backup Audit Manager]] -- Source page: wiki/sources/ctp-topic-72-implementing-an-enterprise-dr-strategy-using-aws-backup.md -- Notes: - - 新增 1 个 Source Page - - 新增 7 个 Concept(高可用/灾难恢复架构模式/Vault Lock/跨账户备份/增量备份/全量备份/AWS Backup Audit Manager) - - overview.md 更新:新增 CTP Topic 72 摘要段落(置于 ctp-topic-17 之后),Key Concepts 节新增 7 个概念标注 - - index.md 更新:Sources 节新增条目(置顶于 ctp-topic-28 之前),并删除预期条目占位符 - - 冲突检测:与 [[ctp-topic-44-aws-backup-in-micro-focus]] 互补而非冲突,Topic 72 提供理论框架,Topic 44 提供内部评估视角,构成完整 AWS Backup 知识体系 - - 与 [[ctp-topic-44-aws-backup-in-micro-focus]] 和 [[ctp-topic-73-aws-backup-implementation-of-the-cloud-transformation-program]] 三者构成递进关系(理论基础 → 内部评估 → 迁移实施) - -## [2026-04-23] ingest | CTP Topic 51 Architecting with AWS Purpose-Built Databases -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-51-architecting-with-aws-purpose-built-databases.md -- Status: ✅ 成功摄入 -- Summary: AWS 数据库专家 Femi George 分享专用数据库选型与架构原则。核心:现代应用"为正确的工作选择正确的专用数据库",避免一刀切。AWS 提供完整数据库品类(关系型/NoSQL/键值/文档/宽列/内存/图/时序)。实战案例:Duolingo 用 DynamoDB + ElastiCache + Aurora;Netflix 用 DynamoDB 做高弹性 JSON;Peloton 用 ElastiCache Redis 即时反馈。云时代 DBA 从平台管理转向应用创新。 -- Entities created: Amazon-DynamoDB, Amazon-DocumentDB, Amazon-ElastiCache, Amazon-Keyspaces, Amazon-Neptune, Amazon-Timestream -- Concepts created: Purpose-Built-Databases, DBA-Role-Evolution, Multi-Database-Architecture -- Source page: wiki/sources/ctp-topic-51-architecting-with-aws-purpose-built-databases.md -- Notes: - - 新增 1 个 Source Page - - 新增 6 个 Entity(Amazon-DynamoDB/ElastiCache/Neptune/Timestream/Keyspaces/DocumentDB) - - 新增 3 个 Concept(Purpose-Built-Databases / DBA-Role-Evolution / Multi-Database-Architecture) - - overview.md 更新:新增 CTP Topic 51 摘要段落,置于 ctp-topic-66 之前 - - index.md 更新:Sources 节替换预期条目为实际摘要,Entities 节新增 6 个实体,Concepts 节新增 3 个概念 - - 冲突检测:与 [[ctp-topic-66-rds-vs-aurora]] 视角互补而非冲突,已记录于 Source Page Contradictions 节 - -## [2026-04-23] ingest | CTP Topic 46 NetApps on AWS -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-46-netapps-on-aws.md -- Status: ✅ 成功摄入 -- Summary: Sandeep 和 Yael 主讲的 NetApp 存储系统培训。覆盖传统 NetApp 架构(ONTAP / Aggregate / FlexVol / Qtree / LUN / LIF / SVM)和 AWS 云版本 CVO。CVO 通过 EC2 实例提供软件定义存储,支持单节点或 HA 配对(跨多 AZ 同步复制);数据分层机制将 30 天非活跃数据从 EBS 自动迁移到 S3;SnapMirror 实现块级跨集群复制;迁移工具包括 SnapMirror、NetApp XCP、Cloud Sync、AWS DataSync。组织已在 15 个 AWS 区域部署约 1.3 PB 数据。 -- Concepts created: [[SnapMirror]] -- Entities created: [[NetApp]] -- Source page: wiki/sources/ctp-topic-46-netapps-on-aws.md -- Notes: - - 新增 1 个 Source Page - - 新增 1 个 Entity(NetApp) - - 新增 1 个 Concept(SnapMirror) - - overview.md 更新:新增 CTP Topic 46 摘要段落,置于 ctp-topic-66 之前 - - index.md 更新:Sources 节新增条目(置顶于 Blogwatcher 前),Entities 节新增 NetApp,Concepts 节新增 SnapMirror - - 冲突检测:暂无检测到与其他 Wiki 页面的冲突(NetApp 存储与 RDS/Aurora 属不同技术域,互补关系) - -## [2026-04-14] ingest | CTP Topic 17 Active Directory Services in Gruntwork AWS LZs -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-17-active-directory-services-in-gruntwork-aws-lzs.md -- Status: ✅ 成功摄入 -- Summary: Paul 讲解 Gruntwork AWS Landing Zones 中的 AD 服务集成。核心内容:双域名策略(`swinford.net` 用于 R&D Labs,`intsas.local` 用于生产/SAS 环境);SRE 预制 AMI 内置 PowerShell(Windows)/Shell(Linux)域加入脚本,通过 Terraform `user_data` 触发自动域加入;旧域名 `infra` 和 `AST` 已废弃,提供迁移路径;Linux 支持安全动态更新(Secure Dynamic Updates)自动注册 DNS A 记录;R&D 环境使用 MIM 自助服务,生产/SAS 环境通过 SMACKS 工单系统申请账号。 -- Concepts created: [[Swinford.net]](作为 AD 域名概念)、[[Intsas.local]](作为 AD 域名概念)、[[SMACKS]](作为工单系统概念) -- Entities created: [[Gruntwork]](Company/Project类实体)、[[SMACKS]](Project类实体) -- Source page: wiki/sources/ctp-topic-17-active-directory-services-in-gruntwork-aws-lzs.md -- Notes: - - 新增 1 个 Source Page - - 新增 1 个 Entity(Gruntwork) - - 新增 2 个 AD 域名概念实体(Swinford.net、Intsas.local) - - 新增 1 个工单系统实体(SMACKS) - - overview.md 更新:新增 CTP Topic 17 摘要段落 - - 冲突检测:暂无检测到与其他 Wiki 页面的冲突 - -## [2026-04-24] ingest | CTP Topic 66 Exposing the differences between PostgreSQL RDS and Aurora -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-66-exposing-the-differences-between-postgresql-rds-and-aurora.md -- Status: ✅ 成功摄入 -- Summary: Greg Klau 深度对比 PostgreSQL RDS 与 Aurora。核心维度:①最小规格/成本(RDS 更低);②最大容量/IO性能(Aurora 更优,>10-20TB首选);③RTO(Aurora 30秒 vs RDS 2分钟);④存储灵活性(RDS GP2/GP3/预置IOPS/磁性,Aurora按IO收费);⑤架构(RDS:EC2+EBS分离,Multi-AZ备用;Aurora:6副本跨3AZ共享集群卷);⑥Blue-Green部署(仅Aurora MySQL支持);⑦端点设计(Aurora独立Writer/Reader Endpoint)。高可用调优:DNS TTL=1秒、TCP Keep-Alive、JDBC reader/writer端点路由。 -- Concepts created: [[RTO]] -- Entities created: [[Amazon-Aurora]](Product类实体)、[[Amazon-RDS]](Product类实体) -- Source page: wiki/sources/ctp-topic-66-exposing-the-differences-between-postgresql-rds-and-aurora.md -- Notes: - - 新增 1 个 Source Page - - 新增 1 个 Concept(RTO,灾备核心指标) - - 新增 2 个 Entity(Amazon-Aurora、Amazon-RDS) - - 冲突检测:与 learning-sessions-cloud-transformation-programme-deploying-rds-via-terraform 存在视角差异——Terraform IaC 部署关注资源标准化,存储选型属运维决策层面,已记录于 Contradictions - - overview.md 更新:新增 CTP Topic 66 摘要段落,更新 Key Entities 和 Key Concepts - -## [2026-04-23] ingest | CTP Topic 14 Octane Hub on AWS Real Life Experience -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-14-octane-hub-on-aws-real-life-experience-moving-production-services-i.md -- Status: ✅ 成功摄入 -- Summary: Octane Hub CTO Holger Rode 分享将生产服务从 Bibling Lab 数据中心迁移到 AWS Landing Zone 的实战经验。涵盖 Docker 容器化工作负载(QuickSee、Release Manager、Patch Manager 等)、Packer+Terraform/TerraGrunt IaC 演进、EFS vs EBS 存储选型(EFS 不适合数据库,需用 EBS)、VPC Transit Gateway 网络互联、Route 53 DNS 设置。下一步:DR 改进、MSSQL→Postgres 迁移、ECS 演进。 -- Concepts created: [[Docker-Containerization]]、[[EFS-vs-EBS]] -- Entities created: [[Octane-Hub]] -- Source page: wiki/sources/ctp-topic-14-octane-hub-on-aws-real-life-experience-moving-production-services-i.md -- Notes: - - 新增 1 个 Source Page - - 新增 2 个 Concept(Docker-Containerization、EFS-vs-EBS) - - 新增 1 个 Entity(Octane-Hub) - - 冲突检测:与 ctp-topic-7(SaaS Landing Zone 设计)存在视角差异——前者侧重多租户架构,后者侧重单体团队实际迁移路径,已记录于 Contradictions - -## [2026-04-24] ingest | CTP Topic 44 AWS Backup in Micro Focus -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-44-aws-backup-in-micro-focus.md -- Status: ✅ 成功摄入 -- Summary: AWS Backup 托管服务详解,vs Micro Focus 当前分散式快照管理。涵盖四级 DR 策略(Backup and Restore / Pilot Light / Warm Standby / Active-Active),不可变性防勒索软件,法律保留合规,AWS Backup 功能演示(备份保管库、备份计划、时间点恢复),以及当前流程的五大差距。 -- Concepts created: 无(AWS Backup / RTO / RPO / Disaster Recovery / Pilot Light / Warm Standby / Active-Active / Legal Holds 已在 overview Key concepts 中覆盖) -- Entities created: 无(CCIE 门户仅出现1次,不满足创建条件) -- Source page: wiki/sources/ctp-topic-44-aws-backup-in-micro-focus.md -- Notes: - - 新增 1 个 Source Page - - 无新增 Entity/Concept - - 无冲突内容,与 ctp-topic-72、ctp-topic-73 构成递进关系 - -## [2026-04-24] ingest | 实战笔记:本地部署 RSSHub 并获取 YouTube 订阅 -- Source file: Home Office/实战笔记:本地部署 RSSHub 并获取 YouTube 订阅.md -- Status: ✅ 成功摄入 -- Summary: 本地 Docker 部署 RSSHub(diygod/rsshub,端口1200),通过浏览器 view-source 方式获取 YouTube 频道 ID,使用 `/youtube/channel/{channel_id}` 路由生成稳定 RSS 订阅源。相比第三方在线服务,本地部署更稳定可靠。 -- Concepts created: 无(RSSHub 已在 overview Key concepts 中) -- Entities created: 无(diygod 仅出现1次,不满足创建条件) -- Source page: wiki/sources/实战笔记-本地部署-rsshub-并获取-youtube-订阅.md -- Notes: - - 新增 1 个 Source Page - - 无新增 Entity/Concept - - 冲突检测:与 "How to Get the RSS Feed For Any YouTube Channel" 的在线 vs 本地方案略有差异,已记录于 Contradictions - -## [2026-04-24] ingest | Mac必装软件清单 -- Source file: Home Office/Mac必装软件清单-2026-04-17.md -- Status: ✅ 成功摄入 -- Summary: 精选8款Mac必备软件——Claude(AI助手)、Obsidian(AI知识库)、Chrome(浏览器)、Rectangle(分屏工具)、iShot(截图录屏)、Lemon(系统清理)、Raycast(启动器)、Homebrew(包管理器)。核心理念:用最少的软件达到最高的效率。Homebrew 是用 Claude Code 搭 Agent 的前置依赖。 -- Concepts created: 无 -- Entities created: 无 -- Source page: wiki/sources/mac必装软件清单-2026-04-17.md -- Notes: - - 新增 1 个 Source Page - - 无新增 Entity/Concept(软件均不满足创建条件) - - 冲突检测:无冲突 - -## [2026-04-18] ingest | fireworks-tech-graph -- Source file: raw/Skills/fireworks-tech-graph.md -- Status: ✅ 成功摄入 -- Summary: fireworks-tech-graph Claude Code Skill,将自然语言描述转化为精美 SVG 技术图,支持 7 种视觉风格和 14 种 UML 图类型,通过 rsvg-convert 导出 1920px PNG。内置语义形状词汇表和语义箭头系统,确保图形语义一致性。安装:npx skills add yizhiyanhua-ai/fireworks-tech-graph,依赖 librsvg。 -- Concepts created: 7种视觉风格系统、14种UML图、语义形状词汇表、语义箭头系统、技术图生成 -- Entities created: fireworks-tech-graph、rsvg-convert -- Source page: wiki/sources/fireworks-tech-graph.md -- Notes: - - 新增 1 个 Source Page - - 新增 5 个 Concept Page(7种视觉风格系统、14种UML图、语义形状词汇表、语义箭头系统、技术图生成) - - 新增 2 个 Entity Page(fireworks-tech-graph、rsvg-convert) - - 更新 wiki/index.md(Sources + Entities + Concepts 章节追加条目) - - 更新 wiki/overview.md(AI Tools & Prompt Engineering 章节追加条目) - - 无内容冲突 - -## [2026-04-18] ingest | Install WSL -- Source file: raw/Home Office/Install WSL.md -- Status: ✅ 成功摄入 -- Summary: 微软官方 WSL 完整安装指南,`wsl --install` 一键安装,支持 Ubuntu/Debian/SUSE/Kali 等多发行版并行安装,`wsl.exe --set-default-version` 切换 WSL1/WSL2;离线场景通过 MSI + DISM 命令手动启用 Virtual Machine Platform;运行入口推荐 Windows Terminal。与 [[WSL2 启动与网络配置指南]] 互补——前者解决安装,后者解决网络。 -- Concepts created: 无新增(WSL2 已存在于 overview.md,WSL1/WSL安装命令/多发行版支持/离线安装 为 WSL 特定术语,无需独立页面) -- Entities created: 无新增(Microsoft/Ubuntu/PowerShell/Windows Terminal 已存在于 overview.md) -- Source page: wiki/sources/install-wsl.md -- Notes: - - 新增 1 个 Source Page(install-wsl.md) - - 更新 wiki/index.md(Sources 章节追加条目) - - 更新 wiki/overview.md(新增 Install WSL 段落于 Home Server Automation 章节) - - 冲突记录:[[WSL2 启动与网络配置指南]] vs [[Install WSL]] — 侧重点差异,均为互补关系,非矛盾 - -## [2026-04-23] ingest | Obsidian 官方 CLI 命令全景速查表 -- Source file: raw/Skills/Obsidian 官方 CLI 命令全景速查表.md -- Status: ✅ 成功摄入 -- Summary: Obsidian v1.12+ 内置官方 CLI 命令行工具的完整速查表,包含 80+ 条命令覆盖 16 个功能模块(基础操作/数据库/书签/命令面板/日记/文件历史/文件目录/链接网络/大纲/插件管理/属性元数据/发布/随机笔记/全局搜索/官方同步/标签/任务管理/模板/外观样式/卡片盒/仓库管理/内置浏览器/字数统计/工作区布局/开发者模式)。文档还包含 7 个典型自动化应用场景工作流(全局极速闪记、播客知识榨取、AI 收件箱自动分拣、绝对隐私本地 RAG 对话助理、跨平台数据库级联录入、历史知识自动唤醒、批量元数据重构清洗)。 -- Concepts created: 无新增(Obsidian CLI / Obsidian Bases / Zettelkasten / 本地 RAG / 工作流自动化 / 元数据管理 / 快速闪记 均已存在于 overview.md) -- Entities created: 无新增(Obsidian / Obsidian CLI / Dataview / QuickAdd / Templater 已存在于 overview.md 或前次摄入) -- Source page: wiki/sources/obsidian-官方-cli-命令全景速查表.md -- Notes: - - 新增 1 个 Source Page - - 更新 wiki/index.md(Sources 章节追加条目) - - 无内容冲突(与 obsidian-必装-skills 和 obsidian-cli 形成互补) - -## [2026-04-23] ingest | Obsidian 必装 Skills -- Source file: raw/Skills/Obsidian 必装 Skills.md -- Status: ✅ 成功摄入 -- Summary: Obsidian 与 AI Agent 集成的必装 Skills 全景图。覆盖五大方向:①kepano 官方 Skills(defuddle 网页清洗、obsidian-cli 官方 CLI、obsidian-bases .base 数据库);②Axton 可视化 Skills(obsidian-canvas-creator 径向布局算法、mermaid-visualizer、excalidraw-diagram);③学术研究工具链(tutor-skills 输入-内化-检测学习闭环、scholar-skill L1/L2/L3 分级论文阅读);④第三方插件(Claudian 适配 Claude Code、obsidian-agent-client 支持多 Agent);⑤不推荐工具(obsidian-skill 过时、json-canvas 自动化程度低)。 -- Concepts created: Defuddle, Obsidian-CLI, Obsidian-Bases, Canvas, StudyVault, Scholar-Skill, Tutor-Skills, Claudian, Obsidian-Agent-Client -- Entities created: kepano, Axton, YishenTu, RAIT-09, Choi-Wontak, EESJGong -- Source page: wiki/sources/obsidian-必装-skills.md -- Notes: - - 新增 1 个 Source Page - - 新增 9 个 Concept 页面(Defuddle / Obsidian-CLI / Obsidian-Bases / Canvas / StudyVault / Scholar-Skill / Tutor-Skills / Claudian / Obsidian-Agent-Client) - - 新增 6 个 Entity 页面(kepano / Axton / YishenTu / RAIT-09 / Choi-Wontak / EESJGong) - - 更新 wiki/index.md(Sources / Entities / Concepts 三个章节均已追加条目) - - 更新 wiki/overview.md,补充 Obsidian Skills 生态段落 - - 无内容冲突(与已有 Obsidian 相关文档形成互补) - -- Source file: raw/AI/在 Ubuntu 安装 Ollama 并运行 Qwen2.5‑Coder 7B -- Status: ✅ 成功摄入 -- Summary: Ubuntu 系统上通过官方 install.sh 脚本一键部署 Ollama + Qwen2.5-Coder 7B。涵盖系统要求、安装步骤、服务管理、API 暴露(OLLAMA_HOST=0.0.0.0)、GPU 加速(CUDA 自动检测)、Python/Node.js SDK 调用,以及与 Open WebUI/n8n/OpenClaw 的集成方案。推荐搭配工具:Open WebUI(ChatGPT UI)、n8n(AI 自动化)、LangChain(Agent framework)、OpenClaw(AI coding agent)。qwen2.5-coder:7b 比通用版 qwen2.5:7b 更适合工程任务,因其 Tool usage 能力强、Shell/Python/SQL 理解强、Repo 级代码理解强。 -- Concepts created: 无新增([[Ollama]]/[[本地大模型部署]]/[[GPU 加速推理]]/[[REST API]] 已存在于 overview.md) -- Entities created: 无新增([[Open WebUI]]/[[n8n]]/[[OpenClaw]] 已存在于 overview.md) -- Source page: wiki/sources/在-ubuntu-安装-ollama-并运行-qwen2-5‑coder-7b.md -- Notes: - - 新增 1 个 Source Page - - 更新 wiki/index.md Sources 节,追加新条目(按日期排序) - - 更新 wiki/overview.md AI Tools 区域,追加 Qwen2.5-Coder 部署实战段落,关联 [[Ollama 本地 LLM 部署]](DeepSeek-R1)形成 Ollama 部署双场景覆盖 - - 无需新建 Entity/Concept 页面(相关实体和概念已在 overview.md 中定义) - - 检测冲突:无 - -## [2026-04-16] ingest | Learn AI for free directly from top companies -- Source file: raw/AI/Learn AI for free directly from top companies -- Status: ✅ 成功摄入 -- Summary: @RodmanAi 汇总的 10 家顶级科技公司免费 AI 学习资源直链。涵盖:Anthropic(Skilljar)、Google(Grow.google/AI)、Meta(AI 资源中心)、NVIDIA(CUDA 开发者课程)、Microsoft(Microsoft Learn)、OpenAI(Academy)、IBM(SkillsBuild)、AWS(Skill Builder)、DeepLearning.AI(吴恩达课程)、Hugging Face(学习路径)。 -- Concepts created: 无新增 -- Entities created: [[DeepLearning.AI]], [[IBM]] -- Source page: wiki/sources/learn-ai-for-free-directly-from-top-companies.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/learn-ai-for-free-directly-from-top-companies.md) - - 新增 2 个 Entity 页面:wiki/entities/DeepLearningAI.md, wiki/entities/IBM.md - - 更新 wiki/overview.md Educational Resources 区域,追加免费 AI 学习资源全景介绍 - -## [2026-04-23] ingest | I Went Through Every AI Memory Tool I Could Find. There Are Two Camps. -- Source file: raw/Agent/AI-Memory-Tools-Two-Camps.md -- Status: ✅ 成功摄入 -- Summary: AI 记忆工具全景分类框架。揭示两个根本不同的技术路线:Camp 1(Memory Backend,向量提取+检索,优化召回)vs Camp 2(Context Substrate,文件累积+背景整合,优化复合增长)。代表工具:Mem0、MemPalace(Camp 1);OpenClaw、Zep、Thoth、TrustGraph(Camp 2)。核心洞察:Zep 从"memory"重塑为"context engineering"是最强市场信号;预测 6 个月内"context engineering"将取代"memory"成为主流术语;持续运行 Agent 必须采用 Context Substrate 架构。 -- Concepts created: [[Context Substrate]], [[Memory Backend]] -- Entities created: [[OpenClaw]], [[Mem0]] -- Source page: wiki/sources/ai-memory-tools-two-camps.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ai-memory-tools-two-camps.md) - - 新增 2 个 Concept 页面:wiki/concepts/Context-Substrate.md, wiki/concepts/Memory-Backend.md - - 新增 2 个 Entity 页面:wiki/entities/OpenClaw.md, wiki/entities/Mem0.md - - overview.md 新增 ai-memory-tools-two-camps 摘要条目,置于 semantic-memory-search 之后 - - index.md Sources 节新增条目(置顶) - - 冲突记录:与 semantic-memory-search 存在文件优先 vs 向量优先的表面张力,实际互补(已记录) - -## [2026-04-23] ingest | 可自动化、可扩展、AI增强的电商数据采集与处理系统 -- Source file: raw/Others/可自动化、可扩展、AI增强的电商数据采集与处理系统.md -- Status: ✅ 成功摄入 -- Summary: 基于 Docker + Ubuntu + n8n 的可自动化、可扩展、AI增强的电商数据采集与处理系统设计方案。三层架构:爬虫层(Scrapy/Playwright)→ AI处理层(n8n + LLM API)→ 存储展示层(PostgreSQL/MinIO + Grafana)。推荐 Scrapy + Playwright 组合,Docker Compose 容器化;n8n 工作流实现定时爬取→LLM处理→数据库写入→报表通知的全链路自动化;本地可使用 Ollama 无需外部 API Key;防封策略包括 User-Agent 轮换和代理池。 -- Concepts touched: [[Scrapy]], [[Playwright]], [[n8n]], [[Docker Compose]], [[Ollama]], [[Bright Data]], [[Scrapyd]], [[MinIO]], [[Grafana]], [[Metabase]], [[FastAPI]], [[LangChain]] -- Entities touched: [[Amazon]], [[JD]], [[Taobao]], [[Shopee]] -- Source page: wiki/sources/可自动化-可扩展-ai增强的电商数据采集与处理系统.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/可自动化-可扩展-ai增强的电商数据采集与处理系统.md) - - Concept 和 Entity 均以 wikilink 形式建立关联,暂不创建独立页面(已存在于 Wiki) - - 冲突检测:无已知冲突,与 [[scrapy-playwright-抓取tiktok-shop-data]] 同属电商数据采集技术栈 - - 已在 index.md 添加 Source 条目 - - 已在 overview.md TikTok E-commerce Operations 部分新增条目 - -## [2026-04-26] ingest | 电商视频Prompt库 -- Source file: 跨境电商/电商视频Prompt.md -- Status: ✅ 成功摄入 -- Summary: AI 生成宠物电商视频的 7 模块 Prompt 库(产品展示/宠物动作/衣服防穿帮/场景变化/Negative Prompt/卖货文案/全流程示例),以"拼积木"组合方式实现低翻车率 + 高真实感的 TikTok Shop 带货视频生成,扩展至 1产品→3视频→6文案→A/B 测试全链路自动化。 -- Concepts touched: [[Prompt库设计原则]], [[Negative Prompt]], [[Image-to-Video]], [[TikTok电商内容自动化]], [[AI图生视频]] -- Entities touched: [[TikTok Shop]], [[宠物用品]], [[TikTok]] -- Source page: wiki/sources/电商视频prompt.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/电商视频prompt.md) - - Concept 和 Entity 均以 wikilink 形式建立关联,暂不创建独立页面(出现次数 < 2 次阈值) - - 冲突检测:无已知冲突,与 [[AI图生视频工具盘点]](工具盘点)和 [[做TK跨境思路不对努力白费]](运营策略)互补 - - 已在 index.md 添加 Source 条目 - - 已在 overview.md 新增 [[电商视频Prompt库]] 小节,链接于 AI图生视频工具盘点 之后 - -## [2026-04-26] ingest | TikTok Shop - Apache Superset Dashboard设计思路 -- Source file: 跨境电商/TikTok Shop - Apache Superset Dashboard设计思路.md -- Status: ✅ 成功摄入 -- Summary: Apache Superset 在 TikTok Shop 电商选品分析场景的完整 Dashboard 设计方案——基于 products/reviews/variations 三表数据,通过 SQL View 预处理 JSON 字段,设计 4-Tab 专业 Dashboard(爆品雷达/类目洞察/店铺监控/评论分析),包含 KPI 卡/散点图/箱线图/热力图等可视化组件,提供选品评分加权公式(sold×0.4 + rating×15 + discount×0.5 + rating_count×0.2)。 -- Concepts created: [[Apache Superset]], [[KPI Card]], [[选品评分公式]], [[SQL View]], [[Dynamic Filter]], [[GMV]], [[Scatter Plot]], [[Box Plot]], [[Heatmap]] -- Entities created: [[TikTok Shop]], [[tiktok_products 数据库]], [[products 表]], [[product_reviews 表]], [[product_variations 表]] -- Source page: wiki/sources/tiktok-shop-apache-superset-dashboard设计思路.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/tiktok-shop-apache-superset-dashboard设计思路.md) - - Concept 和 Entity 均以 wikilink 形式建立关联,暂不创建独立页面(各仅出现 1 次,未达 ≥2 次阈值) - - 冲突检测:无实质冲突,与 [[电商如何选品-如何找到爆款-选品策略]] 互补(策略 vs 数据工具) - - 已在 index.md 添加 Source 条目 - - overview.md 已在 "TikTok E-commerce Product Management" 小节提及 Apache Superset 与 Dashboard 集成,无需额外更新 - -## [2026-04-18] ingest | 做TK跨境思路不对努力白费 -- Source file: 跨境电商/做TK跨境思路不对努力白费.md -- Status: ✅ 成功摄入 -- Summary: TikTok跨境电商全流程实战指南——从市场选择(美区/日本>东南亚)→账号准备→选品策略(数据软件+垂直类目)→店铺运营(流量监控+商品优化)→流量获取(短视频+达人营销)→仓储物流(海外仓+海运补货)→团队建设,提供完整执行框架。 -- Concepts touched: [[跨境电商]], [[选品策略]], [[TikTok电商]], [[达人营销]] -- Entities touched: [[TikTok Shop]], [[美区]], [[日本]] -- Source page: wiki/sources/做tk跨境思路不对努力白费.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/做tk跨境思路不对努力白费.md) - - Concept 和 Entity 均以 wikilink 形式建立关联,暂不创建独立页面(出现次数<2次阈值) - - 冲突检测:无已知冲突内容 - - 已在 index.md 添加 Source 条目 - - 已在 overview.md 新增 "TikTok E-commerce Operations" 小节 - -## [2026-04-23] ingest | 超达物流定价 -- Source file: 跨境电商/超达物流定价.md -- Status: ✅ 成功摄入 -- Summary: 超达物流跨境电商定价规则:申报/实重/材积取最大值计费,UIN渠道24-48h轨迹推送,TK平台面单"TKM"开头单号无效,UIN/TK取消单号收费规则,发货截止时间12点/美区周日休息。 -- Concepts touched: [[计费重量原则]], [[轨迹推送机制]], [[取消单号收费]] -- Source page: wiki/sources/超达物流定价.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/超达物流定价.md) - - Entity 和 Concept 均以 wikilink 形式建立关联,暂不创建独立页面(各仅出现 1 次,未达 ≥2 次阈值) - - 冲突检测:无实质冲突,与 [[TK美国面单授权及操作流程]] 互为补充(前者专注授权配置,本文专注计费规则) - - 已在 index.md 添加 Source 条目 - - overview.md 无需更新(物流定价内容与 AI/软件主题 overview 相关性低) - -## [2026-04-25] ingest | TK美国面单授权及操作流程 -- Source file: 跨境电商/TK美国面单授权及操作流程.md -- Status: ✅ 成功摄入 -- Summary: TikTok美国市场面单授权配置与操作流程截图教程,通过6张Zipline图床备份图片展示具体操作步骤。 -- Concepts touched: [[TikTokShop]], [[面单授权]], [[跨境电商物流]] -- Entities touched: [[TikTok美国站]] -- Source page: wiki/sources/tk美国面单授权及操作流程.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/tk美国面单授权及操作流程.md) - - Concept 和 Entity 均以 wikilink 形式建立关联,暂不创建独立页面(内容为截图教程,信息量有限) - - 冲突检测:无已知冲突内容 - - 已在 index.md 修正 Source 条目 - - overview.md 无需更新(物流操作类内容与 overview 主题相关性低) - -## [2026-04-24] ingest | Scrapy + Playwright 抓取TikTok Shop Data -- Source file: 跨境电商/Scrapy + Playwright 抓取TikTok Shop Data.md -- Status: ✅ 成功摄入 -- Summary: 使用 Scrapy + Playwright 技术栈抓取 TikTok Shop 商家数据的环境配置与运行指南。涵盖 Python venv 虚拟环境搭建、scrapy-playwright 依赖安装、Chromium 浏览器安装、Docker 容器化部署配置,以及 Playwright 验证方法。 -- Concepts touched: [[Scrapy]], [[Playwright]], [[scrapy-playwright]], [[venv]], [[Docker]], [[Chromium]] -- Entities touched: [[TikTok Shop]], [[shenwei]] -- Source page: wiki/sources/scrapy-playwright-抓取tiktok-shop-data.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/scrapy-playwright-抓取tiktok-shop-data.md) - - Concept 和 Entity 均以 wikilink 形式建立关联,暂不创建独立页面(各仅出现 1 次,未达 ≥2 次阈值) - - 冲突检测:无已知冲突内容 - - 已在 index.md 添加 Source 条目 - - overview.md 无需更新(TikTok Shop 已存在于 Key Entities,Scrapy/Playwright 属技术工具不需独立概念页) - -## [2026-04-23] ingest | GOG CLI 安装配置指南 -- Source file: Skills/GOG-CLI-安装配置指南.md -- Status: ✅ 成功摄入 -- Summary: gog CLI(Google Workspace 命令行工具)在 macOS 系统上的完整安装与配置流程。涵盖 Homebrew 安装、OAuth 凭证配置、测试用户白名单添加、Google API 启用、常用命令速查及故障排除。 -- Concepts touched: [[OAuth 2.0]], [[Google Cloud Console]], [[API Enablement]], [[Google Workspace]] -- Entities touched: [[gog CLI]] -- Source page: wiki/sources/gog-cli-安装配置指南.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/gog-cli-安装配置指南.md) - - 新增 1 个 Entity Page(wiki/entities/gog-CLI.md) - - 冲突检测:无已知冲突内容 - - 已在 index.md 修正 Source 条目(去除 "(expected: source missing)" 标注) - - 已在 overview.md Key Entities 添加 [[gog CLI]] 条目 - - 已在 overview.md Key Concepts 添加 [[OAuth 2.0]], [[Google Cloud Console]], [[API Enablement]] - - -- Source file: Skills/Last30Days-使用指南.md -- Status: ✅ 成功摄入 -- Summary: Last30Days 方法论——通过 AI Agent 自动化追踪近30天内新增/更新的内容源,避免信息过载。核心价值:将"主动订阅"转变为"被动接收",用 AI 替代人工巡检,节省 80% 信息搜集时间。 -- Concepts touched: [[Last 30 Days Method]], [[信息消费习惯]] -- Entities touched: [[Last30Days]] -- Source page: wiki/sources/last30days-使用指南.md -- Notes: - - 新增 1 个 Source Page - - Concept 和 Entity 均以 wikilink 形式建立关联,暂不创建独立页面 - - 冲突检测:无已知冲突内容 - - 已在 index.md 添加 Source 条目 - - overview.md 无需更新(Last 30 Days Method 已存在于 Key Concepts) - -## [2026-04-25] ingest | 如何利用Sora接口实现视频自动化生成工作流 -- Source file: AI/如何利用Sora接口实现视频自动化生成工作流.md -- Status: ✅ 成功摄入 -- Summary: 利用亚马逊 Bedrock 平台的 Sora API 实现视频生成全自动化工作流,覆盖注册→API调用→批量生成完整流程。成本仅 2-3 元人民币,远低于市场水平;新用户享 200 美元抵扣金和 6 个月免费试用;支持文本转视频和图像生成,可结合 n8n 实现批量 UGC 内容生产。 -- Concepts touched: [[文字生成视频]], [[提示词优化]], [[肖像权合规]], [[n8n 工作流自动化]], [[UGC内容]] -- Entities touched: [[Sora]], [[亚马逊 Bedrock]], [[n8n]] -- Source page: wiki/sources/如何利用sora接口实现视频自动化生成工作流.md -- Notes: - - 新增 1 个 Source Page - - Concept 和 Entity 均已在 Source Page 中以 wikilink 形式建立关联,暂不创建独立页面(各出现 1 次,未达 ≥2 次阈值) - - 冲突检测:无已知冲突内容 - - 已在 index.md 添加 Source 条目 - -## [2026-04-25] ingest | If You Have Multiple Interests, Do Not Waste the Next 2-3 Years -- Source file: AI/If you have multiple interests, do not waste the next 2-3 years 如果你有多项兴趣爱好,不要浪费接下来的两三年时间。.md -- Status: ✅ 成功摄入 -- Summary: 系统论证多重兴趣是AI时代超能力的个人发展指南——核心主张:工业化专业化分工使人类沦为"愚蠢而依赖"的螺丝钉,第二次文艺复兴已经到来;个人成功三要素(自学+自利+自立)自然涌现通才型人才;品牌内容系统、创意密度方法论、系统经济是具体路径 -- Concepts created: [[Generalist]], [[Self-Education]], [[Self-Interest]], [[Self-Sufficiency]], [[Second-Renaissance]], [[Idea-Density]], [[Idea-Museum]], [[Brand-Environment]], [[Content-Creator]], [[System-Economy]], [[Attention-Economy]] -- Entities created: [[AdamSmith]], [[LeonardoDaVinci]] -- Source page: wiki/sources/if-you-have-multiple-interests-do-not-waste-the-next-2-3-years-如果你有多项兴趣爱好-不要浪费接下来的两三年时间.md -- Notes: - - 新增 1 个 Source Page、5 个 Concept 页面、2 个 Entity 页面 - - Concepts 全部符合"可抽象可复用"原则,创建独立页面 - - Entities: Adam Smith(≥2次引用分工理论)、Leonardo da Vinci(文艺复兴通才典范)均符合创建条件 - - 冲突检测:与 [[Multi-Agent System Reliability]] 的 Generalist 概念高度互补(后者从系统可靠性角度) - - 已在 overview.md 个人品牌与一人公司段落添加新来源摘要 - - 已在 index.md 添加 11 个 Concept 条目、2 个 Entity 条目 - -## [2026-04-25] ingest | 我用 Gemini 3 一口气做了 10 个应用,附教程 -- Source file: AI/我用 Gemini 3 一口气做了 10 个应用,附教程.md -- Status: ✅ 成功摄入 -- Summary: 使用 Google Gemini 3 模型通过三步方法论(限定垂直场景→提示词约束结构化输出→前端SVG容器)快速构建 10 个可视化应用。核心发现:AI 生成 SVG 代码+前端渲染是快速交付 AI 应用的关键路径。 -- Concepts touched: [[SVG可视化]], [[结构化输出]], [[Vibe-Coding]], [[AI应用开发]] -- Entities touched: [[Gemini-3]](出现1次,不满足≥2次条件,暂不创建独立Entity页) -- Source page: wiki/sources/我用-gemini-3-一口气做了-10-个应用-附教程.md -- Notes: - - 新增 1 个 Source Page - - 已在 overview.md 添加 Gemini 3 十应用实战 段落,连接到 [[Vibe-Coding]] - - 已更新 index.md 条目(日期从 2026-04-18 更新为 2026-04-23) - - Entity 检查:Gemini-3 仅在本文出现,未达"出现≥2次"阈值,暂不创建独立页面 - - Concept 检查:SVG可视化/结构化输出等均未达"可抽象可复用"独立成页条件,暂纳入 Source Page Key Concepts - - 冲突检测:无冲突内容 - -## [2026-04-25] ingest | Multi-Agent System Reliability -- Source file: AI/Multi-Agent System Reliability.md -- Status: ✅ 成功摄入 -- Summary: 介绍4种提升多智能体系统可靠性的架构模式(Hierarchy/Consensus/Adversarial Debate/Knock-out),核心主张:停止拟人化LLM,将其视为分布式系统中不可靠的组件,通过架构约束而非提示词约束强制正确性 -- Concepts created: [[Hierarchy-Agent-Pattern]], [[Consensus-Voting-Pattern]], [[Adversarial-Debate-Pattern]], [[Knock-out-Pattern]], [[Tree-of-Thoughts]], [[Genetic-Algorithm]], [[Reliability-Engineering]] -- Entities created: [[Alex Ewerlöf]] -- Entities updated: 无(Alex Ewerlöf 为新实体) -- Source page: wiki/sources/multi-agent-system-reliability.md -- Notes: - - 新增 1 个 Source Page、1 个 Entity 页面、7 个 Concept 页面 - - Alex Ewerlöf Entity 在源文件中出现 ≥2 次(作者署名+引用),符合创建条件 - - 7 个 Concept 均符合"可抽象、可复用"原则,全部创建独立页面 - - 冲突检测:与 [[Designing for Agentic AI]] 互补而非冲突;与 [[Recursive Self-Optimization]] 共享自引用结构思想;与 [[Genetic-Algorithm]] 有明确关联(Knock-out 是 GA 的精简实现) - - 已在 overview.md Key Concepts 列表添加所有 7 个新概念 - - 已在 overview.md Key Entities 列表添加 [[Alex Ewerlöf]] - -## [2026-04-24] ingest | 全网最全!Nano Banana 2 使用指南(2025年12月更新) -- Source file: AI/全网最全!Nano Banana 2 使用指南(2025年12月更新) 1.md -- Status: ✅ 成功摄入 -- Summary: 介绍 Google Nano Banana 2(Gemini 3 Pro Image)推理型图像生成模型的国内使用方法,通过 DeepSider 浏览器插件实现无 VPN 直连访问,同时支持数十款 AI 大模型 -- Concepts created: 无(本次概念不足以独立建页) -- Entities created: [[DeepSider]], [[Nano Banana 2]] -- Entities updated: [[Google]](新增 Nano Banana 2 产品信息) -- Source page: wiki/sources/全网最全-nano-banana-2-使用指南-2025年12月更新-1.md -- Notes: - - Nano Banana 2 与 [[Nano Banana Pro]] 为不同版本,Nano Banana 2 为更新版(2025年12月发布) - - [[Nano Banana Pro]] 已在 [[Google.md]] entity 中提及,本次新增 [[Nano Banana 2.md]] entity 独立页面 - -## [2026-04-24] ingest | 2025 年 11 个神级 AI 开源平替,GitHub 杀疯了 -- Source file: AI/2025 年 11 个神级 AI 开源平替,GitHub 杀疯了。.md -- Status: ✅ 成功摄入 -- Summary: 按 8 大领域(LLM/AI生图/生视频/AI智能体/AI编码/工作流/AI搜索/AI知识库)系统盘点 GitHub 上各领域最火的开源平替项目,核心洞察:国产开源模型在多领域达到或超越国际闭源竞品水平 -- Concepts created: [[AI开源平替]] -- Entities created: [[Flux]], [[HunyuanVideo]], [[Manus]], [[OpenManus]], [[Cline]], [[Perplexica]], [[Dify]], [[Stable Diffusion]] -- Entities updated: [[DeepSeek]], [[Qwen]], [[n8n]] -- Source page: wiki/sources/2025-年-11-个神级-ai-开源平替-github-杀疯了.md -- Notes: - - DeepSeek、Qwen、n8n 已在 Wiki 中存在,本次仅追加新版本信息 - - Flux(≥2次)、HunyuanVideo(≥2次)、Manus(≥2次)、OpenManus(≥2次)、Cline(≥2次)、Perplexica(≥2次)、Dify(≥2次)、Stable Diffusion(≥2次)均出现 ≥2 次,符合创建条件 - - OpenAI、MiniMax、Kimi K2、智谱 GLM 仅出现 1 次,未达到创建阈值 - - Perplexity 作为对比对象出现,但非本文主角,不创建独立页面 - - 冲突检测:内容与现有 Wiki 中 DeepSeek、n8n 等实体描述一致,无冲突 - - Meta 收购 Manus 是 2025 年重大事件,已体现在 [[Manus]] 实体页 - -## [2026-04-23] ingest | AI 解决方案专家培训课程 -- Source file: AI/AI 解决方案专家培训课程.md -- Status: ✅ 成功摄入 -- Summary: Coze 平台多行业 AI Agent 培训课程,涵盖国内版(coze.cn)和海外版(coze.com),提供覆盖金融、医疗、教育、电商、人力资源、泛娱乐、在线客服等 7 大行业共 50+ 可体验 Agent Demo,核心技术栈为 Prompt 工程、RAG、Function Call 和 Workflow 编排。 -- Concepts created: [[Coze-Workflow]] -- Entities created: [[Coze]], [[SONY]], [[滴滴]] -- Source page: wiki/sources/ai-解决方案专家培训课程.md -- Notes: - - Coze、SONY、滴滴三个实体在源文件中均出现 ≥2 次,符合创建条件 - - FaceFusion、F5-TTS、World Labs、抖音仅出现 1 次,未达到创建阈值(≥2次) - - Prompt Engineering、Function Call、Workflow Engineering 等核心概念已存在于 Wiki,本次作为 Key Concepts 引用 - - 冲突检测:Coze 平台与其他 AI 工具(Claude Code、Ollama 本地部署)属互补关系,无内容冲突 - -- Source file: AI/RAG从入门到精通系列1:基础RAG.md -- Status: ✅ 成功摄入 -- Summary: RAG 基础原理与实战:Indexing(文档加载→切分→向量化入库)→ Retrieval(向量相似度 Top-k 检索)→ Generation(问题+上下文→LLM 生成答案),Qwen+BAAI+LangChain+Qdrant 实战工具链。 -- Concepts created: [[Indexing]], [[Retrieval]], [[Generation]], [[Split]], [[Context-Window]] -- Entities created: [[LangChain]], [[Qwen]], [[Qdrant]] -- Source page: wiki/sources/rag从入门到精通系列1-基础rag.md -- Notes: - - RAG 概念页面 [[RAG]] 已存在于 wiki/concepts/RAG.md,已在 Source Page 中正确引用 - - 冲突检测:基础 RAG(Naive RAG)与 Advanced RAG / RAG Fusion 存在优化方向差异,待后续进阶内容补充后更新 Contradictions - - [[PyTorch研习社]] 为文章来源方,raw 文档中有注明,Source Page Key Entities 已记录 - - BAAI(Embedding Model)和 LlamaIndex 在 Source Page 中作为 Key Entities 记录,暂未创建独立 Entity 页面 - -## [2026-04-23] ingest | 固定镜头短视频制作的AI全流程解析 -- Source file: AI/固定镜头短视频制作的AI全流程解析.md -- Status: ✅ 成功摄入 -- Summary: 利用 AI 技术快速制作高播放量固定机位家装类短视频的全流程方法论,涵盖分镜拆解(Google AI Studio)、九宫格图像生成(Midjourney/Nano Banana)、首尾针动画(海螺AI/KAI)、快节奏剪辑(剪映)、声音设计五大步骤,10 分钟内完成成片。 -- Concepts created: [[固定机位]], [[首尾针动画]], [[九宫格法]] -- Entities created: [[Midjourney]], [[KAI]], [[剪映]] -- Source page: wiki/sources/固定镜头短视频制作的ai全流程解析.md -- Notes: - - 冲突检测:与传统视频制作理念(复杂镜头语言+丰富转场)存在冲突,已记录至 Source Page Contradictions 部分 - - Google/Nano Banana 实体已存在于 wiki/entities/Google.md,已在 Source Page Key Entities 中正确引用 - - 海螺AI 仅为提及(非关键工具),未创建独立 Entity 页面 - - 快节奏剪辑、卡点、内容连续变化、时间压缩等为描述性术语,不满足"可抽象可复用"原则,未创建独立 Concept - -## [2026-04-25] ingest | 大模型相关术语和框架总结|LLM、MCP、Prompt、RAG、vLLM、Token、数据蒸馏 -- Source file: AI/大模型相关术语和框架总结|LLM、MCP、Prompt、RAG、vLLM、Token、数据蒸馏.md -- Status: ✅ 成功摄入 -- Summary: 大模型生态核心术语入门速查手册,涵盖 LLM、Prompt、MCP、Agent、RAG、Embedding、LangChain、vLLM、Token、数据蒸馏等概念,用通俗语言和可视化类比解释大模型领域关键术语 -- Concepts created: [[Model Context Protocol]], [[vLLM]], [[LangChain]] -- Concepts updated: [[Large Language Model]](添加来源引用), [[AI Agent]](添加 Model Context Protocol 关联 + 来源引用), [[RAG]](已包含来源) -- Entities identified: 无(shenwei 仅在本文出现 1 次,不满足 ≥2 次条件;OpenAI/vLLM 社区仅为引用来源,不满足关键影响条件) -- Source page: wiki/sources/大模型相关术语和框架总结|llm-mcp-prompt-rag-vllm-token-数据蒸馏.md -- Notes: - - 冲突检测:与 [[llms-rag-ai-agent-三个到底什么区别]] 属互补关系(术语科普 vs 三层架构梳理),已记录至 Source Page Contradictions 部分 - - 无需创建 shenwei Entity(仅出现 1 次,不满足 ≥2 次条件) - - vLLM.md 中 KV Cache/PagedAttention/Continuous Batching 等子概念不单独创建页面,因其属于 vLLM 框架的内部技术细节,不满足"可抽象、可复用"原则 - - Embedding 已存在 [[Vector-Embedding]] Concept,LangChain 为框架类概念(已有充分讨论) - -## [2026-04-25] ingest | Nano Banana Pro 提示词指南与策略(上篇) -- Source file: AI/Nano-Banana Pro Prompting Guide & Strategies 1.md -- Status: ✅ 成功摄入 -- Summary: Google Nano Banana Pro 官方提示词指南上篇,涵盖 10 条黄金法则(编辑而非重生成、使用自然语言、提供上下文等)和前 9 个能力域(文本渲染/信息图、角色一致性/身份锁定、Google Search 信息锚定、高级编辑/修复/着色、2D/3D 维度转换、高分辨率/纹理、思考推理模式、故事板/概念艺术、结构控制/布局引导),附大量可直接复制的实战提示词模板。 -- Concepts identified: 无(Nano Banana Pro 特有概念均为具体应用技术,不满足可复用抽象原则) -- Entities identified: [[Google]](已存在于 wiki/entities/Google.md,已更新 Key Products 添加 Google AI Studio / Nano Banana Pro / Google Colab) -- Source page: wiki/sources/nano-banana-pro-prompting-guide-strategies-1.md -- Notes: - - index.md 已修复旧条目(移除 expected/missing 标注,替换为完整标题和摘要) - - overview.md 已更新「Nano Banana Pro 提示词指南」段落,明确标注本文为上篇及涵盖的 9 个能力域 - - 冲突检测:与 [[全网最全-nano-banana-2-使用指南-2025年12月更新-1]] 存在范围重叠,已记录至 Source Page Contradictions 部分,结论为互补而非冲突 - - 无需新建 Entity 页面(shenwei 作者仅在本文出现 1 次,不满足 ≥2 次条件) - - 无需新建 Concept 页面(身份锁定/对话式编辑等为 Nano Banana Pro 特有应用技术,不满足可复用抽象条件) - -- Source file: AI/我的工具集.md -- Status: ✅ 成功摄入 -- Summary: 个人 AI 工具推荐清单,按类型分类(Text-to-Speech / Image-Editor / Image-to-Video / Web-Scraper / AI-Summary),覆盖 Google AI Studio(Wavespeed 图生视频、Vidu、海螺 AI)、Brightdata(网页爬取)、Decopy(AI 摘要)等服务。与 AI图生视频工具盘点属互补关系——本文为工具索引,后者为免费工具详细评测。 -- Concepts identified: 无(工具索引类来源,各概念已在其他来源中有充分讨论) -- Entities identified: [[Google]](已存在于 wiki/entities/Google.md) -- Source page: wiki/sources/我的工具集.md -- Notes: - - 更新 index.md Sources 部分(替换 expected 标记行) - - 更新 overview.md AI Tools & Prompt Engineering 部分(新增「我的工具集」段落) - - Google Entity 已存在,无需重复创建 - - Vidu/海螺AI/Wavespeed/Brightdata/Decopy 仅在本文中出现 1 次,不满足 Entity ≥2 次创建条件 - - 无需新建 Concept 页面(各工具类型概念在其他来源中已充分覆盖) - - 冲突检测:与 [[二创视频必不可少-2025年最热门ai工具推荐合集-ai配音-声音克隆]] 存在互补关系(工具清单 vs 详细评测),已记录至 Source Page Contradictions 部分 - -## [2026-04-24] ingest | 如何写出完美的Prompt(提示词)? -- Source file: AI/如何写出完美的Prompt(提示词)?.md -- Status: ✅ 成功摄入 -- Summary: 系统阐述 Prompt 构建底层逻辑的职场应用指南。核心理念:Prompt 是人与 AI 的协作协议,本质是将模糊需求转化为 AI 可执行的结构化任务。四大构建要素(角色+需求+场景+目标)+ 三层技巧体系(基础:需求拆解/上下文补全/格式定义/示例引导;进阶:思维链/任务拆分/角色赋能/预填回复/不确定性管理;高阶:跨模态联动/领域知识注入/反馈循环嵌入)+ 四大业务场景实战模板(内容创作/数据分析/方案策划/客户服务)+ 六大避坑指南。核心洞察:Prompt 能力本质 = 对问题清晰界定的能力 + 结构化思维逻辑和表达能力。 -- Concepts identified: [[结构化思维]], [[精准表达]], [[思维链引导]], [[任务拆分法]], [[角色赋能法]], [[少量样本提示]], [[上下文补全]], [[AI Agent]](本篇提供了 AI Agent 能力的底层基础) -- Entities identified: [[粒粒]](微信公众号作者) -- Source page: wiki/sources/如何写出完美的prompt-提示词.md -- Notes: - - 该文档与 [[清华出的DeepSeek使用手册]](DeepSeek 特定实践)和 [[系统提示词构建原则]](Agent 系统级指令)互补,构成完整的提示词工程方法论体系 - - 冲突检测:与 [[系统提示词构建原则]] 存在视角差异(用户层 vs Agent 设计层),已在 Source 页面的 Contradictions 部分说明互补关系 - - index.md 已修复旧条目(移除 "— (expected: ... — source missing)" 标注,添加实际摘要) - - overview.md 已新增 "AI Tools & Prompt Engineering" 部分的条目 - -## [2026-04-24] ingest | 系统提示词构建原则 -- Source file: AI/系统提示词构建原则.md -- Status: ✅ 成功摄入 -- Summary: AI 编程助手的系统提示词构建原则,涵盖五大维度:核心身份与行为准则(遵守项目约定、优先技术准确性)、沟通与互动规范(专业简洁、减少冗余)、任务执行工作流(TODO规划、Search/Replace编辑)、技术编码规范(清晰命名、模块化)、安全防护准则(不泄露指令、输入验证)。来源:vibe-coding-cn 项目。 -- Concepts updated: [[Vibe Coding]](sources 字段补充该来源) -- Entities updated: [[tukuai]](sources 字段补充该来源) -- Source page: wiki/sources/系统提示词构建原则.md -- Notes: - - 该文档与 [[github-上-5000-人收藏的-vibe-coding-神级指南]] 同属 vibe-coding-cn 项目,是操作层指南的补充 - - 冲突检测:无已知冲突 - - overview.md 中"Vibe Coding 中文指南"段落已补充与该来源的链接 - -## [2026-04-24] ingest | GitHub 上 5000 人收藏的 Vibe Coding 神级指南 -- Source file: AI/GitHub 上 5000 人收藏的 Vibe Coding 神级指南。.md -- Status: ✅ 成功摄入 -- Summary: 介绍 vibe-coding-cn 开源项目(github.com/tukuaiai/vibe-coding-cn),为中文开发者汇集全球顶尖 AI 编程资源。核心公式:Vibe Coding = 规划驱动 + 上下文固定 + AI 结对执行。工具推荐:Cursor + Claude Opus。核心理念:规划就是一切——让 AI 写代码前必须先完成技术选型、实施规划和模块化设计。Karpathy 经典语录:"我几乎不写代码了,我只负责调整氛围(Vibe),代码会自动长出来。" -- Concepts updated: [[Vibe Coding]](补充规划驱动/上下文固定/AI 结对执行三大原则、Vibe Coding vs Claude Skills 对比表、添加 Windsurf/Trae 工具推荐) -- Entities created: [[Andrej-Karpathy]](AI 领域知名专家,Vibe Coding 概念推广者) -- Entities updated: [[tukuai]](补充 vibe-coding-cn 仓库贡献者身份) -- Source page: wiki/sources/github-上-5000-人收藏的-vibe-coding-神级指南.md -- Notes: - - 更新 index.md Sources 部分(在首位插入新条目,移除 expected 占位条目) - - 更新 overview.md,添加"Vibe Coding 中文指南"段落至 AI Tools & Prompt Engineering 部分 - - 更新 index.md Entities 部分(添加 Andrej-Karpathy 条目) - - Vibe Coding 概念页面已存在,本次更新 sources 字段和核心原则内容 - - 冲突检测:Vibe Coding(氛围感/直觉式)与 Claude Skills(结构化 SOP)存在视角差异,已记录至 source page Contradictions 部分 - -## [2025-12-18] ingest | 不会Gemini的产品经理真的要被淘汰了 | 附保姆级PRD生成指南 -- Source file: AI/不会Gemini的产品经理真的要被淘汰了 附保姆级PRD生成指南.md -- Status: ✅ 成功摄入 -- Summary: 产品经理Kira2red分享大模型(Gemini)辅助PRD生成的保姆级教程——三步工作流:①用FeatureList构思需求框架(大模型生成层级式功能表)、②Mermaid画逻辑图(ER图/时序图/泳道图辅助理解)、③分页面逐一描述生成PRD+HTML原型。核心方法论:"人负责想,大模型负责写",可缩短文档工作时间90%以上。深层洞察:未来可能不需要PRD文档,产品经理需进化为"超级个体",核心能力是市场洞察而非写文档。 -- Concepts created: [[FeatureList]], [[超级个体]], [[PRD生成工作流]] -- Entities updated: [[Gemini]](关联本文工作流) -- Source page: wiki/sources/不会gemini的产品经理真的要被淘汰了-附保姆级prd生成指南.md -- Notes: - - 更新 index.md Sources 部分(在首位插入新条目) - - 更新 overview.md AI Tools & Prompt Engineering 小节(补充AI辅助PRD生成条目) - - Vibe Coding Concept 已存在(无需新建) - - FeatureList、超级个体、PRD生成工作流为新创建 Concept - - 无内容冲突 - -## [2026-04-23] ingest | 3.2 万人收藏的 Claude Skills,才是 AI 这条路上最值得研究的一套范式! -- Source file: AI/3.2 万人收藏的 Claude Skills,才是 AI 这条路上最值得研究的一套范式! 1.md -- Status: ✅ 成功摄入 -- Summary: Anthropic 官方 Claude Skills 仓库(github.com/anthropics/skills,3.2 万收藏)介绍。Skills = 写给 Claude 的"说明书" + "SOP",将反复执行的有固定流程的任务拆解为 AI 能理解、能复用、能自动执行的一套流程。官方库包含三大类:办公自动化(Word/PDF/PPT/Excel)、开发者工具箱(MCP Server/自动化测试/Artifacts 构建)、创意类 Skill。核心洞察:Claude Skills 的爆发标志着从「提示词工程」向「流程工程」的范式转变;Vibe Coding 的尽头也是 Skills。 -- Concepts created: [[Claude Skills]], [[Workflow Engineering]] -- Source page: wiki/sources/3-2-万人收藏的-claude-skills-才是-ai-这条路上最值得研究的一套范式-1.md -- Notes: - - 更新 index.md Sources 部分(修正 source missing 条目) - - 更新 overview.md AI Tools & Prompt Engineering 小节(添加 Claude Skills 范式洞察) - - 创建 Claude-Skills 和 Workflow-Engineering 两个 Concept 页面 - - 添加 Concepts 条目到 index.md(Claude-Skills、Workflow-Engineering) - - 无内容冲突 - - Entity 页面(Anthropic/skillsmp/aitmpl 等)出现次数均 <2 次,未创建 -- Source page: wiki/sources/7-ways-i-use-notebooklm-to-make-my-life-easier.md -- Notes: - - 更新 index.md Sources 部分(替换 expected 占位条目)和 Concepts 部分(新增2个条目) - - 更新 overview.md AI Tools & Prompt Engineering 小节(补充 NotebookLM 7种用法条目) - - NotebookLM Entity 页面已存在,更新 sources 字段和内容 - - Source-Grounding 和 Passive-Learning 为新建 Concept 页面 - - 冲突检测:未发现与其他 Wiki 页面存在明显内容冲突 - -## [2026-04-24] ingest | Never write another prompt -- Source file: AI/Never write another prompt.md -- Status: ✅ 成功摄入 -- Summary: 介绍一款能将简单描述自动转化为详细结构化提示词的 AI 工具,支持变量插入和自定义编辑,大幅降低提示词工程门槛。与 Claude Prompt Library(现成提示词库)和 Nano Banana 提示词框架(结构化模板)同属提示词工程的不同路径。 -- Concepts covered: [[Prompt Engineering]], [[API Key]], [[Variables in Prompts]] -- Entities referenced: [[ChatGPT]], [[Google Gemini]] -- Source page: wiki/sources/never-write-another-prompt.md -- Notes: - - 更新 index.md Sources 部分(新增条目,按日期排序) - - 更新 overview.md AI Tools & Prompt Engineering 小节 - - 冲突检测:与 useful-prompt-lib.md 存在"是否需要预制提示词"视角差异(双方 Contradictions 均已记录) - - ChatGPT/Google Gemini 已存在于 Wiki,无需新建 Entity 页面 - -## [2026-04-23] ingest | Best 7 news API data feeds - AI News -- Source file: AI/Best 7 news API data feeds - AI News.md -- Status: ✅ 成功摄入 -- Summary: 7款主流新闻API横向评测(Webz.io/GNews/The Guardian/Bloomberg/Financial Times/Opoint/Mediastack),覆盖开放网/深网/暗网数据、金融情报、舆情监控、情感分析、内容聚合、AI预测分析等应用场景,为AI应用和数据分析场景选择新闻数据接口提供选型参考。 -- Concepts covered: [[News API]], [[Financial Intelligence]], [[Media Monitoring]], [[Sentiment Analysis]], [[Risk Assessment]], [[Content Aggregation]], [[Predictive Analysis]] -- Entities referenced: [[Webz.io]], [[GNews API]], [[The Guardian API]], [[Bloomberg API]], [[Financial Times API]], [[Opoint]], [[Mediastack API]] -- Source page: wiki/sources/best-7-news-api-data-feeds-ai-news.md -- Notes: - - 更新 index.md Sources 部分 - - 7个 Entity 均仅出现1次,未创建独立 Entity 页面 - - Concept 均为通用概念,已隐式覆盖,无冲突 - -## [2026-04-23] ingest | Claude Prompt Library 汇总表 -- Source file: AI/Useful Prompt Lib.md -- Status: ✅ 成功摄入 -- Summary: Anthropic Claude 官方提示词库完整汇总,收录 64+ 款专业化提示词,覆盖开发工具、效率工具、创意工具、营销工具、教育工具等 10+ 领域。TikTok 跨境电商推荐 Babel's Broadcasts(多语言推文)、Review Classifier(评论分类)、Data Organizer(非结构化→JSON)三剑客。 -- Concepts covered: [[Anthropic Prompt Library]], [[Babel's Broadcasts]], [[Review Classifier]], [[Data Organizer]], [[Prompt Engineering]] -- Entities referenced: [[Anthropic]], [[TikTok]] -- Source page: wiki/sources/useful-prompt-lib.md -- Notes: - - 更新 index.md Sources 部分 - - 更新 overview.md AI Tools & Prompt Engineering 小节 - - Anthropic/TikTok 均仅出现1次,未创建独立 Entity 页面 - - 冲突检测:与 never-write-another-prompt.md 存在"是否需要预制提示词"的冲突(已记录至 source page Contradictions 部分) - -## [2026-04-23] ingest | 二创视频必不可少!2025年最热门AI工具推荐合集-AI配音、声音克隆 -- Source file: AI/二创视频必不可少!2025年最热门AI工具推荐合集-AI配音、声音克隆.md -- Status: ✅ 成功摄入 -- Summary: 2025年AI配音及声音克隆工具推荐合集,评测ElevenLabs、海螺AI(MiniMax)、F5-TTS、TTSMaker、剪映、魔音工坊、AnyVoice等7款主流工具。涵盖免费/付费、国际/国内、技术门槛等多维度对比,为不同用户群体提供选型建议。 -- Concepts covered: [[AI配音]], [[声音克隆]] -- Entities referenced: [[ElevenLabs]], [[海螺AI]], [[F5-TTS]], [[TTSMaker]], [[剪映]], [[魔音工坊]], [[AnyVoice]], [[MiniMax]] -- Source page: wiki/sources/二创视频必不可少-2025年最热门ai工具推荐合集-ai配音-声音克隆.md -- Notes: - - 更新 index.md Sources 部分 - - Entity/Concept 均未创建独立页面(各工具仅在本文出现一次,不满足Entity≥2次条件;AI配音/声音克隆概念在其他来源中已有相关讨论,可后续扩展) - -## [2026-04-23] ingest | The Picture They Paint of You -- Source file: AI/The Picture They Paint of You.md -- Status: ✅ 成功摄入 -- Summary: 探讨 AI 工具的市场定位如何折射对人类工作者的隐性认知。对比 10+ 款 AI SRE 产品和 8+ 款 Coding Assistant 的营销话语,发现:AI SRE 被建构为"替代者",Coding Assistant 被建构为"合作伙伴"。这种差异映射了组织内部对不同角色真实价值的认知分裂,暗示决策者与从业者之间对工作意义理解的根本分歧。 -- Concepts created: [[Taylorism]], [[Left-over-Principle]], [[Analogy-as-Straitjacket]] -- Source page: wiki/sources/the-picture-they-paint-of-you.md -- Notes: - - 新增 Sources 条目至 index.md - - 新增 3 个 Concept 页面:Taylorism.md、Left-over-Principle.md、Analogy-as-Straitjacket.md - - 冲突检测:与 wiki/sources/what-i-know-about-cloud-service-delivery-1.md 中 SRE 角色认知存在冲突(已记录至 source page Contradictions 部分) - - Entities: Anthropic、GitHub Copilot、OpenAI Codex、Cline、AWS DevOps Agent 均未创建独立页面(属产品类 Entity,命名类 Entity 价值待定) - -## [2026-04-23] ingest | Nano Banana 提示词框架 -- Source file: AI/Nano Banana 提示词框架.md -- Status: ✅ 成功摄入 -- Summary: AI 图像生成的结构化提示词框架,提供两套 JSON Schema 模板——物件描述框架(item / materials / details / condition)和人物描述框架(age / appearance / pose)——共用 shot / environment / lighting / camera / color_grade / style / quality / negatives 参数字段。示例展示了如何将专业摄影描述语言(材质/布光/相机参数)结构化填入模板。 -- Concepts covered: [[Nano Banana Prompting Framework]], [[Structured Prompt Engineering]], [[Negative Prompting]], [[Shot Composition]], [[Photography Lighting Description]], [[Camera Parameter Specification]] -- Entities referenced: [[Google]], [[Nano Banana]] -- Source page: wiki/sources/nano-banana-提示词框架.md -- Notes: - - 新增 Sources 条目至 index.md(替换 expected 标记行) - - 更新 overview.md AI Tools & Prompt Engineering 部分 - - Google Entity 已存在于 wiki/entities/Google.md,未重复创建 - -## [2026-04-23] ingest | 谷歌深夜甩出一份【Nano Banana Pro提示词指南】,手把手教你生产专业级内容,实战案例+提示词模版 -- Source file: AI/谷歌深夜甩出一份【Nano Banana Pro提示词指南】,手把手教你生产专业级内容,实战案例+提示词模版.md -- Status: ✅ 成功摄入 -- Summary: 谷歌发布的 Nano Banana Pro 官方提示词指南(《The Complete Guide to Nano Banana Pro》),核心主题是"将 AI 从趣味性图像生成升级为功能性专业资产生产"。10 大黄金法则:编辑而非重新生成、使用自然语言完整句子、具体且具描述性、提供上下文。9 个实战章节覆盖文本渲染/信息图、角色一致性、Google 搜索信息锚定、高级编辑、2D/3D 转换、高分辨率、思考推理、故事板、结构控制。 -- Concepts created: [[提示词工程]], [[身份锁定(Identity Locking)]], [[思维推理模式(Thinking Mode)]], [[信息图生成]], [[2D/3D 转换]], [[草图转成品(Sketch to Final)]] -- Entities created: [[谷歌]] -- Source page: wiki/sources/谷歌深夜甩出一份-nano-banana-pro提示词指南-手把手教你生产专业级内容-实战案例-提示词模版.md -- Notes: - - 新增 Sources 条目至 index.md(替换 expected 标记行) - - 新增 6 个 Concept 页面 - - 新增 1 个 Entity 页面:Google.md - - 更新 overview.md,新增"Nano Banana Pro 提示词指南"段落至 AI Tools & Prompt Engineering 部分 - - 冲突检测:暂无发现与其他 Wiki 页面的内容冲突 - -## [2026-04-23] ingest | 详细!离线部署大模型:ollama+deepseek+open-webui安装使用方法及常见问题解决 1 -- Source file: AI/详细!离线部署大模型:ollama+deepseek+open-webui安装使用方法及常见问题解决 1.md -- Status: ✅ 成功摄入 -- Summary: Ollama + DeepSeek-R1 + Open WebUI 本地离线部署完整指南,覆盖硬件要求、安装方法(macOS/Windows/Linux/Docker)、模型下载加速(魔塔/HF Mirror/夸克网盘)、API 安全配置(nginx + Bearer Token)和 Open WebUI Docker Compose 部署。 -- Entities created: [[Ollama]], [[Open WebUI]] -- Concepts created: [[Local LLM Deployment]], [[Docker LLM Deployment]] -- Source page: wiki/sources/详细-离线部署大模型-ollama-deepseek-open-webui安装使用方法及常见问题解决-1.md -- Notes: - - 新增 Sources 条目至 index.md(Sources 节顶部) - - 新增 Entity 页面:Ollama.md、Open-WebUI.md - - 新增 Concept 页面:Local-LLM-Deployment.md、Docker-LLM-Deployment.md - - 更新 overview.md:Key Entities 节和 AI Tools 节 - -## [2026-04-23] ingest | OpenAI ChatGPT 个性化定义 -- Source file: AI/OpenAI ChatGPT 个性化定义.md -- Status: ✅ 成功摄入 -- Summary: ChatGPT 自定义指令(Custom Instructions)的完整配置——定义用户身份(47岁、云计算背景、跨境电商创业者)、响应风格(高度有条理、详细解释、错误零容忍)和交互偏好(主动预判需求、不道德说教、URL统一末尾引用)。核心原则:[[Expert User Assumption]](用户为所有领域专家)、[[Proactive AI]](主动出击而非被动等待)、[[Error Accountability]](主动反馈配置导致的回复质量下降)。 -- Concepts created: [[Personalization]], [[Custom Instructions]], [[Proactive AI]], [[Expert User Assumption]], [[Error Accountability]] -- Entities created: [[OpenAI]], [[ChatGPT]] -- Source page: wiki/sources/openai-chatgpt-个性化定义.md -- Notes: - - 新增 Sources 条目至 index.md(替换 expected 标记行) - - 新增 5 个 Concept 页面:Personalization.md、Custom-Instructions.md、Proactive-AI.md、Expert-User-Assumption.md、Error-Accountability.md - - 新增 2 个 Entity 页面:OpenAI.md(美国 AI 研究公司)、ChatGPT.md(OpenAI 对话产品) - - 更新 overview.md,新增"ChatGPT 个性化配置"段落至 AI Tools & Prompt Engineering 部分 - - 将 5 个新 Concept 添加至 overview.md Key Concepts 列表 - - 将 OpenAI、ChatGPT 添加至 overview.md Key Entities 列表 - - 冲突检测:暂无发现与其他 Wiki 页面的内容冲突——[[designing-for-agentic-ai]] 中的 Personalization 原则与本文配置案例一致,无矛盾 - -## [2026-04-23] ingest | A Formalization of Recursive Self-Optimizing Generative Systems -- Source file: AI/A Formalization of Recursive Self-Optimizing Generative Systems.md -- Status: ✅ 成功摄入 -- Summary: 递归自我优化生成系统的形式化理论模型——定义生成器空间 $\mathcal{G}$、优化算子 $O$、元生成算子 $M$、自映射 $\Phi$,稳定生成能力 $G^*$ = $\Phi$ 的不动点;用 λ-calculus Y 组合子表达自引用结构 $G^* \equiv Y\;\text{STEP}$。核心发现:递归自我优化自然涌现不动点结构,而非终止输出;为 Self-Improving AI 提供原则性理论基础。 -- Concepts created: [[Recursive Self-Optimization]], [[Generator Space]], [[Self-Referential Computation]], [[Fixed-Point Semantics]], [[Y-Combinator]] -- Entities created: [[tukuai]] -- Source page: wiki/sources/a-formalization-of-recursive-self-optimizing-generative-systems.md -- Notes: - - 新增 Sources 条目至 index.md(替换 expected 标记行) - - 新增 5 个 Concept 页面:Recursive-Self-Optimization.md、Generator-Space.md、Self-Referential-Computation.md、Fixed-Point-Semantics.md、Y-Combinator.md - - 新增 1 个 Entity 页面:tukuai.md(独立研究者,本文作者) - - 更新 overview.md,新增"Recursive Self-Optimizing Generative Systems"段落至 Multi-Agent AI Systems 部分 - - 将 5 个新 Concept 添加至 overview.md Key Concepts 列表 - - 将 tukuai 添加至 overview.md Key Entities 列表 - - 冲突检测:暂无发现与其他 Wiki 页面的内容冲突——本文为纯理论形式化,与 Wiki 中其他 Agent 应用案例属不同层次 - -## [2026-04-23] ingest | LLMs、RAG、AI Agent 三个到底什么区别? -- Source file: AI/LLMs、RAG、AI Agent 三个到底什么区别?.md -- Status: ✅ 成功摄入 -- Summary: LLM、RAG、AI Agent 三者的定义与关系——LLM=思考(天才大脑),RAG=认知(记忆系统),Agent=执行(行动系统)。三者非竞争技术,而是在不同层面互补。未来不在于选择其一,而在于将三者结合架构设计。 -- Concepts created: [[Large Language Model]], [[RAG]], [[AI Agent]], [[ReAct Pattern]] -- Entities created: (无新 Entity 创建) -- Source page: wiki/sources/llms-rag-ai-agent-三个到底什么区别.md -- Notes: - - 新增 Sources 条目至 index.md(置于最前,按日期排序) - - 新增 3 个 Concept 页面:Large-Language-Model.md、RAG.md、AI-Agent.md - - 更新 overview.md Key Concepts 列表,添加 Large Language Model/RAG/AI Agent/ReAct Pattern - - 更新 overview.md,新增"LLM / RAG / AI Agent 三层架构"段落至 AI Tools & Prompt Engineering 部分 - - 更新 index.md Concepts 部分,添加 3 个新 Concept 条目 - - 冲突检测:暂无发现与其他 Wiki 页面的内容冲突——本文为基础概念梳理,与 Wiki 中 Agentic AI 相关内容一致 - -## [2026-04-23] ingest | Google 神级生产力工具,所有 GitHub 开源平替都找到了 -- Source file: AI/Google 神级生产力工具,所有 GitHub 开源平替都找到了。.md -- Status: ✅ 成功摄入 -- Summary: Google NotebookLM 的 6 款 GitHub 开源平替全景盘点——OpenNotebook(14.6k Stars 全功能)、SurfSense(11.4k Stars 综合研究智能体)、Podcastfy(播客垂直聚焦)、NotebookLlama(LlamaIndex 官方学习参考)、PageLM(教育场景)、InsightsLM(低代码架构)。覆盖从"全功能替代"到"垂直聚焦"的不同需求层次。 -- Concepts created: [[文档问答]], [[播客生成]], [[语义搜索]], [[混合搜索]], [[本地化部署]] -- Entities created: [[Google]], [[NotebookLM]], [[OpenNotebook]], [[SurfSense]], [[Podcastfy]], [[NotebookLlama]], [[PageLM]], [[InsightsLM]] -- Source page: wiki/sources/google-神级生产力工具-所有-github-开源平替都找到了.md -- Notes: - - 新增 Sources 条目至 index.md(替换 expected 标记行) - - 新增 Entity 页面:Google、NotebookLM、OpenNotebook、SurfSense、Podcastfy、NotebookLlama、PageLM、InsightsLM(共8个) - - 新增 Concept 页面:文档问答、播客生成、语义搜索、混合搜索、本地化部署(共5个) - - 更新 overview.md,新增"AI Tools & Prompt Engineering"部分的"NotebookLM 开源平替生态"段落 - - 无内容冲突——与现有 RAG、知识管理工具内容互补,未发现矛盾 - -## [2026-04-23] ingest | 教學 ChatGPT 先做知識整理,再讓 Canva、 Gamma AI 輸出簡報 -- Source file: AI/教學 ChatGPT 先做知識整理,再讓 Canva、 Gamma AI 輸出簡報.md -- Status: ✅ 成功摄入 -- Summary: AI 简报自动化工作流——先用 ChatGPT 做知识整理,再用 Canva / Gamma AI 输出演示文稿。两阶段工作流(思考者→设计师)比直接用 AI 生成简报效果更好。 -- Concepts created: [[AI簡報工作流]] -- Entities created: [[Canva]], [[Gamma-AI]] -- Source page: wiki/sources/教學-chatgpt-先做知識整理-再讓-canva-gamma-ai-輸出簡報.md -- Notes: - - 新增 Sources 条目至 index.md(替换 expected 标记行) - - 新增 Entity 条目:[[Canva]], [[Gamma-AI]] - - 新增 Concept 条目:[[AI簡報工作流]] - - 更新 overview.md,新增段落至 AI Tools & Prompt Engineering 部分 - - 无内容冲突 - -## [2026-04-23] ingest | Designing for Agentic AI -- Source file: AI/Designing for Agentic AI.md -- Status: ✅ 成功摄入 -- Summary: 阐述 GenAI(创作内容)vs Agentic AI(主动行动)的核心差异,以及为 Agentic AI 设计用户体验的 TCPCA 五原则——透明度、控制感、个性化、对话、主动预判。核心洞察:观察 AI 决策过程本身就是一种参与方式,设计隐喻从"响应用户点击/滑动"转向"AI 运行时的实时反馈"。 -- Concepts updated: [[Agentic AI]](已存在,仅补充 TCPCA 五原则维度), [[Transparency]], [[Control]], [[Personalization]], [[Conversation]], [[Anticipation]] -- Entities updated: [[Yuri Pessa]](已存在,仅补充身份说明) -- Source page: wiki/sources/designing-for-agentic-ai.md -- Notes: - - 新增 Sources 条目至 index.md(置于 Sources 末尾,因源文件日期 2025-03-02 早于所有现有条目) - - 新增 overview.md 段落至 AI Tools & Prompt Engineering 部分 - - 无需新建 Entity/Concept 页面(Agentic-AI entity 已存在,TCPCA 五原则暂不满足独立 Concept 页面条件) - - 与 [[Google-5个-Agent-Skill-设计模式]] 同属 AI Agent 设计方法论 - -## [2026-04-23] ingest | 养虾日记5:深夜与苏轼聊AI,他说:被浪打下去还能爬起来的才叫风流 -- Source file: 微信公众号/养虾日记5:深夜与苏轼聊AI,他说:被浪打下去还能爬起来的才叫风流.md -- Status: ✅ 成功摄入 -- Summary: 用AI蒸馏历史人物思维框架创建"数字导师"——以苏东坡为首位实践,展示如何将千年古人心智模型(六道:进退由时/此心安处/辞达而已/逆境转化/自出新意/天人合一)转化为可运行的AI Skill。女娲·Skill造人术通过6个并行Agent从6维度采集信息,产出自包含的.skill文件。 -- Concepts created: [[数字导师]], [[思维蒸馏(女娲造人术)]], [[心智模型]], [[AI-Skill]] -- Entities created: [[苏东坡]], [[女娲]] -- Source page: wiki/sources/养虾日记5-深夜与苏轼聊ai-他说-被浪打下去还能爬起来的才叫风流.md -- Notes: - - 新增 Sources 条目至 index.md(置于养虾日记4之后) - - 新增 Entity 条目:[[苏东坡]] - - 新增 Concept 条目:[[数字导师]], [[思维蒸馏(女娲造人术)]] - - 与 [[养虾日记1/2/3/4]] 和 [[养龙虾5天血泪史]] 属同一「养虾日记」系列 - -## [2026-04-23] ingest | 一语点醒梦中人 -- Source file: AI/一语点醒梦中人.md -- Status: ✅ 成功摄入 -- Summary: 收录中国传统诗词与哲学典籍中的经典名句及其释义,涵盖儒道佛三家智慧——王维"行到水穷处,坐看云起时"的佛学顿悟、曾国藩"唯忘机可以消众机"的处世哲学、庄子"知其不可奈何而安之若命"的接受智慧、《老子》"大智若愚,大巧若拙"的守拙哲学、《金刚经》"一切有为法如梦幻泡影"的空性智慧。 -- Concepts covered: [[空性智慧]], [[守拙]], [[安之若命]], [[和光同尘]], [[忘机]], [[中庸之道]], [[有为法]] -- Entities referenced: [[王维]], [[曾国藩]], [[庄子]], [[苏东坡]], [[郑板桥]] -- Source page: wiki/sources/一语点醒梦中人.md -- Notes: - - 新增 Sources 条目至 index.md - - 新增 overview.md 段落"经典智慧与人生哲学" - - Entity/Concept 均未创建独立页面(各人物/概念仅在本文出现1次,未达≥2次阈值) - - 与 [[养虾日记5]](苏东坡数字导师)存在潜在关联,可后续扩展 - -## [2026-04-22] ingest | 不谈技术:普通人该怎么在AI时代赚钱? - 2|- Source file: 微信公众号/不谈技术:普通人该怎么在AI时代赚钱?.md - 3|- Status: ✅ 成功摄入 - 4|- Summary: AI时代普通人如何赚钱的思维框架——三大原则:品味值钱(判断力是护城河)、做端到端的事(不当代价)、用死亡过滤器(找到真正热爱的事)。核心洞察:AI不会让普通人变富,AI会让那些知道自己要做什么、并且对品质有执念的人变得极其强大。 - 5|- Concepts created: [[品味]], [[端到端]], [[死亡过滤器]], [[工具民主化]] - 6|- Entities created: [[乔布斯]] - 7|- Source page: wiki/sources/不谈技术-普通人该怎么在ai时代赚钱.md - 8|- Notes: - 9| - 与 [[个人品牌与一人公司]] 属同一主题(AI时代个人定位与杠杆) - 10| - 与 [[Ikigai框架]] 的"热情"维度高度相关 - 11| - 12|## [2026-04-10] ingest | 养虾日记4:一次「Context Limit Exceeded」错误排查 - 13|- Source file: 微信公众号/养虾日记4: 一次「Context Limit Exceeded」错误排查:我以为是小问题,结果踩了大坑.md - 14|- Status: ✅ 成功摄入 - 15|- Summary: OpenClaw Telegram Channel「Context Limit Exceeded」错误深度排查——问题表象是 context 耗尽,实际根因是 Telegram channel 的模型被切换为 deepseek-reasoner(仅 16K context),safeguard 模式预留 16K tokens 导致实际可用为 0。解决关键:Agent 级别模型配置优先级高于全局 compaction 配置,需在路由规则层修复。 - 16|- Concepts created: [[Context-Window]], [[Model-Fallback]], [[Compaction]], [[Agent-Routing-Rules]], [[Error-Surface-vs-Root-Cause]], [[Layered-Configuration]], [[Log-Driven-Debugging]], [[Hidden-Failure-Paths]] - 17|- Entities created: (无新增;[[OpenClaw]]/[[星枢]]/[[DeepSeek]]/[[MiniMax]] 均已在现有来源中出现,不满足 ≥2 次创建条件) - 18|- Source page: wiki/sources/养虾日记4-一次「context-limit-exceeded」错误排查-我以为是小问题-结果踩了大坑.md - 19|- Notes: - 20| - 新增 Sources 条目至 index.md(置于养龙虾5天血泪史之后) - 21| - 更新 overview.md,新增 [[养虾日记4]] 段落至 Multi-Agent AI Systems 部分 - 22| - 创建 8 个 Concept 页面:Context-Window.md、Model-Fallback.md、Compaction.md、Agent-Routing-Rules.md、Error-Surface-vs-Root-Cause.md、Layered-Configuration.md、Log-Driven-Debugging.md、Hidden-Failure-Paths.md - 23| - 更新 index.md Concepts 节,新增 8 个条目(按字母顺序插入) - 24| - 与 [[养龙虾5天血泪史]] 互补(记忆写入/压缩问题 vs 模型配置错误) - 25| - 冲突检测:无与其他 Wiki 页面的实质性内容冲突 - 26| - 27|## [2026-04-23] ingest | 养虾日记3:用 Obsidian + Gitea 为 AI 助手构庺持久化笔记系统 - 28|- Source file: 微信公众号/养虾日记3:用 Obsidian + Gitea 为 AI 助手构建持久化笔记系统.md - 29|- Status: ✅ 成功摄入 - 30|- Summary: 用 Obsidian + Gitea 为 AI 助手构建持久化笔记系统——解决"AI 对话结束输出就消失"的核心问题。核心架构:Obsidian 做知识库(iCloud Drive 三端同步)+ Gitea 做版本控制(Git 历史)+ OpenClaw obsidian skill 做写入接口。核心价值:把 AI 变成"会自动整理笔记的实习生"。融合了 Karpathy 的 LLM Wiki 理念:让 AI 增量构建 Wiki,页面间互链,知识越积越厚。 - 31|- Concepts created: [[LLM Wiki]], [[Obsidian Git]], [[Graph View]], [[Obsidian Web Clipper]], [[QMD]], [[版本管理]], [[被动更新]], [[双链笔记]] - 32|- Entities created: [[Obsidian]], [[Gitea]] - 33|- Source page: wiki/sources/养虾日记3-用-obsidian-gitea-为-ai-助手构建持久化笔记系统.md - 34|- Notes: - 35| - 新增 Sources 条目至 index.md(置于最前) - 36| - 更新 overview.md,替换原 [[养虾日记1]] 段落为 [[养虾日记3]] - 37| - 创建 Entity 页面:Obsidian.md, Gitea.md - 38| - 创建 Concept 页面:LLM-Wiki.md - 39| - Gitea 已在 Entity 中存在(无需重复创建,仅更新) - 40| - 冲突:无已知冲突 - 41| - 42|## [2026-04-23] ingest | 养龙虾5天血泪史:我的AI Agent为什么总失忆?OpenClaw 记忆调试全记录 - 43|- Source file: 微信公众号/养龙虾5天血泪史:我的AI Agent为什么总失忆?OpenClaw 记忆调试全记录.md - 44|- Status: ✅ 成功摄入 - 45|- Summary: AI Agent 记忆失效问题的5天专项调试全记录——发现5类根本原因(上下文压缩、搜索后端、检索触发、压缩协同、系统配置),对应10条黄金法则。核心洞察:写入纪律比读取纪律更重要;压缩不是敌人,未写入的上下文才是;系统提示词从209,652精简到9,349令牌(减少28%)。 - 46|- Concepts created: 上下文压缩、上下文刷新、写入纪律、交接协议、启动序列 - 47|- Entities created: — - 48|- Source page: wiki/sources/养龙虾5天血泪史-我的ai-agent为什么总失忆-openclaw-记忆调试全记录.md - 49|- Notes: - 50| - 新增 Sources 条目至 index.md(置于养虾日记1、2之后) - 51| - 更新 overview.md,新增 [[养龙虾5天血泪史]] 段落至养虾日记系列部分 - 52| - 创建 5 个 Concept 页面(上下文压缩/上下文刷新/写入纪律/交接协议/启动序列) - 53| - Hybrid-Search 概念页面已存在(无需重复创建) - 54| - 冲突已记录于 source page Contradictions 部分(与 Second Brain 的 MEMORY.md 定位差异、与 personal-crm 的联系人记录方式差异) - 55| - 56|## [2026-04-23] ingest | 养虾日记1:我用 OpenClaw 管了 28 万张照片 - 57|- Source file: 微信公众号/养虾日记1:我用 OpenClaw 管了 28 万张照片:一次真实的多设备照片整理实战.md - 58|- Status: ✅ 成功摄入 - 59|- Summary: AI Agent 照片整理实战——使用 OpenClaw 成功整理了 NAS 上 28 万张、跨越 20 年的家庭照片。OpenClaw 通过「提问澄清 → 方案制定 → 批次拆分(8 批次)→ Cron 凌晨自动执行 → Telegram Summary 报告」全流程自动化。核心机制:MD5 精确去重 + 小文件清理(<100KB)+ 安全删除策略(To-Be-Deleted 目录)。核心感悟:AI Agent 的价值是思维方式升级。 - 60|- Concepts created: — - 61|- Entities created: — - 62|- Source page: wiki/sources/养虾日记1-我用-openclaw-管了-28-万张照片-一次真实的多设备照片整理实战.md - 63|- Notes: - 64| - 新增 Sources 条目至 index.md(置于最前) - 65| - 更新 overview.md,新增 [[养虾日记1]] 段落至 Self-Improving 部分,新增 [[AI-Agent思维方式]]/[[批次任务拆分]]/[[精确去重]]/[[小文件清理]]/[[安全删除策略]]/[[Telegram通知]] 至 Key Concepts - 66| - Entity 数量不足阈值(OpenClaw/Synology Photos/NAS 均已存在或仅出现 1 次),未创建新 Entity 页面 - 67| - Concept 数量不足阈值(所有概念均为本篇特定实践,不满足可抽象/可复用条件),未创建独立 Concept 页面 - 68| - 冲突已记录于 source page Contradictions 部分(与 Self-Healing-Home-Server 的规划者 vs 修复者角色差异) - -## [2026-04-27] ingest | X Account Analysis -- Source file: Agent/usecases/x-account-analysis.md -- Status: ✅ 成功摄入(重新生成 source page) -- Summary: 基于 OpenClaw + Bird Skill 的 X 账号定性分析——通过 Cookie 认证读取真实账号推文,AI 分析内容质量模式(为何有时 1000+ 赞有时 <5 赞)、话题偏好与互动差异原因。免费替代 $10-$50/月订阅服务。 -- Concepts created: — -- Entities created: — -- Source page: wiki/sources/x-account-analysis.md -- Notes: 已确认 overview.md 已有该页面综合摘要(line 441),无需额外更新;已更新 index.md 添加条目 - 69| - 70|## [2026-04-23] ingest | X Account Analysis - 71|- Source file: Agent/usecases/x-account-analysis.md - 72|- Status: ✅ 成功摄入 - 73|- Summary: 基于 OpenClaw + Bird Skill 的 X 账号定性分析——通过 Cookie 认证读取真实账号推文,AI 分析内容质量模式(为何有时 1000+ 赞有时 <5 赞)、话题偏好与互动差异原因。免费替代 $10-$50/月订阅服务。 - 74|- Concepts created: — - 75|- Entities created: — - 76|- Source page: wiki/sources/x-account-analysis.md - 77|- Notes: - 78| - 新增 Sources 条目至 index.md(置于最前) - 79| - 更新 overview.md,新增 [[x-account-analysis]] 段落至 X/Twitter Automation 部分(补充原 x-twitter-automation 段落的互补关系描述) - 80| - 更新 wiki/sources/x-twitter-automation.md,移除"(尚未摄入)"标注 - 81| - Entity/Concept 数量不足阈值(每项仅在本文中出现 1 次),未创建新实体/概念页面;[[OpenClaw]] 已存在于 Key Entities - 82| - 新增 Key Concepts: [[Social-Media-Analytics]], [[Credential-Isolation]] - 83| - 84|## [2026-04-23] ingest | Phone Call Notifications - 85|- Source file: Agent/usecases/phone-call-notifications.md - 86|- Status: ✅ 成功摄入 - 87|- Summary: AI Agent 通过 clawr.ing 托管电话服务主动向用户拨打电话通知——Agent 评估事件优先级(股价暴跌/紧急邮件/日程提醒),自动拨叫用户真实号码,用户可实时提问,Agent 双向对话响应。与 [[phone-based-personal-assistant]] 互补(Agent 去电通知 vs 用户来电接收)。 - 88|- Concepts created: [[Voice Notification Channel]], [[Two-Way Voice Conversation]], [[Call-Worthy Threshold]] - 89|- Entities created: [[clawr.ing]], [[clawhub.ai]] (updated) - 90|- Source page: wiki/sources/phone-call-notifications.md - 91|- Notes: - 92| - 新增 Sources 条目至 index.md(置于最前) - 93| - 更新 overview.md,新增 [[phone-call-notifications]] 段落至 AI Tools & Prompt Engineering 部分,新增 [[clawr.ing]]/[[clawhub.ai]] 至 Key Entities,新增 [[Voice Notification Channel]]/[[Two-Way Voice Conversation]]/[[Call-Worthy Threshold]]/[[PSTN Calling]] 至 Key Concepts - 94| - 新增 Entity: wiki/entities/clawr.ing.md;更新 wiki/entities/ClawHub.md(添加 clawr.ing 作为托管 skill) - 95| - 新增 Concept: wiki/concepts/Voice-Notification-Channel.md、wiki/concepts/Two-Way-Voice-Conversation.md、wiki/concepts/Call-Worthy-Threshold.md - 96| - 更新 overview.md Conflict Areas,新增"Agent 去电通知 vs Agent 来电接收"冲突点 - 97| - 98|## [2026-04-23] ingest | Autonomous Educational Game Development Pipeline - 99|- Source file: Agent/usecases/autonomous-game-dev-pipeline.md - 100|- Status: ✅ 成功摄入 - 101|- Summary: AI Agent 全自动管理教育游戏开发生命周期——"Bugs First" 优先策略 + Round Robin 轮询 + 纯 HTML5/CSS3/JS 技术栈,单人实现每 7 分钟产出 1 款游戏或 1 个 bugfix,41+ 款游戏维护。 - 102|- Concepts created: [[Bugs First]], [[Round Robin Strategy]], [[Conventional Commits]], [[Feature Branch Workflow]], [[HTML5 Game Development]] - 103|- Entities created: — - 104|- Source page: wiki/sources/autonomous-game-dev-pipeline.md - 105|- Notes: - 106| - 新增 Sources 条目至 index.md(置于最前) - 107| - 更新 overview.md,新增 [[autonomous-game-dev-pipeline]] 段落至 AI Tools & Prompt Engineering 部分 - 108| - Entity/Concept 数量不足阈值,未创建新实体页面;[[OpenClaw]] 实体已存在于 index.md - 109| - 110|## [2026-04-23] ingest | arXiv Paper Reader - 111|- Source file: Agent/usecases/arxiv-paper-reader.md - 112|- Status: ✅ 成功摄入 - 113|- Summary: AI Agent 驱动的 arXiv 论文阅读助手——通过 `arxiv-reader` skill(3 工具:`arxiv_fetch`、`arxiv_sections`、`arxiv_abstract`)直接从 arXiv 下载 LaTeX 源码并自动扁平化展开,消除 PDF 下载后切换论文丢失上下文和 LaTeX 符号难以解析的痛点;支持摘要浏览、多论文对比排序、选择性细读和会话式分析;本地缓存使重复访问秒级响应;纯 Node.js 零依赖部署。 - 114|- Concepts created: [[arXiv-API]], [[LaTeX-Flattening]], [[Local-Caching]], [[Paper-Abstract-Batch-Fetching]] - 115|- Entities created: [[Prismer-AI]] - 116|- Source page: wiki/sources/arxiv-paper-reader.md - 117|- Notes: - 118| - 新增 Sources 条目至 index.md(替换 "source missing" placeholder) - 119| - 更新 overview.md,在 YouTube Automation 部分后新增 [[arXiv-Paper-Reader]] 段落,在 Key Concepts 列表新增 4 个新概念 - 120| - 创建 Entity 页面:Prismer-AI.md(GitHub 组织,`arxiv-reader` skill 维护方) - 121| - 创建 Concept 页面:arXiv-API.md(arXiv 开放 API)、LaTeX-Flattening.md(LaTeX 扁平化技术)、Local-Caching.md(本地缓存模式)、Paper-Abstract-Batch-Fetching.md(批量摘要对比模式) - 122| - 与 [[academic-historian]] 同属学术研究场景互补——前者侧重理工科论文,后者侧重人文社科 - 123| - 与 [[YouTube-Content-Pipeline]] 的 Research Agent 共享研究工作流设计模式 - 124| - 冲突检测:无已知实质冲突 - 125| - 126|## [2026-04-22] ingest | Semantic Memory Search - 127|- Source file: Agent/usecases/semantic-memory-search.md - 128|- Status: ✅ 成功摄入 - 129|- Summary: 通过 memsearch(基于 Milvus 向量数据库)为 OpenClaw Markdown 记忆添加语义搜索能力——用自然语言提问即可找到相关内容,无需精确措辞。混合搜索(稠密向量 + BM25 + RRF)兼顾语义相似性和关键词精确匹配;SHA-256 内容哈希实现增量索引节省成本;文件监视器自动重建索引;支持本地模式无需 API Key。核心理念:Markdown 是唯一真相,向量索引是派生缓存。 - 130|- Concepts created: [[Hybrid Search]], [[Reciprocal Rank Fusion]], [[Content Hashing]], [[File Watcher]] - 131|- Entities created: [[memsearch]], [[Milvus]] - 132|- Source page: wiki/sources/semantic-memory-search.md - 133|- Notes: - 134| - 新增 Sources 条目至 index.md(替换 "source missing" placeholder) - 135| - 更新 overview.md,在 Productivity & Knowledge Management 部分新增 [[semantic-memory-search]] 段落,在 Key Concepts 列表新增 6 个新概念 - 136| - 创建 Entity 页面:Memsearch.md(ZillizTech memsearch CLI/库)、Milvus.md(开源向量数据库) - 137| - 创建 Concept 页面:Hybrid-Search.md(混合搜索策略)、Reciprocal-Rank-Fusion.md(排名融合算法)、Content-Hashing.md(增量索引机制)、File-Watcher.md(自动重建索引) - 138| - 与 [[Knowledge-Base-RAG]] 同属 RAG 技术栈的不同场景——后者侧重 URL 入库,前者侧重现有 Markdown 文件的语义索引 - 139| - 冲突检测:wiki/concepts/Semantic-Search.md 已引用 [[Hybrid Search]],与本 Source 一致;wiki/concepts/Knowledge-Base-RAG.md 有 Hybrid Search 说明,与本 Source 一致,暂无实质冲突 - 140| - 141|## [2026-04-22] ingest | OpenClaw as Desktop Cowork (AionUi) — Remote Rescue & Multi-Agent Hub - 142|- Source file: Agent/usecases/aionui-cowork-desktop.md - 143|- Status: ✅ 成功摄入 - 144|- Summary: 通过 AionUi 桌面应用将 OpenClaw 作为可视化 Cowork Agent 运行——提供文件感知工作空间(可见文件读写/命令/网页浏览),内置 OpenClaw 部署专家通过 Telegram/WebUI 远程诊断修复(`openclaw doctor`),统一 MCP 配置全局同步到 12+ Agent,支持 WebUI/Telegram/Lark/DingTalk 多渠道远程访问。 - 145|- Concepts created: [[CoworkWorkspace]], [[RemoteRescuePattern]], [[Multi-AgentHub]], [[MCPOnceAllAgents]] - 146|- Entities created: [[AionUi]] - 147|- Source page: wiki/sources/aionui-cowork-desktop.md - 148|- Notes: - 149| - 新增 Sources 条目至 index.md(替换 "source missing" placeholder) - 150| - 更新 overview.md,在 AI Tools & Prompt Engineering 部分新增 [[aionui-cowork-desktop]] 段落,在 Key Entities 部分新增 [[AionUi]],在 Key Concepts 部分新增 4 个新概念 - 151| - 创建实体页面 wiki/entities/AionUi.md - 152| - 创建概念页面:CoworkWorkspace.md, RemoteRescuePattern.md, Multi-AgentHub.md, MCPOnceAllAgents.md - 153| - 154|## [2026-04-22] ingest | Family Calendar Aggregation & Household Assistant - 155|- Source file: Agent/usecases/family-calendar-household-assistant.md - 156|- Status: ✅ 成功摄入 - 157|- Summary: AI Agent 作为家庭日程协调中心——聚合 5+ 个分散日历(工作/个人/家庭/学校/课外)生成每日晨间简报;通过环境消息监控(Ambient Message Monitoring)自动从 iMessage 中识别预约并创建日历事件(含行车时间缓冲);维护家庭库存 JSON,支持照片 OCR 和小票识别更新;生成购物清单。核心洞察:Ambient > Active,Mac Mini 是最优硬件。 - 158|- Concepts created: [[AmbientMessageMonitoring]], [[HouseholdInventoryTracking]] - 159|- Entities created: [[SparkryAI]] - 160|- Source page: wiki/sources/family-calendar-household-assistant.md - 161|- Notes: - 162| - 新增 Sources 条目至 index.md(替换 "source missing" placeholder) - 163| - 更新 overview.md,在 AI Tools & Prompt Engineering 部分新增 [[family-calendar-household-assistant]] 段落 - 164| - 新建 Concept 页面:AmbientMessageMonitoring.md(核心差异化机制)、HouseholdInventoryTracking.md(物资追踪模式) - 165| - 新建 Entity 页面:SparkryAI.md(牙医预约案例的来源) - 166| - 与 [[Custom Morning Brief]] 互补:同一晨间简报模式,个人场景 vs 家庭场景 - 167| - 与 [[Second Brain]] 共享 OpenClaw 持久记忆能力 - 168| - 冲突检测:暂无发现与其他 Wiki 页面的内容冲突 - 169| - 170|## [2026-04-22] ingest | Personal Knowledge Base (RAG) - 171|- Source file: Agent/usecases/knowledge-base-rag.md - 172|- Status: ✅ 成功摄入 - 173|- Summary: AI Agent 驱动的个人知识库 RAG 系统——通过 Telegram Topic 或 Slack Channel 投递任意 URL(网页/推文/YouTube 字幕/PDF),Agent 自动抓取内容并以 Embedding 向量入库;支持语义搜索,返回排名结果并附带来源;可被其他工作流(如 [[YouTube-Content-Pipeline]])主动查询。核心理念:**捕获像发短信一样简单,检索像搜索一样容易**。 - 174|- Concepts created: [[Semantic-Search]], [[Content-Ingestion]] - 175|- Source page: wiki/sources/knowledge-base-rag.md - 176|- Notes: - 177| - 新增 Sources 条目至 index.md(替换 "source missing" placeholder) - 178| - 更新 overview.md,在 Productivity & Knowledge Management 部分新增 [[Personal Knowledge Base (RAG)]] 段落 - 179| - 与 [[Second Brain]] 互补:Second Brain 侧重对话记忆,本方案侧重结构化知识检索 - 180| - 与 [[YouTube-Content-Pipeline]] 关联:后者在工作流中主动查询知识库 - 181| - [[Knowledge-Base-RAG]] 概念页已存在(2026-04-22 youtube-content-pipeline ingest 时创建),本次补充 Semantic-Search 和 Content-Ingestion 两个子概念 - 182| - Entity 页面(OpenClaw、ClawHub、Telegram、Slack)均已在 overview.md Key Entities 中覆盖,无需新建 - 183| - Contradiction:暂无发现与其他 Wiki 页面的内容冲突 - 184|- Status: ✅ 成功摄入 - 185|- Summary: AI Agent 驱动的 YouTube 选题发现与选题自动化流水线——每小时 Cron Job 扫描 Web + X/Twitter 突发 AI 新闻,向 Telegram 推送选题;维护 90 天视频目录(播放量 + 主题分析)避免选题重复;通过 SQLite 向量嵌入实现语义去重;在 Slack 分享链接时自动研究主题、搜索 X、查询知识库并创建带大纲的 Asana 任务卡。 - 186|- Concepts created: [[Semantic-Deduplication]], [[Vector-Embedding]], [[Knowledge-Base-RAG]] - 187|- Source page: wiki/sources/youtube-content-pipeline.md - 188|- Notes: - 189| - 新增 Sources 条目至 index.md(替换 "source missing" placeholder) - 190| - 更新 overview.md,在 YouTube Automation 部分新增 [[YouTube-Content-Pipeline]] 段落 - 191| - 与 [[Daily-YouTube-Digest]] 互补:后者侧重订阅频道更新监控,前者侧重全网趋势主动发现 - 192| - 与 [[Content-Factory]] 共享并行子 Agent 执行模式 - 193| - Entity 页面(OpenClaw、Asana、Slack)均已存在,无需新建 - 194| - 新增 3 个 Concept 页面并注册至 index.md Concepts 索引 - 195| - Contradiction:暂无发现与其他 Wiki 页面的内容冲突 - 196|- Source file: Agent/usecases/polymarket-autopilot.md - 197|- Status: ✅ 成功摄入 - 198|- Summary: 基于 AI Agent 的 Polymarket 预测市场自动驾驶交易系统,实现 24/7 市场监控与自动化分析。AI Agent 自动监控 Polymarket 市场数据、智能分析预测概率变化、自动执行交易策略、定时推送市场洞察。 - 199|- Concepts created: [[Prediction Market]], [[Agentic Trading]], [[Market Monitoring]] - 200|- Entities created: [[Polymarket]] - 201|- Source page: wiki/sources/polymarket-autopilot.md - 202|- Notes: - 203| - 新增 Sources 条目至 index.md(替换 placeholder) - 204| - 更新 overview.md,在 Multi-Agent Monitoring 部分的 Dynamic Dashboard 段落中补充 polymarket-autopilot 引用 - 205| - 与 [[Dynamic Dashboard]] 存在关联(监控仪表盘的具体用例) - 206| - 与 [[earnings-tracker]] 属于同类模式(市场数据监控 + 定时推送) - 207| - Polymarket 已在 overview.md Key Entities 中提及,无需重复创建 Entity 页面 - 208| - Contradiction:暂无发现与其他 Wiki 页面的内容冲突 - 209| - 210|## [2026-04-22] ingest | Local CRM Framework with DenchClaw - 211|- Source file: Agent/usecases/local-crm-framework.md - 212|- Status: ✅ 成功摄入 - 213|- Summary: DenchClaw 将 OpenClaw 转化为本地 CRM、销售自动化和生产力平台,通过 `npx denchclaw` 一键安装完整技术栈(DuckDB + Web UI + OpenClaw Profile + 浏览器自动化)。核心创新:所有设置/视图以 YAML/Markdown 文件存储,Agent 可直接修改 UI 而无需 API 抽象层;Chrome Profile 克隆使 Agent 继承用户认证状态,可直接导入 HubSpot 等平台数据。 - 214|- Concepts created: [[File-System-First-UI]], [[DuckDB]] - 215|- Entities created: [[DenchClaw]] - 216|- Source page: wiki/sources/local-crm-framework.md - 217|- Notes: - 218| - 新增 Sources 条目至 index.md(置于首位) - 219| - 更新 overview.md,在 [[personal-crm]] 附近添加 Local CRM Framework 段落 - 220| - 创建 1 个 Entity 页面:DenchClaw.md - 221| - 创建 2 个 Concept 页面:DuckDB.md、File-System-First-UI.md - 222| - 与 [[Second Brain]] 均基于 OpenClaw 的记忆/持久化能力,属同类应用的不同垂直场景 - 223| - 与 [[personal-crm]] 同属个人 CRM 场景的不同实现方案 - 224| - 与 [[multi-channel-assistant]] 共享 Telegram/消息平台作为交互入口 - 225| - 核心设计哲学:文件系统即 Agent 原生 UI + DuckDB 嵌入式数据库 + Chrome Profile 克隆 - 226| - Contradiction:暂无发现与其他 Wiki 页面的内容冲突 - 227| - 228|## [2026-04-22] ingest | Goal-Driven Autonomous Tasks - 229|- Source file: Agent/usecases/overnight-mini-app-builder.md - 230|- Status: ✅ 成功摄入 - 231|- Summary: AI Agent 从被动执行者转变为主动规划者的目标驱动型自主任务系统。通过 Brain Dump 一次性倾倒所有目标,OpenClaw 每日清晨自动生成 4-5 个贴近目标的自主任务(研究/写作/MVP构建),通过 Next.js Kanban 看板实时追踪。核心价值:用户定义目的地,Agent 自动分解并执行每日步骤。还包含过夜惊喜 Mini-App 构建模式。核心工程实践:Git-style append-only 日志解决多 Agent 竞态条件;Token-Light Design 保持 AUTONOMOUS.md 在 50 行以内。 - 232|- Concepts created: [[Sub-Agent-Race-Condition]], [[Token-Light-Design]], [[Brain-Dump]] - 233|- Entities created: (无新增,[[OpenClaw]]/[[Alex Finn]]/[[Next.js]] 均已存在) - 234|- Source page: wiki/sources/overnight-mini-app-builder.md - 235|- Notes: - 236| - 新增 Sources 条目至 index.md(替换 placeholder,原标题为 overnight-mini-app-builder) - 237| - 更新 overview.md,将 Market Research & Product Factory 段落替换为 Goal-Driven Autonomous Tasks 段落,补充 Git-style append-only 模式和 Token-Light Design 洞察 - 238| - 更新 Alex-Finn.md,将 overnight-mini-app-builder 添加至 sources - 239| - 创建 3 个 Concept 页面:Sub-Agent-Race-Condition.md、Token-Light-Design.md、Brain-Dump.md - 240| - 与 [[Project State Management]] 的看板 vs 事件溯源存在潜在冲突(已记录于 Source Page Contradictions) - 241| - 与 [[market-research-product-factory]] 同属 Alex Finn 启发的 OpenClaw 高阶用法,前者侧重任务追踪和持续执行,后者侧重产品机会发现 - 242| - 243|## [2026-04-17] ingest | Habit Tracker & Accountability Coach - 244|- Source file: Agent/usecases/habit-tracker-accountability-coach.md - 245|- Status: ✅ 成功摄入 - 246|- Summary: AI Agent 作为主动问责伙伴,通过 Telegram/SMS 每日定时签到,替代被动习惯追踪 App。核心机制:主动问责 + 连续打卡追踪 + 自适应语气 + 每周模式分析。关键洞察:主动询问比被动记录更能驱动行为改变;保持 3-5 个习惯可避免签到疲劳;[[Adaptive Tone]] 自适应语气是关键差异化因素。 - 247|- Concepts created: [[Adaptive-Tone]], [[Active-Accountability]], [[Streak-Tracking]], [[Check-in-Fatigue]], [[Weekly-Pattern-Analysis]] - 248|- Entities created: (无新增,[[Telegram Bot API]]/[[Twilio]]/[[Google Sheets API]] 各仅出现 1 次,不满足≥2次创建条件;[[OpenClaw]] 已存在) - 249|- Source page: wiki/sources/habit-tracker-accountability-coach.md - 250|- Notes: - 251| - 新增 Sources 条目至 index.md(替换 placeholder) - 252| - 更新 overview.md,添加 Habit Tracker & Accountability Coach 段落,补充 [[Adaptive Tone]], [[Active Accountability]], [[Streak Tracking]], [[Check-in Fatigue]], [[Weekly Pattern Analysis]] 至 Key Concepts - 253| - 创建 5 个 Concept 页面:Adaptive-Tone.md、Active-Accountability.md、Streak-Tracking.md、Check-in-Fatigue.md、Weekly-Pattern-Analysis.md - 254| - 已有相关 Concept:[[Scheduled-Reminder]](定时签到技术基础)、[[Agent-Personality]](Adaptive Tone 的上层设计)、[[Morning Briefing]](同一 Cron + AI 推送模式)、[[Food-Sensitivity-Tracking]](同一框架的不同垂直场景) - 255| - 已有相关 Entity:[[OpenClaw]](底层运行平台) - 256| - 与 [[Health & Symptom Tracker]] 属同一框架(OpenClaw + Telegram + Cron Job + 每周分析),但垂直于个人习惯养成 - 257| - Contradiction:与[[Todoist Task Manager]] 同属 OpenClaw 生产力工具集,但 Todoist 侧重任务管理,Habit Tracker 侧重个人行为改变——不冲突,属于互补关系 - 258| - 与传统习惯 App(Streaks/Habitica)的对比:传统 App 强调被动记录和视觉激励;本方案强调主动询问和个性化文字激励 - 259| - 260|## [2026-04-22] ingest | Todoist Task Manager - 261|- Source file: Agent/usecases/todoist-task-manager.md - 262|- Status: ✅ 成功摄入 - 263|- Summary: AI Agent 通过 Todoist API 实现自然语言驱动的任务管理自动化——Agent 解析自然语言指令 → Todoist REST API 创建结构化任务(含截止/项目/标签)→ Cron Job 定时扫描逾期任务主动推送提醒。核心价值:用户只需发一条消息即可完成全套操作,AI 主动追踪逾期任务。 - 264|- Concepts created: [[Todoist API]], [[AI-Driven Task Extraction]], [[Recurring Tasks]] - 265|- Entities created: (无新增,[[Todoist]]/[[OpenClaw]]/[[SuperCall]] 已存在) - 266|- Source page: wiki/sources/todoist-task-manager.md - 267|- Notes: - 268| - 新增 Sources 条目至 index.md(替换 placeholder) - 269| - 更新 overview.md,添加 Todoist Task Manager 段落,补充 [[Morning Briefing]], [[Todoist API]], [[AI-Driven Task Extraction]], [[TaskAutomation]], [[Recurring Tasks]] 至 Key Concepts - 270| - 更新 entities/Todoist.md,添加 todoist-task-manager 至 sources - 271| - 创建 3 个 Concept 页面:Todoist-API.md、AI-Driven-Task-Extraction.md、Recurring-Tasks.md - 272| - [[Project State Management]] 冲突记录:Todoist(结构化字段/API驱动)与 Markdown 事件流(完整上下文/自托管)各有适用场景 - 273| - 与 [[multi-channel-assistant]] 中 Todoist 集成属同一技术栈,侧重不同:前者侧重多渠道统一入口,后者侧重任务管理深度自动化 - 274| - 275|## [2026-04-22] ingest | Dynamic Dashboard with Sub-agent Spawning - 276|- Source file: Agent/usecases/dynamic-dashboard.md - 277|- Status: ✅ 成功摄入 - 278|- Summary: 基于子代理并行执行的多数据源实时监控仪表盘——通过子代理并行抓取 GitHub/Twitter/Polymarket/系统健康等多数据源,定时聚合结果推送 Discord,支持告警阈值和历史趋势存储。用对话式指令替代数周前端开发,立即获得实时洞察。 - 279|- Concepts created: [[Dynamic-Dashboard]], [[Alerting]] - 280|- Entities created: (无新增,[[OpenClaw]] 已存在) - 281|- Source page: wiki/sources/dynamic-dashboard.md - 282|- Notes: - 283| - 新增 Sources 条目至 index.md(插入顶部) - 284| - 更新 overview.md,添加 Multi-Agent Monitoring & Automation 段落,补充 [[Dynamic-Dashboard]] 和 [[Alerting]] 至 Key Concepts - 285| - 创建 2 个 Concept 页面:Dynamic-Dashboard.md、Alerting.md - 286| - 已有相关 Concept:[[Parallel-Agent-Execution]](子代理并行)、[[Scheduled-Task-Flywheel]](定时任务) - 287| - 已有相关 Entity:[[OpenClaw]](多代理框架) - 288| - 冲突:与 [[content-factory]] 存在场景重叠(并行执行模式),但前者侧重数据监控,后者侧重内容创作 - 289| - 290|## [2026-04-22] ingest | Pre-Build Idea Validator - 291|- Source file: Agent/usecases/pre-build-idea-validator.md - 292|- Status: ✅ 成功摄入 - 293|- Summary: AI 项目启动前的竞争分析门控机制——在写代码之前通过 idea-reality-mcp 扫描 GitHub/Hacker News/npm/PyPI/Product Hunt 五个数据源,返回 reality_signal 分数(0-100)评估赛道拥挤度,防止 Agent 在已饱和赛道投入资源。 - 294|- Concepts created: [[Pre-Build Validation]], [[Reality-Signal]], [[Competition-Analysis]], [[Pivot-Strategy]], [[Agent-Build-Gate]] - 295|- Entities created: [[idea-reality-mcp]] - 296|- Source page: wiki/sources/pre-build-idea-validator.md - 297|- Notes: - 298| - 新增 Sources 条目至 index.md(插入顶部) - 299| - 更新 overview.md,添加 pre-build-idea-validator 段落并补充 4 个新概念至 Key Concepts - 300| - 创建 5 个 Concept 页面:Pre-Build-Validation.md、Reality-Signal.md、Competition-Analysis.md、Pivot-Strategy.md、Agent-Build-Gate.md - 301| - 创建 1 个 Entity 页面:idea-reality-mcp.md - 302| - Hacker-News 和 Product-Hunt 仅出现 1 次,不满足 ≥2 次的 Entity 创建阈值,未创建 - 303| - 与 market-research-product-factory 互补:后者挖痛点找方向,前者在动手前验证赛道的竞争密度 - 304| - 冲突:无 - 305| - 306|## [2026-04-22] ingest | Autonomous Project Management with Subagents - 307|- Source file: Agent/usecases/autonomous-project-management.md - 308|- Status: ✅ 成功摄入 - 309|- Summary: 去中心化多 Agent 项目协调模式——通过共享 STATE.yaml 实现并行自主执行,主会话遵循 CEO 模式(仅做策略决策),Git 作为审计日志记录所有状态变更。核心洞察:文件协调优于中心编排器,主会话越薄响应越快。 - 310|- Concepts created: [[PM Delegation Pattern]], [[CEO Pattern]], [[Shared State Coordination]], [[Git-as-Audit-Log]] - 311|- Entities created: [[Nicholas Carlini]] - 312|- Source page: wiki/sources/autonomous-project-management.md - 313|- Notes: - 314| - 新增 Sources 条目至 index.md(插入顶部) - 315| - 更新 overview.md,添加 4 个新概念至 Key Concepts - 316| - 创建 4 个 Concept 页面:PMDelegationPattern.md、CEOPattern.md、SharedStateCoordination.md、GitAsAuditLog.md - 317| - 创建 1 个 Entity 页面:NicholasCarlini.md - 318| - 冲突记录:与 [[project-state-management]] 的任务管理范式冲突(动态文件 vs 静态看板) - 319| - Nicholas Carlini 未在原 Wiki 中出现,作为启发来源创建 Entity 页面 - 320| - 321|- Source file: Agent/usecases/daily-reddit-digest.md - 322|- Status: ✅ 成功摄入 - 323|- Summary: AI Agent 驱动的 Reddit 每日精选摘要自动化——通过 OpenClaw + reddit-readonly skill,每日定时抓取多 Subreddit 热门帖子,AI 记忆偏好持续优化规则,纯读取模式无需认证。 - 324|- Concepts created: [[Daily-Digest]], [[Reddit Read-Only]], [[Preference Learning]] - 325|- Entities created: [[reddit-readonly]] - 326|- Source page: wiki/sources/daily-reddit-digest.md - 327|- Notes: - 328| - 更新 index.md,替换缺失标记为正式条目 - 329| - 更新 overview.md,添加至 YouTube Automation / Daily Digest 章节 - 330| - OpenClaw Entity 页面已存在,无需新建 - 331| - Preference Learning Concept 已在 inbox-declutter 中引用,无需新建 - 332| - 333|## [2026-04-22] ingest | Inbox De-clutter - 334|- Source file: Agent/usecases/inbox-declutter.md - 335|- Status: ✅ 成功摄入 - 336|- Summary: AI Agent 每日自动整理 Newsletter 邮件摘要——通过 Cron Job 每日 20:00 阅读过去 24 小时 Newsletter 新邮件,生成精华摘要并附链接,根据用户反馈持续学习偏好。需前置 Gmail OAuth Setup。 - 337|- Concepts created: [[Email Triage]], [[Newsletter Digest]], [[Preference Learning]] - 338|- Entities created: [[Gmail OAuth]] - 339|- Source page: wiki/sources/inbox-declutter.md - 340|- Notes: - 341| - 新增 Sources 条目至 index.md(插入顶部) - 342| - 更新 overview.md,添加 inbox-declutter 描述段落(作为 [[custom-morning-brief]] 的相似模式) - 343| - 创建 Concept 页面:Email-Triage.md、Newsletter-Digest.md、Preference-Learning.md - 344| - 创建 Entity 页面:Gmail-OAuth.md - 345| - 与 [[custom-morning-brief]] 属同一 Cron Job + AI 摘要模式的不同垂直场景 - 346| - 冲突:无 - 347| - 348|## [2026-04-22] ingest | Market Research & Product Factory - 349|- Source file: Agent/usecases/market-research-product-factory.md - 350|- Status: ✅ 成功摄入 - 351|- Summary: AI Agent 驱动的"从市场调研到产品构建"全自动化流水线——通过 Last 30 Days skill 挖掘 Reddit 和 X 近30天真实用户痛点,OpenClaw 根据痛点构建 Web 应用 MVP。核心价值:发短信即可完成"发现问题→验证需求→构建方案"全流程,无需技术背景。 - 352|- Concepts created: [[Pain Point Mining]], [[Startup MVP Pipeline]], [[Agent-Driven Market Research]], [[Last 30 Days Method]] - 353|- Source page: wiki/sources/market-research-product-factory.md - 354|- Notes: - 355| - 新增 Sources 条目至 index.md - 356| - 更新 overview.md,添加 Market Research & Product Factory 描述段落 - 357| - 添加 Pain Point Mining、Startup MVP Pipeline、Agent-Driven Market Research、Last 30 Days Method 到 Key Concepts - 358| - Alex Finn 出现2次(content-factory + market-research),但按出现频次标准不满足 Entity 创建条件,跳过 - 359| - Matt Van Horne 仅出现1次,跳过 Entity 页面创建 - 360| - 冲突:无已知冲突 - 361| - 362|## [2026-04-22] ingest | Phone-Based Personal Assistant - 363|- Source file: Agent/usecases/phone-based-personal-assistant.md - 364|- Status: ✅ 成功摄入 - 365|- Summary: 通过 ClawdTalk + Telnyx 将任意手机变成 AI 助理语音入口——拨打电话即可与 OpenClaw 对话,支持日历查询、Jira 任务更新、网络搜索,无需智能手机 App 或浏览器,覆盖驾驶、步行等双手占用场景。与 [[multi-channel-assistant]] 互补:文字入口覆盖图文交互,语音入口覆盖无屏场景。 - 366|- Concepts created: [[Voice Interface]], [[Telephony Integration]] - 367|- Entities created: [[ClawdTalk]], [[Telnyx]] - 368|- Source page: wiki/sources/phone-based-personal-assistant.md - 369|- Notes: - 370| - 新增 Sources 条目至 index.md(插入 Multi-Channel Personal Assistant 之后) - 371| - 更新 overview.md,添加 phone-based-personal-assistant 描述段落,添加 Voice Interface、Telephony Integration 到 Key Concepts - 372| - 创建 2 个 Entity 页面:ClawdTalk.md、Telnyx.md - 373| - 创建 2 个 Concept 页面:Voice-Interface.md、Telephony-Integration.md - 374| - 冲突已记录(已在 overview.md Conflict Area #10):[[phone-based-personal-assistant]] 通用语音 Agent vs [[event-guest-confirmation]] SuperCall 沙盒 Persona - 375| - 376|## [2026-04-22] ingest | Event Guest Confirmation - 377|- Source file: Agent/usecases/event-guest-confirmation.md - 378|- Status: ✅ 成功摄入 - 379|- Summary: 基于 OpenClaw + SuperCall 的活动嘉宾自动确认方案——通过 AI 语音电话批量外呼客人,确认出席状态并收集备注(饮食禁忌、Plus-One、到达时间等),通话完成后生成出席确认/未出席/未接听三分类摘要。核心价值:真人电话比短信回复率高;SuperCall 沙盒 persona 设计确保安全隔离,无 Prompt Injection 风险;每通电话独立重置,无对话间信息混淆。 - 380|- Concepts created: [[Sandboxed Persona]] - 381|- Entities created: (无新实体;OpenClaw 已在其他来源中出现) - 382|- Source page: wiki/sources/event-guest-confirmation.md - 383|- Notes: - 384| - 新增 Sources 条目至 index.md(插入 Multi-Channel Personal Assistant 之后) - 385| - 更新 overview.md,添加 AI Tools & Productivity 小节描述 - 386| - 更新 overview.md Conflict Area #10,添加 SuperCall 沙盒 Persona vs 通用语音 Agent 对比 - 387| - 创建 1 个 Concept 页面:Sandboxed-Persona.md - 388| - 389|## [2026-04-22] ingest | Multi-Channel Personal Assistant - 390|- Source file: Agent/usecases/multi-channel-assistant.md - 391|- Status: ✅ 成功摄入 - 392|- Summary: 基于 Telegram Topic 路由 + OpenClaw 的多渠道个人助理方案——以 Telegram 为统一入口,通过 Topic 隔离不同上下文(config/updates/video-ideas/personal-crm/earnings/knowledge-base),整合 Google Workspace(gog)、Slack、Todoist、Asana,实现"说一句话完成全套工作"。核心价值:消除应用切换疲劳,AI 主动推送定时提醒。 - 393|- Concepts created: [[Topic-Based Routing]], [[Scheduled Reminder]] - 394|- Entities created: [[Asana]], [[gog]] - 395|- Source page: wiki/sources/multi-channel-assistant.md - 396|- Notes: 与 [[multi-agent-team]] 存在互补关系——Multi-Agent Team 为底层专业化分工,Multi-Channel Assistant 为用户交互层。 - 397| - 398|## [2026-04-22] ingest | Project State Management System: Event-Driven Alternative to Kanban - 399|- Source file: Agent/usecases/project-state-management.md - 400|- Status: ✅ 成功摄入 - 401|- Summary: 用事件驱动系统替代传统看板——自然语言对话自动记录项目事件(progress/blocker/decision/pivot),PostgreSQL/SQLite 存储完整事件历史,Git 提交自动关联项目,每日 Cron 生成站会报告。消灭手动拖拽卡片的摩擦,保留完整决策上下文,让项目状态查询和每日站会自动化。 - 402|- Concepts created: [[Event Sourcing]], [[Project State]] - 403|- Entities created: (无新实体;OpenClaw 已存在于多个来源中,无需独立 Entity 页面) - 404|- Source page: wiki/sources/project-state-management.md - 405|- Notes: - 406| - 新增 Sources 条目至 index.md(插入 Sources 首行) - 407| - 更新 overview.md Conflict Area #1,扩展 Kanban vs Event Sourcing 对比描述 - 408| - 创建 2 个 Concept 页面:EventSourcing.md、ProjectState.md - 409| - 冲突已记录:Event Sourcing(自动追踪+上下文保留)vs Kanban(可视化协作+团队同步) - 410|- Source file: Agent/usecases/health-symptom-tracker.md - 411|- Status: ✅ 成功摄入 - 412|- Summary: 通过 Telegram 话题 + OpenClaw AI Agent 自动追踪食物与症状,实现食物敏感性识别。每日三餐定时提醒(8AM/1PM/7PM)确保日志一致性,OpenClaw 自动解析消息并带时间戳写入 Markdown 日志,每周日分析关联模式识别潜在触发因素。无需专用 App,完全自托管。 - 413|- Concepts created: [[Food Sensitivity Tracking]], [[Automated Health Logging]] - 414|- Entities created: (无新实体;OpenClaw 实体已存在) - 415|- Source page: wiki/sources/health-symptom-tracker.md - 416|- Notes: - 417| - 新增 Sources 条目至 index.md(插入首行) - 418| - 新增健康追踪主题至 overview.md - 419| - 冲突记录:与 habit-tracker-accountability-coach 的习惯追踪 vs 健康数据追踪侧重对比 - 420| - 421| - 422|## [2026-04-22] ingest | Second Brain - 423|- Source file: Agent/usecases/second-brain.md - 424|- Status: ✅ 成功摄入 - 425|- Summary: AI Agent 作为个人第二大脑的记忆捕获与检索系统——通过短信/Telegram/Discord 零摩擦捕获任何内容,OpenClaw 永久记忆存储,Next.js 可搜索仪表盘提供全局检索。核心洞见:捕获像发短信一样简单,检索像搜索一样简单。灵感来源:Alex Finn YouTube 视频 + Tiago Forte《Building a Second Brain》。 - 426|- Concepts created: [[Zero-Friction Capture]], [[Cumulative Memory]], [[Conversational Interface]], [[Text-and-Search]] - 427|- Entities created: [[Tiago Forte]] - 428|- Entities updated: [[OpenClaw]](追加 second-brain 到 sources), [[Alex Finn]](追加 second-brain 到 sources) - 429|- Source page: wiki/sources/second-brain.md - 430|- Notes: - 431| - 新增 Sources 条目至 index.md(替换 placeholder) - 432| - 更新 overview.md,添加 Second Brain 段落,补充 4 个新概念至 Key Concepts - 433| - 创建 4 个 Concept 页面:Zero-Friction-Capture.md、Cumulative-Memory.md、Conversational-Interface.md、Text-and-Search.md - 434| - 创建 1 个 Entity 页面:Tiago-Forte.md - 435| - 与 [[dataview-让我从"笔记黑洞"里逃出来的-obsidian-神器-1]] 存在冲突记录:Obsidian + Dataview(结构化查询)vs Second Brain(极简搜索)——互补而非互斥 - 436| - 与 [[custom-morning-brief]] 和 [[self-healing-home-server]] 属相似模式(零摩擦信息捕获 + AI 主动管理),已记录为 Connections - 437| - 与 [[habit-tracker-accountability-coach]] 的互补关系:Second Brain 管理想法/链接/书目,Habit Tracker 管理习惯行为——场景不同但方法论相似 - 438| - 冲突检测:无与其他已摄入来源的实质性内容冲突 - 439| - 440| - 441|- Status: ✅ 成功摄入 - 442|- Summary: AI Agent 作为家庭服务器基础设施的全天候自动驾驶代理——OpenClaw + SSH + Cron Job 系统实现自动健康监控、故障自愈(重启 Pod/扩缩容/修复配置)、邮件分拣、每日 8AM 晨报(天气/日历/系统状态/看板)、知识库录入和安全审计。核心洞察:Cron Job 是真正的产品;知识提取具有复利效应;AI 会硬编码 secrets,TruffleHog pre-push hooks 是必须配置的防线;Local-first Git 是防止 API Key 暴露的架构基础。 - 443|- Concepts created: [[Morning Briefing]], [[Email Triage]], [[Local-first Git]], [[Defense-in-Depth]] - 444|- Entities created: [[K3s]], [[Gitea]], [[TruffleHog]] - 445|- Entities updated: [[OpenClaw]](追加 self-healing-home-server 到 sources) - 446|- Source page: wiki/sources/self-healing-home-server.md - 447|- Notes: - 448| - 新增 Sources 条目至 index.md(替换缺失条目) - 449| - 更新 overview.md,添加 "Self-Healing Infrastructure Agent" 章节 - 450| - 创建 3 个 Entity 页面:K3s.md、Gitea.md、TruffleHog.md - 451| - 创建 4 个 Concept 页面:Morning-Briefing.md、Email-Triage.md、Local-first-Git.md、Defense-in-Depth.md - 452| - 冲突已记录:Prometheus/Grafana 监控方案(人工介入)vs AI Agent 自愈方案(全自动闭环) - 453| - 454|## [2026-04-22] ingest | AI-Powered Earnings Tracker - 455|- Source file: Agent/usecases/earnings-tracker.md - 456|- Status: ✅ 成功摄入 - 457|- Summary: AI Agent 自动化追踪科技公司财报——每周日 Cron Job 扫描财报日历并通过 Telegram 推送,用户选择后为每家公司创建一次性 Cron Job,财报发布后自动搜索结果并生成结构化摘要(beat/miss、营收、EPS、AI 亮点)。 - 458|- Concepts created: (无新概念;Cron Job 已在其他来源中建立) - 459|- Entities created: (无新实体;OpenClaw 已存在;科技公司 NVDA/MSFT 等无需独立页面) - 460|- Source page: wiki/sources/earnings-tracker.md - 461|- Notes: - 462| - 新增 Sources 条目至 index.md(插入首行) - 463| - 无需更新 overview.md(与现有 OpenClaw + Cron Job 主题一致) - 464| - 无需创建 Entity/Concept 页面 - 465| - 无冲突 - 466| - 467|## [2026-04-23] ingest | Multi-Agent Specialized Team (Solo Founder Setup) - 468|- Source file: Agent/usecases/multi-agent-team.md - 469|- Status: ✅ 成功摄入 - 470|- Summary: 用多个专业化 AI Agent 组建团队,解决一人创业者(Solo Founder)身兼数职的困境——4 个专业 Agent(Milo/策略、Josh/商业、Marketing/营销、Dev/开发)通过共享记忆 + 私有上下文 + Telegram 单一控制平面协调运作,定时任务驱动主动工作流。 - 471|- Concepts created: [[Agent Personality]], [[Agent Specialization]], [[Shared Memory Architecture]], [[Private Context]], [[Single Control Plane]], [[Scheduled Task Flywheel]], [[Parallel Agent Execution]] - 472|- Entities updated: [[OpenClaw]](追加 multi-agent-team 到 sources) - 473|- Source page: wiki/sources/multi-agent-team.md - 474|- Notes: - 475| - 新增 Sources 条目至 index.md(插入首行) - 476| - 更新 overview.md Key Concepts,添加 5 个新概念 - 477| - 创建 6 个 Concept 页面 - 478| - 更新 OpenClaw.md sources 字段 - 479| - 冲突已记录:Multi-Agent Team(并行专业化分工)vs Content Factory(链式协作) - 480| - 481|## [2026-04-23] ingest | Daily YouTube Digest - 482|- Source file: Agent/usecases/daily-youtube-digest.md - 483|- Status: ✅ 成功摄入 - 484|- Summary: AI Agent 每日 YouTube Digest 全自动流水线——通过 youtube-full skill(ClawHub)监控订阅频道新视频,用 TranscriptAPI.com 提取字幕,AI 生成要点摘要后推送。两种模式:频道列表 + 关键词搜索。`channel/latest` 免费检查,`seen-videos.txt` 避免重复付费。核心洞察:把算法推荐的"被动消费"转变为系统化的"主动学习"。 - 485|- Concepts created: [[Daily-Digest]], [[Transcript-Based Summarization]], [[Channel-Based Monitoring]], [[Keyword-Based Monitoring]], [[Credit-Efficient Processing]] - 486|- Entities updated: [[OpenClaw]](追加 sources) - 487|- Entities created: [[TranscriptAPI.com]], [[ClawHub]], [[Recapio]] - 488|- Source page: wiki/sources/daily-youtube-digest.md - 489|- Notes: - 490| - 新增 Sources 条目至 index.md(顶部插入) - 491| - 更新 overview.md,补充 AI-Powered Daily Digest 章节到 YouTube Automation - 492| - 更新 OpenClaw.md sources - 493| - 创建 3 个 Entity 页面:TranscriptAPI.com.md、ClawHub.md、Recapio.md - 494| - 创建 5 个 Concept 页面:Daily-Digest.md、Transcript-Based-Summarization.md、Channel-Based-Monitoring.md、Keyword-Based-Monitoring.md、Credit-Efficient-Processing.md - 495| - 与 [[实战笔记-本地部署-rsshub-并获取-youtube-订阅]] 的互补关系已在 Contradictions 节记录(RSSHub 被动监控 vs AI Digest 主动学习) - 496| -- Source file: Agent/usecases/meeting-notes-action-items.md -- Status: ✅ 成功摄入 -- Summary: AI Agent 将会议转录文本(Otter.ai、Google Meet、Zoom)自动转换为结构化摘要,提取行动项并创建 Jira/Linear/Todoist/Notion 任务,发送 Slack/Discord 摘要,支持截止日提醒。核心洞察:自动任务创建比摘要本身更有价值,无法转化为追踪任务的会议记录只是"文档剧场"。 -- Concepts created: [[MeetingNotes]], [[ActionItemTracking]], [[TaskAutomation]], [[TranscriptProcessing]] - -## [2026-04-23] ingest | 14个免费的AI图生视频工具,用AI让图片动起来 -- Source file: AI/14个免费的AI图生视频工具,用AI让图片动起来 - AI视频教程 AI自动化工作流定制服务 AI培训学习平台 黑喵大叔.md -- Status: ✅ 成功摄入 -- Summary: 14个免费AI图生视频工具盘点——覆盖阿里巴巴(绘蛙、通义万相、万相营造)、字节跳动(即梦AI)、快手(可灵AI)、智谱AI(智谱清影)、MiniMax(海螺AI)、生数科技(Vidu)、爱诗科技(PixVerse)、潞晨科技(Video Ocean)、智象未来(Viva)、MewXAI(艺映AI)、Stability AI(Stable Video)等厂商。核心能力:文本提示词控制、动作模板、运镜参数、首尾帧控制、主体一致性、音效自动生成。电商/视频创作/广告三大应用场景。 -- Concepts created: [[AI图生视频]], [[AI文生视频]], [[主体一致性]], [[运镜控制]], [[首尾帧控制]], [[提示词控制]] -- Entities created: 14个工具均作为 Key Entities 记录于 Source 页面 -- Source page: wiki/sources/14个免费的ai图生视频工具-用ai让图片动起来-ai视频教程-ai自动化工作流定制服务-ai培训学习平台-黑喵大叔.md -- Notes: - - 更新 index.md,修正条目日期为 2025-12-05 并补充摘要描述 - - 更新 overview.md,新增 AI图生视频工具盘点章节 - - 创建 Concept 页面:AI图生视频.md、AI文生视频.md - - 所有14个工具作为 Key Entities 记录于 Source 页面,未创建独立 Entity 页面(每个工具仅出现1次,未达≥2阈值) -# Wiki Log - -## [2025-11-19] ingest | LLMs、RAG、AI Agent 三个到底什么区别? -- Source file: raw/AI/LLMs、RAG、AI Agent 三个到底什么区别?.md -- Status: ✅ 成功摄入(source page 新建完成,index.md 已更新,overview.md 已补充条目) -- Summary: AI 应用入门基础知识——作者将 LLM 比作"天才大脑"、RAG 比作"随身图书馆助理"、AI Agent 比作"循环控制系统";三者并非竞争技术,而是在三个不同层面互补协同:LLM 用于思考,RAG 用于认知,Agent 用于执行。 -- Concepts created: 无需新建([[LLM]]/[[RAG]]/[[AI Agent]]/[[幻觉]] 均未达到独立建页阈值(需出现 ≥2 次且对主题有关键影响),以内嵌 wikilink 引用存在) -- Entities created: 无需新建(ChatGPT/DeepSeek/Qwen/Midjourney/Stable Diffusion/Claude 等仅出现 1 次,未达独立建页阈值) -- Source page: wiki/sources/llms-rag-ai-agent-三个到底什么区别.md -- Notes: index.md Sources 节第一条已添加新条目;overview.md Multi-Agent AI Systems 部分已补充该来源的 overview 条目;冲突检测:无冲突 - -## [2026-04-23] ingest | 文字生成视频网站推荐 -- Source file: raw/AI/文字生成视频网站推荐.md -- Status: ✅ 成功摄入 -- Summary: 5款文字生成视频AI工具推荐——万彩AI(完全免费,适合新手)、百度AI开放平台(大厂多模态技术)、Zeemo(多语言字幕,$79+)、Vizard(长视频自动剪辑)、快影(腾讯系模板剪辑)。总结推荐:最实惠选万彩AI,技术型选百度,多语言选Zeemo,长视频选Vizard。 -- Concepts created: [[文字生成视频]], [[AI视频生成工具]], [[数字人]] -- Source page: wiki/sources/文字生成视频网站推荐.md -- Notes: - - 新增 Sources 条目至 index.md(替换 expected 标记行) - - overview.md 中已存在与 [[AI图生视频工具盘点]] 的互补关系说明,无需更新 - - 所有工具作为 Key Entities 记录于 Source 页面,未创建独立 Entity 页面(每个工具仅出现1次,未达≥2阈值) - - Contradictions:无冲突 - -## [2026-04-23] ingest | 清华出的DeepSeek使用手册,104页,真的是太厉害了!(免费领取) -- Source file: AI/清华出的DeepSeek使用手册,104页,真的是太厉害了!(免费领取).md -- Status: ✅ 成功摄入 -- Summary: 清华大学发布的《DeepSeek从入门到精通2025》官方使用手册(104页),由新闻与传播学院元宇宙文化实验室余梦珑博士后及团队撰写。手册核心价值在于"授人以渔"——不仅教用户"怎么问",更教"为什么这么问",帮助用户掌握提示词底层逻辑。涵盖 DeepSeek-R1 模型选择、提示语设计技巧、避免 AI 幻觉策略。内容实用性与理论深度兼备,适合不同层次读者。 -- Concepts created: [[DeepSeek-R1]], [[提示语设计]], [[AI幻觉]], [[通用人工智能(AGI)]], [[推理模型]] -- Entities created: [[DeepSeek]], [[余梦珑]] -- Source page: wiki/sources/清华出的deepseek使用手册-104页-真的是太厉害了-免费领取.md -- Notes: - - 新增 Sources 条目至 index.md(替换 expected 标记行) - - overview.md 新增 DeepSeek 使用手册条目,归入 AI Tools & Prompt Engineering 部分 - - 创建 Entity 页面:DeepSeek.md(公司)、余梦珑.md(作者) - - Concept 页面:RAG.md、Large-Language-Model.md、AI-Agent.md 已覆盖相关概念(幻觉、推理模型),无需新建 - - Contradictions:与 [[llms-rag-ai-agent-三个到底什么区别]] 互补而非冲突——前者聚焦 DeepSeek 特定实践,后者聚焦 LLM/RAG/Agent 三层架构宏观对比,均记录于 Contradictions 小节 - -## [2026-04-23] ingest | How to Get the RSS Feed For Any YouTube Channel -- Source file: AI/How to Get the RSS Feed For Any YouTube Channel.md -- Status: ✅ 成功摄入 -- Summary: 作者 Chuck Carroll 分享获取 YouTube 频道 RSS Feed 的简单方法——在频道页面右键选择"查看页面源代码",搜索 `channel_id=`,提取 RSS Feed URL 格式为 `https://www.youtube.com/feeds/videos.xml?channel_id=`。无需第三方服务,适合 RSS 阅读器用户。 -- Concepts created: [[RSS Feed]], [[Channel ID]] -- Entities updated: [[YouTube]], [[Chuck Carroll]] -- Source page: wiki/sources/how-to-get-the-rss-feed-for-any-youtube-channel.md -- Notes: - - RSS Feed 和 Channel ID Concept 已存在于 overview.md 相关章节 - - YouTube Entity 已存在于 overview.md Key Entities 列表 - - 无需新建 Entity 或 Concept 页面 - - 无内容冲突 - -## [2026-04-23] ingest | codecrafters-io/build-your-own-x -- Source file: raw/AI/codecrafters-iobuild-your-own-x Master programming by recreating your favorite technologies from scratch.md -- Status: ✅ 成功摄入 -- Summary: GitHub 精选教程列表,26+ 技术领域分步骤指南,引用 Richard Feynman "What I cannot create, I do not understand" 作为核心理念,通过从零重建主流技术实现深度技术理解。 -- Entities created: CodeCrafters, DanielStefanovic, RichardFeynman -- Concepts created: Build-Your-Own-X, Learn-By-Building -- Source page: wiki/sources/codecrafters-iobuild-your-own-x-master-programming-by-recreating-your-favorite-technologies-from-scratch.md -- Notes: - - 冲突检测:BYOX vs 传统课程式学习(理论优先 vs 实践优先)已记录于 Source Page Contradictions - - index.md 和 overview.md 均已更新 - - 覆盖 26+ 领域:3D Renderer, Web Browser, Database, Docker, Git, OS, Programming Language, Neural Network 等 - - 支持 15+ 编程语言:C++, Python, Java, JavaScript, Go, Rust, Haskell, TypeScript 等 - - 与 Vibe Coding 互补:BYOX 理解原理,Vibe Coding 高效实现 - -## [2026-04-18] ingest | 电商如何选品 - 如何找到爆款选品策略 -- Source file: 跨境电商/电商如何选品 如何找到爆款 选品策略.md -- Status: ✅ 成功摄入 -- Summary: YouTube 视频摘要,20 种电商选品策略 + 情境配对 + 季节性规划 + POD 低成本测款 + 工具辅助分析(Salesmartly / Erank / Pinterest / Etsy 趋势)。核心观点:未来品牌需针对细分市场而非大众市场;情境配对产品组合提升客单价;POD 模式降低库存风险。 -- Concepts touched: [[电商选品策略]], [[爆款产品]], [[POD模式]], [[情境配对]], [[季节性选品]], [[细分市场定位]] -- Entities touched: [[Salesmartly]], [[Erank]], [[TikTok Shop]], [[Etsy]], [[Pinterest]] -- Source page: wiki/sources/电商如何选品-如何找到爆款-选品策略.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/电商如何选品-如何找到爆款-选品策略.md) - - Concepts 和 Entities 均以 wikilink 形式建立关联,暂不创建独立页面 - - 冲突检测:与 [[做TK跨境思路不对努力白费]] 的平台优先级存在差异,但两者针对产品类型不同(Etsy/POD 手工艺 vs TikTok 快消品),属互补而非冲突 - - 已在 index.md 添加 Source 条目 - - 已在 overview.md TikTok E-commerce Operations 小节新增条目,置于 [[做TK跨境思路不对努力白费]] 之前 - -## [2026-01-26] ingest | 3.2 万人收藏的 Claude Skills,才是 AI 这条路上最值得研究的一套范式! -- Source file: AI/3.2 万人收藏的 Claude Skills,才是 AI 这条路上最值得研究的一套范式!.md -- Status: ✅ 成功摄入(重复来源,slug 不同) -- Summary: Anthropic 官方 Skills 仓库(github.com/anthropics/skills)介绍;Skills = 说明书 + SOP;标志从「提示词工程」向「流程工程」的范式转变;Vibe Coding 尽头也是 Skills;三大聚合站和 Awesome-Claude-Skills 仓库推荐 -- Concepts identified: 无(已存在于之前摄取) -- Source page: wiki/sources/3-2-万人收藏的-claude-skills-才是-ai-这条路上最值得研究的一套范式.md -- Notes: - - 同来源文章以不同 slug 重复摄取(与 wiki/sources/3-2-万人收藏的-claude-skills-才是-ai-这条路上最值得研究的一套范式-1.md 内容完全一致) - - index.md 已添加新条目 - - 无需新建 Entity 或 Concept 页面 - - 无新内容冲突 - -## [2026-04-26] ingest | Building your Quartz -- Source file: Home Office/Building your Quartz -- Status: ✅ 成功摄入 -- Summary: Quartz 静态网站的本地预览与自托管部署指南。涵盖 `npx quartz build --serve` 本地热重载预览、Nginx/Apache/Caddy 三种 Web 服务器自托管配置(处理无扩展名链接)、baseUrl 配置对 RSS Feed 和 Sitemap 的影响。Obsidian 笔记 → Quartz 构建 → 自托管构成完整个人知识发布链条。 -- Concepts touched: [[Quartz]], [[Static Site Generator]], [[npx quartz build]], [[try_files]], [[RewriteRule]], [[baseUrl]] -- Entities touched: [[Obsidian]], [[GitHub Pages]] -- Source page: wiki/sources/building-your-quartz.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/building-your-quartz.md) - - Concept 和 Entity 均以 wikilink 形式建立关联,Quartz/Nginx/Apache/Caddy 均已在 overview.md 中被提及,不创建独立页面 - - 检测到 1 处潜在冲突(自托管 vs Vercel/Netlify),已记录于 Source Page Contradictions 节 - - index.md Sources 节添加新条目 - - overview.md Productivity & Knowledge Management 部分添加 Quartz 段落 - -## [2026-04-23] ingest | 我做了个 Skill:让 AI 帮你生成 Logo 和图标 -- Source file: raw/Skills/我做了个 Skill:让 AI 帮你生成 Logo 和图标.md -- Status: ✅ 成功摄入 -- Summary: 介绍 Claude Code Skill `baoyu-imagine`(`npx baoyu-imagine` 安装),通过 Logo 专用提示词策略驱动 AI 生图工具生成专业 Logo 和图标。支持扁平化/几何/手绘/渐变等多种风格,SVG(矢量)和 PNG 格式导出。让非设计师快速产出专业品牌视觉资产。 -- Concepts created: AI-Logo-Generation -- Entities created: baoyu -- Source page: wiki/sources/我做了个-skill-让-ai-帮你生成-logo-和图标.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/我做了个-skill-让-ai-帮你生成-logo-和图标.md) - - 新增 1 个 Concept 页面(AI-Logo-Generation) - - 新增 1 个 Entity 页面(baoyu) - - index.md Sources / Entities / Concepts 三个章节均已追加条目 - - overview.md AI Tools & Prompt Engineering 部分添加 baoyu-imagine AI Logo 生成段落,Key Concepts 追加 baoyu-imagine / AI-Logo-Generation / Claude-Code-Skill - - 无内容冲突(baoyu-imagine 与通用 AI 生图工具形成互补) - -## [2026-04-16] ingest | Obsidian CLI -- Source file: raw/Skills/Obsidian CLI.md -- Status: ✅ 成功摄入 -- Summary: Obsidian v1.12+ 内置的官方命令行工具文档,覆盖 60+ 命令(日常操作/文件管理/插件管理/属性操作/开发者命令/版本管理/发布/同步等),提供 TUI 交互模式和单命令两种使用方式。开发者命令通过 Chrome DevTools Protocol 实现截图、控制台执行、插件热重载。AI Agent 可通过标准化 CLI 接口实现笔记增删改查、日程管理、搜索、任务操作等全部 GUI 功能,无需图形界面。 -- Concepts updated: [[Obsidian-CLI]](补充 8 大能力域:日常操作/文件管理/插件管理/属性操作/开发者命令/版本管理/工作区管理/TUI 交互) -- Entities updated: [[Obsidian]](添加 obsidian-cli 来源引用,更新 last_updated) -- Source page: wiki/sources/obsidian-cli.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/obsidian-cli.md) - - 更新 Obsidian-CLI concept 页面,补充 8 大能力域和 TUI 交互模式说明 - - 更新 Obsidian entity 页面,添加 sources 字段 - - 更新 wiki/index.md Sources 节(新增 Obsidian CLI 条目,置顶) - - 更新 wiki/overview.md Productivity & Knowledge Management 部分(补充 Obsidian-CLI 与其他 Agent 集成方案的互补关系) - - 冲突记录:与 [[obsidian-必装-skills]] 中 obsidian-cli 的描述存在"官方内置"vs"kepano 发布 Skill"的视角差异,已记录至 Source Page Contradictions,结论为两者均正确(obsidian-cli 既是 Obsidian 官方内置功能,也是 kepano Skills 项目收录整理的工具) - - 新建 Concept/Entity 页面:无(Obsidian-CLI concept 页面已于 2026-04-21 创建,本次仅更新内容;Obsidian entity 页面已存在,本次仅更新 sources 字段) - -## [2026-04-23] ingest | WSL2 启动与网络配置指南 -- Source file: raw/Home Office/WSL2 启动与网络配置指南.md -- Status: ✅ 成功摄入 -- Summary: WSL2(Windows Subsystem for Linux 2)安装启动与网络配置实操指南。核心内容:① wsl --install 快速安装 Ubuntu;② .wslconfig 启用 networkingMode=mirrored 镜像网络模式解决 localhost 代理失效问题;③ 终端环境变量手动配置代理;④ ghproxy.com 反向代理加速 GitHub 下载。关键洞察:NAT 模式是 WSL2 无法访问 Windows 宿主机代理的根本原因,镜像网络模式是推荐解决方案。 -- Concepts created: WSL2、镜像网络模式、NAT模式、ghproxy -- Entities created: WSL2、ghproxy -- Source page: wiki/sources/wsl2-启动与网络配置指南.md -- Notes: - - 新增 1 个 Source Page(wsl2-启动与网络配置指南.md) - - 更新 wiki/index.md(Sources 章节补全缺失条目) - - 更新 wiki/overview.md(Home Server Automation 部分新增 WSL2 章节段落;Key Entities 部分新增 WSL2 和 ghproxy 条目) - - 无内容冲突 - - 新建 Concept/Entity 页面:无(WSL2 和 ghproxy 作为 Entity/Concept 在 overview.md 中描述,未创建独立页面) - -## [2026-04-24] ingest | Blogwatcher Daily 技能收藏 -- Source file: Skills/blogwatcher-daily收藏.md -- Status: ✅ 成功摄入 -- Summary: Hermes Agent 自定义 Skill `blogwatcher-daily` 的收藏笔记,实现 31 个 RSS/YouTube 订阅频道的自动化监控与每日摘要生成。通过 SQLite 数据库按 URL 去重,日常扫描追加写入 `YYYY-MM-DD.md` 日报,强制回扫写入独立文件。YouTube 频道通过本地 RSSHub 代理转换为 RSS Feed。 -- Concepts created: 无(RSS Monitoring、Cron Job、RSSHub、每日日报 等均为已有或通用概念,在 overview.md Key Concepts 中已有覆盖) -- Entities created: 无(blogwatcher-daily 作为 Skill 名在 sources 中描述;feedparser 仅出现1次,不满足 ≥2 次创建条件) -- Source page: wiki/sources/blogwatcher-daily收藏.md -- Notes: - - 新增 1 个 Source Page - - 更新 wiki/index.md(Sources 章节补全缺失条目) - - 更新 wiki/overview.md(YouTube Automation 部分 RSSHub 段落新增对 blogwatcher-daily 的关联说明) - - 无内容冲突 - - 新建 Concept/Entity 页面:无 - -## [2026-04-23] ingest | CTP Topic 1 Gruntwork Landing Zone Architecture -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-1-gruntwork-landing-zone-architecture.md -- Status: ✅ 成功摄入 -- Summary: Gruntwork AWS Landing Zone 架构基础培训。核心:参考架构(Reference Architecture)是包含核心账户(Shared/Logs/Security)和工作负载账户(Prod/Stage/Dev)的最佳实践起点;Landing Zone 基于 Gruntwork 由产品团队自行定义具体服务;安全账户使用联邦用户(Federated User)通过 AD 组映射到 IAM 角色;每个 Landing Zone 配置独立 Jenkins 服务器和特性分支 Git 工作流;Terraform AWS 服务目录强调服务应具有业务上下文。 -- Concepts created: Reference-Architecture, Landing-Zone-Architecture, Federated-Access, CI-CD-Pipeline, Terraform-Modules -- Entities created: 无(Gruntwork Entity 已存在) -- Source page: wiki/sources/ctp-topic-1-gruntwork-landing-zone-architecture.md -- Notes: - - 新增 1 个 Source Page - - 更新 wiki/index.md(Sources 章节替换预期条目为实际摘要;Concepts 章节新增 5 个概念) - - 更新 wiki/overview.md(Cloud Transformation 部分新增 CTP Topic 1 段落) - - 冲突检测:与 ctp-topic-35-aws-landing-zone-design-refresher-saas-labs 在 Landing Zone 产品定义粒度上有视角差异(前者强调灵活性,后者强调标准化),已记录于 Source Page Contradictions 节,判定为视角互补而非直接冲突 - - 新建 Concept 页面:5 个(Reference-Architecture / Landing-Zone-Architecture / Federated-Access / CI-CD-Pipeline / Terraform-Modules) - - 新建 Entity 页面:无(Gruntwork Entity 已存在,无需重复创建) - -## [2026-04-14] ingest | CTP Topic 73 AWS Backup Implementation of the Cloud Transformation Programme -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-73-aws-backup-implementation-of-the-cloud-transformation-program.md -- Status: ✅ 成功摄入 -- Summary: AWS Backup 在云转型计划中的企业级实施落地。SRE 团队开发 SRE Backup Model,为产品组提供预置的 AWS Backup Plans、Vaults、KMS 密钥策略等模板,支持 DRA 账户内独立备份和恢复;初始备份复制到远程 DR 账户实现即时恢复;AWS Backup Audit Manager 提供合规审计报告和控制评估。 -- Concepts created: [[SRE Model]] -- Source page: wiki/sources/ctp-topic-73-aws-backup-implementation-of-the-cloud-transformation-program.md -- Notes: - - 新增 1 个 Source Page - - 新增 1 个 Concept(SRE Model) - - index.md 更新:Sources 节新增条目,附中文摘要 - - 冲突检测:与 [[ctp-topic-44-aws-backup-in-micro-focus]] 视角互补而非冲突——前者为 CTP 实施确认,后者为内部评估,AWS Backup 的局限性已在 Contradictions 节记录 - - AWS Backup / AWS Backup Audit Manager / 跨账户备份 已在 ctp-topic-72 摄入,无需重复创建 - -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-28-aws-tag-validation-tool.md -- Status: ✅ 成功摄入 -- Summary: Lewis Brown 主讲,SRE 团队开发的 AWS 标签验证工具。Checkpoint 防火墙通过读取 EC2/安全组/负载均衡器标签值配置网络访问策略,标签缺失或无效时拦截流量;SCPs 只能阻止新资源创建,无法修复存量资源。该工具通过 variables.yaml 定义每个账户合法标签值,自动扫描 EC2/SG/LB/Lambda,比对配置输出 CSV 审计报告。使用 Poetry 管理 Python 环境,存放于 SRE Tools Repository。标签还计划用于成本核算。 -- Entities created: [[Checkpoint]], [[SRE-Team]] -- Concepts created: [[AWS-Tags]], [[AWS-Tagging-Standards]], [[Tag-Validation-Tool]], [[Service-Control-Policies-SCPs]], [[Variables-YAML]] -- Source page: wiki/sources/ctp-topic-28-aws-tag-validation-tool.md -- Notes: - - 新增 1 个 Source Page - - 新增 2 个 Entity(Checkpoint / SRE-Team) - - 新增 5 个 Concept(AWS-Tags / AWS-Tagging-Standards / Tag-Validation-Tool / Service-Control-Policies-SCPs / Variables-YAML) - - overview.md 更新:新增 CTP Topic 28 摘要段落(置于 ctp-topic-17 之后,ctp-topic-47 之前),Key Concepts 节新增 6 个概念标注(AWS-Tagging-Standards / Tag-Validation-Tool / Service-Control-Policies-SCPs / Variables-YAML / Checkpoint-Firewall / SRE-Tools-Repository) - - index.md 更新:Sources 节替换预期条目为实际摘要,Entities 节新增 2 个实体,Concepts 节新增 6 个条目 - - 冲突检测:与 [[ctp-topic-10-aws-landing-zone-lz-data-collection-tagging-related-security]] 互补而非冲突——后者聚焦标签收集机制和安全策略上下文,前者聚焦审计发现,共同构成"制定规范 → 强制执行 → 审计发现"的标签治理闭环 - - Lewis Brown 仅出现 1 次,未创建 Entity 页面 - -## [2026-04-14] ingest | CTP Topic 10 AWS Landing Zone (LZ) Data Collection, Tagging Related Security -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-10-aws-landing-zone-lz-data-collection-tagging-related-security.md -- Status: ✅ 成功摄入 -- Summary: Steve Jarman 和 Pradeep 主讲 AWS Landing Zone 部署流程、数据收集策略与基于标签的云原生安全架构。核心:①Landing Zone 部署前需了解 BU 资产清单/IP 地址空间/数据敏感性;②DNS/Transit Gateway 等基础服务已通过 SRE 高度自动化;③基于标签的安全控制——用 AWS 标签替代传统 IP 防火墙规则;④SCP 强制执行标签规范——通过"显式拒绝"防止篡改标签绕过审计;⑤Checkpoint 防火墙有序层——按优先级执行地理屏蔽 → BU 隔离 → 产品隔离 → 环境隔离。 -- Concepts created: 无(所有概念均已在 [[ctp-topic-28-aws-tag-validation-tool]] 中创建) -- Source page: wiki/sources/ctp-topic-10-aws-landing-zone-lz-data-collection-tagging-related-security.md -- Notes: - - 新增 1 个 Source Page - - 无新增 Concept([[AWS_Landing_Zone]] / [[Tagging_Methodology]] / [[SCP_Service_Control_Policy]] / [[OU_Organizational_Unit]] / [[Checkpoint_Firewall_Ordered_Layer]] / [[Transit_Gateway]] / [[SRE_Automation]] 均已在 ctp-topic-28 中创建) - - overview.md 更新:新增 CTP Topic 10 摘要段落(置于 ctp-topic-1 之后),补充标签治理闭环描述 - - index.md 更新:Sources 节新增条目(置顶) - - 冲突检测:无冲突 - - Steve Jarman 仅出现 1 次,Pradeep 仅出现 1 次,均未创建 Entity 页面 - - 与 [[ctp-topic-1-gruntwork-landing-zone-architecture]] 互补——前者为基础架构,后者为安全层扩展 - - 与 [[ctp-topic-28-aws-tag-validation-tool]] 互补——构成"制定规范 → 强制执行 → 审计发现"的标签治理闭环 - -## [2026-04-14] ingest | CTP Topic 25 Labs Landing Zone Overview - ITOM Teams -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-25-labs-landing-zone-overview-itom-teams.md -- Status: ✅ 成功摄入 -- Summary: Labs Landing Zone 基于 Gruntwork 参考架构的多账户策略——核心账户包括 Shared(Jenkins 主节点/加固 AMI/容器仓库)、Logs(CloudTrail/Config 日志)、Security(联邦用户/跨账户访问)、Core(AD 管理 Windows 实例和 IDP/DNS 管理 Swimford.net)、Network(Transit Gateway + JetPult 防火墙/标签驱动的网络策略/Pulse VPN);Shared Services 提供 45 Arc Site 监控和 Qualys 漏洞扫描;Product Account 通过 Terraform/Terragrunt 模块部署,需与网络团队协调 IP 范围和标签策略;Jenkins 流水线扫描 GitHub Enterprise 仓库变更,触发 Terragrunt plan/apply,并通过 pre-commit 和 Fortify 扫描提升安全。 -- Concepts created: 无(所有概念均已在其他 CTP 页面中创建:[[Landing Zone Architecture]] / [[Terraform]] / [[Terragrunt]] / [[Jenkins]] / [[Transit Gateway]] / [[Federated Access]] / [[Tag-Based Access Control]]) -- Source page: wiki/sources/ctp-topic-25-labs-landing-zone-overview-itom-teams.md -- Notes: - - 新增 1 个 Source Page - - 无新增 Concept/Entity(Gruntwork/Jenkins/JetPult/Pulse VPN/Qualys/45 Arc Site 均仅出现 1 次,不满足 ≥2 次建页条件) - - overview.md 更新:新增 CTP Topic 25 摘要段落(置于 ctp-topic-35 之前),补充 Labs LZ 运维实践描述 - - index.md 更新:Sources 节新增条目(置顶于 CTP Topic 34 之前),移除旧 "source missing" 标记 - - 冲突检测:无冲突 - - 属 [[ctp-topic-1-gruntwork-landing-zone-architecture]](架构基础)和 [[ctp-topic-35-aws-landing-zone-design-refresher-saas-labs]](SaaS vs Labs 职责划分)共同构成完整的 AWS Landing Zone 知识体系 - -## [2026-04-24] ingest | Public Cloud Learning Sessions - Tagging Standards for All Hyperscalers - 20240123 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/public-cloud-learning-sessions-tagging-standards-for-all-hyperscalers-20240123-1.md -- Status: ✅ 成功摄入 -- Summary: OpenText 跨 AWS/Azure/GCP 的统一标签标准,目标将云浪费从 30% 降至 15%,预计年节省 2500 万美元。标准采用 OT_ 前缀标签、GCP 限制性字符集作为最低通用标准,通过 Terraform 默认标签注入和 SCP 强制执行实现合规化。 -- Concepts referenced: [[FinOps]], [[Service-Control-Policies-SCPs]], [[Tag-Based-Security]], [[Terraform-Tagging]], [[Multi-Cloud-Governance]](均已在其他页面定义,无需新建) -- Entities referenced: [[Tom Bice]](仅出现 1 次,不满足 ≥2 次建页条件,未创建独立页面) -- Source page: wiki/sources/public-cloud-learning-sessions-tagging-standards-for-all-hyperscalers-20240123-1.md -- Notes: - - 新增 1 个 Source Page - - 无新增 Concept/Entity 页面 - - index.md 更新:移除 "source missing" 标记,添加正式条目 - - 冲突检测:无冲突 - - 属 [[public-cloud-learning-sessions-opentext-tagging-standard-v2]](v2 扩展 v1,覆盖 K8s 和容器镜像标签)、[[ctp-topic-10-aws-landing-zone-lz-data-collection-tagging-related-security]](基于标签的安全控制机制)、[[ctp-topic-28-aws-tag-validation-tool]](标签合规审计)共同构成完整的标签治理知识体系 - -## [2026-04-25] ingest | Public Cloud Learning Sessions (OpenText) - Product Hub (PHT) Overview and Q&A - 20240806 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/public-cloud-learning-sessions-opentext-product-hub-pht-overview-and-qa-20240806.md -- Status: ✅ 成功摄入 -- Summary: OpenText Product Hub(PhD/PHT)产品层次结构追踪器功能概述——三层层级(业务单元→业务线→产品)、自助服务新建流程、与 Jira/Value Edge/PSMQ/ITLS/OSS 等外部系统集成、Source Repo 和 Artifact Repo 权限管理。 -- Concepts created: [[Product Hub (PhD)]](已引用) -- Entities created: 无(OpenText 相关 Entity 仅出现 1 次,不满足 ≥2 次建页条件) -- Source page: wiki/sources/public-cloud-learning-sessions-opentext-product-hub-pht-overview-and-qa-20240806.md -- Notes: - - 新增 1 个 Source Page - - 无新增 Concept/Entity 页面 - - index.md 更新:移除 "source missing" 标记,添加正式条目 - - 冲突检测:无冲突 - -## [2026-04-30] ingest | Learning Sessions Identity Governance VSM Replacement - 20231128 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/02_IAM/learning-sessions-identity-governance-vsm-replacement-20231128-160326-meeting-re.md -- Status: ✅ 成功摄入 -- Summary: 身份治理(Identity Governance)框架与 VSM→Micro Focus IGA 替换计划——身份治理三问:谁当前有访问/谁该访问/如何访问;Micro Focus IGA 通过 AD 组工作流管控权限审批,配合 AWS Identity Center + IAM 提供云资源访问;VSM 将被 IGA 全面替换,保持原架构但改接 Coptum 域,POC 正在进行。 -- Concepts created: [[Identity-Governance]] -- Entities created: [[Micro-Focus-IGA]], [[DXC-VSM]] -- Source page: wiki/sources/learning-sessions-identity-governance-vsm-replacement-20231128-160326-meeting-re.md -- Notes: - - 新增 1 个 Source Page - - 新增 1 个 Concept 页面(wiki/concepts/Identity-Governance.md) - - 新增 2 个 Entity 页面(wiki/entities/Micro-Focus-IGA.md, wiki/entities/DXC-VSM.md) - - index.md 更新:移除 "source missing" 标记,添加正式条目;在 Entities 和 Concepts 节添加新页面 - - overview.md 新增条目,位于 CTP Topic 17(AD 集成)之后 - - 冲突检测:无已知冲突内容 - -## [2026-04-25] ingest | CTP Topic 60 Monitor AWS using Hyperscale Observability with Grafana -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/04_EKS/ctp-topic-60-monitor-aws-using-hyperscale-observability-with-grafana.md -- Status: ✅ 成功摄入 -- Summary: 使用 Grafana Enterprise + Optic DR 数据源 + Opsbridge 告警 + Terraform IaC 模块实现 AWS 超大规模可观测性监控——推荐迁移至 Enterprise License 释放完整功能;Optic DR(VaticaDB 插件)是 Grafana 从 AWS 拉取数据的关键中间件;Terraform 模块为产品团队自动化创建 Grafana Organizations、用户、文件夹和仪表盘;EC2 Inventory 仪表盘可识别运行/未运行 EC2 实例及标签合规状态。 -- Concepts identified: [[Grafana-Enterprise]], [[Observability(可观测性)]], [[Opsbridge]], [[Optic-DR]], [[Terraform-Module]], [[Resource-Tagging]] -- Entities identified: [[Grafana-Labs]], [[VaticaDB]], [[PagerDuty]], [[Slack-Manager]](均以 wikilink 形式记录于 Source page,无需独立页面) -- Source page: wiki/sources/ctp-topic-60-monitor-aws-using-hyperscale-observability-with-grafana.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-60-monitor-aws-using-hyperscale-observability-with-grafana.md) - - 无新增 Concept/Entity 页面(已识别概念均作为 wikilink 嵌入 Source page) - - index.md 更新:在 Sources 节顶部添加新条目 - - 冲突检测:与 ctp-topic-42-grafana-observability-dashboard 存在潜在张力(开源版 vs Enterprise License) - -## [2026-04-25] ingest | CTP Topic 70 EKS deployment using IAC -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/04_EKS/ctp-topic-70-eks-deployment-using-iac.md -- Status: ✅ 成功摄入 -- Summary: EKS 集群通过 IaC(Terraform + Service Catalog)部署的完整方法论——两种部署路径(Terraform `tera-grant.scl` vs Service Catalog 模块)、EMI 自定义网络解决 VPC CIDR 限制、Cluster Autoscaler 自动扩缩容 Worker Node、CloudWatch Agent + FluentBit + Container Insights + OpenTelemetry + Grafana 完整监控栈。 -- Concepts created: [[Amazon EKS]], [[Cluster Autoscaler]], [[Infrastructure as Code]], [[Kubernetes]](已有 entity,新增 source 引用) -- Entities updated: [[Kubernetes]](添加 source 引用) -- Source page: wiki/sources/ctp-topic-70-eks-deployment-using-iac.md -- Notes: - - 新增 1 个 Source Page(wiki/sources/ctp-topic-70-eks-deployment-using-iac.md) - - 新增 3 个 Concept 页面:Amazon EKS、Cluster Autoscaler、Infrastructure as Code - - Kubernetes entity 页面已存在,更新添加新 source 引用 - - index.md 更新:在 Sources 节顶部添加新条目;在 Concepts 节添加 3 个新条目;移除 "source missing" 标记 - - overview.md 更新:添加新条目,位于 EKS Auto Mode 条目之后 - - 冲突检测:与 ctp-topic-59-achieving-reliability-with-amazon-eks 可能存在内容重叠(侧重点不同:Topic 70 侧重部署方法,Topic 59 侧重可靠性实践) - -## [2026-04-27] ingest | Public Cloud Learning Sessions - Observability with OpenTelemetry -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/04_EKS/public-cloud-learning-sessions-observability-with-opentelemetry-20240402-160113-.md -- Status: ✅ 成功摄入 -- Summary: Jay Comer(AWS 解决方案架构师)主讲 OpenTelemetry 可观测性全景——三信号模型(Metrics/Logs/Traces)、OTLP 协议 + 11 种语言 SDK + Collector 架构、AWS Distribution for OpenTelemetry(统一代理 + EKS Operator 自动注入)、Fluent Bit → OTel Collector(端口 55681)→ Amazon OpenSearch 端到端管道演示。 -- Concepts created: [[OpenTelemetry]], [[Observability(可观测性)]], [[Three Signals]], [[OTLP(OpenTelemetry Protocol)]], [[Fluent Bit]] -- Entities identified: [[Jay Comer]] -- Source page: wiki/sources/public-cloud-learning-sessions-observability-with-opentelemetry-20240402-160113.md -- Notes: - - 新增 1 个 Source Page - - index.md 更新:新增条目(日期 2024-04-02) - - overview.md 更新:新增条目于 Cloud Transformation & DevOps → EKS 知识链路;Key Concepts 新增 5 个条目 - - 新增 Entity 页面:Jay-Comer.md - - 新增 Concept 页面:OpenTelemetry.md - - 冲突检测:与 ctp-topic-54-esm-saas-log-analytics(ELK 日志)、ctp-topic-67(CTP Topic 67 OpenTelemetry)互补,无冲突 - -## [2026-04-25] ingest | CTP Topic 33 An Introduction to GitOps -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/06_CI_CD_GitOps/ctp-topic-33-an-introduction-to-gitops.md -- Status: ✅ 成功摄入 -- Summary: GitOps 方法论入门——将软件开发原则应用于部署流程;四大原则(声明式配置 + 版本控制 + CD 流程分离 + 自修复协调器);Pull 模型优于 Push 模型;幂等平台(Kubernetes)是 CD 顺利运行的必要条件;Git 提交日志即合规审计追踪 -- Concepts created: [[GitOps]] -- Entities identified: [[Victor Etkin]] -- Source page: wiki/sources/ctp-topic-33-an-introduction-to-gitops.md -- Notes: - - 新增 1 个 Source Page - - 新增 1 个 Concept 页面:GitOps.md(覆盖四大原则、Pull vs Push 模型、与 IaC 关系) - - index.md 更新:新增条目于 CI_CD_GitOps 分类 - - overview.md 更新:新增条目于 Cloud Transformation & DevOps 章节,GitOps 知识链路 - - Key Entities 中提及的 Victor Etkin 仅出现 1 次,不满足 ≥2 次条件,以 wikilink 形式记录于 Source page - - Key Concepts 中 Kubernetes/Atlantis 已有 wikilink 指向其他 Source page - - 冲突检测:与 ctp-topic-39(Atlantis 不支持 EKS)存在 Atlantis + Kubernetes 实践约束差异,已记录于 Source page Contradictions - -## [2026-05-09] ingest | CTP Topic 33 An Introduction to GitOps (re-ingest) -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/06_CI_CD_GitOps/ctp-topic-33-an-introduction-to-gitops.md -- Status: ✅ 成功摄入(re-ingest) -- Summary: Source page 已存在(2026-04-25 初版)。本次补充 `last_updated: 2026-05-09` 到 source page frontmatter;index.md 条目补充日期前缀 [2026-04-14] 和一行摘要;overview.md 第247行已有该来源详细摘要,内容一致无需修订;GitOps.md Concept 页面已存在且 sources 列表已包含本来源,无需重复更新;Victor Etkin 和 Weaveworks Entity 页面仍未达 ≥2 次条件,保持 wikilink 引用。 -- Concepts created: (无新建 — [[GitOps]] Concept 页面已存在且已引用本来源) -- Entities identified: (无新建 — Victor Etkin 和 Weaveworks 仅出现 1 次,未达 ≥2 次条件) -- Source page: wiki/sources/ctp-topic-33-an-introduction-to-gitops.md -- Notes: - - 步骤3完成:Source page 已存在(2026-04-25 初版,62行),内容完整,本次补充 last_updated: 2026-05-09 - - 步骤4完成:index.md 第288行条目补充日期前缀 [2026-04-14] 和一行摘要 - - 步骤5完成:overview.md 第247行已有该来源详细摘要,内容一致无需修订 - - 步骤6完成:无新建 Entity 页面(Victor Etkin/Weaveworks 仅出现 1 次,未达阈值) - - 步骤7完成:无新建 Concept 页面(GitOps.md 已存在且已引用本来源为 source) - - 步骤8完成:冲突已在原 source page Contradictions 节记录(与 ctp-topic-39 Atlantis + EKS 实践约束差异) - - 步骤9完成:log.md 追加本次 re-ingest 记录 - -## [2026-04-24] ingest | CTP Topic 56 Automated Infrastructure Testing -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/06_CI_CD_GitOps/ctp-topic-56-automated-infrastructure-testing.md -- Status: ✅ 成功摄入 -- Summary: Mark Francis 主讲自动化基础设施测试,倡导将 TerraTest(Golang 框架)应用于 Terraform IaC 的 apply → test → destroy 自动化验证循环;核心主张集成测试超越语法检查,TDD 应用于 IaC 领域,测试作为首要开发步骤;价值观:"让机器做重复的事,把人脑留给复杂的人类问题" -- Concepts identified: [[Infrastructure Testing]], [[TerraTest]], [[Test-Driven Development (TDD)]], [[IaC Testing Framework]] -- Source page: wiki/sources/ctp-topic-56-automated-infrastructure-testing.md -- Notes: - - index.md 更新:新增条目于 CTP Topic 33 (GitOps) 之后 - - overview.md 更新:新增条目于 Cloud Transformation & DevOps 章节,GitOps 和 CI/CD Pipeline 质量保障层 - - Key Entities 中 Mark Francis 仅出现 1 次,不满足 ≥2 次条件,以 wikilink 形式记录于 Source page - - Key Concepts 中 Kubernetes/Atlantis 已有 wikilink 指向其他 Source page - - 冲突检测:与 ctp-topic-39(Atlantis 不支持 EKS)存在 Atlantis + Kubernetes 实践约束差异,已记录于 Source page Contradictions - -## [2026-04-24] ingest | CTP Topic 71 PCG's guide to RightSizing, why, how when -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/05_FinOps/ctp-topic-71-pcgs-guide-to-rightsizing-why-how-when.md -- Status: ✅ 成功摄入 -- Summary: PCG 团队讲解 AWS EC2 RightSizing 系统性方法论——为何要做、何时做、如何执行。RightSizing 通过分析实例实际资源使用情况,将过度配置的实例调整为合适规格,在不影响性能前提下实现成本节省。⚠️ 视频尚未完成 Whisper 转录,完整内容待补充 -- Concepts created: RightSizing, EC2 Cost Optimization -- Source page: wiki/sources/ctp-topic-71-pcgs-guide-to-rightsizing-why-how-when.md -- Notes: - - index.md 更新:将原 expected placeholder 更新为正式条目(2026-04-14) - - overview.md 更新:新增条目于 Cloud Transformation & DevOps 章节 FinOps 知识链路 - - RightSizing/Cloud Cost Optimization 已通过 wikilink 嵌入 Source page - - Key Entities: PCG (Platform Control Group) 已在 Wiki 中存在(ctp-topic-13),无需新建 Entity 页面 - - 冲突检测:未发现内容冲突,Contradictions 暂置空占位 - -## [2026-05-06] ingest | Public Cloud Learning Sessions (OpenText) - Generative AI & Prompt Engineering - 20241112 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/09_Serverless_AI/public-cloud-learning-sessions-opentext-generative-ai-prompt-engineering-2024111.md -- Status: ✅ 成功摄入 -- Summary: AWS 生成式 AI 服务与提示工程实践,由 OpenText 技术客户经理 Shikad Holtzman(以色列)主讲——生成式 AI 四大价值路径、企业数据差异化核心洞见、Amazon Bedrock 全托管基础模型服务(RAG/微调/Agents/Guardrails)、Amazon Q 助手(企业版/开发者版)、AWS 专用芯片(Trainium/Inferentia)、提示工程四组件(指令/上下文/用户输入/输出指示器)和基础技巧(One-shot/Few-shot、Chain of Thoughts) -- Concepts linked: [[RAG]], [[Prompt-Engineering]], [[Chain-of-Thought]], [[One-Shot-Prompting]], [[Few-Shot-Prompting]], [[Responsible-AI]], [[Guardrails-for-Amazon-Bedrock]] -- Entities linked: [[Shikad-Holtzman]], [[Amazon-Bedrock]], [[Amazon-SageMaker]], [[Amazon-Q]], [[AWS-Trainium]], [[AWS-Inferentia]], [[AWS]] -- Source page: wiki/sources/public-cloud-learning-sessions-opentext-generative-ai-prompt-engineering-2024111.md -- Notes: - - index.md 已更新:将原 expected placeholder 更新为正式条目(2026-04-19),补充中文摘要 - - overview.md 已更新:在 Cloud Transformation & DevOps 章节的 AI/ML 入门条目后新增独立段落,与 AI/ML 入门共同构成生成式 AI 知识链路 - - Key Concepts:RAG/Prompt-Engineering/Chain-of-Thought/Few-Shot-Prompting 频次不足独立建 Concept 页阈值,以 wikilink 形式记录于 Source page - - Key Entities:Shikad Holtzman 仅出现 1 次,以 wikilink 形式记录于 Source page;Amazon Bedrock/Q/SageMaker 在同系列其他来源中提及频次不足独立建 Entity 页阈值 - - 同系列来源关联:已建立与 AI/ML 入门(public-cloud-learning-sessions-introduction-to-artificial-intelligence-ai-machin)和无服务器计算(public-cloud-learning-sessions-opentext-serverless-computing-20240903-160139-mee)的 Connections 关系 - - 冲突检测:与 ctp-topic-64-scaling-out-with-amazon-eks 在扩展方式上的差异已记录于 Source page Contradictions(EDA 事件驱动 vs EKS 容器编排,适用于不同场景可互补) - -## [2026-05-06] ingest | Learning Sessions Cloud Transformation Programme-Deploying RDS via Terraform -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/03_Terraform/learning-sessions-cloud-transformation-programme-deploying-rds-via-terraform.md -- Status: ✅ 成功摄入 -- Summary: Greg(DBRE 团队)讲解通过 Terraform/Terragrunt 在 AWS 部署 RDS——IaC 六大优势(速度/灵活性/一致性/灾难恢复/文档/自动化);代码即文档;grunt work RDS Service 推荐生产使用(预建 KMS 加密 + CloudWatch 告警),SRE 核心模块功能弱于 grunt work;Terragrunt 保持代码整洁、避免变量重复;Day 2 运维通过 GitHub PR + Atlantis 实现;CloudWatch Dashboard + Alarms 监控告警,注意突发性能实例 CPU credits -- Concepts linked: [[Infrastructure-as-Code]], [[DRY Principle]], [[GitOps]], [[CloudWatch-Alarms]], [[KMS-Encryption]] -- Entities linked: [[Gruntwork]], [[Atlantis]], [[Terraform]], [[Terragrunt]], [[DBRE]], [[CloudWatch]] -- Source page: wiki/sources/learning-sessions-cloud-transformation-programme-deploying-rds-via-terraform.md -## [2026-04-25] ingest | Paid Media Tracking & Measurement Specialist Agent -- Source file: Agent/agency-agents/paid-media/paid-media-tracking-specialist.md -- Status: ✅ 成功摄入 -- Summary: 付费媒体追踪与归因专家 Agent——由 John Williams(@itallstartedwithaidea)设计,负责构建跨平台(GTM、GA4、Google Ads、Meta CAPI、LinkedIn Insight Tag)的事件追踪架构,确保每一次转化都被正确计数,每一分广告投入都可衡量。核心理念:错误追踪比无追踪更糟糕,错误计数的转化会主动误导出价算法向错误方向优化。 -- Concepts linked: [[GoogleTagManager]], [[GoogleAnalytics4]], [[MetaConversionsAPI]], [[ServerSideTagging]], [[ConversionTracking]], [[AttributionModeling]], [[ConsentModeV2]], [[DataLayerArchitecture]] -- Entities linked: [[JohnWilliams]], [[TheAgency]] -- Source page: wiki/sources/paid-media-tracking-specialist.md -- Notes: 该 Agent 为其他所有 Paid Media Agent 提供数据基础设施;与 paid-media-creative-strategist/paid-social-strategist/ppc-strategist/programmatic-buyer/search-query-analyst/auditor 均存在 depends_on 关系(协同关系已记录于 Connections);index.md 已插入于 paid-media-programmatic-buyer 之后;Concepts 均为工具/框架类概念,当前仅出现 1 次,不足独立建页阈值,以 wikilink 形式记录于 Source page - -## [2026-04-25] ingest | XR Cockpit Interaction Specialist Agent -- Source file: Agent/agency-agents/spatial-computing/xr-cockpit-interaction-specialist.md -- Status: ✅ 成功摄入 -- Summary: XR Cockpit Interaction Specialist Agent——XR 座舱交互专家 Agent,专注于设计和实现沉浸式座舱式交互环境。核心理念:固定视角(fixed-perspective)+ 高存在感交互区(high-presence interaction zones),将真实感与用户舒适度结合。核心设计原则:约束驱动控制机制(constraint-driven control mechanics)通过 3D meshes 和输入约束将控制物理化,消除自由漂浮运动;座舱人体工学对齐自然眼-手-头协调流动;多模态交互集成(手势/语音/注视/物理道具);固定视角设计降低运动病阈值。典型应用:模拟指挥中心、航天器座舱、XR 载具界面、训练模拟器。核心工具:A-Frame / Three.js 原型开发。 -- Concepts created: [[Constraint-Driven-Control-Mechanics]], [[Cockpit-Ergonomics]], [[Motion-Sickness-Threshold]], [[Spatial-Computing]] -- Entities linked: [[XR-Interface-Architect]], [[XR-Immersive-Developer]], [[Terminal-Integration-Specialist]] -- Source page: wiki/sources/xr-cockpit-interaction-specialist.md -- Notes: 4 个新 Concept 页面已创建;overview.md 新增 xr-cockpit-interaction-specialist 独立段落;index.md 修复 "source missing" 条目;Entity 层面,XR-Interface-Architect / XR-Immersive-Developer / Terminal-Integration-Specialist 在源文档中提及但尚未建立独立 Entity 页面,当前以 wikilink 形式记录于 Sources 页面;与 [[XR-Immersive-Developer]] 在运动自由度上存在设计张力(固定约束 vs 开放沉浸),已记录于 Contradictions 部分 - -## [2026-04-25] ingest | macOS Spatial/Metal Engineer Agent Personality -- Source file: Agent/agency-agents/spatial-computing/macos-spatial-metal-engineer.md -- Status: ✅ 成功摄入 -- Summary: macOS Spatial/Metal Engineer Agent——Apple 平台专用 Metal 渲染与空间计算专家 Agent,专注于 Swift + Metal 高性能 3D 渲染和 visionOS 空间计算体验。核心能力:实例化 Metal 渲染(10k-100k 节点 @ 90fps 立体渲染);RemoteImmersiveSpace + LayerRenderer 实现 macOS → Vision Pro 帧流;Metal Compute Shader GPU 力导向图布局;注视(Gaze)+ 捏合(Pinch)空间交互。性能约束:GPU 利用率 < 80%、每帧 < 100 draw calls、内存 < 1GB。 -- Concepts linked: [[Instanced Rendering]], [[RemoteImmersiveSpace]], [[Compositor Services]], [[LayerRenderer]], [[Force-Directed Graph Layout]], [[Metal System Trace]], [[Stereoscopic Rendering]], [[GPU-Driven Rendering]], [[Triple Buffering]], [[Frustum Culling & LOD]] -- Entities linked: [[Apple]], [[Vision Pro]], [[Metal]], [[Xcode Instruments]], [[RealityKit]], [[ARKit]] -- Source page: wiki/sources/macos-spatial-metal-engineer.md -- Notes: Entity 层面 Apple/Vision Pro/Metal/Xcode Instruments/RealityKit/ARKit 在源文档中提及但均不足独立建页阈值,通过 Sources 页面的 Key Entities 部分建立链接;与 [[visionos-spatial-engineer]] 存在职责重叠(Vision Pro 开发),已记录于 Contradictions 部分——前者侧重 macOS 渲染侧 + Vision Pro 流式输出,后者倾向 visionOS 原生交互开发,两者可协同;与 [[xr-immersive-developer]] 互补——浏览器端 WebXR vs Apple 原生 Metal 渲染管线,共同构成 XR 产品矩阵 - -## [2026-04-25] ingest | Recruitment Specialist Agent -- Source file: Agent/agency-agents/specialized/recruitment-specialist.md -- Status: ✅ 成功摄入 -- Summary: RecruitmentSpecialist 是一个专注于中国人力资源市场的招聘运营与人才获取专家 Agent,覆盖从人才吸引、入职到留任的全周期招聘引擎。涵盖中国招聘平台运营(BOSS直聘、拉勾、猎聘、智联、前程无忧、脉脉、LinkedIn)、JD 优化、简历筛选、面试流程设计(STAR、结构化面试)、校园招聘、猎头管理、劳动法合规(劳动合同法、PIPL、五险一金、N+1)、雇主品牌建设、入职 SOP、招聘数据分析全链路。 -- Concepts created: [[STAR Framework]], [[Structured Interview]], [[China Labor Law Compliance]], [[Recruitment Funnel Analyzer]] -- Entities created: [[Boss Zhipin]] -- Source page: wiki/sources/recruitment-specialist.md -- Notes: 无已知冲突。Key Entities 中 Lagou/Liepin/Beisen/Moka/Feishu/STAR 等在源文档出现但出现次数不足以触发独立建页,通过 Sources 页面的 Key Entities 部分建立 wikilinks。 - -## [2026-04-25] ingest | Government Digital Presales Consultant -- Source file: Agent/agency-agents/specialized/government-digital-presales-consultant.md -- Status: ✅ 成功摄入 -- Summary: Government Digital Presales Consultant 是面向中国ToG(政府)市场的全生命周期售前专家Agent,涵盖政策解读、等保2.0三级/商用密码评估/信创适配、数字政府/智慧城市/城市大脑方案设计、招投标全流程(POC→标书→述标→交接)。核心原则:业务场景驱动方案、技术价值需翻译为政府语言、等保/密评/信创是强制项非加分项。 -- Concepts created: [[Dengbao-2.0]], [[Miping]], [[Xinchuang]] -- Source page: wiki/sources/government-digital-presales-consultant.md -- Notes: 无已知冲突。Key Entities(Digital China Master Plan、Kunpeng、Phytium、UnionTech UOS、DM Database等)在源文档中属于背景知识,未创建独立Entity页面,通过Source页面Key Entities部分建立wikilinks。Entities页面已添加Dengbao 2.0、Miping、Xinchuang三条概念索引。 - -## [2026-04-25] ingest | Healthcare Marketing Compliance Specialist -- Source file: Agent/agency-agents/specialized/healthcare-marketing-compliance.md -- Status: ✅ 成功摄入 -- Summary: Healthcare Marketing Compliance Specialist——The Agency Specialized 部门的医疗营销合规专家,覆盖中国医疗健康全品类(药品/医疗器械/医美/保健食品/互联网医疗)营销合规。核心方法:广告法/医疗广告管理办法/互联网广告管理办法核心法规体系 + 企业内部三级审查机制(法务初审→合规复审→终审发布)+ 合规风险分级矩阵(Critical/High/Medium/Low)+ 违规应急响应(2小时下架→24小时报告→72小时审计)。关键原则:合规不是"堵营销",而是"保护品牌"。 -- Concepts created: [[Healthcare-Marketing-Compliance]](总框架)、[[Medical-Advertisement-Review]](医疗广告审查制度)、[[Three-Tier-Review-Mechanism]](三级审查机制)、[[Blue-Hat-Logo]](蓝帽子标识)、[[Appearance-Anxiety]](容貌焦虑红线)、[[Patient-Privacy-PIPL]](患者隐私合规)、[[Compliance-Risk-Matrix]](合规风险分级矩阵) -- Entities created: [[NMPA]](国家药品监督管理局)、[[SAMR]](国家市场监督管理总局)、[[DXY]](丁香园)、[[Douyin]](抖音)、[[Xiaohongshu]](小红书) -- Source page: wiki/sources/healthcare-marketing-compliance.md -- Notes: index.md 中原有"source missing"条目,本次摄入后已更新为完整条目并修正标题。overview.md Specialized 部门新增 Healthcare Marketing Compliance Specialist 条目。Conflict Areas 新增第11条(与通用法律合规 Agent 的职责边界冲突)。Entities 页面中 Haodf/WeDoctor/JD-Health/WeChat 在源文档中出现频次<2,暂未创建独立页面,通过 Source 页面 Key Entities 部分建立 wikilinks。 - -## [2026-04-25] ingest | Sales Data Extraction Agent -- Source file: Agent/agency-agents/specialized/sales-data-extraction-agent.md -- Status: ✅ 成功摄入 -- Summary: Sales Data Extraction Agent——销售数据提取 AI Agent,专门监控 Excel 文件并提取关键销售指标(MTD/YTD/Year End)。核心能力:文件系统监控、灵活列名映射、PostgreSQL 事务持久化、完整审计跟踪。成功指标:100% 自动化处理、<2% 行级失败率、<5 秒单文件处理时间。 -- Concepts created: 无(FilesystemWatcher/FuzzyColumnMapping/MetricExtraction/TransactionalDatabase/AuditTrail 等概念均通过 Source Page 内 wikilinks 形式表达,未单独建 Concept 页面) -- Entities created: 无(PostgreSQL/SalesRepresentative/ExcelWorkbook 在源文档中出现频次<2,暂未创建独立 Entity 页面,通过 Source 页面 Key Entities 建立 wikilinks) -- Source page: wiki/sources/sales-data-extraction-agent.md -- Notes: index.md 中原有 "source missing" 占位条目(2026-04-20)已替换为完整条目;overview.md Specialized 部门新增 Sales Data Extraction Agent 条目;与 DataConsolidationAgent 的关系已记录于 Contradictions 部分(数据提取 vs 数据整合,互补关系)。 - -## [2026-04-25] ingest | Study Abroad Advisor -- Source file: Agent/agency-agents/specialized/study-abroad-advisor.md -- Status: ✅ 成功摄入 -- Summary: Study Abroad Advisor——The Agency Specialized 部门的全链路留学申请规划专家,面向中国学生,覆盖美/英/加/澳/欧/港/新七大目的地,本科/硕士/博士全学位层次。核心理念:数据驱动、零焦虑贩卖;四步工作流(全面诊断→策略制定→材料打磨→提交跟进);诚信原则(不代写文书、不承诺录取结果、区分确认信息与经验估算)。标准化交付模板:选校报告、多国申请时间线、文书诊断框架、Offer 比较矩阵。 -- Concepts created: [[Holistic-Admissions]](全面评估录取模式)、[[UCAS-System]](英国本科统一申请系统)、[[IANG-Visa]](非本地毕业生留港就业安排)、[[Grandes-Ecoles]](法国精英大学体系) -- Entities created: [[The-Agency]](The Agency 多智能体系统组织,147 个 Agent 跨 12 部门) -- Source page: wiki/sources/study-abroad-advisor.md -- Notes: index.md 中原有 "source missing" 占位条目(2026-04-20)已替换为完整条目;overview.md Specialized 部门新增 Study Abroad Advisor 条目置于 lsp-index-engineer 之后;与 corporate-training-designer 同属服务型 Agent 已在 overview.md 建立关联。4 个 Concept 页面(Holistic-Admissions/UCAS-System/IANG-Visa/Grandes-Ecoles)和 1 个 Entity 页面(The-Agency)创建前均已做去重检查,确认均不存在。 - -## [2026-04-26] ingest | Backend Architect with Memory -- Source file: Agent/agency-agents/integrations/mcp-memory/backend-architect-with-memory.md -- Status: ✅ 成功摄入 -- Summary: 具备持久记忆能力的后端架构师 AI Agent 设计规范——专注于可扩展系统设计(微服务/Serverless)、数据库架构(PostgreSQL/索引/CQRS)、API 开发(REST/GraphQL/gRPC)与云基础设施。核心价值:MCP Memory 集成实现跨会话记忆召回,防止重复讨论已做决策;架构决策以标签化快照持久化;交付物完成后主动标记接收方供下游 Agent 查找;QA 失败时自动回滚到上一个良好检查点。 -- Entities created: BackendArchitect(The Agency 工程部门资深后端架构师 Agent,满足 ≥2 次阈值) -- Concepts created: 无(MicroservicesArchitecture/CQRS/EventSourcing/ServerlessArchitecture/DatabaseIndexing/CircuitBreaker/DefenseInDepth 均仅出现 1 次,均不满足 ≥2 次阈值,均以 wikilink 形式记录于 Source page) -- Source page: wiki/sources/backend-architect-with-memory.md -## [2026-04-25] ingest | GitHub Copilot Integration -- Source file: Agent/agency-agents/integrations/github-copilot/README.md -- Status: ✅ 成功摄入 -- Summary: The Agency 与 GitHub Copilot 的开箱即用集成——无需转换,`.md` + YAML frontmatter 格式原生兼容。一键安装 `./scripts/install.sh --tool copilot`,或手动复制到 `~/.github/agents/` 或 `~/.copilot/agents/`。用户可在 Copilot 会话中通过名称激活特定 agent。 -- Concepts created: AgentFileFormat -- Entities created: GitHubCopilot -- Source page: wiki/sources/github-copilot.md -- Notes: 无内容冲突。index.md(Sources + Concepts + Entities)、overview.md(替换 Cursor Integration 段落为 GitHub Copilot Integration)、log.md 均已更新。Concept AgentFileFormat.md 已创建于 wiki/concepts/,Entity GitHubCopilot.md 已创建于 wiki/entities/。 - -## [2026-04-25] ingest | Finance Tracker Agent Personality +## [2026-05-13] ingest | Finance Tracker Agent Personality - Source file: Agent/agency-agents/support/support-finance-tracker.md - Status: ✅ 成功摄入 -- Summary: Finance Tracker——The Agency Support 部门的企业财务规划与分析专家 Agent,核心理念"Keeps the books clean, the cash flowing, and the forecasts honest",通过 SQL 预算差异分析、Python 现金流预测(含季节性因子)、NPV/IRR 投资评估框架驱动财务决策,覆盖数据验证→预算编制→绩效监控→战略规划→合规审计全链路。关键指标:预算准确率 95%+、现金流预测准确率 90%+、平均投资回报 25%+、合规率 100%。 -- Concepts created: 无(Key Concepts 均为单来源特定财务概念如 BudgetVarianceAnalysis/CashFlowForecasting/NPV_IRR_Analysis/PaybackPeriod/RiskAssessment/FinancialCompliance,不满足可独立复用阈值,均以 wikilink 形式记录于 Source Page Key Concepts 节) -- Entities created: 无(AgentsOrchestrator 已存在于 index;其余 Key Entities 均为单来源特定名称,不满足 ≥2 次出现阈值,均以 wikilink 形式记录于 Source Page Key Entities 节) +- Summary: Finance Tracker Agent 完整摄取——The Agency 财务专家 AI Agent,专注于企业财务规划、预算管理、现金流优化、投资分析与合规管控。以绿色 💰 为标识,强调财务准确性和风险管控。核心交付物:年度预算 SQL(含季度差异分析)、Python CashFlowManager 现金流预测类、Python InvestmentAnalyzer 投资分析类。核心指标:预算准确率 95%+、现金流预测准确率 90%+(90 天可见性)、成本优化 15%+、投资 ROI 25%+、合规达标 100%。Source page 含 4 条 Key Claims、3 条 Key Quotes、8 个 Key Concepts、1 个 Key Entity、4 条 Connections、Contradictions 节记录暂无冲突。 +- Concepts created: Budget-Variance-Analysis(预算差异分析,含 SQL 框架和状态阈值)、Cash-Flow-Forecasting(现金流预测,含季节性因子和置信区间)、Investment-Analysis(NPV/IRR/Payback/ROI 投资分析框架) +- Entities created: Finance-Tracker(Finance Tracker Agent 实体,满足出现 ≥2 次且对主题有关键影响) - Source page: wiki/sources/support-finance-tracker.md -- Notes: index.md 原占位条目(2026-04-21 source missing)已替换为完整摘要;overview.md 新增第 16 条(企业财务 Agent 全链路能力),位于第 15 条(Agent 去电通知 vs 来电接收)之后;冲突检测:未发现与现有 Wiki 页面的内容冲突;Entities/Concepts 无需新建独立页面。 +- Notes: 步骤1完成:读取原始文档(441行);步骤2完成:读取 index.md(条目已存在于 Line 406)和 overview.md(1155行超长,属于单一 Agent 人格定义文档,无需修订综合摘要);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims×4条、Key Quotes×3条、Key Concepts×8个、Key Entities×1个、Connections×4条、Contradictions节记录暂无冲突);步骤4完成:index.md Sources 节 Line 11 补全日期前缀和一句话摘要;步骤5完成:overview.md 无需修订(单一 Agent 人格定义文档不引入新的跨 Wiki 综合主题);步骤6完成:创建 Entity 页面 wiki/entities/Finance-Tracker.md;步骤7完成:创建 Concept 页面×3(wiki/concepts/Budget-Variance-Analysis.md、wiki/concepts/Cash-Flow-Forecasting.md、wiki/concepts/Investment-Analysis.md);步骤8完成:无冲突检测;步骤9完成:log.md 追加记录 -## [2026-04-25] ingest | Support Executive Summary Generator Agent Personality -- Source file: Agent/agency-agents/support/support-executive-summary-generator.md +## [2026-05-13] ingest | Support Responder Agent Personality +- Source file: Agent/agency-agents/support/support-support-responder.md - Status: ✅ 成功摄入 -- Summary: Executive Summary Generator——The Agency Support 部门的咨询级执行摘要生成 Agent,融合麦肯锡 SCQA、BCG 金字塔原理、贝恩行动导向三大顶级咨询框架,将复杂商业输入转化为 325-475 词的高管级执行摘要,确保 C-suite 3 分钟内做出决策。每个发现必须量化,建议按 Critical/High/Medium 排序含负责人+时间线+预期结果。 -- Concepts created: 无(SCQA/Pyramid Principle/Action-Oriented Recommendations 均仅在本来源中出现,不满足 ≥ 2 次创建阈值,均以 wikilink 形式记录于 Source Page Key Concepts 节) -- Entities created: 无(McKinsey/BCG/Bain 均仅在本来源中出现,不满足 ≥ 2 次创建阈值,均以 wikilink 形式记录于 Source Page Key Entities 节) -- Contradictions detected: 无冲突。与 [[report-distribution-agent]] 存在协同关系(执行摘要生成后可由 Report Distribution Agent 分发),已在 Source Page Connections 节记录 +- Summary: Support Responder Agent 完整摄取——The Agency 客户支持部门专家 Agent,专注于多渠道客户问题解决和服务卓越文化建立。核心能力:全渠道支持框架(Email/Live Chat/Phone/Social Media/In-App Messaging)+ 三层支持体系(T1 通用/T2 技术/T3 专家)+ 客户支持分析仪表板 + 知识库管理系统。核心指标:首次响应时间 < 2 小时、85% 首次联系解决率、CSAT 4.5+/5、知识库贡献降低 25% 重复工单。四步工作流(客户咨询分析与路由→问题调查与解决→客户跟进与成功测量→知识共享与流程改进)。Source page 含 5 条 Key Claims、4 条 Key Quotes、6 个 Key Concepts、5 个 Key Entities、5 条 Connections、Contradictions 节记录暂无冲突。 +- Concepts created: 无(Omnichannel-Support-Framework/Customer-Support-Analytics/Knowledge-Base-Management/First-Contact-Resolution/Support-SLA/Support-Tier-System 均为方法论概念,已在 Source Page 中以 wikilink 引用,无需独立建页) +- Entities already existed: Support-Responder/Survey-Analytics-Reporter/Survey-Legal-Compliance-Checker/Survey-Infrastructure-Maintainer/CSAT 均为本 Agent 特有标签或已存在于其他 Source Pages,无需新建 Entity 页面 +- Source page: wiki/sources/support-support-responder.md +- Notes: 步骤1完成:读取原始文档(584行);步骤2完成:读取 index.md(条目已存在于 Line 404,补全日期 2026-05-13 和一句话摘要)和 overview.md(1155行超长,属于单一 Agent 人格定义文档,无需修订综合摘要);步骤3完成:生成 source page(含 frontmatter、Summary、Key Claims×5条、Key Quotes×4条、Key Concepts×6个、Key Entities×5个、Connections×5条、Contradictions节记录暂无冲突);步骤4完成:index.md Sources 节 Line 404 补全日期前缀和一句话摘要;步骤5完成:overview.md 无需修订(单一 Agent 人格定义文档不引入新的跨 Wiki 综合主题);步骤6-7完成:Entity/Concept 页面无需创建(均以 wikilinks 形式记录于 source page,未达独立建页阈值);步骤8完成:无冲突检测;步骤9完成:log.md 追加记录 + + +## [2026-04-26] ingest | Executive Summary Generator Agent Personality +- Source file: raw/Agent/agency-agents/support/support-executive-summary-generator.md +- Status: ✅ 成功摄入(更新,因源文件于 2026-04-26 12:35:50 有更新) +- Summary: 咨询级执行摘要生成 Agent,融合麦肯锡 SCQA + BCG 金字塔原理 + 贝恩行动导向三大咨询框架,将复杂商业输入转化为 325-475 词高管级执行摘要;新增高级分析能力描述(统计验证洞察、行业基准对比、情景分析、价值 vs. 努力矩阵) - Source page: wiki/sources/support-executive-summary-generator.md -- Notes: index.md 原占位条目(2026-04-21 expected)已替换为完整摘要;overview.md Support 部门新增 [[support-executive-summary-generator]] 独立段落,位于 [[support-infrastructure-maintainer]] 之后,完善了 Support 部门数据→洞察→决策→分发的完整链路描述;Entities/Concepts 无需新建独立页面 +- Entities created: McKinseyAndCompany.md, BostonConsultingGroup.md, BainAndCompany.md(三大咨询公司作为框架原创者,新建 Entity 页面) +- Concepts created: BusinessImpactQuantification.md, StrategicStorytelling.md(源文档新增的关键概念,新建独立页面) +- Notes: 步骤1完成:读取原始文档(212行);步骤2完成:读取 index.md(Line 407 已有条目,补全日期 2026-04-26)和 overview.md(Line 187 更新,新增高级能力描述);步骤3完成:更新 source page(date 改为 2026-04-26,新增 Key Claims 第6条、高级能力 Key Concepts 2个、Key Entities 1个、Connections 2条);步骤4完成:index.md Line 407 补全日期前缀;步骤5完成:overview.md Line 187 补全高级能力描述文本;步骤6完成:新建3个 Entity 页面并加入 index.md Entities 节;步骤7完成:新建2个 Concept 页面并加入 index.md Concepts 节;步骤8完成:无冲突检测;步骤9完成:log.md 追加记录 -## [2026-05-05] ingest | Workflow Example: Book Chapter Development -- Source file: Agent/agency-agents/examples/workflow-book-chapter.md +## [2026-05-13] ingest | Book Co-Author +- Source file: Agent/agency-agents/marketing/marketing-book-co-author.md - Status: ✅ 成功摄入 -- Summary: Book Chapter Development——The Agency 的单 Agent 工作流示例,用于将录音、碎片化笔记或战略要点等原始素材转化为结构化的第一人称章节草稿,包含明确的编辑注释和修订循环。核心 Agent 为 Book Co-Author,输出五部分结构:目标、章节草稿、编辑注释、反馈循环、下一步。质量标准:保持第一人称声音、论点依附来源材料、删除泛化激励语言、以明确修订问题结尾。 -- Concepts created: 无(BookCoAuthor/EditorialRevisionLoop 等 Key Concepts 均为单来源框架性概念,不满足 ≥ 2 次创建阈值,均以 wikilink 形式记录于 Source Page Key Concepts 节) -- Entities created: 无(Book Co-Author Agent 仅为本工作流的核心执行角色,未在其他来源出现 ≥ 2 次,无需新建独立 Entity 页面) -- Contradictions detected: 与泛化 ghostwriting 服务的定位差异已记录于 Source Page Contradictions 节 -- Source page: wiki/sources/workflow-book-chapter.md -- Notes: index.md 原占位条目(2026-04-21 expected)已替换为完整摘要;overview.md 无需修订(该来源属于 The Agency 内部框架文档,不涉及与其他 Agent/工作流的实质冲突);Entities/Concepts 无需新建独立页面,均以 wikilink 形式记录于 Source Page 相应节 - -## [2026-05-05] ingest | Multi-Agent Workflow: Startup MVP -- Source file: Agent/agency-agents/examples/workflow-startup-mvp.md -- Status: ✅ 成功摄入 -- Summary: 多 Agent 协作从创意到 MVP 的 4 周 7 步工作流示例([[workflow-startup-mvp]])。展示了 RetroBoard(远程团队回顾工具)4 周 MVP 开发的完整流水线:7 种专业 Agent(Sprint Prioritizer、UX Researcher、Backend Architect、Frontend Developer、Rapid Prototyper、Growth Hacker、Reality Checker)按顺序与并行方式协作。核心 4 大模式:Sequential Handoff(顺序交接)、Parallel Agent Work(并行工作)、Quality Gate(质量门控)、Context Passing(上下文传递)。 -- Entities created: RetroBoard、OrchestratorAgent、Sprint-Prioritizer、UX-Researcher、Backend-Architect、Frontend-Developer、Rapid-Prototyper、Growth-Hacker、Reality-Checker(共 9 个) -- Concepts created: Sequential-Handoff、Parallel-Agent-Work、Quality-Gate、Context-Passing、Multi-Agent-Orchestration(共 5 个) -- Source page: wiki/sources/workflow-startup-mvp.md -- Notes: 无内容冲突;index.md 原占位条目(2026-04-21 expected)已替换为完整摘要;overview.md 已追加第 17 条综合摘要;所有 Entities 和 Concepts 均系首次出现,新建独立页面 - -## [2026-05-05] ingest | Nexus Spatial: Full Agency Discovery Exercise -- Source file: Agent/agency-agents/examples/nexus-spatial-discovery.md -- Status: ✅ 成功摄入 -- Summary: 8个 The Agency 专业 Agent 并行协作,完成 AI 空间指挥中心产品 Nexus Spatial 的完整规划(10分钟 wall-clock time)。涵盖:市场验证(AI 编排 $13.5B + 空间计算 $170-220B 交叉空白)、技术架构(8服务 Rust 编排引擎)、品牌策略(定义 [[SpatialAIOps]] 新品类)、GTM 计划(3阶段渐进:2D→WebXR→VisionOS)、UX 研究(调试为杀手级用例)、空间界面架构(命令剧院 + 7态节点系统)、项目执行(35周,5团队)。跨 Agent 独立共识:2D-first / WebXR 优先 / 调试 killer use case。 -- Concepts created: [[SpatialAIOps]](空间AI运营新品类)、[[Command-Theater-Interface]](命令剧院界面范式)、[[Debugging-Visualization]](调试可视化杀手级用例)、[[Semantic-Zoom]](4级语义缩放导航)、[[Growth-Loop]](增长飞轮) -- Entities created: [[Nexus-Spatial]](AI Agent 沉浸式3D命令中心产品)、[[CrewAI]](竞争产品;CLI-first,可视化能力有限) -- Source page: wiki/sources/nexus-spatial-discovery.md -- Notes: index.md 原占位条目(2026-04-21 expected)已替换为完整摘要;overview.md 已追加 nexus-spatial-discovery 综合摘要条目;与 [[Multi-Agent-System-Reliability]] 在协调机制设计上的张力已记录于 Source Page Contradictions 节——Nexus Spatial 采用 Yjs CRDT 去中心化协作(面向人类协作者),Multi-Agent-System-Reliability 侧重自主 Agent 间显式协调(面向任务协调),场景不同但技术选择有潜在关联待研究。 - - -- Source file: Agent/agency-agents/examples/workflow-landing-page.md -- Status: ✅ 成功摄入 -- Summary: 展示多 Agent 协作在一天内完成高转化率 landing page 的完整工作流,核心价值为 4 个可复用的设计模式:Parallel-Kickoff(并行启动)、Merge-Point(合并点)、Feedback-Loop(反馈循环)、Time-Boxing(时间盒)。4 个 Agent 角色:Content Creator(文案)、UI Designer(设计)、Frontend Developer(构建)、Growth Hacker(转化优化)。 -- Concepts created: Parallel-Kickoff, Merge-Point, Feedback-Loop, Time-Boxing -- Entities created: Content-Creator, UI-Designer -- Source page: wiki/sources/workflow-landing-page.md -- Notes: index.md 原占位条目(2026-04-21 source missing)已替换为完整摘要;overview.md 新增 workflow-landing-page 段落,位于 The Agency 贡献指南之后、GitHub Copilot Integration 之前;冲突检测:与 workflow-startup-mvp 在时间粒度上互补(天 vs 周),无实质性冲突。 - -## [2026-04-26] ingest | Multi-Agent Workflow: Startup MVP with Persistent Memory -- Source file: Agent/agency-agents/examples/workflow-with-memory.md -- Status: ✅ 成功摄入 -- Summary: workflow-startup-mvp 的增强版——通过 MCP Memory Server 将手动复制粘贴交接升级为自动召回。核心机制:remember 存储 Agent 交付物(带项目名 + 接收方标签)、recall 自动召回上下文(无需人工粘贴)、rollback 回滚到上一个检查点(替代手动撤销)。Before/After 对比:会话超时丢失 / 多 Agent 需重复编译上下文 / QA 失败需手动描述问题 / 跨多天项目需重建上下文 → 跨会话持久 / 按标签共享 / 自动回滚 / 每次 pick up 继续。 -- Concepts created: Memory-Based-Handoff(基于记忆的交接模式,可抽象复用,已建独立 Concept 页面) -- Entities created: 无(所有参与 Agent 和 RetroBoard 均已在 wiki 中存在,均以 wikilink 形式记录于 Source Page Key Entities 节) -- Source page: wiki/sources/workflow-with-memory.md -- Notes: index.md 原占位条目(2026-04-21 source missing)已替换为完整摘要;overview.md 新增 workflow-with-memory 段落,位于 Backend Architect with Memory 之后、multi-channel-assistant 之前;冲突检测:与 workflow-startup-mvp 在"是否需要人工复制粘贴"上存在表面冲突(实质为增强关系),已记录于 Source Page Contradictions 节——Memory 模式是原始工作流的增强层,Memory Server 可用时自动召回,不可使用时沿用手工粘贴策略。 - -## [2026-05-05] ingest | Marketing Douyin Strategist -- Source file: Agent/agency-agents/marketing/marketing-douyin-strategist.md -- Status: ✅ 成功摄入 -- Summary: The Agency Marketing 部门的抖音短视频营销与直播带货策略专家 Agent 个性文档。核心能力:推荐算法(完播率 > 点赞率 > 评论率 > 分享率)、爆款视频策划(黄金3秒钩子)、流量运营(DOU+/矩阵账号)、直播带货(引流款/利润款/形象款/秒杀款结构)。交付物模板:短视频脚本结构(1-3秒黄金钩子 + 4-20秒核心内容 + 21-30秒收尾钩子)、直播产品结构表、2小时直播节奏规划。 -- Concepts created: [[Content-Matrix-Strategy]](内容矩阵策略)、[[Golden-3-Second-Hook]](黄金3秒钩子) -- Entities created: [[OceanEngine]](巨量引擎/千川广告平台);[[Douyin]](抖音平台)已更新,新增 Marketing & Short-Video Strategy 节 -- Source page: wiki/sources/marketing-douyin-strategist.md -- Notes: index.md 原占位条目(2026-04-21 expected)已替换;overview.md 新增 Douyin Short-Video & Livestream Commerce 段落(TikTok E-commerce Product Management 之后);Douyin.md 实体已更新(增加 Marketing & Short-Video Strategy 节);冲突检测:与 [[MarketingTiktokStrategist]] 在算法权重优先级上存在差异——抖音以完播率为首要指标,TikTok 需平衡分享率与互动率,已记录于 Source Page Contradictions 节。 - -## [2026-05-06] ingest | Marketing Zhihu Strategist -- Source file: Agent/agency-agents/marketing/marketing-zhihu-strategist.md -- Status: ✅ 成功摄入 -- Summary: Marketing Zhihu Strategist——The Agency Marketing 部门的知乎营销专家 Agent,将品牌打造为知乎思想领袖,通过六阶段工作流(话题定位→问题识别→高质量内容创作→专栏开发→关系建设→性能分析)建立信誉驱动权威。核心理念:信誉优先——权威和真实专业度比粉丝数重要得多;仅回答真正有可辩护专业知识的问答;每条主张必须有数据/研究/案例支撑。关键交付物:专题权威映射、问题选择策略、高质量答案模板(300+ 词)、6 个月专栏内容日历、影响力者关系列表、线索生成漏斗。成功指标:答案平均 100+ 点赞、每月 50-200 条精准线索、专栏每月 500-2000 新订阅者。与 [[Marketing Douyin Strategist]] 同属中国平台矩阵——知乎侧重信誉驱动深度内容,抖音侧重娱乐驱动视觉内容,两者互补。 -- Concepts created: [[Thought-Leadership]](思想领导力)、[[Community-Credibility]](社区信誉)、[[Strategic-Question-Answer]](战略问答策略)、[[Content-Pillar]](内容支柱)、[[Lead-Generation-Funnel]](线索生成漏斗) -- Entities created: [[Zhihu]](知乎,中国最大知识分享平台) -- Source page: wiki/sources/marketing-zhihu-strategist.md -- Notes: index.md 原占位条目(2026-04-21 expected)已替换为完整摘要;overview.md Douyin 段落后新增 marketing-zhihu-strategist 完整条目(含与 Douyin 的互补关系);5 个 Concept 页面和 1 个 Entity 页面已创建并添加到 index.md;冲突检测:与 [[marketing-douyin-strategist]] 在"内容深度 vs 视觉爆款"策略差异已在双方 Source Page Contradictions 节记录,已在 overview.md Conflict Areas #14 标注为互补关系。 - -## [2026-04-26] ingest | Marketing Cross-Border E-Commerce Specialist -- Source file: Agent/agency-agents/marketing/marketing-cross-border-ecommerce.md -- Status: ✅ 成功摄入 -- Summary: 跨境电商多平台运营与品牌全球化策略 Agent,覆盖 Amazon、Shopee、Lazada、AliExpress、Temu、TikTok Shop 等主流平台。五步工作流:市场调研→合规准备→Listing 发布→广告引流→数据迭代。核心原则:合规优先(CE/FCC/FDA/VAT)、本地化制胜(母语级 Listing)、供应链成本控制(ACOS 硬性底线 < 毛利率)。 -- Concepts created: 无新 Concept 页面(ACOS/TACOS/IPI/VAT/Localization 等核心概念为具体运营指标,非抽象框架;已记录于 Source Page 的 Key Concepts 节) -- Source page: wiki/sources/marketing-cross-border-ecommerce.md -- Notes: index.md 原占位条目(2026-04-21 expected)已替换为完整摘要;overview.md 已包含跨境电商相关内容,无需额外更新;Entity/Concept 页面检查:Amazon/Shopee/Temu 等平台实体在该 Agent 文档中为背景引用,非核心分析对象,跳过创建;冲突检测:TikTok Shop 相关连接与现有 Wiki 一致,与 Supply Chain Strategist Agent 无冲突;与 [[Marketing Douyin Strategist]] 的内容平台流量逻辑差异已在 Source Page Contradictions 节记录。 - -## [2026-04-26] ingest | Marketing Carousel Growth Engine -- Source file: Agent/agency-agents/marketing/marketing-carousel-growth-engine.md -- Status: ✅ 成功摄入 -- Summary: 全自动 TikTok/Instagram 轮播图增长引擎 Agent——将任意网站 URL 转化为病毒式 6 张轮播图并每日自主发布。核心理念:把每次发布变成数据,每次数据驱动下次改进,让内容质量随时间指数级提升。核心架构:Playwright 网站分析(提取品牌/内容/竞品)→ Gemini 图像生成(第一张幻灯片定义视觉 DNA,后续图生图保持连贯)→ Upload-Post API 双平台发布(TikTok+Instagram,同步自动添加热门音乐)→ Analytics Feedback Loop(learn-from-analytics.js 提取洞察到 learnings.json,驱动下一条内容)。关键规范:6-Slide Narrative Arc(Hook → Problem → Agitation → Solution → Feature → CTA);零确认自主运行;仅生成 JPG;底部 20% 不放文字。 -- Concepts created: [[6-Slide Narrative Arc]](标准化 6 张幻灯片轮播叙事结构)、[[Visual Coherence Engine]](AI 图生图视觉一致性引擎)、[[Analytics Feedback Loop]](数据分析驱动的内容自我优化闭环) -- Entities created: [[Gemini]](Google AI 图像生成模型)、[[Upload-Post]](多平台内容发布与数据分析 API)、[[Playwright]](浏览器自动化框架) -- Source page: wiki/sources/marketing-carousel-growth-engine.md -- Notes: index.md 新增完整摘要(替换原 2026-04-21 expected 占位条目);overview.md Marketing Douyin 段落后新增 marketing-carousel-growth-engine 完整条目;3 个 Concept 页面和 3 个 Entity 页面已创建并添加到 index.md;冲突检测:与 [[Marketing Kuaishou Strategist]] 在平台差异已在 Source Page Contradictions 节记录(面向不同市场,无直接矛盾);与 [[Behavioral Nudge Engine]] 的行为引导机制关联已在 overview.md 标注。 - -## [2026-04-26] ingest | Marketing Weibo Strategist -- Source file: Agent/agency-agents/marketing/marketing-weibo-strategist.md -- Status: ✅ 成功摄入 -- Summary: 新浪微博全栈运营与品牌传播战略专家 Agent——帮助品牌在微博平台实现热搜霸榜与持续增长。核心能力:企业蓝V账号运营、热搜话题策划(争议性×低门槛×情感共鸣=病毒扩散)、超级话题社区管理、粉丝经济、KOL金字塔合作、微博广告(粉丝头条/信息流/开屏/超级粉丝头条)、舆情监控(蓝/黄/橙/红四色分级+黄金4小时响应)与危机公关。核心理念:微博是公共舆论场,追求话语权份额而非私域积累;热搜生命周期4-8小时,时效性>互动量>账号权威>内容质量。 -- Concepts created: [[Trending-Topic-Operations]](热搜话题运营——围绕品牌事件/节日/时事设计低门槛高分享性 hashtag,实时监测热搜30分钟内联动)、[[舆情监控]](舆情监控与危机公关——蓝/黄/橙/红四色分级+黄金4小时响应规则) -- Entities created: [[Weibo]](新浪微博——中国领先的微博客平台,公共舆论场核心阵地) -- Source page: wiki/sources/marketing-weibo-strategist.md -- Notes: index.md 原占位条目(2026-04-21 expected)已替换为完整摘要;overview.md 新增 marketing-weibo-strategist 完整条目(置于 Douyin Short-Video 段落与 New Linux/DevOps Concepts 之间);Entity 去重检查:Weibo.md 未在 Wiki 中存在同名页面,新建 Weibo.md;Concept 去重检查:Trending-Topic-Operations、舆情监控均未在 Wiki 中存在同名页面;冲突检测:与 [[Marketing-Private-Domain-Operator]] 的框架张力已在 Source Page Contradictions 节记录——微博追求公域话语权(声量),私域追求私有用户资产(深度),两者互补而非竞争,协调方案:公域引爆话题→私域沉淀转化形成完整漏斗。 - -## [2026-04-26] ingest | Marketing Podcast Strategist -- Source file: Agent/agency-agents/marketing/marketing-podcast-strategist.md -- Status: ✅ 成功摄入 -- Summary: 中国播客市场内容战略与全漏斗运营专家 Agent——覆盖节目定位、音频制作、多平台分发与商业化变现完整方法论。核心理念:播客是"慢媒介",核心竞争力是主播人格深度和听众陪伴感,完成率比播放量更能反映内容质量。平台策略:小宇宙(中国播客用户最集中)为主阵地,喜马拉雅(用户规模最大)适合付费知识变现;RSS 为分发核心基础设施。内容规划四象限(常青/热点/系列/实验);制作标准(-16 LUFS 响度归一化、WAV 录制);增长飞轮(社区运营→跨平台引流→嘉宾互推);变现路径(品牌赞助→口播广告→付费订阅→私域导流)。关键原则:音频质量是底线、固定节奏比频繁更新更重要。 -- Concepts created: [[Podcast-Positioning]](播客定位四象限——垂直知识/对话访谈/叙事故事/闲聊日常)、[[Completion-Rate]](完成率——比播放量更重要的内容质量指标,>50% 为优秀标准) -- Entities created: [[Xiaoyuzhou]](小宇宙——中国播客用户最集中平台)、[[Ximalaya]](喜马拉雅——中国用户规模最大音频平台)、[[Chinese-Podcast-Platforms]](中国播客音频平台矩阵,含荔枝FM/蜻蜓FM/网易云音乐/Apple Podcasts/Spotify) -- Source page: wiki/sources/marketing-podcast-strategist.md -- Notes: index.md 新增条目(Sources 第485行,2026-04-26);index.md Entities 新增 Xiaoyuzhou/Ximalaya/Chinese-Podcast-Platforms;index.md Concepts 新增 Podcast-Positioning/Completion-Rate;overview.md 新增第19条 Contradiction(播客"慢媒介" vs 短视频"快媒介"),补充播客策略与短视频策略的互补协调关系;Entity 去重检查:Xiaoyuzhou/Ximalaya/ChinesePodcastPlatforms 均未在 Wiki 中存在同名 Entity 页面,新建;Concept 去重检查:PodcastPositioning/CompletionRate 均未在 Wiki 中存在同名 Concept 页面,新建;冲突检测:与 [[Marketing-Short-Video-Editing-Coach]] 存在"快慢媒介"节奏策略冲突——已在 Source Page Contradictions 节和 overview.md 第19条记录,协调方案:两者并行运营但节奏管理分开。 - -## [2026-04-26] ingest | Technical Artist -- Source file: Agent/agency-agents/game-development/technical-artist.md -- Status: ✅ 成功摄入 -- Summary: Technical Artist Agent——技术美术 Agent 个性规范,连接艺术视野与引擎实现的桥梁角色。核心职责:在硬性能预算内最大化视觉质量,涵盖着色器编写(移动端安全变体/HLSL/ShaderLab)、VFX 系统构建(粒子数上限/Overdraw 审计)、资产管线标准定义(多边形预算/纹理压缩/导入预设自动化)和渲染性能分析(GPU Profiling)。核心原则:预算优先(生产前定义资产上限)、移动端优先(Overdraw/LOD 强制执行)、着色器标准(移动端安全变体或平台限制标注)。高级能力:实时光线追踪(RT reflections + DLSS/XeSS/FSR)、AI 辅助美术管线(纹理超分/AI 法线图)、模块化后处理栈(LUT 调色/TAA+锐化)。属 The Agency Game Dev 部门。 -- Concepts created: [[Shader]](GPU 可编程着色器,HLSL/GLSL/ShaderLab,含 Vertex/Fragment/Compute 类型及移动端安全规范)、[[VFX]](实时视觉特效,粒子数上限 Mobile 500/PC 2000,Overdraw 上限 Mobile 3层/PC 6层)、[[LOD-Pipeline]](多细节层次管线,强制 LOD0–LOD3,含 Validation Script 和详细预算表)、[[Asset-Pipeline]](资产管线标准,含纹理压缩规范 BC7/ASTC/Mipmap 规则)、[[Performance-Budget]](性能预算,含帧时间/GPU/VFX Particle/Draw Call 各类预算及沟通语言范式)、[[Post-Processing]](模块化后处理栈,含 Bloom/色差/晕影/LUT/TAA+锐化及平台差异化配置) -- Entities created: 无(UnrealTechnicalArtist/UnityShaderGraphArtist/UnrealWorldBuilder/UnityArchitect 各在源文档中仅出现 1 次,未达 Entity 建页阈值 ≥2 次) -- Source page: wiki/sources/technical-artist.md -- Notes: index.md Sources 新增条目(2026-04-26,第7行);index.md Concepts 新增 6 个条目(Asset-Pipeline/LOD-Pipeline/Performance-Budget/Post-Processing/Shader/VFX);overview.md Game Development section 新增 Technical Artist 完整 entry;Entity 去重:UnrealTechnicalArtist/UnityShaderGraphArtist/UnrealWorldBuilder/UnityArchitect 各仅出现 1 次,未达 Entity 建页阈值,不建页;冲突检测:无已知冲突(Source Page Contradictions 节为空);wikilinks 命名一致性:创建过程中统一使用 hyphenated-name 格式(LOD-Pipeline/Performance-Budget/Post-Processing/Asset-Pipeline),与 wiki 中现有 naming convention 一致。 - -## [2026-04-26] ingest | Godot Multiplayer Engineer Agent Personality -- Source file: Agent/agency-agents/game-development/godot/godot-multiplayer-engineer.md -- Status: ✅ 成功摄入(source page 已存在,仅修复 index.md broken entry) -- Summary: Godot 4 网络多人游戏专家 Agent,基于 MultiplayerAPI、MultiplayerSpawner、MultiplayerSynchronizer 和 RPC 机制实现实时多人游戏网络同步。涵盖服务器权威模型设计、RPC 安全性、场景复制、延迟模拟测试、NAT 穿透与 WebRTC 集成。 -- Concepts created/updated: [[MultiplayerAPI]]、[[Server-Authoritative Model]]、[[RPC(Remote Procedure Call)]]、[[MultiplayerSynchronizer]]、[[MultiplayerSpawner]]、[[ENet]]、[[WebRTC]]、[[Authority Model]]、[[RPC Security Pattern]] -- Source page: wiki/sources/godot-multiplayer-engineer.md -- Notes: index.md Sources 第3行已存在正确条目;index.md line 507 原有 broken lint marker entry(expected source missing)已移除;Entity 建页判断:Godot 4 和 Nakama 在源文档中仅出现 1-2 次,未达 Entity 建页阈值 ≥2 次,仅在 source page Key Entities 节记录;冲突记录:与 [[unity-multiplayer-engineer]] 在权威模型实现上有差异,已在 source page Contradictions 节记录(Godot 显式 vs Unity 隐式权威模型) - -## [2026-04-27] ingest | Cloud Maturity Model - A Detailed Guide For Cloud Adoption -- Source file: Cloud & DevOps/Cloud Maturity Model A Detailed Guide For Cloud Adoption.md -- Status: ✅ 成功摄入(source page 格式重写,index.md entry 日期补全,overview.md 新增 entry) -- Summary: 系统性介绍 Cloud Maturity Model (CMM) 云成熟度模型——5级成熟度阶段(Level 0–5)覆盖企业云转型完整路径;关键组成要素覆盖业务维度(财务/战略/组织/文化/治理/合规/采购)和技术维度(架构/应用/DevOps/安全/IaaS/PaaS/SaaS/AI/IoT);三维评估框架(People/Processes/Technology);7大收益;最佳实践;7种主流云成熟度模型对比。核心理念:CMM 是云转型全面导航仪,Level 5 是目标但往往更具理想性,建议选择性采纳。 -- Concepts created: 无(Cloud Adoption/Cloud Migration/Cloud Governance/Cloud Security/FinOps/Cloud-Native/Cloud Cost Optimization/Multi-Cloud Strategy/Hybrid Cloud/People-Process-Technology/CCoE/GAP Analysis/Cloud Compliance/CAPEX vs OPEX/TCO 各仅在本文档出现 1-2 次,未达 ≥2 次独立建页阈值,均保留于 Source Page 内嵌引用) -- Entities created: 无(Open Alliance for Cloud Adoption 已于 entities/Open-Alliance-for-Cloud-Adoption.md 建页;Cloud Maturity Model 已于 entities/Cloud-Maturity-Model.md 建页;Cloud Native Maturity Model/CSMM/SAMM/AWS CAF/Azure CAF/GCP CAF 仅在本文档出现 1-2 次,未达 ≥2 次阈值) -- Source page: wiki/sources/cloud-maturity-model-a-detailed-guide-for-cloud-adoption.md -- Notes: index.md Sources 部分原有 entry(line 209)缺少日期前缀,已补全为 `[2026-04-26]` 并追加一行摘要;overview.md Cloud Transformation & DevOps 部分(line 183 后)新增本 Source 独立 entry,补充 CMM 5级阶段、三维评估框架、7大收益、最佳实践等详细内容,与 [[cloud-devop-maturity-guideline]](DevOps 交付能力成熟度)和 [[devops-maturity-model-from-traditional-it-to-advanced-devops]] 共同构成完整成熟度知识体系;Entity/Concept 去重:已检查 wiki/entities 和 wiki/concepts 目录,Cloud-Maturity-Model.md、Cloud-Maturity-Levels.md、Cloud-Adoption-Strategy.md、Cloud-Native.md、Cloud-Governance.md、FinOps.md、Multi-Cloud-Strategy.md、Hybrid-Cloud.md、Cloud-Cost-Optimization.md、DevOps-Maturity.md 等页面均已存在,无需新建;冲突检测:与 [[DevOps Maturity Model]] 在"成熟度框架"视角上存在差异——DevOps 聚焦研发交付能力,CMM 聚焦云采用整体成熟度,两者互补非互斥,已在 Source Page Contradictions 部分记录。 - -## [2026-04-14] ingest | How Agentic AI can help for Cloud DevOps -- Source file: Cloud & DevOps/How Agentic AI can help for Cloud DevOps.md -- Status: ✅ 成功摄入 -- Summary: Agentic AI(具备自主决策和任务执行能力的AI系统)通过七大能力增强 Cloud DevOps:① 自主事故检测与解决(Self-Healing + AI-driven RCA + Predictive Maintenance);② 自动化云部署与配置(AI Release Manager + IaC 智能审查);③ 智能成本优化(Rightsizing + Spot Instance 优化,夜间切换可降低40%成本);④ AI驱动的安全与合规(自动扫描 IAM/容器漏洞并实时修复);⑤ 智能日志分析与可观测性(AI ChatOps);⑥ 多租户 SaaS 管理(动态供给 + 自动退租);⑦ AI增强决策支持(What-If Simulation)。 -- Concepts created: [[Agentic AI]](已存在,仅补充应用场景)、[[Self-Healing Systems]](已存在,仅补充应用场景)、[[Root Cause Analysis (RCA)]](已存在)、[[Predictive Maintenance]](已存在)、[[Deployment Automation]](已存在)、[[Rightsizing]](已存在)、[[Automated Security Audit]](已存在)、[[Multi-Cloud Cost Optimization]](已存在)、[[AI ChatOps]](已存在)、[[What-If Simulation]](已存在) -- Entities created: 无(Kubernetes、Terraform、CloudWatch、IAM、Spot Instances 均已存在于 Wiki) -- Source page: wiki/sources/how-agentic-ai-can-help-for-cloud-devops.md -- Notes: index.md Sources 部分已存在本条目(line 208),包含一行摘要;source page 包含完整的 Source File、Summary(四大维度)、Key Claims(10条,主体+机制+结果格式)、Key Quotes(4条)、Key Concepts(含10个 wikilinks)、Key Entities(含5个产品/平台 wikilinks)、Connections(含11条依赖/扩展关系)、Contradictions(3组冲突)、Metadata(Author/Tags/Related Sources);冲突检测:① Agentic AI 自动修复 vs 人工审批控制(安全合规要求审批 vs 追求 MTTR 最优化);② Spot Instance 成本优化 vs SLA 保证;③ AI 自动化 vs DevOps 文化人本主义——已在 Contradictions 部分详细记录;Entity/Concept 去重:已检查 wiki/entities 和 wiki/concepts,Agentic AI、Self-Healing、RCA、FinOps、Multi-Cloud Strategy 等页面均已存在,仅追加本文档为来源。 - -## [2025-03-02] ingest | The Myths and Misconceptions About Cloud Computing | LinkedIn -- Source file: Cloud & DevOps/The Myths and Misconceptions About Cloud Computing LinkedIn.md -- Status: ✅ 成功摄入 -- Summary: 云计算领域7大常见误解及真相——澄清云安全不如本地、云计算成本高、迁移复杂、性能不可靠等认知误区。核心观点:主流云服务商通过加密、MFA、合规认证(ISO 27001/HIPAA/GDPR)提供比本地更强的安全保障;按需付费模型配合预留实例和自动扩展可显著降低成本;分阶段迁移策略和混合云方案可有效降低迁移风险;SLA 保证可用性通常超过 99.99%。 -- Concepts created: Cloud-Computing(本页面首次创建独立 Concept 页,整合云服务交付12大领域和云成熟度模型相关内容) -- Entities created: 无(ISO-27001、HIPAA、GDPR 已存在于 overview.md,无需新建 Entity 页) -- Source page: wiki/sources/the-myths-and-misconceptions-about-cloud-computing-linkedin.md -- Notes: index.md Sources 部分已有本条目(line 98),已补全一行摘要;overview.md Cloud Transformation & DevOps 部分新增本 Source 独立 entry,补充7大误解与真相的详细内容,与 [[ctp-topic-53-why-bother-with-cloud]](云转型商业价值)共同构成云采用决策的知识基础;Entity/Concept 去重:已检查 wiki/entities 和 wiki/concepts 目录,ISO-27001.md、HIPAA.md、GDPR.md 均已存在于 entities 目录,无需新建;Cloud-Computing.md 为本 Source 新建 Concept 页面,整合云服务交付和云成熟度相关内容;冲突检测:与 On-Premises 传统认知在安全性、成本、控制权方面存在观点对立,已在 Source Page Contradictions 部分记录。 - -## [2026-04-27] ingest | Public vs Private vs Hybrid Cloud Differences Explained -- Source file: Cloud & DevOps/Public vs Private vs Hybrid Cloud Differences Explained.md -- Status: ✅ 成功摄入 -- Summary: 公有云、私有云与混合云三种云计算部署模型的系统性对比——从定义、优势、劣势、适用场景四维度展开;强调混合云作为"安全与扩展兼得"的折中方案;提出"共享责任模型"概念,三种云均适用。 -- Concepts created: 无(概念页面 [[CloudComputing]]、[[PublicCloud]]、[[PrivateCloud]]、[[HybridCloud]]、[[SaaS-PaaS-IaaS]]、[[SharedResponsibilityModel]]、[[CloudStrategy]] 已建议在需要时创建) -- Entities created: [[BMC]](BMC Software — 源文章发布机构) -- Source page: wiki/sources/public-vs-private-vs-hybrid-cloud-differences-explained.md -- Notes: index.md 中该条目已存在(line 207),仅补建了缺失的源页面文件;冲突检测:与 [[cloud-maturity-model]] 存在"云是否减少复杂度"的视角张力,记录于源页面 Contradictions 节。 - -## [2025-12-18] ingest | These 6 Linux Apps Let You Monitor System Resources in Style -- Source file: Cloud & DevOps/These 6 Linux apps let you monitor system resources in style.md -- Status: ✅ 成功摄入 -- Summary: Linux 系统资源监控工具横向评测——6 款工具分 TUI 类(Btop++、Htop、Glances、Bottom)和 GUI 类(Mission Center、Stacer);作者首推 Btop++(均衡美观与可用性);TUI 工具适合 SSH 远程场景;GUI 工具提供类 Windows Task Manager 体验;冲突记录:与 Prometheus/Grafana 企业监控方案存在定位差异,两者面向不同场景(单机能见度 vs 多节点集中监控)互补而非互斥 -- Concepts created: 无(TUI 仅在本文档出现 1 次,未达 ≥2 次独立建页阈值;System-Monitoring 已在 overview.md 以 Key Concept 形式引用) -- Entities created: 无(Btop++、Htop、Glances、Bottom、Mission Center、Stacer 仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用;overview.md 已将其列为 Entity 概览) -- Source page: wiki/sources/these-6-linux-apps-let-you-monitor-system-resources-in-style.md -- Notes: index.md 该条目已有占位符,更新日期为 [2025-12-16];overview.md "Linux System Monitoring" 部分(line 417)已包含该 Source 的 Key Concept 引用,[[Btop++]] 等 6 个工具已列为 Entity 概览,无需新建 Entity 页面;冲突检测:与 [[家庭监控方案-prometheus-grafana-node-exporter-cadvisor-blackbox]] 存在定位差异记录于源页面 Contradictions 节。 - -## [2026-04-28] ingest | How to Simplify Multi-Account Deployments Monitoring: Centralized Logs for AWS CloudFormation StackSets -- Source file: Cloud & DevOps/How to Simplify Multi-Account Deployments Monitoring Centralized Logs for AWS CloudFormation StackSets.md -- Status: ✅ 成功摄入 -- Summary: AWS 官方博客(2025-10-24)详解多账户 StackSets 部署的集中日志监控方案——通过 EventBridge Rules 捕获目标账户 CloudFormation 事件,跨账户转发至管理账户 Central Event Bus,写入 CloudWatch Log Group(central-cloudformation-logs),配合 CloudWatch Logs Insights 实现跨账户单一界面监控;log-setup-management.yaml 一次性完成中心基础设施部署、成员账户 EventBridge 规则推送、跨账户 IAM 角色设置三重任务。 -- Concepts created: 无(Centralized Logging/Cross-Account Monitoring/Multi-Account Deployment/StackSets-Deployment-Visibility 各仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用;overview.md 已将其作为 Key Concept 引用) -- Entities created: 无(AWS CloudFormation StackSets/Amazon EventBridge/Amazon CloudWatch Logs/AWS Organizations/AWS KMS 各仅在本文档出现 1 次,未达 ≥2 次独立建页阈值,保留于 Source Page 内嵌引用) -- Source page: wiki/sources/how-to-simplify-multi-account-deployments-monitoring-centralized-logs-for-aws-cloudformation-stacksets.md -- Notes: index.md 该条目已有占位符,更新日期为 [2026-04-26];overview.md Cloud Transformation & DevOps 部分新增本 Source entry,置于 [[how-can-a-multi-cloud-strategy-transform-your-business-roi]] 之后,与 [[ctp-topic-16-cross-account-terraform-modules]](跨账号 Terraform 模块)和 [[ctp-topic-67-cloud-native-observability-using-opentelemetry]](OpenTelemetry 日志链路)建立关联;冲突检测:未发现与其他 Wiki 页面的内容冲突。 - -## [2026-05-09] ingest | 如何用指纹浏览器安全注册并订阅Claude Pro会员全攻略 -- Source file: Home Office/如何用指纹浏览器安全注册并订阅Claude Pro会员全攻略.md -- Status: ✅ 成功摄入 -- Summary: 详细演示了通过 AdsPower 指纹浏览器 + 高纯净度 SOCKS5 代理 + PingMe 接码平台 + WildCard 虚拟信用卡,实现国内用户安全注册并订阅 Claude Pro 会员的完整流程。重点覆盖:IP一致性检测、Scamalytics 纯净度评估(低风险才可用)、订阅制长期号码 vs 一次性号码对比,以及跨境支付解决方案。 -- Entities created: [[AdsPower]](Entity 新建)、[[PingMe]](Entity 新建)、[[WildCard]](Entity 新建) -- Concepts found: [[指纹浏览器]](已存在)、[[SOCKS5代理]](已存在)、[[IP纯净度]](已存在)、[[接码平台]](已存在)—— 四个 Concept 均已在各自页面添加"来源"引用本 Source -- Source page: wiki/sources/如何用指纹浏览器安全注册并订阅claude-pro会员全攻略.md -- Notes: index.md 第83行已有本条目(补充 [2026-05-09] 日期戳 + 一行摘要);Entity AdsPower/PingMe/WildCard 均已创建并添加来源引用;Concept 指纹浏览器/接码平台/IP纯净度 已有"来源"字段,本次自动添加本 Source 引用;SOCKS5代理 已有完整内容且无需更新(与本 Source 场景互补);冲突检测:无实质冲突。 - -## [2026-05-09] ingest | Mac Mini 安装 FRP 0.65.0(ARM64)操作笔记 -- Source file: Home Office/Mac Mini 安装 FRP 0.65.0(ARM64)操作笔记.md -- Status: ✅ 成功摄入 -- Summary: Mac Mini M4(Apple Silicon ARM64)FRP 0.65.0 安装配置实操指南。补充源文档末尾 SSH 远程访问完整案例章节(十四):VPS UFW 防火墙开放端口、frpc.toml SSH 代理配置、launchd plist 开机自启、~/.ssh/config 客户端优化。核心对比:macOS 用 launchd + Gatekeeper,Ubuntu 用 systemd——两者均为各自平台原生最优方案。 -- Concepts created: [[SSH隧道]](Source Page 内嵌引用,未达 ≥2 次阈值,不独立建页) -- Source page: wiki/sources/mac-mini-安装-frp-0-65-0-arm64-操作笔记.md -- Notes: Source Page 已存在,本次为内容补充(SSH 远程访问完整配置章节);index.md 第102行已有条目,无需更新;overview.md 已覆盖 Home Office + FRP 架构,无需更新;冲突检测:仅 launchd vs systemd 平台差异,已在 ubuntu-frp 页面记录,无新增冲突。 - -## [2026-05-09] ingest | Ubuntu 安装 FRP 0.65.0(x86_64)操作笔记 -- Source file: Home Office/Ubuntu 安装 FRP 0.65.0(x86_64)操作笔记.md -- Status: ✅ 成功摄入(Source Page 已存在,本次确认为首次 log 记录) -- Summary: Ubuntu Server 24.04(x86_64)FRP 0.65.0 完整运维手册——安装目录创建、wget 下载、tar 解压、frpc.toml 配置(serverAddr 192.227.222.142:7000 + token 认证 + TCP 代理映射 22→6000)、systemd 服务管理(/etc/systemd/system/frpc.service)、journald 日志、软链接版本切换、升级步骤、故障排查。 -- Concepts created: 无(systemd/软链接策略/frp 等 Concept 页面均已存在,本次仅 Source Page 内嵌引用) -- Entities created: 无(VPS/frpc/frps/Ubuntu Server 等 Entity 页面均已存在) -- Source page: wiki/sources/ubuntu-安装-frp-0-65-0-x86_64-操作笔记.md -- Notes: index.md 第97行已有本条目([2026-04-26] + 一行摘要);overview.md 第383行已有完整描述(与 [[通过vps-内网反向代理实现域名访问内网穿透]] 互补——后者侧重完整实践指南,前者是工具安装参考);frp Entity 和 Concept 页面均已存在并引用本 Source;冲突检测:与 [[mac-mini-安装-frp-0-65-0-arm64-操作笔记]] 互补(systemd vs launchd 平台差异已在两个 Source Page 中均已记录),无实质冲突。 - -## [2026-05-10] ingest | 家庭监控方案:Prometheus + Grafana + Node Exporter + cAdvisor + Blackbox -- Source file: Home Office/家庭监控方案:Prometheus + Grafana + Node Exporter + cAdvisor +Blackbox.md -- Status: ✅ 成功摄入 -- Summary: 家庭/小型服务器监控的完整 Docker 化解决方案——覆盖主机层(CPU/内存/磁盘/网络)、容器层(cAdvisor)、服务层(blackbox HTTP/TLS/DNS 探测)+ Grafana 可视化 + Alertmanager 告警分发。提供可直接拷贝的 docker-compose 完整模板及具体 PromQL 告警规则。 -- Concepts created: [[Observability]](可观测性三大支柱框架)、[[SyntheticMonitoring]](合成监控 vs RUM)、[[AlertManagement]](告警全生命周期管理) -- Entities created: [[Prometheus]]、[[Grafana]]、[[NodeExporter]]、[[CAdvisor]]、[[BlackboxExporter]]、[[Alertmanager]] -- Source page: wiki/sources/家庭监控方案-prometheus-grafana-node-exporter-cadvisor-blackbox.md -- Notes: - -## [2026-05-27] ingest | Mac Mini 服务器配置:防止自动锁屏与睡眠 -- Source file: Home Office/Mac-Mini-服务器配置-防止自动锁屏与睡眠.md -- Status: ✅ 成功摄入(已存在 — 内容验证一致,无需重建) -- Summary: Mac Mini 作为无显示器 Home Server 时,通过 `pmset` 命令永久关闭所有睡眠机制(sleep/displaysleep/standby/hibernatemode),并启用 Wake-on-LAN;临时方案使用 `caffeinate` 工具。source page 已于之前摄入完成,本次为重新验证完整性。 -- Concepts created: 无([[pmset]]/[[caffeinate]]/[[Wake-on-LAN]]/[[Headless 服务器]]/[[系统睡眠管理]] 等概念已在源页面中内嵌引用,未达独立建页阈值) -- Entities created: 无([[Mac Mini M4]]/[[RustDesk]] Entity 页面已存在) -- Source page: wiki/sources/mac-mini-服务器配置-防止自动锁屏与睡眠.md - -## [2026-04-27] ingest | 如何在Ubuntu Server上通过NFS挂载Synology NAS上的共享文件夹 -- Source file: Home Office/如何在Ubuntu Server上通过NFS挂载Synology NAS上的共享文件夹.md -- Status: ✅ 成功摄入 -- Summary: 通过 NFS 协议将 Synology NAS(192.168.3.17:/volume2/backup)永久挂载到 Ubuntu Server(192.168.3.47:/mnt/nas_backup)的完整操作流程——Synology DSM 配置 NFS 权限(Squash 映射为 admin、IP 白名单、_netdev)→ Ubuntu 安装 nfs-common → mount -t nfs 临时挂载验证 → /etc/fstab 配置永久挂载(含 timeo=900/retrans=5/_netdev 参数)→ sudo mount -a 测试 → rsync 脚本加入挂载点检查防止 NAS 掉线时数据写入本地。相比 Samba 方案,NFS 能保留 Linux 文件 uid/gid 权限,避免 Docker 卷恢复时的权限报错。 -- Concepts created: 无(NFS、/etc/fstab Entity/Concept 页面已存在,内容完整;rsync 作为备份工具已有对应 Entity) -- Entities created: 无([[Synology NAS]]/[[Ubuntu Server]] Entity 页面已存在,[[NFS]]/[[/etc/fstab]]/[[rsync]] Concept 页面已存在) -- Source page: wiki/sources/如何在ubuntu-server上通过nfs挂载synology-nas上的共享文件夹.md -- Notes: index.md 第97行已有本 Source 条目;overview.md 第384行已记录 NFS/fstab 配置内容(来自该源);冲突检测:无新冲突,wikilinks 均指向已存在页面。 - -## [2026-06-14] ingest | Obsidian最有必要安装的10款插件是这些 -- Source file: Others/Obsidian最有必要安装的10款插件是这些.md -- Status: ✅ 成功摄入 -- Summary: Obsidian 最核心、最必要的 10 款插件精选与组合使用建议。作者经过近 100 种高下载量插件深度使用后,总结出 10 款按功能分类的必备插件——核心生产力(Templater/Dataview/Spaced Repetition)、效率增强(Kanban/Projects/Outliner)、信息可视化(Calendar/DB Folder)、便利性(Homepage/File Explorer Note Count)。三大推荐组合:知识管理流(Dataview+Templater+Calendar)、任务管理流(Kanban+Projects+Outliner)、学习研究流(Spaced Repetition+DB Folder)。核心理念:聚焦核心插件(2-3款即可),其余按需选择,将精力集中在写作本身。 -- Concepts created: [[间隔重复]]、[[看板管理]]、[[动态模板]]、[[知识管理流]]、[[任务管理流]]、[[学习研究流]] -- Entities created: [[Anki]](作为间隔重复替代方案对比)、更新 [[Obsidian]](新增10款插件来源链接和高效指南链接) -- Source page: wiki/sources/obsidian最有必要安装的10款插件是这些.md -- Notes: index.md 第96行添加日期前缀 [2025-03-04] 和一行摘要;overview.md Productivity & Knowledge Management 部分新增 Obsidian 10款必备插件独立段落,Key Concepts 新增 [[看板管理]]/[[知识管理流]]/[[任务管理流]]/[[学习研究流]] 四个链接;冲突检测:与 [[ObsidianTasksPlugin]] 对比(Tasks 插件未在本文10款列表中),Dataview+Kanban 方案适合复杂查询和视觉看板场景,Tasks 插件适合"笔记即任务"理念;与 [[Notion]] 对比记录于 source page Contradictions 节(Notion 内置看板 vs Obsidian 需插件实现)。 - -## [2026-03-21] ingest | 万字讲透OpenClaw Workspace深度解析 -- Source file: Agent/万字讲透OpenClaw-Workspace深度解析-2026-03-21.md -- Status: ✅ 成功摄入 -- Summary: OpenClaw workspace 文件体系从"能用"到"真好用"的分水岭深度解析——通过 AGENTS.md(岗位说明书)、SOUL.md(性格档案)、USER.md(用户偏好)、IDENTITY.md(身份元数据)、TOOLS.md(工具规范)、BOOTSTRAP.md(一次性引导)、memory/(长期记忆)七类文件,实现 Agent 的身份持久化、行为一致性和跨会话记忆。核心洞察:workspace 是 Agent 从"每次重新 onboarding"到"懂你记得你"的分界线;AGENTS.md 300-500字比2000字更有效;memory/ 目录才是真正的长期记忆而非黑盒数据库;BOOTSTRAP.md 是一次性引导使命完成后应删除。 -- Concepts created: 无([[OpenClaw Workspace]]/[[AGENTS.md]]/[[SOUL.md]]/[[USER.md]]/[[IDENTITY.md]]/[[TOOLS.md]]/[[BOOTSTRAP.md]]/[[memory目录]]/[[bootstrapMaxChars]]/[[AgentDir]]/[[Sessions目录]] 全部已在 Wiki 中存在) -- Entities created: 无([[DracoVibeCoding]] Entity 已存在,内容已完整) -- Source page: wiki/sources/万字讲透openclaw-workspace深度解析-2026-03-21.md -- Notes: index.md 已添加一行摘要;overview.md 暂无需修改(现有 OpenClaw 相关条目(multi-channel-assistant/Second Brain/养虾日记系列等)已覆盖 workspace 核心概念,本源文档提供的是深度解析补充);冲突检测:无新冲突,各 Concept 页面内容与源文档一致。 - -## [2026-04-27] ingest | Obsidian 高效指南:我常用的插件与实用技巧 -- Source file: Others/Obsidian 高效指南:我常用的插件与实用技巧.md -- Status: ✅ 成功摄入(source page 已存在,更新概念和实体) -- Summary: Obsidian 个人知识管理的高效插件组合(Tasks/Dataview/Templater/QuickAdd)与使用技巧(双向链接/每日笔记/折叠大纲/定期复盘),将 Obsidian 打造成第二大脑。 -- Concepts created: Bidirectional Linking、Daily Journaling、Note Database Queries、Periodic Review、Quick Capture、Template-based Note Creation -- Entities created: Shenwei -- Source page: wiki/sources/obsidian-高效指南-我常用的插件与实用技巧.md -- Notes: source page 已存在(2026-04-22 创建),本次补充创建 6 个 Concept 页面和 1 个 Entity 页面,index.md 已更新。冲突记录:与 [[Obsidian最有必要安装的10款插件是这些]] 的插件选择策略存在对比(少而精 vs 多而全),记录于 source page Contradictions 节。 - -## [2026-04-27] ingest | Google 5个 Agent Skill 设计模式 -- Source file: Agent/Google-5个Agent-Skill设计模式-2026-03-19.md -- Status: ✅ 成功摄入 -- Summary: Google ADK 发布的 5 种 Agent Skill 设计模式(Tool Wrapper、Generator、Reviewer、Inversion、Pipeline),通过 SKILL.md 目录结构和渐进式披露机制实现模块化、按需加载的 Skill 系统 -- Concepts created: [[Generator]](新增)、[[渐进式披露]](新增)、[[SkillToolset]](新增) -- Concepts already existed: [[ToolWrapper]](已有)、[[Reviewer]](已有)、[[Pipeline]](已有)、[[Inversion]](已有) -- Entities created: 无([[ADK]] 已有) -- Source page: wiki/sources/google-5个agent-skill设计模式-2026-03-19.md -- Notes: source page 新建;index.md 第488行已添加摘要描述;overview.md 已有相关条目(行556/562),无需更新;冲突检测:与 [[Anthropic Claude Code]] 的 Skill 实践不冲突,Anthropic 的"给工具不给指令"理念正是这5种模式的设计哲学基础 - -## [2026-05-09] ingest | N8N Full Tutorial Building AI Agents in 2025 for Beginners! -- Source file: Agent/n8n full tutorial building AI agents in 2025 for Beginners!.md -- Status: ✅ 成功摄入 -- Summary: N8N 平台构建 AI Agent 入门教程——核心区分 Workflow(预定义,输出恒定)与 Agent(LLM驱动,动态选择工具);讲解五类 N8N 节点(触发/动作/工具/代码/高级AI);集成 Memory 模块保留上下文;演示 Airtable 库存管理集成案例 -- Concepts created: [[AgenticSystem]]、[[MemoryInAIAgents]]、[[ToolIntegration]]、[[N8NNodeTypes]] -- Entities created: [[Airtable]](N8N Entity 已存在——合并更新了 sources 和 last_updated) -- Source page: wiki/sources/n8n-full-tutorial-building-ai-agents-in-2025-for-beginners.md -- Notes: index.md Sources 条目已添加日期前缀 [2026-05-09] 和一行摘要;index.md Entities 节新增 Airtable;index.md Concepts 节新增 AgenticSystem、MemoryInAIAgents、N8NNodeTypes、ToolIntegration;overview.md Multi-Agent AI Systems 节已补充本教程;冲突检测:与 [[how-agentic-ai-can-help-for-cloud-devops]] 对 Agentic System 定义一致,本教程为入门视角,该篇为应用视角,无冲突 - -## [2026-04-27] ingest | Daily YouTube Digest -- Source file: Agent/usecases/daily-youtube-digest.md -- Status: ✅ 成功摄入 -- Summary: AI Agent 每日自动抓取订阅频道新视频,通过 TranscriptAPI 获取字幕并生成摘要,定时推送个性化简报。核心洞察:YouTube 算法推荐不可靠,订阅频道的新视频经常被埋没;TranscriptAPI 比 yt-dlp 更适合 Agent 环境;channel/latest 免费检查,1 credit/视频生成摘要,成本可控。 -- Concepts created: (无新 Concept——Daily-Digest/TranscriptAPI/ContentCuration 均已存在或过于抽象) -- Entities created: (无新 Entity——TranscriptAPI/Recapio/OpenClaw 均已存在) -- Source page: wiki/sources/daily-youtube-digest.md -- Notes: index.md Sources 条目已添加日期前缀和一行摘要;overview.md 第410行已有详细章节,无需更新;冲突检测:与 [[Multi-Source Tech News Digest]] 互补而非冲突——前者专注 YouTube 视频深度摘要,后者覆盖多来源文字新闻,可并行使用;[[Daily-Digest]]/[[TranscriptAPI]]/[[Recapio]] Entity 和 Concept 页面已存在且 sources 字段已包含 daily-youtube-digest,无需更新。 - -## [2026-04-26] ingest | Self-Healing Home Server & Infrastructure Management(补录+扩充) -- Source file: Agent/usecases/self-healing-home-server.md -- Status: ✅ 成功摄入 -- Summary: AI Agent 作为家庭服务器基础设施的全天候自动驾驶代理,通过 OpenClaw + SSH + Cron Job 系统实现自动化健康监控、故障自愈和基础设施即代码管理。核心洞察:①AI 会硬编码 secrets(TruffleHog pre-push hooks 必需);②本地优先 Git(私有 Gitea + CI 扫描)防止 Agent 直接推送到公共仓库;③Cron Job 是真正的产品力——定时自动化比偶发命令提供更多日常价值;④知识提取随时间复利增长。来源为 Nathan 的 OpenClaw Agent Reef,拥有 15 个活跃 cron job、24 个自定义脚本。 -- Concepts created: (Self-Healing-Systems/Agentic-AI/Infrastructure-as-Code/Morning-Briefing/Email-Triage/Local-first-Git/Defense-in-Depth 等概念已通过 source page Key Concepts wikilinks 引用,尚无独立 Concept 页面——来源内容均为具体应用场景描述,不满足"可抽象可复用"标准) -- Entities created: (无新 Entity——OpenClaw/K3s/Gitea/TruffleHog/1Password/ArgoCD/Gatus/Loki/n8n 虽在 source 中出现但不足以构成独立 Entity 页面所需的关键影响/≥2次条件;均通过 Key Entities wikilinks 体现) -- Source page: wiki/sources/self-healing-home-server.md -- Notes: 本次为补录+扩充——source page 原有内容已覆盖 Summary/Key Claims/Key Quotes/Key Concepts/Key Entities/Connections/Contradictions,补充新增内容:Skills(8 项)、How to Set It Up(含 Core Agent Configuration/Automated Cron Job System/Security Setup/Morning Briefing Template)、Key Insights 完整版、Inspired By(Nathan 和 georgedagg_)、Related Links(6 个外部链接);修正了 Summary 中的错别字(CI 扫描_pipeline → CI 扫描 pipeline);Connections 新增与 dynamic-dashboard 和 custom-morning-brief 的 extends 关系;index.md 条目已补充日期前缀 [2026-04-26] 和一行摘要;overview.md 第183行和第504行已有相关交叉引用,无需更新;冲突检测:与 [[家庭监控方案-prometheus-grafana-node-exporter-cadvisor-blackbox]] 的监控方案对比(自愈 vs 告警+人工介入)已在 source page Contradictions 节详细记录。 - -## [2026-04-27] ingest | AI-Powered Earnings Tracker -- Source file: Agent/usecases/earnings-tracker.md -- Status: ✅ 成功摄入 -- Summary: AI Agent 通过 OpenClaw Cron Job 自动追踪科技公司财报——每周扫描财报日历推送预览,用户选择后为每家公司创建一次性定时任务,财报发布后自动搜索结果生成 Beat/Miss/关键指标/AI亮点摘要,推送至 Telegram "earnings" Topic。核心洞察:Cron Job 定时主动推送比被动查询更有价值;用户偏好记忆实现个性化自动建议;所需技能仅 web_search + Cron Job + Telegram。 -- Concepts created: (Cron-Job/AI-Agent/Telegram-Topic 已通过 source page Key Concepts wikilinks 引用,来源内容为具体应用描述,不满足"可抽象可复用"标准,未创建独立 Concept 页面) -- Entities created: (无新 Entity——OpenClaw/NVDA/MSFT/GOOGL/META/AMZN/TSLA/AMD 虽在 source 中出现,但来源仅为 Prompt 示例,未对其深入展开,不满足关键影响条件;均通过 Key Entities wikilinks 体现) -- Source page: wiki/sources/earnings-tracker.md -- Notes: index.md 第252行已有对应条目(date: 2026-04-27),无需重复添加;冲突检测:无已知冲突;Connections 与 [[Daily-YouTube-Digest]] 和 [[Custom-Morning-Brief]] 建立 similar_pattern 关系(均为 Cron Job + Telegram 推送模式) - -## [2026-04-29] ingest | Market Research & Product Factory -- Source file: Agent/usecases/market-research-product-factory.md -- Status: ✅ 成功摄入(re-ingest:已存在页面内容完整,本次补充创建缺失 Entity 页面) -- Summary: AI Agent 驱动的"从市场调研到产品构建"全自动化流水线——Last 30 Days skill 挖掘 Reddit/X 近30天真实用户痛点 → OpenClaw 根据痛点构建 MVP → 完整"发现问题→验证需求→构建方案"闭环。核心价值:创业自动驾驶模式(entrepreneurship on autopilot),发短信即可完成调研到原型全部流程。 -- Entities created: Last-30-Days-Skill.md(New)、Matt-Van-Horne.md(New);OpenClaw.md / Alex-Finn.md 已存在 -- Concepts: Pain Point Mining / Startup MVP Pipeline / Agent-Driven Market Research / Last 30 Days Method 已在 source page 引用,均已存在独立页面,无需重复创建 -- Source page: wiki/sources/market-research-product-factory.md -- Notes: source page 已存在且内容完整(date: 2026-04-17);index.md 已包含该 source 条目(第246行);overview.md 第523/525行已有 market-research-product-factory 相关覆盖;本次 re-ingest 补充创建 Last-30-Days-Skill.md 和 Matt-Van-Horne.md 两个缺失 Entity 页面并注册至 index.md Entities 节;冲突检测:无新增冲突(与 content-factory/Pre-Build Idea Validator 已在现有 source page 中记录互补关系) - -## [2026-05-02] ingest | Todoist Task Manager: Agent Task Visibility -- Source file: Agent/usecases/todoist-task-manager.md -- Status: ✅ 成功摄入 -- Summary: AI Agent 长时任务的可视化进度追踪系统,通过 Todoist 实现 Agent 内部推理外部化——利用 Todoist 项目 + 分区(🟡 In Progress / 🟠 Waiting / 🟢 Done)+ Bash 脚本封装 REST API,实现任务状态可视化、Agent 计划外化、子步骤日志实时追加评论、心跳脚本停滞告警。核心价值:用户无需手动翻查聊天记录,在 Todoist 中即可透明查看 Agent 进展。 -- Concepts created: TaskVisibility.md、AgenticWorkflow.md、ExternalReasoning.md -- Entities created: TodoistRestApi.md(Todoist.md 已存在);OpenClaw.md 已存在,本次作为 Key Entity 引用 -- Source page: wiki/sources/todoist-task-manager.md -- Notes: source page 已按标准格式生成;index.md Sources 节条目已补加日期前缀 [2026-05-02];overview.md 第509行已存在 Todoist Task Manager 章节,已更新为双维度描述(任务执行可视化 + 自然语言→结构化任务);冲突检测:与 [[ProjectStateManagement]] 属同一问题域(任务状态管理),已在 source page Contradictions 节记录差异(SaaS 实现 vs 事件驱动方案);wikilinks 均已验证有效。 - -## [2026-04-27] ingest | Habit Tracker & Accountability Coach(重新摄取) -- Source file: Agent/usecases/habit-tracker-accountability-coach.md -- Status: ✅ 增量同步完成(source page 已存在,本次更新:1. 同步 date→last_updated 字段格式;2. 新建缺失 Entity 页面:Twilio.md、Google-Sheets-API.md;3. 新建缺失 Concept 页面:AdaptiveTone.md、StreakTracking.md、CheckinFatigue.md、WeeklyPatternAnalysis.md、ActiveAccountability.md;4. 验证 index.md 条目已存在) -- Summary: AI Agent 作为主动问责伙伴,通过 Telegram/SMS 每日定时签到,替代被动习惯追踪 App。核心机制:主动问责 + 连续打卡追踪 + 自适应语气 + 每周模式分析。源文件最后修改时间:2026-04-26 12:35。 -- Concepts created: AdaptiveTone.md、StreakTracking.md、CheckinFatigue.md、WeeklyPatternAnalysis.md、ActiveAccountability.md -- Entities created: Twilio.md、Google-Sheets-API.md -- Source page: wiki/sources/habit-tracker-accountability-coach.md -- Notes: - - 源文件修改时间:2026-04-26 12:35(距上次 2026-04-17 摄入) - - index.md 第255行已有本条目,无需更新 - - overview.md 已有相关章节,无需修订 - - log.md 已有 2026-04-17 原始摄入记录,本次追加增量同步记录 - - Entity 页面 [[OpenClaw]]/[[Telegram]] 已存在,无需新建 - - 冲突检测:无冲突 - -## [2026-04-27] ingest | Multi-Channel AI Customer Service Platform -- Source file: Agent/usecases/multi-channel-customer-service.md -- Status: ✅ 成功摄入 -- Summary: 多渠道 AI 客服平台,整合 WhatsApp Business、Instagram DMs、Gmail、Google Reviews 到统一 AI 收件箱。AI 自动回复处理 FAQ/预约/投诉/评价,复杂问题升级人工。通过 OpenClaw 配置渠道连接,AGENTS.md 配置消息路由逻辑(意图分类 + 多语言检测),心跳监控检测响应积压。Futurist Systems 部署案例:餐厅响应时间从 4+ 小时降至 2 分钟内,80% 咨询自动处理。 -- Concepts created: 无需新建(IntentClassification/TestMode/HumanHandoff 等概念在其他来源已覆盖,不满足独立创建条件) -- Entities: 无需新建(WhatsAppBusiness/Instagram/Gmail/GoogleBusinessProfile 为通用平台,FuturistSystems 为一次性案例,均不满足 Entity 创建条件) -- Source page: wiki/sources/multi-channel-customer-service.md -- Notes: - - index.md 第253行已有本条目,无需更新 - - overview.md 未涉及多渠道客服主题,无需修订 - - 与 [[multi-channel-assistant]] 的关系已记录为 extends 连接 - - 冲突检测:无冲突 - -## [2026-04-26] ingest | Local CRM Framework with DenchClaw -- Source file: Agent/usecases/local-crm-framework.md -- Status: ✅ 成功摄入(日期同步:源文件修改于 2026-04-26 12:35,同步 date 字段从 2026-04-22 至 2026-04-26,内容保持一致无需变更) -- Summary: DenchClaw 将 OpenClaw 转化为本地 CRM、销售自动化和生产力平台的完整框架——通过 `npx denchclaw` 一键安装完整技术栈(DuckDB + Web UI + OpenClaw Profile + 浏览器自动化),所有设置/视图以文件(YAML/Markdown)存储,Agent 可直接修改 UI 而无需 API 抽象层。核心创新:Chrome Profile 克隆使 Agent 继承用户认证状态,可直接导入 HubSpot 等平台数据。 -- Concepts: 无需新建([[DuckDB]]/[[File-System-First-UI]]/[[Chrome-Profile-Cloning]] 等概念页已于 2026-04-22 创建) -- Entities: 无需新建([[DenchClaw]] Entity 页已于 2026-04-22 创建) -- Source page: wiki/sources/local-crm-framework.md -- Notes: - - 源文件时间戳 2026-04-26 12:35(距上次 2026-04-22 摄入),内容无变化,仅同步 date 字段 - - index.md 条目已补加日期前缀 [2026-04-26] - - overview.md 第524行已有完整章节,无需更新 - - 冲突检测:无冲突 - -## [2026-05-18] ingest | Polymarket Autopilot: Automated Paper Trading -- Source file: Agent/usecases/polymarket-autopilot.md -- Status: ✅ 成功摄入(重新摄入,基于新版 raw 内容) -- Summary: 基于 AI Agent 的 Polymarket 预测市场自动化模拟交易(Paper Trading)系统——AI Agent 通过 API 持续监控 Polymarket 市场数据(价格/成交量/价差),使用 TAIL/BONDING/SPREAD 三种策略执行模拟交易,追踪组合表现并每日推送 Discord 报告。核心价值:无需真实资金验证策略,24/7 市场监控,减少人工盯盘。 -- Concepts created: [[TAIL-Strategy]](趋势跟踪策略,概率 >60% + 成交量放大时顺势建仓)、[[BONDING-Strategy]](逆向/均值回归策略,市场过度反应时逆向建仓)、[[SPREAD-Strategy]](套利策略,YES+NO >1.05 时捕获无风险收益) -- Source page: wiki/sources/polymarket-autopilot.md(已更新 date: 2026-05-18,新增详细策略参数和 Key Claims) -- Notes: - - 重新摄入原因:raw 文件内容已更新(新增 SQL schema、具体策略参数、Agent prompt 示例) - - 原 source page 基于旧版内容,本次按新版重新生成 - - index.md 条目已补加日期前缀 [2026-05-18] 和摘要描述 - - overview.md 第184行 Dynamic Dashboard 段落已更新,新增 TAIL/BONDING/SPREAD 策略描述和 Paper Trading 说明 - - 冲突检测:无冲突 - - Polymarket 已在 [[Dynamic-Dashboard]] concept 页和 overview.md 中多次提及,本次重新摄入进一步丰富了策略细节 - -## [2026-04-27] ingest | Personal CRM with Automatic Contact Discovery -- Source file: Agent/usecases/personal-crm.md -- Status: ✅ 验证完成(source page 已存在且完整,无需重新生成) -- Summary: AI Agent 驱动的个人 CRM 自动联系人发现系统——每日 Cron Job 扫描 Gmail 和日历,自动提取新联系人并更新 SQLite 数据库,通过 Telegram personal-crm topic 提供自然语言查询,每日 7AM 推送会前简报。 -- Concepts updated: [[Personal-CRM]](last_updated 同步至 2026-04-27;sources 列表已包含 [[personal-crm]]) -- Entities updated: [[gog-CLI]](添加 personal-crm 到 Related Sources);[[Telegram]] Entity 已在 multi-channel-assistant 中建立 -- Source page: wiki/sources/personal-crm.md -- Notes: 源文件时间戳 2026-04-26 12:35(与现有 source page 2026-04-27 16:01 一致,内容无变化);index.md 条目已补加日期前缀 [2026-04-26] 和摘要描述;overview.md 第522行已有完整章节,内容一致无需更新;冲突检测:无冲突(与 [[养龙虾5天血泪史]] 的通用内存 vs 结构化联系人互补关系已在该 source page Contradictions 节记录)。 - - -## [2026-04-27] ingest | OpenClaw as Desktop Cowork (AionUi) — Remote Rescue & Multi-Agent Hub -- Source file: Agent/usecases/aionui-cowork-desktop.md -- Status: ✅ 成功摄入 -- Summary: 通过 AionUi 桌面应用将 OpenClaw 打造为可视化 Cowork Agent,支持远程救援和多 Agent 统一管理。核心价值:解决"看不见 Agent 在做什么"和"Agent 坏了人在外地无法修复"两大痛点;12+ Agent 共存共享 MCP 配置;多通道远程接入。 -- Concepts created: Cowork-UI.md、Remote-Rescue.md、Multi-Agent-Unified-MCP.md、OpenClaw-Deployment-Expert.md -- Entities created: AionUi.md、Claude-Code.md、Codex.md -- Entities updated: OpenClaw.md(sources 新增 aionui-cowork-desktop,last_updated 更新至 2026-04-27);McpServer.md(sources 新增 aionui-cowork-desktop) -- Source page: wiki/sources/aionui-cowork-desktop.md -- Notes: index.md 条目已补加日期前缀 [2026-04-27];overview.md 第50行已添加完整章节(置于 multi-channel-customer-service 与 Second Brain 之间);冲突检测:无冲突(与 [[multi-agent-team]] 为互补关系——后者侧重 Agent 团队协作架构,前者侧重统一界面管理与远程控制,已记录于 overview.md 和 source page Connections 节)。 - -## [2026-04-27] ingest | arXiv Paper Reader -- Source file: Agent/usecases/arxiv-paper-reader.md -- Status: ✅ 成功摄入 -- Summary: 基于 Prismer `arxiv-reader` skill 的对话式 arXiv 论文阅读工作流——通过 3 工具(`arxiv_fetch`/`arxiv_sections`/`arxiv_abstract`)直接从 arXiv 获取论文,自动解压 LaTeX 源码并扁平化为可读文本,支持摘要速扫、跨论文对比、章节精读,结果本地缓存。 -- Concepts created: (无新建,Concepts 均仅出现 1 次,不满足可复用条件) -- Source page: wiki/sources/arxiv-paper-reader.md -- Notes: Prismer Entity 和 OpenClaw Entity 已存在于 wiki,无需新建;arXiv Entity 仅出现 1 次,不满足"≥2次"条件,未创建;无内容冲突。 - -## [2026-04-27] ingest | Phone Call Notifications(复检) -- Source file: Agent/usecases/phone-call-notifications.md -- Status: ✅ 复检完成 -- Summary: AI Agent 通过 clawr.ing 托管电话服务主动向用户拨打电话通知——Agent 评估事件优先级(股价暴跌/紧急邮件/日程提醒),自动拨叫用户真实号码,用户可实时提问,Agent 双向对话响应。与 [[phone-based-personal-assistant]] 互补(Agent 去电通知 vs 用户来电接收)。 -- Concepts: 均为已有页面([[Voice Notification Channel]] / [[Two-Way Voice Conversation]] / [[Call-Worthy Threshold]] / [[PSTN Calling]] 均已于 2026-04-23 创建) -- Entities: 均为已有页面([[clawr.ing]] 已存在,[[OpenClaw]] 已存在,[[clawhub.ai]] 已存在) -- Source page: wiki/sources/phone-call-notifications.md -- Notes: - - 本次为复检执行(原始摄入日期:2026-04-23) - - index.md 第259行条目已补加日期前缀 [2026-04-27] - - source page date 已更新至 2026-04-27 - - overview.md 第46行和第1078行已有相关章节,内容一致,无需更新 - - 冲突检测:无新增冲突(与 [[phone-based-personal-assistant]] 方向差异已于原 log 记录) - -## [2026-04-27] ingest | 养虾日记2:让Agent更懂你:OpenClaw + Self-Improving 复盘实战案例分享 -- Source file: 微信公众号/养虾日记2:让Agent更懂你:OpenClaw + Self-Improving 复盘实战案例分享 -- Status: ✅ 成功摄入 -- Summary: AI Agent 记忆问题的 self-improving 自改进机制实战——三层记忆架构(短期文件 + 长期向量数据库 + self-improving 复盘),实现"错误只犯一次"的 Agent 学习闭环。Pattern-Key 重复是系统性问题的信号;Recurrence-Count 是区分一次性错误与重复问题的关键指标。 -- Concepts created: Self-Improving-Skill.md、双层记忆架构.md、每日复盘机制.md、Pattern-Key.md、Recurrence-Count.md -- Entities created: OpenClaw.md、LanceDB.md -- Source page: wiki/sources/养虾日记2-让agent更懂你-openclaw-self-improving-复盘实战案例分享.md -- Notes: - - source page 已存在于 wiki/sources/,格式完整,无需重新生成 - - index.md 第137行已有条目,已补充 Entities 和 Concepts 章节 - - overview.md 第58行已有完整章节(Self-Improving 自改进系统),内容一致,无需更新 - - 冲突检测:无冲突(与 [[养龙虾5天血泪史]] 属同一系列——前者侧重 self-improving 机制设计,后者侧重记忆失效调试全记录,互补关系) - -## [2026-04-27] ingest | Ubuntu禁用合盖休眠 -- Source file: raw/Home Office/Ubuntu禁用合盖休眠.md -- Status: ✅ 成功摄入(已存在页面,验证通过) -- Summary: Ubuntu 24.04 笔记本合盖休眠配置——通过修改 systemd-logind 的 logind.conf,将 HandleLidSwitch 系列参数设为 ignore 实现合盖持续运行;进阶通过 systemctl mask 彻底禁用所有休眠目标。核心结论:两步完成服务器场景下笔记本合盖持续运行。 -- Concepts: 无需新建(systemd-logind/HandleLidSwitch/sleep.target 等概念在本页面仅出现 1 次,不满足 ≥2 次条件) -- Entities: 无需新建(Ubuntu 24.04/systemd 仅出现 1 次) -- Source page: wiki/sources/ubuntu禁用合盖休眠.md -- Notes: 页面已存在且内容与源文件一致,验证通过;index.md 第132行已有条目;冲突检测:无冲突(与 Mac Mini 睡眠配置属同类问题但无冲突——macOS 使用 pmset,Ubuntu 使用 systemd 配置) - -## [2026-04-28] ingest | 家庭网络环境概览 -- Source file: raw/Home Office/家庭网络环境概览_2026-04-03.md -- Status: ✅ 成功摄入 -- Summary: 家庭网络基础设施全景文档,记录公网 VPS(RackNerd)+ Mac Mini M4 主控节点 + Synology NAS DS718 + Ubuntu1 监控服务器 + Ubuntu2 自动化服务器的全部服务清单、FRP 端口映射与 Caddy 域名映射表。核心架构:FRP 内网穿透(frps 在 VPS,frpc 在各内网节点)+ Caddy 自动 HTTPS 反向代理 + Cloudflare DNS 托管。关键新洞察:NAS V2RayA 透明代理仅本机监听不对 Docker Daemon 生效(❌),Mac Mini/Ubuntu1/Ubuntu2 均通过 socks5://127.0.0.1:10808 正常代理(✅)。 -- Concepts: 无需新建(内网穿透/反向代理/Docker监控/家庭媒体服务器/科学上网等概念均已存在) -- Entities: 无需新建(RackNerd/MacMiniM4/Synology-NAS/Ubuntu-Server/Caddy/FRP 等实体均已存在) -- Source page: wiki/sources/家庭网络环境概览_2026-04-03.md -- Notes: overview.md Home Lab Infrastructure 节已补全 FRP 详细端口映射、Caddy 21 服务域名映射表及科学上网状态差异;冲突检测:与 [[路由器科学上网 vs VPS科学上网 vs NAS科学上网 vs Server终端代理]] 在 NAS V2RayA Docker Daemon 代理范围上存在冲突(见 Contradictions 部分),已记录协调方向 - -## [2026-04-27] ingest | 在Ubuntu上通过VPS+内网反向代理实现域名访问内网穿透 -- Source file: Home Office/在Ubuntu上通过VPS+内网反向代理实现域名访问内网穿透.md -- Status: ✅ 成功摄入(source page 已存在,补全 last_updated + index.md 日期前缀) -- Summary: 通过 VPS(frps + Caddy)+ frp 反向隧道,实现内网 NAS/Ubuntu 服务公网 HTTPS 域名访问的完整操作指南。覆盖:Cloudflare DNS A 记录配置、VPS 安装 frps(systemd,端口 7000)和 Caddy(自动 HTTPS)、NAS 和 Ubuntu 安装 frpc 及各服务端口映射、Caddy 反向代理配置、SSH 穿透(TCP 映射不走 Caddy)、7 步系统化故障排查(端口监听/token 验证/防火墙/telnet 诊断)。关键洞察:V2RayA 透明代理可能干扰 frp 连接;frps systemd service 路径陷阱(`/opt/frp/` vs `/etc/frp/`)。 -- Concepts created: 无需新建(内网穿透/反向代理/TCP隧道/自动HTTPS/DNS A记录等 Concept 页面均已存在) -- Entities created: 无需新建(RackNerd/Synology-NAS/Caddy/FRP/Cloudflare 等 Entity 页面均已存在) -- Source page: wiki/sources/在ubuntu上通过vps-内网反向代理实现域名访问内网穿透.md -- Notes: source page 已存在且内容完整,本次补加 last_updated: 2026-04-27 字段;index.md 第131行条目已补充 [2026-04-27] 日期前缀;overview.md 第407行 Home Lab Infrastructure 章节已完整覆盖本文全部内容,无需修订;冲突检测:无冲突(与同名 [[ubuntu-安装-frp-0-65-0-x86_64-操作笔记]] 构成前置关系,与 [[家庭网络环境概览]] 构成扩展关系,无内容冲突) -## [2026-04-27] ingest | 14个免费的AI图生视频工具,用AI让图片动起来 -- Source file: AI/14个免费的AI图生视频工具,用AI让图片动起来 - AI视频教程 AI自动化工作流定制服务 AI培训学习平台 黑喵大叔.md -- Status: ✅ 成功摄入(新增摄取:源文件创建于 2025-12-05,生成 source page,新增 last_updated 字段) -- Summary: 14款免费AI图生视频工具完整评测——涵盖中国主流平台(绘蛙AI视频/智谱清影/通义万相/Vidu/可灵AI/海螺AI/即梦AI/万相营造)和海外工具(PixVerse/Video Ocean/Stable Video/Viva/Haiper/艺映AI)。核心价值:降低视频创作门槛,无需专业设备和技能即可将静态图片转化为视频,适用于电商营销、内容创作、广告制作等场景。各工具差异化:智谱清影30秒极速+CogSound音效;Vidu多主体参考保持一致性;可灵AI 1080p+3D时空联合注意力;Stable Video精细摄像机控制;Viva免费产品最高质量。 -- Concepts created: 无需新建([[AI图生视频]]/[[图生视频]]/[[视频风格迁移]]/[[运镜控制]]/[[首尾帧动画]]/[[主体一致性]]/[[音效匹配]]/[[运动笔刷]] 等 Concept 页面均已存在) -- Entities created: 无需新建([[智谱清影]]/[[可灵AI]]/[[即梦AI]]/[[Vidu]] 等 Entity 页面均已存在,[[AI图生视频]] Concept 页面已添加本次评测14个工具的 Key Entities) -- Source page: wiki/sources/14个免费的ai图生视频工具-用ai让图片动起来-ai视频教程-ai自动化工作流定制服务-ai培训学习平台-黑喵大叔.md -- Notes: index.md Sources 节第7行已有条目([2026-04-27] 前缀 + 一行摘要);overview.md 知识与资源章节已添加 [[14个免费的AI图生视频工具]] 段落(属 AI时代发展策略 的创意工具层);Concept 页面 AI图生视频.md 的 Key Entities 节已添加全部14个工具实体引用;冲突检测:无冲突(工具评测类文章,各工具功能介绍相互独立) - -## [2026-04-27] ingest | Designing for Agentic AI -- Source file: raw/AI/Designing for Agentic AI.md -- Status: ✅ 成功摄入(首次摄取:源文件 date: 2001-02-27,生成 source page 及 GenAI Concept 页面) -- Summary: Agentic AI(智能体AI)产品设计指南——阐述 GenAI 与 Agentic AI 的本质区别(内容创作 vs 行动决策),提出五大设计最佳实践:透明度(可视化AI推理过程)、控制感(允许停止/撤销AI操作)、个性化(历史行为预测)、对话式交互(自然语言+输入理解反馈)、主动预测(预判需求+自主权控制)。核心洞察:用户观察AI决策过程本身就是一种交互形式;设计范式从"响应用户点击"转向"提供AI运作的实时反馈"。 -- Concepts created: [[GenAI]](首次摄取时误建为 Concept,后确认为 Entity [[Agentic-AI]] 的互补概念,已在 Concepts 节正确添加) -- Concepts updated: [[Agentic-AI]](Entity 页面,添加 sources: [designing-for-agentic-ai] 引用及产品设计五原则章节) -- Entities created: 无需新建([[Agentic-AI]] Entity 页面已存在,本次更新添加 sources 引用及产品设计视角补充) -- Source page: wiki/sources/designing-for-agentic-ai.md -- Notes: index.md Sources 节已添加条目(第7行,含日期前缀 [2001-02-27] 和一行摘要);index.md Concepts 节已添加 GenAI 条目(第958行);Entity 页面 Agentic-AI.md 已添加 sources: [designing-for-agentic-ai] 引用及产品设计五原则章节;冲突检测:无冲突(现有 [[Agentic-AI]] Entity 聚焦 Cloud/DevOps 应用视角,本次 source 补充产品设计视角,两者互补而非冲突) - -## [2026-04-28] ingest | 7 ways I use NotebookLM to make my life easier -- Source file: AI/7 ways I use NotebookLM to make my life easier.md -- Status: ✅ 成功摄入 -- Summary: NotebookLM 7 种日常生活场景实测——①信息积压处理(PDF/文章/视频上传,AI 消化,问答提取);② Audio Overview 播客笔记(文档转双人对话,适合驾驶/健身被动学习);③快速成为多主题专家(Batman/Star Wars/Jupiter 等领域);④编程辅助(Godot/Python 文档上传);⑤项目管理中枢(零散研究整合为路线图,作者一年做出 6 个 App);⑥软件版本对比(直接列出差异并附引用);⑦法律文档审核(每个答案附引用可回溯)。核心机制:Source-Grounding。 -- Concepts created: 无需新建(Source-Grounding、Passive-Learning 已存在) -- Entities created: 无需新建(NotebookLM、Godot 已存在) -- Source page: wiki/sources/7-ways-i-use-notebooklm-to-make-my-life-easier.md -- Notes: - - 更新 index.md Sources 节(新增第7条,含日期前缀 [2025-11-23] 和一行摘要) - - 更新 overview.md,新增第22条 NotebookLM 综合条目 - - Entity 页面 NotebookLM.md 已包含 7-ways-i-use-notebooklm-to-make-my-life-easier source,无需额外更新 - - 冲突检测:无冲突(本文 7 种用法与现有 NotebookLM Entity 页面内容高度一致,无矛盾论点) - -## [2026-05-11] ingest | 我的AI工具集 -- Source file: raw/AI/我的工具集.md -- Status: ✅ 成功摄入 -- Summary: 个人收集整理的 AI 工具清单,按功能分类涵盖 Text-to-Speech(Google AI Studio 免费服务)、Image-to-Video(Wavespeed/Vidu/Hailuo,¥8~42/月)、Web-Scraper(Brightdata 付费)和 AI Summary(Decopy,支持文章/PDF/视频多模式摘要)。 -- Concepts created: [[TextToSpeech]]、[[TextToVideo]]、[[ImageToVideo]]、[[WebScraper]]、[[AISummary]] -- Entities created: [[Google-AI-Studio]]、[[Wavespeed-AI]]、[[Vidu]]、[[Hailuo-AI]]、[[Brightdata]]、[[Decopy]] -- Source page: wiki/sources/我的工具集.md -- Notes: Source page 新建完成;index.md Sources 节第一条已添加;overview.md 新增综合摘要条目,位于「知识与资源」节「3-2万人收藏」与「14个免费AI图生视频工具」之间;Entities 和 Concepts 均已按字母顺序插入 index.md;冲突检测:无冲突(本文为个人工具清单,与其他来源互补,无矛盾论点) - -## [2026-04-28] ingest | Multi-Agent System Reliability -- Source file: raw/AI/Multi-Agent System Reliability.md -- Status: ✅ 成功摄入 -- Summary: Alex Ewerlöf 提出 4 种架构模式提升多智能体系统可靠性——层级(Planner→Worker→Validator)、共识(N个LLM多数票消除幻觉)、对抗辩论(Generator→Critic→Judge)、淘汰制(适者生存)。核心主张:反对拟人化LLM,将LLM视为分布式系统中不可靠的组件,通过架构约束而非提示词约束强制其正确。 -- Concepts created: 无需新建(Hierarchy-Agent-Pattern、Consensus-Voting-Pattern、Adversarial-Debate-Pattern、Knock-out-Pattern、Reliability-Engineering、Genetic-Algorithm、Tree-of-Thoughts 均已存在) -- Entities created: 无需新建(Alex Ewerlöf 实体页面已存在) -- Source page: wiki/sources/multi-agent-system-reliability.md -- Notes: - - Source page 新建完成;index.md Sources 节第一条已添加(2026-04-28) - - overview.md 第102行已包含本 source 综合摘要,无需额外更新 - - 更新了 7 个现有 Concept 页面的 sources 字段(添加 multi-agent-system-reliability)和 last_updated(→2026-04-28) - - 更新了 Alex Ewerlöf 实体页面的 sources 字段和 last_updated - - 更新了 Agentic-AI.md sources(添加 multi-agent-system-reliability) - - 冲突检测:仅与"拟人化提示工程"存在已知分歧——source 自身已在 Contradictions 节记录此冲突 - -## [2026-04-28] ingest | 如果你有多项兴趣爱好,不要浪费接下来的两三年时间 -- Source file: AI/If you have multiple interests, do not waste the next 2-3 years 如果你有多项兴趣爱好,不要浪费接下来的两三年时间。.md -- Status: ✅ 成功摄入 -- Summary: Dan Koe 的个人发展指南,论证多重兴趣是 AI 时代超能力。核心论点:工业化专业化分工使人类沦为"愚蠢而依赖"的螺丝钉;第二次文艺复兴已经到来(AI + 互联网降低知识门槛)。个人成功三要素(自学 + 自利 + 自立)相互依存,自然涌现出通才型人才。品牌不是头像和简介,而是读者 3-6 个月积累的整体印象;内容是高质量创意的策展([[Idea-Museum]]);[[System-Economy]](系统经济)中,产品即系统,差异化来自个人实践。内容创作三步法:①建立创意博物馆 ②基于 [[Idea-Density]] = 表现力 × 兴奋度筛选 ③同一想法用 1000 种结构表达。 -- Concepts created: [[Generalist]], [[Self-Education]], [[Self-Interest]], [[Self-Sufficiency]], [[Second-Renaissance]], [[Idea-Density]], [[Idea-Museum]], [[Brand-Environment]], [[System-Economy]], [[Attention-Economy]] -- Entities touched: [[AdamSmith]](新建 Entity 页面)、[[LeonardoDaVinci]](新建 Entity 页面)、[[AynRand]](仅出现 1 次,未达创建阈值)、[[JordanPeterson]](仅出现 1 次,未达创建阈值) -- Source page: wiki/sources/if-you-have-multiple-interests-do-not-waste-the-next-2-3-years-如果你有多项兴趣爱好-不要浪费接下来的两三年时间.md -- Notes: source page 新建完成;index.md Sources 节已添加条目(置于首位);overview.md 第 632-640 行已有该 source 的综合摘要,内容一致无需修订;Entity 页面新建(AdamSmith.md、LeonardoDaVinci.md);Concept 页面批量新建(10 个);冲突检测:source 内置 Contradictions 节已记录两条内容冲突(vs. 专精化建议、vs. 做网红建议) - -## [2026-04-28] ingest | 我做了个 Skill:让 AI 帮你生成 Logo 和图标 -- Source file: Skills/我做了个 Skill:让 AI 帮你生成 Logo 和图标 -- Status: ✅ 成功摄入 -- Summary: Logo Generator Skill 完整解析——@op7418 开源的三步 Logo 生成 Skill(信息收集→6+ SVG 变体→高级展示图)。核心工作流:AI 生成可编辑 SVG Logo → AI 生成 12 种专业背景展示图 + 6 种 WebGL 动态背景。推荐 Gemini CLI 或 Claude Code 使用;强调"AI 生成基础 + 人工精修细节"的工作流理念;最终交付 SVG + 多尺寸 PNG + 展示图 + 交互式网页。开源地址:https://github.com/op7418/logo-generator-skill -- Concepts: 无需新建([[AI生成SVG设计]]/[[LogoGeneratorSkill]]/[[AI设计工作流]]/[[SVG-vs-图片生成]] 均仅出现 1 次,未达独立建页阈值,以内嵌 wikilink 引用存在) -- Entities: 无需新建([[@op7418]]/[[CodePilot]]/[[Nano Banana]]/[[logo-generator-skill]] 均仅出现 1 次,未达独立建页阈值,以内嵌 wikilink 引用存在) -- Source page: wiki/sources/我做了个-skill-让-ai-帮你生成-logo-和图标.md -## [2026-04-28] ingest | Building your Quartz -- Source file: Home Office/Building your Quartz.md -- Status: ✅ 成功摄入 -- Summary: Quartz 静态网站构建与部署完整指南。核心内容:本地预览模式(`npx quartz build --serve`)启动热重载服务器;自托管部署(通过 Nginx / Apache / Caddy 托管 `public/` 目录);关键技术点:Quartz 生成不含 `.html` 扩展名的链接,Web 服务器需配置 `try_files` 规则;RSS Feed 和 sitemap 功能依赖正确的 `baseUrl` 配置。 -- Concepts touched: [[Static Site Generator]](出现 1 次,未达复用阈值)、[[Obsidian Publishing]](出现 1 次,未达复用阈值)、[[try_files Directive]](出现 1 次,未达复用阈值) -- Entities touched: [[Quartz]](出现 1 次,未达创建阈值)、[[Nginx]](出现 1 次,未达创建阈值)、[[Apache]](出现 1 次,未达创建阈值)、[[Caddy]](出现 1 次,未达创建阈值) -- Source page: wiki/sources/building-your-quartz.md -- Notes: source page 新建完成;index.md Sources 节已有对应条目,无需额外添加;overview.md 无需修订;冲突检测:无 - -## [2026-04-28] ingest | Install WSL -- Source file: Home Office/Install WSL.md -- Status: ✅ 成功摄入 -- Summary: 微软官方 WSL 完整安装指南,`wsl --install` 一键安装,支持 Ubuntu/Debian/SUSE/Kali 等多发行版并行安装,`wsl.exe --set-default-version` 切换 WSL1/WSL2;离线场景通过 MSI + DISM 命令手动启用 Virtual Machine Platform;运行入口推荐 Windows Terminal(含多标签、自定义快捷键)。[[Install WSL]] 与 [[WSL2 启动与网络配置指南]] 互补——前者解决安装问题,后者解决网络配置问题。 -- Concepts created: 无新增(WSL2 已存在于 overview.md,WSL1/WSL安装命令/多发行版支持/离线安装 为 WSL 特定术语,无需独立页面) -- Entities created: 无新增(Microsoft/Ubuntu/PowerShell/Windows Terminal 已在 overview.md 中提及,未达独立创建阈值;[[WSL2]] 实体页面已存在且已引用 install-wsl) -- Source page: wiki/sources/install-wsl.md -- Notes: source page 新建完成;index.md 添加日期前缀 [2026-04-18];overview.md 无需修订(已有对应条目);WSL2 entity 已存在且 sources 列表已包含 install-wsl;冲突检测:无 - -## [2026-04-23] ingest | 实战笔记:本地部署 RSSHub 并获取 YouTube 订阅 -- Source file: Home Office/实战笔记:本地部署 RSSHub 并获取 YouTube 订阅.md -- Status: ✅ 成功摄入 -- Summary: 在 Ubuntu2(192.168.3.45)上通过 Docker Compose 部署 RSSHub,配合 YouTube Data API v3 和本地 HTTP 代理实现 YouTube 频道订阅 RSS 化。涵盖 API Key 申请(Google Cloud Console)、docker-compose.yml 配置(YOUTUBE_KEY/HTTP_PROXY/PORT/network_mode: host)、防火墙放通(ufw allow 1200/tcp)、RSS URL 格式(channel ID / user)以及验证方法。 -- Concepts created: [[Docker-Compose]](已存在,新增 Usage in Wiki 段落)、[[YouTube-Data-API-v3]](新建,包含 API Key 申请步骤与安全建议) -- Entities created: [[RSSHub]](新建,包含项目概述、配置要点、Usage in Wiki、Connections) -- Source page: wiki/sources/实战笔记-本地部署-rsshub-并获取-youtube-订阅.md -- Notes: index.md Sources 节已有该条目,本次添加日期前缀 [2026-04-23] 和一行摘要;index.md Entities 节新增 RSSHub 条目(字母序插入 RichardFeynman/rsvg-convert 之间);index.md Concepts 节 Docker-Compose 已存在无需添加,YouTube-Data-API-v3 已添加至 YoloMode/Zero-Friction 之间;overview.md Home Lab Infrastructure 节新增条目,定位为内容自动化管道层;冲突检测:与 [[how-to-get-the-rss-feed-for-any-youtube-channel]] 的第三方 vs 自建视角差异已记录于 source page Contradictions 节 - -## [2026-04-28] ingest | CTP Topic 51 Architecting with AWS Purpose-Built Databases -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-51-architecting-with-aws-purpose-built-databases.md -- Status: ✅ 成功摄入 -- Summary: Source page 已存在(2026-04-14 初版)。本次补全缺失的 Entity/Concept 引用页面(11 个 Entity + 3 个 Concept);index.md 条目补全日期前缀和一行摘要;overview.md 已有该来源摘要(line 337),内容一致无需修订;冲突检测:无实质冲突(属数据库品类技术域,与 RDS vs Aurora 视角互补)。 -- Concepts created: [[Purpose-Built-Databases]], [[DBA-Role-Evolution]], [[Multi-Database-Architecture]] -- Entities created: [[Amazon-DynamoDB]], [[Amazon-Aurora]], [[Amazon-RDS]], [[Amazon-ElastiCache]], [[Amazon-Neptune]], [[Amazon-Timestream]], [[Amazon-Keyspaces]], [[Amazon-DocumentDB]], [[Duolingo]], [[Netflix]], [[Peloton]] -- Source page: wiki/sources/ctp-topic-51-architecting-with-aws-purpose-built-databases.md -- Notes: 步骤3完成:Source page 已存在无需更新;步骤4完成:index.md 条目补全日期+摘要;步骤5完成:overview.md 内容一致无需修订;步骤6完成:11 个 Entity 页面全部新建;步骤7完成:3 个 Concept 页面全部新建;步骤8完成:无实质冲突(属数据库品类技术域,与 RDS vs Aurora 视角互补) - -## [2026-04-28] ingest | CTP Topic 72 Implementing an Enterprise DR Strategy Using AWS Backup -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-72-implementing-an-enterprise-dr-strategy-using-aws-backup.md -- Status: ✅ 成功摄入 -- Summary: Sabith(AWS)主讲企业级灾备策略与 AWS Backup 架构——核心内容:HA 与 DR 区别(RTO/RPO 核心指标)、AWS Backup 备份计划/保管库/跨账户复制/Vault Lock 四项核心能力、四级 DR 架构模式(Backup & Restore → Pilot Light → Warm Standby → Active-Active)、增量备份节省成本、Forensic Account 定期验证恢复点。 -- Concepts touched: [[RTO]](已存在,已更新引用)、[[RPO]](已存在,已更新引用)、[[High Availability]](已存在,已更新引用) -- Concepts created: [[AWS-Backup-Concepts]](新建:Vault Lock / 增量备份 / 跨账户备份 / Backup Plan / Backup Vault) -- Entities touched: [[AWS]](已存在,已更新引用)、[[SRE-Team]](已存在,已更新引用) -- Entities created: [[AWS-Backup]](新建:AWS 原生备份服务 Entity,整合 Topic 72/73/44 三个来源) -- Source page: wiki/sources/ctp-topic-72-implementing-an-enterprise-dr-strategy-using-aws-backup.md -- Notes: 步骤3完成:Source page 新建完成;步骤4完成:index.md 条目补全日期+摘要(line 294);步骤5完成:overview.md 已有该来源摘要(line 413),内容一致无需修订;步骤6完成:1 个 Entity 新建,2 个 Entity 更新;步骤7完成:1 个 Concept 新建,3 个 Concept 更新;步骤8完成:与 [[ctp-topic-44-aws-backup-in-micro-focus]] 视角差异已记录于 source page Contradictions 节 - -## [2026-04-28] ingest | CTP Topic 73 AWS Backup Implementation of the Cloud Transformation Programme -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-73-aws-backup-implementation-of-the-cloud-transformation-program.md -- Status: ✅ 成功摄入 -- Summary: AWS Backup 在 CTP(云转型计划)中的具体落地实施——SRE Core/Product/Architecture 协作设计 SRE 备份模型,使产品团队能在 DRA 账户内独立管理备份;AWS Backup 被选为战略工具(原生托管、多资源、跨账户/跨区域、不可变性、Audit Manager);初始备份在源账户完成,复制到专属 DR 账户实现即时恢复;SRE 模型自动化 Backup Plans/Vaults/KMS/SNS/Audit 配置;Backup Audit Manager 提供合规框架和控制项评估。 -- Concepts touched: [[DisasterRecovery]]/[[ImmutableBackup]]/[[LifecyclePolicy]]/[[PointInTimeRecovery]]/[[MultiAccountArchitecture]](均仅出现 1 次,保留于 Source Page 内嵌引用) -- Entities touched: [[AWS-Backup]](已存在,已更新 sources 字段)、[[SRE-Team]](已存在,已确认引用)、[[AWS-Backup-Audit-Manager]](本次新建,整合 Topic 72/73 两个来源) -- Entities created: [[DRA-Account]](新建:CTP 中每个生产工作负载的专属灾备账户)、[[Databunker]](新建:备份集中账户降级方案)、[[AWS-Backup-Audit-Manager]](新建:合规审计框架 Entity) -- Source page: wiki/sources/ctp-topic-73-aws-backup-implementation-of-the-cloud-transformation-program.md -- Notes: 步骤3完成:Source page 新建完成;步骤4完成:index.md 已有该条目(line 296),无需添加;步骤5完成:overview.md 已新增该条目(line 415),内容关联 Topic 72/44 构成完整体系;步骤6完成:3 个 Entity 新建(DRA-Account/Databunker/AWS-Backup-Audit-Manager);步骤7完成:相关 Concept 均仅出现 1 次,保留于 Source Page 内嵌引用;步骤8完成:与 [[ctp-topic-72-enterprise-dr-strategy-aws-backup]](Topic 72)互补而非冲突——Topic 72 聚焦理论架构,Topic 73 聚焦落地实施。 - - -## [2026-05-06] ingest | CTP Topic 10 AWS Landing Zone (LZ) Data Collection, Tagging Related Security -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-10-aws-landing-zone-lz-data-collection-tagging-related-security.md -- Status: ✅ 成功摄入 -- Summary: Steve Jarman 和 Pradeep 主讲 AWS Landing Zone 部署流程、数据收集策略与基于标签的云原生安全架构。核心:①Landing Zone 部署前需了解 BU 资产清单/IP 地址空间/数据敏感性;②DNS/Transit Gateway 等基础服务已通过 SRE 高度自动化;③基于标签的安全控制——用 AWS 标签替代传统 IP 防火墙规则;④SCP 强制执行标签规范——通过"显式拒绝"防止篡改标签绕过审计;⑤Checkpoint 防火墙有序层——按优先级执行地理屏蔽 → BU 隔离 → 产品隔离 → 环境隔离。 -- Concepts touched: [[AWS-Landing-Zones]](已存在)、[[Tagging-Methodology]](已存在)、[[SCP-Service-Control-Policies]](已存在)、[[OU-Organizational-Unit]](已存在)、[[Checkpoint-Firewall-Ordered-Layer]](已存在)、[[Transit-Gateway]](已存在)、[[SRE-Automation]](已存在) -- Entities touched: [[Steve-Jarman]](已存在)、[[Pradeep]](已存在)、[[Checkpoint]](已存在)、[[AWS-Organizations]](已存在) -- Source page: wiki/sources/ctp-topic-10-aws-landing-zone-lz-data-collection-tagging-related-security.md -- Notes: 步骤3完成:Source page 新建完成;步骤4完成:index.md 已有该条目(line 233 和 306),无需添加;步骤5完成:overview.md 已有该来源详细摘要(line 319),内容一致无需修订;步骤6-7完成:所有相关 Entity/Concept 页面均已存在,无需新建;步骤8完成:无冲突(与 [[ctp-topic-55-aws-firewall-manager]] 互补而非冲突——Checkpoint 作为网络边界防火墙,Firewall Manager 覆盖实例级别安全策略) - -## [2026-05-08] ingest | Learning Sessions: Standard AMI Updates 20231205 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/learning-sessions-standard-amis-updates-20231205-160324-meeting-recording-2.md -- Status: ✅ 成功摄入(re-ingest) -- Summary: AWS 标准 AMI 更新机制与生命周期管理——Jenkins 多分支流水线构建测试 AMI,验证周期从 3-4 天缩短至 60 分钟;支持 23 种 AMI 涵盖 Amazon Linux/CentOS/RHEL/Rocky Linux/SUSE/Ubuntu/Windows;CentOS 7/RHEL 7 将于 2024 年 6 月 EOL,由 Rocky Linux 替代;机器人框架自动化验证是该优化流程的核心;新 Landing Zone 使用 Secrets Manager 替代 Parameter Store,所有自动化迁移至云端初始化。 -- Concepts created: [[Amazon-Machine-Image]], [[Jenkins-Multi-Branch-Pipeline]], [[AWS-Inspector]], [[Robotic-Framework]], [[SSM-Patching]], [[GP3-EBS-Storage]], [[OS-End-of-Life]] -- Entities created: [[Rocky-Linux]], [[Jenkins]], [[QALIS-Agent]], [[Sentinel-1]], [[AWS-SSM]] -- Entities touched: none(均已存在并已引用) -- Source page: wiki/sources/learning-sessions-standard-amis-updates-20231205-160324-meeting-recording-2.md -- Notes: 步骤3完成:Source page 已存在(2023-12-05 初版),本次补加 last_updated: 2026-05-08,更新 Contradictions 节(补充与 ctp-topic-50/ctp-topic-26 的关系说明);步骤4完成:index.md 条目(第300行)补全日期前缀 [2026-05-08] 和一行摘要;步骤5完成:overview.md 修复 broken wikilink(learning-sessions-standard-amis-updates → learning-sessions-standard-amis-updates-20231205-160324-meeting-recording-2);步骤6-7完成:新建 5 个 Entity 页面(Rocky-Linux/Jenkins/QALIS-Agent/Sentinel-1/AWS-SSM)和 7 个 Concept 页面(Amazon-Machine-Image/Jenkins-Multi-Branch-Pipeline/AWS-Inspector/Robotic-Framework/SSM-Patching/GP3-EBS-Storage/OS-End-of-Life),并加入 index.md;步骤8完成:Contradictions 节更新,补充与 ctp-topic-50/ctp-topic-26 的关系说明(视角互补,无冲突);步骤9完成:log.md 补录本次摄入 - -## [2026-05-08] ingest | CTP Topic 40 SaaS Database Architecture On AWS Cloud -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/01_AWS-Landing-Zone/ctp-topic-40-saas-database-architecture-on-aws-cloud.md -- Status: ✅ 成功摄入 -- Summary: CTP 主题 40 —— AWS 云上 SaaS 数据库架构,介绍企业级数据库团队如何设计、管理和运维多租户 SaaS 数据库解决方案。核心内容包括:多数据库引擎支持(Oracle、Vertica、Postgres、DynamoDB、SQL Server、MongoDB、MySQL)、多可用区高可用架构、监控工具链、自动化运维。 -- Concepts touched: [[Multi-AZ-High-Availability]], [[Oracle-Data-Guard]], [[AWS-RDS]], [[Database-Migration]], [[Multi-Tenancy]] -- Entities touched: [[Micro-Focus]], [[AWS-Aurora]], [[AWS-RDS]], [[AWS-CloudWatch]], [[Oracle-GoldenGate]] -- Source page: wiki/sources/ctp-topic-40-saas-database-architecture-on-aws-cloud.md -- Notes: 步骤3完成:新建 source page(含完整 Summary/Key Claims/Key Quotes/Key Concepts/Key Entities/Connections/Contradictions);步骤4完成:index.md 条目补全日期前缀(2026-04-14)和一行摘要;步骤5完成:overview.md 已有该来源摘要(line 327),内容一致无需修订;步骤6-7完成:Key Concepts/Entities 均以 wikilink 形式存在([[Micro Focus]]/[[AWS Aurora]]/[[AWS RDS]]/[[AWS CloudWatch]]/[[Oracle Golden Gate]]/[[Multi-AZ High Availability]]/[[Oracle Data Guard]]/[[AWS RDS High Availability]]/[[Database Migration]]/[[Multi-Tenancy]]),相关 Entity/Concept 页面已存在(Micro Focus/AWS Aurora/AWS RDS/Oracle Golden Gate);步骤8完成:Contradictions 记录"无已知冲突";步骤9完成:log.md 追加本次摄入记录 - -## [2026-05-09] ingest | CTP Topic 36 SendGrid as an Email Service -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/08_Networking/ctp-topic-36-sendgrid-as-an-email-service.md -- Status: ✅ 成功摄入 -- Summary: Cloud Transformation Program(CTP)正式采用 SendGrid 作为标准邮件服务,替换存在安全风险的本地语义消息网关(Port 25 不安全)和每封限制 50 收件人的 SES。SendGrid 支持每封最多 1,000 收件人、全云兼容、TLS 端到端加密、双因素认证;支持计划覆盖每月 500 万封邮件;提供直连(需 TLS)和中继服务器两种架构;配置要求:software.microcopy.com 域名、smtp.sendgrid.net:587、启用 TLS、SPF/DKIM 必要;API 密钥每 180 天轮换,日志保留 7 天。同期 Yu-Yan 分享 Cyber Suite 加密标准更新(FIPS/Java/Golang/Node.js/OpenCel)。 -- Concepts touched: [[SendGrid]], [[SPF]], [[DKIM]], [[Landing Zone]], [[Cyber Suite]] -- Entities touched: [[SendGrid]], [[Twilio]], [[Rejoy Ganapati]], [[Rajiv]], [[Yu-Yan]], [[PSAC]] -- Source page: wiki/sources/ctp-topic-36-sendgrid-as-an-email-service.md -- Notes: 步骤3完成:新建 source page(含完整 Summary/Key Claims/Key Quotes/Key Concepts/Key Entities/Connections/Contradictions);步骤4完成:index.md 条目补全日期前缀(2026-04-14);步骤5完成:overview.md 已有该来源摘要(line 347),内容一致无需修订;步骤6-7完成:Rejoy Ganapati/Rajiv/Yu-Yan 均仅在本次 source 出现一次(<2次,不满足 Entity 创建条件),Cyber Suite 仅提及未展开(不满足 Concept 创建条件),PSAC 已在 ctp-topic-24 source 和 log.md 中出现,本次仅作引用不新建 Entity;SendGrid/Twilio 已有 Entity 页面,无需新建;步骤8完成:与 ctp-topic-12( SES SMTP terraform module)存在方案演进关系,记录于 Contradictions 节;步骤9完成:log.md 追加本次摄入记录 - -## [2026-04-24] ingest | CTP Topic 45 Automatic IP Address Allocation with IPAM -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/08_Networking/ctp-topic-45-automatic-ip-address-allocation-with-ipam.md -- Status: ✅ 成功摄入 -- Summary: IPAM 自动化替代 Excel 手工分配——Infoblox NIOS 作为核心 IPAM 引擎,通过声明式 YAML 配置文件驱动 VPC IP 地址自动供给。传统模式需业务单元→SRE→网络团队→电子表格→YAML 多步手工交接;新模式用户仅声明业务联系人、工程联系人和期望子网大小,NIOS 自动分配下一可用 IP 地址块。销毁 VPC 时自动从 IPAM Grid 清除条目,防止 IP 泄漏。核心理念:"We are not asking for IP address from the network team." 与 [[ctp-topic-61-workload-vpc-provision-with-ipam-automation]] 共同构成 IPAM 的"机制→应用"完整链路。 -- Concepts touched: [[IPAM]], [[Infoblox-NIOS]], [[Infoblox-Grid]], [[VPC-自动化供给]], [[CIDR-审批流程]], [[Availability-Zone-ID]], [[DNS-Anycast]], [[HybridDnsResolution]] -- Entities touched: [[Pushka]], [[Infoblox]], [[AWS-Landing-Zone]] -- Concepts created: [[IPAM]], [[Infoblox-NIOS]], [[Infoblox-Grid]], [[VPC-自动化供给]], [[CIDR-审批流程]], [[Availability-Zone-ID]] -- Entities created: [[Pushka]] -- Source page: wiki/sources/ctp-topic-45-automatic-ip-address-allocation-with-ipam.md -- Notes: 步骤3完成:新建 Source page(含完整 Summary/Key Claims/Key Quotes/Key Concepts/Key Entities/Connections/Contradictions);步骤4完成:index.md 条目已存在(line 253),补全一行摘要;步骤5完成:overview.md 已有该来源摘要(line 323),本次更新为更详细版本;步骤6完成:新建 [[Pushka]] Entity 页面(Principal SRE,IPAM 方案发起人);Infoblox/AWS-Landing-Zone 已在其他 source 中多次提及,本次引用不新建;步骤7完成:新建 [[IPAM]]/[[Infoblox-NIOS]]/[[Infoblox-Grid]]/[[VPC-自动化供给]]/[[CIDR-审批流程]]/[[Availability-Zone-ID]] 6个 Concept 页面;步骤8完成:Contradictions 记录无冲突,与 ctp-topic-61/ctp-topic-22/ctp-topic-31 均为互补/依赖关系;步骤9完成:log.md 追加本次摄入记录 - -## [2026-04-28] ingest | CTP Topic 61 Workload VPC provision with IPAM Automation -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/08_Networking/ctp-topic-61-workload-vpc-provision-with-ipam-automation.md -- Status: ✅ 成功摄入 -- Summary: Pushka(Principal SRE)主讲,基于 Infoblox IPAM 的 Workload VPC 自动化供给方案。核心内容:声明式 YAML 驱动 VPC 供给;Infoblox Grid 作为 IP 地址单一可信数据源;CIDR ≥ /22 自动审批,< /22 需网络团队理由审批;使用 AZ ID 而非 AZ Name 确保跨区域一致性;支持多 VPC 批量供给、邮件通知、非可路由 IP(如 10.2.0.0/16)。与 Topic 45(IPAM 核心机制)共同构成"机制→应用"完整链。 -- Concepts touched: [[IPAM]], [[Infoblox-Grid]], [[VPC-自动化供给]], [[CIDR-审批流程]], [[Availability-Zone-ID]] -- Entities touched: [[Pushka]] -- Concepts created: (无新建 — 相关 Concept 页面均已存在) -- Entities created: (无新建 — Pushka Entity 已存在) -- Source page: wiki/sources/ctp-topic-61-workload-vpc-provision-with-ipam-automation.md -- Notes: 步骤3完成:新建 Source page(CTP Topic 61 Workload VPC Provision with IPAM Automation);步骤4完成:index.md 第253行条目已存在,补充日期戳和一行摘要;步骤5完成:overview.md 第325行已存在相关条目,内容一致,无需更新;步骤6完成:IPAM、Infoblox-Grid、VPC-自动化供给、Pushka Entity 页面均已存在,无需新建;步骤7完成:Source page Key Concepts 节已覆盖全部关键概念;步骤8完成:无冲突;步骤9完成:log.md 追加本次记录 - -## [2026-05-07] ingest | CTP Topic 18 Wide Area Networking in AWS Cloud (补充缺失 Entity/Concept) -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/08_Networking/ctp-topic-18-wide-area-networking-in-aws-cloud.md -- Status: ✅ 成功摄入(re-ingest:补充缺失实体/概念页面) -- Summary: AWS 云广域网架构——Christian Deckelman 主讲。全球 APJ/EMEA/AMS 三区域 TGW 星型拓扑,区域 Hub Full Mesh 互联;静态路由 DR 痛点;Silver Peak SD-WAN Overlay 演进路径;Pulse VPN → Prisma Access (SASE) 远程访问优化。 -- Concepts touched: [[AWS-Transit-Gateway-TGW]], [[Hub-and-Spoke]], [[SD-WAN]], [[Overlay-Network]], [[Static-Routing]], [[Prisma-Access]], [[TGW-Peering]], [[Transit-Gateway]] -- Entities touched: [[ChristianDeckelman]], [[AWS]], [[SilverPeak]], [[PaloAltoNetworks]], [[MicroFocus]], [[Pulse-VPN]] -- Concepts created: [[Hub-and-Spoke]], [[SD-WAN]], [[Overlay-Network]], [[Static-Routing]], [[Prisma-Access]], [[TGW-Peering]] -- Entities created: [[ChristianDeckelman]], [[SilverPeak]], [[PaloAltoNetworks]], [[MicroFocus]] -- Source page: wiki/sources/ctp-topic-18-wide-area-networking-in-aws-cloud.md -- Notes: 步骤3完成:Source page 已存在(2026-04-14 初版),内容完整无需更新;步骤4完成:index.md 第256行条目已存在,无需更新;步骤5完成:overview.md 第289行已有该来源摘要,内容一致无需修订;步骤6完成:新建4个 Entity 页面(ChristianDeckelman、SilverPeak、PaloAltoNetworks、MicroFocus),补充 Pulse-VPN Entity 演进方向引用,更新 AWS Entity 来源和 Transit-Gateway Concept TGW-Peering 关系;步骤7完成:新建6个 Concept 页面(Hub-and-Spoke、SD-WAN、Overlay-Network、Static-Routing、Prisma-Access、TGW-Peering),Source page Key Concepts 节已覆盖全部;步骤8完成:无冲突;步骤9完成:log.md 追加本次记录 - -## [2026-05-08] ingest | CTP Topic 31 Network Segregation and Secure Access to the New AWS Landing Zones (re-ingest) -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/08_Networking/ctp-topic-31-network-segregation-and-secure-access-to-the-new-aws-landing-zones.md -- Status: ✅ 成功摄入(re-ingest:补充缺失 Entity/Concept 页面) -- Summary: AWS Landing Zone 网络隔离与安全远程访问方案。核心:①网络隔离——Checkpoint 防火墙 SPI Default Deny 阻断 On-prem/VPN 用户直连 AWS 生产区;②安全访问——AWS SSM 替代 VPN,IAM Role 假设 + SSM Agent 实现浏览器/CLI 远程访问,双因素认证。SD-WAN 落地前过渡方案;长期目标 IaC 化 + Break-glass 应急访问。 -- Concepts touched: [[Network-Segmentation]], [[Zero-Trust-Access]], [[SD-WAN]] -- Entities touched: [[AWS-Landing-Zone]], [[AWS-SSM]], [[Checkpoint-Firewall]] -- Concepts created: [[Zero-Trust-Access]] -- Entities created: [[AWS-Landing-Zone]], [[Checkpoint-Firewall]] -- Source page: wiki/sources/ctp-topic-31-network-segregation-and-secure-access-to-the-new-aws-landing-zones.md -- Notes: - - 步骤3完成:Source page 已存在(2026-04-25 初版),重写以匹配最新 Source Page Format(清理未对齐的 wikilinks) - - 步骤4完成:index.md 第256行条目已存在,补全日期前缀和一行摘要 - - 步骤5完成:overview.md 第295行已有该来源摘要,内容完整无需修订 - - 步骤6完成:新建2个 Entity 页面(AWS-Landing-Zone、Checkpoint-Firewall);更新 SD-WAN.md 新增 CTP Topic 31 Relationship 节;AWS-SSM 已存在且来源已引用本次 source - - 步骤7完成:新建1个 Concept 页面(Zero-Trust-Access);更新 Network-Segmentation.md 新增 ctp-topic-39 关联;SD-WAN 已存在且来源已引用本次 source - - 步骤8完成:无冲突——与 VPN 接入方案为替代关系(已记录于 Contradictions 节),与 SD-WAN 为时间维度互补关系 - - 步骤9完成:log.md 追加本次记录 - -## [2026-04-28] ingest | CTP Topic 30 Managing Change -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/ctp-topic-30-managing-change.md -- Status: ✅ 成功摄入(re-ingest:补充缺失 Entity/Concept 页面) -- Summary: 云转型项目中的变更管理流程,SRE 团队在构建/上线支持/BAU 三阶段的协作模式。区分标准变更/正常变更/紧急变更三类流程,引入 IaC+CI/CD 自动化。属 [[Change-Management]] 在企业云迁移中的核心实践。 -- Concepts touched: [[SRE]], [[Standard-Change]], [[Normal-Change]], [[Emergency-Change]], [[CAPA]], [[SLO]], [[SLR]], [[Early-Live-Support]], [[Self-Healing]] -- Entities touched: [[Brendan-Starnig]], [[SMACs]], [[Vinaya]] -- Concepts created: [[SRE]], [[SLR]] -- Entities created: [[Vinaya]] -- Source page: wiki/sources/ctp-topic-30-managing-change.md -- Notes: 步骤3完成:Source page 已存在(2026-04-14 初版),内容完整无需修订;步骤4完成:index.md 条目已存在(第247行),本次补充 Vinaya/SRE/SLR 三个缺失条目的位置;步骤5完成:overview.md 已有该来源摘要(CTP Topic 30 属 CTP 课程体系),内容一致无需修订;步骤6完成:新建2个 Entity 页面(Vinaya),SRE-Team/SMACs/Brendan-Starnig 均已存在;步骤7完成:新建2个 Concept 页面(SRE、SLR),Standard-Change/Normal-Change/Emergency-Change/CAPA/Early-Live-Support/Self-Healing 均已存在;步骤8完成:无内容冲突;步骤9完成:log.md 追加本次 re-ingest 记录 - -## [2026-04-29] ingest | Public Cloud Learning Sessions (OpenText) - Evolving from DR to Recovery Assurance - 20240723 (re-ingest) -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/public-cloud-learning-sessions-opentext-evolving-from-dr-to-recovery-assurance-2.md -- Status: ✅ 成功摄入(re-ingest:补充缺失 Entity/Concept 页面,完善交叉引用) -- Summary: OpenText DR 向 Recovery Assurance 演进框架——Jim Rose 主讲,涵盖 CrowdStrike 事件警示、RTO/RPO 合同差异、DR 测试瓶颈(被动/手动/按客户时间表)、多云复杂性(AWS/GCP/Azure)、混合架构挑战,以及 Design/Software/Build/Environments 四位框架转型路径。SRE + 可观测性工程是核心驱动力。 -- Entities identified: OpenText, CrowdStrike -- Concepts identified: RTO, RPO, SRE, Observability, Disaster-Recovery, Self-Healing, Customer-Zero, Recovery-Assurance -- Concepts created: [[Observability]], [[Disaster-Recovery]], [[Self-Healing]], [[Customer-Zero]], [[Recovery-Assurance]] -- Entities created: [[OpenText]] -- Concepts updated: [[RTO]], [[RPO]], [[SRE]](补充新来源引用,更新 last_updated) -- Entities updated: [[AWS]](补充新来源引用) -- Source page: wiki/sources/public-cloud-learning-sessions-opentext-evolving-from-dr-to-recovery-assurance-2.md -- Notes: - - 步骤3完成:Source page 已存在(2026-04-14 初版),本次补充5个新连接(Disaster-Recovery/Recovery-Assurance/Observability/Self-Healing/Customer-Zero),移除 Jim Rose 条目(OpenText 提及10+次 → 创建 Entity;CrowdStrike/Jim Rose 各仅1次 → 不单独建页) - - 步骤4完成:index.md 条目已存在(第239行),本次新增5个 Concepts 条目(Customer-Zero/Disaster-Recovery/Self-Healing/Recovery-Assurance)和1个 Entities 条目(OpenText) - - 步骤5完成:overview.md 已有该来源摘要(无需修订) - - 步骤6完成:新建 [[OpenText]] Entity 页面(OpenText 在10个来源中被提及);CrowdStrike/Jim Rose 各仅1次提及,未达 ≥2次阈值,跳过 - - 步骤7完成:新建5个 Concept 页面(Observability/Disaster-Recovery/Self-Healing/Customer-Zero/Recovery-Assurance),更新 RTO/RPO/SRE Sources 节补充新来源引用 - - 步骤8完成:无冲突(与 ctp-topic-72/ctp-topic-44 互补,记录于 Source Page Contradictions 节) - - 步骤9完成:log.md 追加本次 re-ingest 记录 - -## [2026-05-09] re-ingest | CTP Topic 20 Program demand process flow and PoC onboarding(补充缺失 Entity/Concept 页面) -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/ctp-topic-20-program-demand-process-flow-and-poc-onboarding.md -- Status: ✅ re-ingest 完成(补充缺失 Entity/Concept 页面,完善 Wiki 链接完整性) -- Summary: 云转型计划的程序需求流程与 POC 入职流程——Sergio 和 Damian 主讲。核心内容:需求来源(业务案例/战略优先级/产品路线图)、Gate Process 三阶段审批(Gate 0/1/3)、POC 目的(验证架构可行性+熟悉 Gruntwork Landing Zone)、新环境强调 IaC(Terraform/Terragrunt)自动化、PCG 团队职责、成功标准前置定义。 -- Entities identified: Sergio, Damian, PCG-Team -- Concepts identified: Program-Demand-Process, Proof-of-Concept, Gate-Process, Solution-Design -- Entities created: [[Sergio]], [[Damian]], [[PCG-Team]] -- Concepts created: [[Program-Demand-Process]], [[Proof-of-Concept]], [[Gate-Process]], [[Solution-Design]] -- Concepts updated: [[Infrastructure-as-Code]](补充新来源引用)、[[Landing-Zone-Architecture]](补充 Gruntwork Landing Zone 与 POC 关联) -- Entities updated: [[Gruntwork]](补充新来源引用)、[[Terraform]](补充新来源引用)、[[Terragrunt]](补充新来源引用) -- Source page: wiki/sources/ctp-topic-20-program-demand-process-flow-and-poc-onboarding.md -- Notes: - - 步骤1完成:Source 文档已完整读取 - - 步骤2完成:Wiki 上下文(index.md + overview.md)已读取 - - 步骤3完成:Source page 已存在(2026-04-14 初版),无需重复创建 - - 步骤4完成:index.md 条目已存在(第249行),无需更新 - - 步骤5完成:overview.md 中已有 CTP 相关内容,本次 re-ingest 不修改 overview - - 步骤6完成:新建3个 Entity 页面(Sergio.md、Damian.md、PCGTeam.md) - - 步骤7完成:新建4个 Concept 页面(Program-Demand-Process.md、Proof-of-Concept.md、Gate-Process.md、Solution-Design.md) - - 步骤8完成:无新冲突(与 ctp-topic-4 的 Agile vs Gate Process 视角差异已于 Source Page 中记录) - - 步骤9完成:log.md 追加本次 re-ingest 记录 - -## [2026-04-29] ingest | Public Cloud Learning Sessions - OpenText Tagging Standard v2 - 20250429 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/10_OpenText-Series/public-cloud-learning-sessions-opentext-tagging-standard-v2-20250429-170111-meet.md -- Status: ✅ 成功摄入 -- Summary: OpenText 云标签标准 V2 版本——Martin Rosler 演讲,扩展至 Kubernetes 对象和容器镜像标签规范。OT_ 前缀(云资源)、app.opentext.com 前缀(K8s 标签)、com.opentext.image 前缀(容器镜像)。三大驱动:省钱、降险、提效。覆盖 3,500 个云账户、48 种 Landing Zone 类型。 -- Concepts touched: [[Resource-Tagging]], [[FinOps]], [[AWS-Tagging-Standards]], [[Kubernetes-Tagging]], [[Container-Image-Tagging]], [[Terraform]], [[Multi-Cloud-Governance]] -- Entities touched: [[Phenops-Team]], [[OpenText]], [[Martin Rosler]] -- Concepts created: [[Kubernetes-Tagging]], [[Container-Image-Tagging]] -- Entities created: [[Martin Rosler]] -- Source page: wiki/sources/public-cloud-learning-sessions-opentext-tagging-standard-v2-20250429-170111-meet.md -- Notes: 步骤3完成:新建 source page;步骤4完成:index.md 条目已存在(第242行),无需更新;步骤5完成:overview.md 中已有标签相关内容,本次无需修订;步骤6完成:新建1个 Entity 页面(Martin Rosler.md),更新 Phenops-Team.md 的 sources 和 last_updated;步骤7完成:新建2个 Concept 页面(Kubernetes-Tagging.md、Container-Image-Tagging.md);步骤8完成:无冲突(V2 在 V1 基础上扩展,保持向前兼容);步骤9完成:log.md 追加记录 - -## [2026-04-28] ingest | CTP Topic 70 EKS deployment using IAC -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/04_EKS/ctp-topic-70-eks-deployment-using-iac.md -- Status: ✅ 成功摄入 -- Summary: 通过 IaC(Terraform/Service Catalog)部署 Amazon EKS 集群的完整方法论——容器与 VM 对比、EKS 核心特性(完全托管控制平面/零停机滚动更新/IAM RBAC)、两种部署路径、自定义 EMI 网络解决 CIDR 限制、Cluster Autoscaler 自动扩缩容、监控栈(CloudWatch Agent + FluentBit + Container Insights + Grafana)。属 [[Amazon-EKS]] 部署方法的完整入口。 -- Concepts touched: [[Kubernetes]], [[Amazon-EKS]], [[Infrastructure-as-Code]], [[Terraform]], [[Cluster-Autoscaler]], [[OpenTelemetry]], [[Grafana]] -- Concepts created: [[Karpenter]], [[AWS-Service-Catalog]], [[ALB-Ingress-Controller]], [[EMI-Elastic-Network-Interface]], [[CloudWatch-Agent]], [[FluentBit]], [[Container-Insights]] -- Entities touched: [[AWS]], [[HashiCorp]] -- Entities created: 无(AWS.md、HashiCorp.md 均已存在) -- Source page: wiki/sources/ctp-topic-70-eks-deployment-using-iac.md -- Notes: 步骤3完成:新建 source page;步骤4完成:index.md 条目已存在(第290行),无需更新;步骤5完成:overview.md 条目已存在(第281行),内容一致无需修订;步骤6完成:无新增 Entity(AWS.md、HashiCorp.md 均已存在);步骤7完成:新建7个 Concept 页面(Karpenter、AWS-Service-Catalog、ALB-Ingress-Controller、EMI-Elastic-Network-Interface、CloudWatch-Agent、FluentBit、Container-Insights);步骤8完成:无冲突;步骤9完成:log.md 追加记录 - -## [2026-04-28] ingest | CTP Topic 39 Implementing EKS in the AWS Lab Landing Zone -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/04_EKS/ctp-topic-39-implementing-eks-in-the-aws-lab-landing-zone.md -- Status: ✅ 成功摄入 -- Summary: 在受限 AWS Lab Landing Zone 网络环境中实施 EKS 的技术方案——Spencer 和 Guy 分享。核心问题:Micro Focus 网络 IP 地址池不足,无法满足 Octane(IP 密集型 SaaS 应用)的 EKS Pod 需求。解决方案:创建独立私有子网(非主 VPC 子网)、启用 EKS 模块自定义网络标志、Pod 规范设置 `hostNetwork: true`、Terraform/Terragrunt 模块封装。Atlantis 当前不支持 EKS 部署,需通过 Jenkins + Terragrunt 模块替代。属 [[Amazon-EKS]] 在受限网络场景下的技术实践。 -- Concepts touched: [[Amazon-EKS]], [[AWS-Landing-Zone]], [[EKS-Custom-Networking]], [[Host-Network-Mode]], [[Terraform-Terragrunt]], [[Kubernetes-Pod-Networking]] -- Concepts created: [[EKS-Custom-Networking]], [[Host-Network-Mode]] -- Entities touched: [[AWS]], [[Amazon-EKS]], [[Octane]], [[Jenkins]] -- Entities created: [[Amazon-EKS]], [[Octane]] -- Source page: wiki/sources/ctp-topic-39-implementing-eks-in-the-aws-lab-landing-zone.md -- Notes: 步骤3完成:新建 source page;步骤4完成:index.md 条目已存在(第296行),无需更新;步骤5完成:overview.md 条目已存在(第279行),内容一致无需修订;步骤6完成:新建2个 Entity 页面(Amazon-EKS.md、Octane.md);步骤7完成:新建2个 Concept 页面(EKS-Custom-Networking.md、Host-Network-Mode.md);步骤8完成:无冲突(与 ctp-topic-70/ctp-topic-59 互补而非矛盾);步骤9完成:log.md 追加记录 - - -## [2026-04-28] ingest | Public Cloud Learning Sessions - EKS Optimization Part 2 of 3 - Running Containers with Bottlerocket OS -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/04_EKS/public-cloud-learning-sessions-eks-optimization-part-2-of-3-running-containers-w.md -- Status: ✅ 成功摄入 -- Summary: Bottlerocket OS(火箭瓶)深度解析——AWS 专为容器工作负载优化的最小化开源 Linux 发行版。核心设计理念:最小化(去除包管理器/Shell/SSH,仅打包必要内核组件)、安全更新(分区镜像 A/B 切换确保原子性)、安全加固(dm-verity 根文件系统加密验证 + SE Linux enforcing 模式 + 根文件系统默认只读)。Variant 机制通过平台+架构+工作负载组件组合在构建时定制功能,支持自管理节点组、托管节点组和 Carpenter 节点池三种 EKS 集成方式。与 Part 1(Karpenter)和 Part 3(EKS Auto Mode)构成 EKS 优化完整链路。 -- Concepts touched: [[Immutable-Root-Filesystem]], [[dm-verity]], [[SE-Linux-Enforcing]], [[Partition-Updates]], [[CIS-Benchmark]], [[Karpenter]] -- Entities touched: [[Bottlerocket]], [[Amazon-EKS]], [[AWS]] -- Concepts created: 无(均已存在) -- Entities created: 无(均已存在) -- Source page: wiki/sources/public-cloud-learning-sessions-eks-optimization-part-2-of-3-running-containers-w.md -- Notes: 步骤3完成:source page 已存在,日期更新为 2026-04-14;步骤4完成:index.md 条目日期更新;步骤5完成:overview.md 条目已存在(第271行),内容一致无需修订;步骤6完成:Entity 页面均已存在(Bottlerocket.md、Amazon-EKS.md、AWS.md);步骤7完成:Concept 页面均已存在(Immutable-Root-Filesystem.md、dm-verity.md、SE-Linux-Enforcing.md、Partition-Updates.md、CIS-Benchmark.md、Karpenter.md);步骤8完成:无冲突(source page 已记录与相关页面的关系);步骤9完成:log.md 追加记录 - -## [2026-04-28] update | CTP Topic 64 - 补充缺失 Entity 和 Concept 页面 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/04_EKS/ctp-topic-64-scaling-out-with-amazon-eks.md -- Status: ✅ 补充完成 -- Summary: 发现 Source Page ctp-topic-64-scaling-out-with-amazon-eks 引用了多个尚未建立独立页面的 Entity 和 Concept,补充创建以完善知识图谱 -- Entities created: [[Suravpul]](AWS 高级解决方案架构师,EKS 可靠性/扩缩容/可观测性专题讲师) -- Concepts created: [[Horizontal Pod Autoscaler (HPA)]], [[KEDA]], [[Cluster Autoscaler]], [[IPv6-in-EKS]], [[CoreDNS-Scaling]], [[Metrics-Server]], [[API-Server-Priority-and-Fairness]] -- Concepts existing: [[Karpenter]](已存在于 wiki/concepts/Karpenter.md) -- Source page: wiki/sources/ctp-topic-64-scaling-out-with-amazon-eks.md -- Notes: Suravpul Entity 补充创建后,该 Entity 页面覆盖 CTP Topic 59/64/67 三个关联 Source;HPA Concept 已在 ctp-topic-59 Source page 中引用,本次更新同步建立独立页面;Cluster Autoscaler Concept 已在 ctp-topic-70 Source page 中引用,本次同步更新 sources 字段 - -## [2026-04-29] ingest | Public Cloud Learning Sessions - OpenText GIS Security Policies - 20241015 -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/07_Security/public-cloud-learning-sessions-opentext-gis-security-policies-20241015-160257-me.md -- Status: ✅ 成功摄入 -- Summary: OpenText 全球信息安全团队(GIS)安全策略全景——Mike & Ed 主持。内容涵盖:GIS 分层组织架构(运营、合规、治理、隐私);ISO 27001 姿态框架(2022版,11个新增控制方面);FedRAMP 等多项行业/政府认证;年度第三方测试+红队演练;月处理 2250 亿条日志,350 案例/月;GISP 最高纲领性政策季度审查;安全意识培训(月度通讯+钓鱼演练);BrightCloud 威胁情报工具。 -- Concepts touched: [[Global Information Security Policy (GISP)]], [[ISO-27001]], [[Security Awareness Training]], [[Third Party Penetration Testing]], [[Threat Intelligence]], [[FedRAMP]] -- Entities touched: [[Mike]], [[Ed]], [[OpenText]], [[BrightCloud]] -- Concepts created: [[Global Information Security Policy (GISP)]], [[ISO-27001]], [[Security Awareness Training]], [[Third Party Penetration Testing]], [[Threat Intelligence]], [[FedRAMP]] -- Entities created: [[Mike]], [[Ed]], [[BrightCloud]] -- Source page: wiki/sources/public-cloud-learning-sessions-opentext-gis-security-policies-20241015-160257-me.md -- Notes: 步骤3完成:source page 已存在,内容确认/更新;步骤4完成:index.md 条目已存在(第274行),无需更新;步骤5完成:overview.md 无需修订(OpenText 安全专题系列,overview 已覆盖);步骤6完成:新建3个 Entity 页面(Mike.md、Ed.md、BrightCloud.md);步骤7完成:新建6个 Concept 页面(GISP、ISO-27001、Security Awareness Training、Third Party Penetration Testing、Threat Intelligence、FedRAMP);步骤8完成:与 CTP-Topic-10 和 CTP-Topic-52 互补而非冲突;步骤9完成:log.md 追加记录 - -## [2026-05-11] ingest | CTP Topic 37 Secrets Certificates Management -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/07_Security/ctp-topic-37-secrets-certificates-management.md -- Status: ✅ 成功摄入(re-ingest:规范化 Source 页面引用 + 补充缺失 Entity/Concept) -- Summary: CCLE 团队主导的密钥与证书管理解决方案选型——评估 AWS Secrets Manager、HashiCorp Vault、CYBERARK Micro Focus PAM 三款产品,30天试点选定 AWS Secrets Manager。实施阶段从 Control Tower + CI/CD 流程清除明文密码。属 [[SecretsManagement]] 选型评估原始记录,与 [[ctp-topic-62-aws-secrets-manager]] 构成"评估→实施"完整链路。 -- Concepts touched: [[SecretsManagement]], [[SecretRotation]], [[Privileged-Access-Management]], [[CI/CD-Secrets]], [[HashiCorp]] -- Entities touched: [[MicroFocus]], [[CCLE]], [[AWS]], [[HashiCorp]], [[CyberArk]] -- Concepts created: [[Privileged-Access-Management]], [[CI/CD-Secrets]] -- Entities created: [[CCLE]], [[CyberArk]] -- Source page: wiki/sources/ctp-topic-37-secrets-certificates-management.md -- Notes: 步骤3完成:规范化 Source 页面 Key Concepts/Key Entities 引用格式,修正 HashiCorp-Vault(应属 Entity 而非 Concept);步骤4完成:index.md 条目已存在(第279行),无需更新;步骤5完成:overview.md 补充 Topic 37 独立条目(与 Topic 62 构成"评估→实施"两阶段链路);步骤6完成:新建2个 Entity 页面(CCLE.md、CYBERArk.md);步骤7完成:新建2个 Concept 页面(Privileged-Access-Management.md、CI/CD-Secrets.md);步骤8完成:与 [[ctp-topic-62-aws-secrets-manager]] 存在视角差异但非冲突(前者快速试点 vs 后者深度实施),已在 Contradictions 节记录;步骤9完成:log.md 追加记录 - -## [2026-05-13] ingest | Learning Sessions ECS Deployment using IAC - 20230808(重新摄入) -- Source file: Cloud & DevOps/Public-Cloud-Learning-Sessions/03_Terraform/learning-sessions-ecs-deployment-using-iac-20230808-183322-meeting-recording.md -- Status: ✅ 成功摄入 -- Summary: JP 和 Raja M 主讲,CTP/SRE 团队通过 Terraform IaC 实现 ECS 容器化应用自动化部署——基于 Gruntwork 仓库构建 ECS 模块,支持 Docker 容器/EC2 部署;核心功能:自动扩缩容(Auto Scaling)、自动故障恢复(Auto Healing)、金丝雀部署(Canary Deployment);通过 Listener 方式集中管理(避免各产品团队重复下载 Gruntwork 代码);前置条件:VPC、ELB 安全组、EFS 卷挂载;配置通过 YAML/JSON 传递;集成 CloudWatch/Splunk/Grafana/Prometheus。ECS 作为 AWS 原生技术与 AWS 服务深度集成,适合 AWS 优先策略。 -- Concepts updated: [[ECS]](追加来源引用) -- Entities updated: [[SRE-Team]](追加来源引用,说明 ECS Terraform 模块设计与维护职责) -- Source page: wiki/sources/learning-sessions-ecs-deployment-using-iac-20230808-183322-meeting-recording.md -- Notes: 本次为重新规范化摄入(该来源已于 2026-05-05 初次摄入,source page 格式已符合当前规范)。步骤3完成:source page 已存在,验证内容符合规范(含 frontmatter、Summary、Key Claims、Key Quotes、Key Concepts、Key Entities、Connections、Contradictions 八节);步骤4完成:index.md 第299行条目已存在,补充日期前缀(2023-08-08)和中文摘要;步骤5完成:overview.md 第255行已有该来源详细综合摘要,内容一致无需修订;步骤6完成:[[ECS]] 追加来源引用,[[SRE-Team]] 追加来源引用(ECS Terraform 模块设计与维护);无需新建 Entity 页面(JP 和 Raja M 各出现 1 次,不足建页阈值,以 wikilink 形式记录于 Source page);步骤7完成:[[Canary-Deployment]] 已有来源引用,无需更新;步骤8完成:ECS vs EKS 冲突已在 Contradictions 节记录,无需新增;步骤9完成:log.md 追加记录 +- Summary: 战略代笔合作人 Agent,将创始人/专家的语音笔记和碎片想法转化为结构化第一人称商业思想领导力书籍章节。核心五步工作流:压力测试 brief → 定义章节意图 → 第一人称起草 → 战略修订 → 交付修订包。核心原则:声音保护(禁用 AI 腔/泛化话术)、品类定位优先于"胜任地解释思想"、版本标签强制、编辑缺口必须显式暴露。 +- Concepts created: ThoughtLeadershipBook, Ghostwriting, NarrativeArchitecture, VoiceProtection, ChapterBlueprint, EditorialWorkflow, FirstPersonBusinessWriting +- Entities: 无新 Entity(创始人和读者为泛化角色,不满足≥2次或关键影响创建条件) +- Source page: wiki/sources/marketing-book-co-author.md +- Notes: 步骤1完成:读取原始文档(110行);步骤2完成:读取 index.md(第468行已有条目)和 overview.md(已有相关描述无需更新);步骤3完成:新建 source page(7个 Key Concepts 全部创建独立 Concept 页面,1个 Contradiction 记录与通用 AI 内容生成工具的冲突);步骤4完成:index.md Sources 节第468行已有条目无需更新,Concepts 节新增7个条目;步骤5完成:overview.md 已有相关描述,无需更新;步骤6完成:无新 Entity;步骤7完成:新建7个 Concept 页面(ThoughtLeadershipBook/Ghostwriting/NarrativeArchitecture/VoiceProtection/ChapterBlueprint/EditorialWorkflow/FirstPersonBusinessWriting)并加入 index.md;步骤8完成:与通用 AI 内容生成工具的内容风格冲突已记录在 source 页;步骤9完成:log.md 追加记录。 diff --git a/wiki/sources/marketing-book-co-author.md b/wiki/sources/marketing-book-co-author.md index 77f95da6..dd46ba70 100644 --- a/wiki/sources/marketing-book-co-author.md +++ b/wiki/sources/marketing-book-co-author.md @@ -1,50 +1,51 @@ --- title: "Book Co-Author" type: source -tags: [ghostwriting, content, thought-leadership, marketing] -date: 2026-04-25 +tags: ["agent", "ghostwriting", "content-creation", "thought-leadership"] +date: 2026-04-30 --- ## Source File -- [[raw/Agent/agency-agents/marketing/marketing-book-co-author.md]] +- [[Agent/agency-agents/marketing/marketing-book-co-author.md]] ## Summary(用中文描述) -- **核心主题**:AI 代笔专家——将创始人、专家和运营者的语音笔记、碎片想法和定位转化为结构化的第一人称思想领导力书籍章节 -- **问题域**:思想领导力书籍写作的效率与质量问题——如何让非专业写作者也能产出高质量、可引用、令人印象深刻的思想领导力著作 -- **方法/机制**:五阶段写作工作流(Pressure-Test the Brief → Define Chapter Intent → Draft in First-Person Voice → Strategic Revision Pass → Deliver Revision Package)+ 版本化管理 + 编辑 Gap 可视化 -- **结论/价值**:通过 AI 协作写作工具,将思想领导力书籍从「几年写不完」压缩为「多轮快速迭代」,同时保持作者声音的独特性和定位的差异化 +- 核心主题:战略代笔合作人(Strategic Ghostwriting Co-Author),将创始人、专家和操盘手的语音笔记、碎片化想法转化为结构化的第一人称商业思想领导力书籍章节。 +- 问题域:AI 辅助商业写作中如何保持作者个人声音、叙事连贯性和思想差异化。 +- 方法/机制:通过五步工作流(压力测试 brief → 定义章节意图 → 第一人称起草 → 战略修订 → 交付修订包),在每次迭代中保留作者个性、强化论证质量、明确编辑缺口。 +- 结论/价值:书籍必须强化品类定位,而非仅"胜任地解释思想";每次修订轮次以明确决策结束,而非开放性不确定性。 ## Key Claims(用中文描述) -- **Ghostwriter Agent** + 作者本人 → 通过结构化版本化工作流 → 产出「作者本人认可其真实性」的第一人称书籍章节 -- **版本化管理强制要求**(如 `Chapter 1 - Version 2 - ready for approval`)→ 保证每轮迭代清晰可追溯,消除无版本混乱 -- **编辑 Gap 可视化**(Editorial Gaps Must Be Visible)→ 缺失的证据、不确定的编年或薄弱逻辑必须直接在笔记中标注,而非隐藏在优美散文里 -- **「作者必须保持可见」原则** → 草稿应像一个有真实赌注的真实人物,而非匿名内容团队 -- **「一句话战略定位」原则** → 书籍必须强化品类定位,而非仅仅「解释想法」 +- AI 代笔人必须保护并保留作者的声音个性,而非用通用 AI 文风替代。 +- 书籍必须服务于品类定位(category positioning),而非仅传达思想——平庸的思想领导力内容无助于作者建立权威。 +- 每个章节必须有一条清晰的主线(one clear line of thought),多目标章节必须拆分或删除。 +- 具体场景/决策/错误胜于抽象建议——用场景、决策、紧张感、教训代替通用商业话术。 +- 版本标签是强制要求,每个实质性草稿必须标注明确版本号(如 `Chapter 1 - Version 2 - ready for approval`)。 +- 编辑缺口必须显式暴露,而非隐藏在抛光后的文风下;缺失的证据、时间线或弱逻辑应在笔记中直接指出。 ## Key Quotes -> "The draft should sound like a credible person with real stakes, not an anonymous content team." — Ghostwriter Agent 核心原则 -> "Every substantial claim should be grounded in source notes, explicit assumptions, or validated references." — 主张追踪原则 -> "Missing proof, uncertain chronology, or weak logic should be called out directly in notes, not hidden inside polished prose." — 编辑 Gap 可见性原则 -> "The book must strengthen category positioning, not just explain ideas competently." — 战略定位原则 +> "The draft should sound like a credible person with real stakes, not an anonymous content team." — 作者声音保护原则 +> "The book must strengthen category positioning, not just explain ideas competently." — 书籍价值核心标准 +> "Return the versioned draft, editorial notes, and a focused feedback loop. Propose the exact next revision task instead of vague 'let me know' endings." — 交付标准 ## Key Concepts -- [[Thought-Leadership]]:该 Agent 的最终目标是帮助作者通过书籍建立思想领导力权威 -- **Ghostwriting(代笔写作)**:将他人思想转化为「他们自己的声音」的高阶写作技能 -- **First-Person Voice(第一人称声音)**:保持作者个性、节奏、信念和战略信息的写作方式 -- **Narrative Architecture(叙事架构)**:跨章节维持「红线」,使书籍读起来像连贯论证而非孤立的随笔集合 -- **Editorial Gap Visibility(编辑 Gap 可见性)**:主动标注缺失内容,而非用优美散文掩盖不确定性 +- [[Thought Leadership Book]]:思想领导力书籍 — 以第一人称视角建立品类权威的书籍形式,区别于教科书或方法论文献。 +- [[Ghostwriting]]:代笔写作 — 在保留委托方声音和思想的前提下,由他人完成实际写作工作的内容生产模式。 +- [[Narrative Architecture]]:叙事架构 — 维护全书跨章节的红色主线(red thread),使书籍呈现连贯论证而非独立散文堆砌。 +- [[Voice Protection]]:声音保护 — 在 AI 辅助写作过程中,刻意保留作者个性、节奏、信念和战略信息的原则与技术。 +- [[Editorial Workflow]]:编辑工作流 — 版本化管理、编辑笔记显式化、明确反馈回路的迭代修订过程。 +- [[Chapter Blueprint]]:章节蓝图 — 在起草正文前,先定义章节承诺(chapter promise)、读者收益和战略功能的结构化规划工具。 +- [[First-Person Business Writing]]:第一人称商业写作 — 以作者个人经历、决策和教训为叙事主轴的商业内容形式,强调真实性和个人立场。 ## Key Entities -- Book Author(书籍作者):创始人、专家或运营者——有真实经验和见解,但缺乏写作时间或技能 -- Ghostwriter Agent(代笔 Agent):战略性的 AI 协作写作者,而非简单的内容生成器 +- 创始人/专家(Author):书籍的思想来源和品类定位所有者,通过语音笔记和 brief 提供原材料,最终在书中以第一人称呈现。 +- 读者(Target Audience):希望从行业专家处学习实战经验、建立认知的商业受众。 ## Connections -- [[Thought-Leadership]] ← 目标 ← Book Co-Author Agent(书籍是思想领导力的终极载体) -- [[workflow-book-chapter]] ← 相关 ← Book Co-Author(两者均涉及书籍章节写作,但 Book Co-Author 是专用 Agent,workflow 是通用工作流示例) -- [[design-visual-storyteller]] ← 协同 ← Book Co-Author(叙事设计原则共享,Visual Storyteller 提供视觉叙事,Book Co-Author 提供文字叙事) +- [[Workflow Book Chapter Development]] ← relates_to ← [[Thought Leadership Book]] +- [[Content Creator]] ← extends ← [[Ghostwriting]](Book Co-Author 是 Content Creator 的专业化垂直场景) ## Contradictions -- 与 [[design-visual-storyteller]] 的潜在张力: - - **冲突点**:Visual Storyteller 专注「视觉叙事」与「多媒体内容创作」,Book Co-Author 专注「文字叙事」与「第一人称书籍写作」 - - **当前观点**:两者是不同的叙事媒介——视觉叙事适合短视频/社交媒体,书籍是深度、权威、长远的思想领导力载体 - - **对方观点**:两者可以协同——书籍核心观点通过视觉叙事工具(视频/信息图表)二次分发,扩大影响力 +- 与通用 AI 内容生成工具冲突: + - 冲突点:AI 生成内容强调流畅、通用、无个性;而 Book Co-Author 的核心原则是"声音保护"和"禁用空泛励志话术"。 + - 当前观点:质量优先于数量;宁可显式暴露编辑缺口,也不隐藏于抛光文风之下。 + - 对方观点:生成式 AI 追求输出效率和文风连贯性。