选项
首页首页 Skill 文档 wiki-onboarding

wiki-onboarding

microsoft/skills microsoft/skills

在 onboarding/ 文件夹中生成四份针对不同受众定制的入职指南——贡献者、资深工程师、高管和产品经理。当用户需要某代码库的入职文档时,可使用此功能。

...展开全部
0
更新时间 2026-09-11

维基入门指南生成器

onboarding/文件夹中生成四份针对不同受众定制的入职文档,每份文档都能为不同的利益相关者提供其所需的精准信息。

源代码仓库解析(必须首先完成)

在生成任何指南之前,您必须确定源代码仓库的上下文:

  1. 检查 git remote:运行git remote get-url origin以检测是否存在远程仓库
  2. 询问用户“这是一个仅限本地的仓库,还是您有源仓库的 URL(例如 GitHub、Azure DevOps)?”
    • 若提供了远程 URL → 将其存储为REPO_URL,并使用链接引用[文件:行号](REPO_URL/blob/BRANCH/file#Lline)
    • 仅本地 → 使用本地引用(文件路径:行号)
  3. 确定默认分支:运行git rev-parse --abbrev-ref HEAD
  4. 在源代码仓库上下文解决之前,请勿继续

何时启用

  • 用户请求入门文档或入门指南
  • 用户执行/deep-wiki:onboard命令
  • 用户希望帮助新团队成员理解代码库

输出结构

生成一个包含以下文件的onboarding/文件夹:

onboarding/
├── index.md                    # 入职中心 — 包含指向全部 4 份指南的链接及受众说明
├── contributor-guide.md        # 面向新贡献者(假设具备 Python 或 JS 背景)
├── staff-engineer-guide.md     # 面向高级/首席工程师
├── executive-guide.md          # 面向副总裁/总监级工程领导者
└── product-manager-guide.md    # 面向产品经理和非工程背景的相关方

index.md— 入职指南中心

包含以下内容的登录页面:

  • 一段式的项目概述
  • 指南选择表
指南 目标受众 您将学到什么 时长
贡献者指南 具有 Python/JS 经验的新贡献者 环境搭建、首次提交拉取请求、代码库规范 约30分钟
资深工程师指南 资深/首席工程师 架构、设计决策、系统边界 约45分钟
高管指南 工程副总裁/总监 能力、风险、团队架构、投资论点 约20分钟
产品经理指南 产品经理 功能、用户旅程、限制条件、数据模型 约20分钟

语言检测

扫描代码库中的构建文件,以确定代码示例的主要语言:

  • package.json/tsconfig.json→ TypeScript/JavaScript
  • *.csproj/*.sln→ C# / .NET
  • Cargo.toml→ Rust
  • pyproject.toml/setup.py/requirements.txt→ Python
  • go.mod→ Go
  • pom.xml/build.gradle→ Java

指南 1:贡献者指南

文件onboarding/contributor-guide.md 受众:加入项目的工程师。假设读者精通 Python 或 JavaScript,并具备基本的软件工程经验。 篇幅:1000–2500 行。渐进式——每个部分都在前一部分的基础上展开。

必备章节

第一部分:基础知识(如果仓库使用 Python 或 JS,则跳过)

  1. 针对 Python/JS 工程师的 {主要语言}— 语法对比表、异步模型、集合、类型系统、包管理。提供具体的并列代码示例,而非抽象描述。
  2. {主要框架} 核心要点— 与等效的 Python/JS 框架(如 FastAPI、Express)进行对比。请求处理流程、路由、依赖注入、配置。

第二部分:本代码库 3.项目功能简介— 2-3 句的简短介绍 4.项目结构— 带注释的目录树(内容分布及其原因)。包含图表形式的 TB架构概述。 5.核心概念— 通过代码示例解释领域特定术语。使用erDiagram展示数据模型。 6.请求生命周期序列图(带自动编号),追踪典型请求的端到端流程。 7.关键模式— “若要添加 X,请遵循此模式”的模板,附带真实代码

第三部分:高效开发 8.先决条件与环境配置— 表格:工具、版本、安装命令。分步指南,并附各步骤的预期输出。 9.首个任务— 添加简单功能的端到端演示 10.开发工作流— 分支策略、提交规范、PR 流程。 使用流程图。 11.运行测试— 所有测试、单个文件、单个测试、代码覆盖率命令 12.调试指南— 常见问题表:症状、原因、解决方法 13.常见陷阱— 每位新贡献者都会犯的错误及如何避免

附录

  • 术语表(40+个术语)
  • 关键文件参考——表格:路径、用途、重要性、来源
  • 快速参考卡— 常用命令和模式的速查表

规则

  • 所有代码示例均采用检测到的主要语言编写
  • 每个命令都必须可复制粘贴,并附有预期输出
  • 至少包含 5 个 Mermaid 图(架构图、ER 图、序列图、流程图、状态图)
  • 工作流图请使用 Mermaid(深色模式配色)——在每张图后添加 每个图后添加注释块
  • 所有主张均需以实际代码为依据——采用带链接的引用格式

指南 2:资深工程师指南

文件onboarding/staff-engineer-guide.md 受众:需要了解每项决策背后“原因”的资深/首席工程师。具备深厚的系统经验,可能不熟悉本仓库的编程语言。 篇幅:800–1200行。内容紧凑、观点鲜明、侧重架构。

必备章节

  1. 执行摘要— 用一段精炼的文字概括系统是什么。明确其负责范围与委托范围。
  2. 核心架构洞见—— 唯一最重要的概念。需包含与该仓库语言不同的伪代码。
  3. 系统架构— 完整的 Mermaid图 TB图。突出显示系统的“核心”。
  4. 领域模型— 核心实体的 MermaiderDiagram。数据不变量表:实体、不变量、执行者、来源。
  5. 关键抽象与接口— 展示承重抽象的类图
  6. 请求生命周期序列图(带自动编号),展示从请求进入到响应的典型流程。
  7. 状态转换— 针对具有明确生命周期状态的实体绘制的stateDiagram-v2
  8. 决策日志— 表格:决策、考虑过的备选方案、理由、来源。
  9. 依赖关系依据— 表格:依赖关系、目的、替代对象、来源。
  10. 数据流与状态— 数据在系统中的流动方式。存储方式对比表。
  11. 故障模式与错误处理— 错误传播路径的流程图
  12. 性能特征— 瓶颈、扩展极限、热点路径。
  13. 安全模型— 身份验证、授权、信任边界、数据敏感性。
  14. 测试策略— 测试内容、未测试内容、测试理念。
  15. 已知技术债务— 表格:问题、风险等级、受影响文件、来源。
  16. 深入研究方向— 源文件的推荐阅读顺序、维基章节链接。

规则

  • 使用其他语言的伪代码来解释概念
  • 使用对比表来阐释不熟悉的概念(例如,Task =Awaitable[T]
  • 内容充实的正文配合表格,而非浅显的项目符号列表
  • 每项论点均需附有引用链接
  • 至少包含5个Mermaid图(架构图、ER图、类图、序列图、状态图、流程图)
  • 每个图后附带 注释块
  • 积极使用表格——决策、依赖关系、技术债务均应以表格形式呈现,且表格中必须包含“来源”列
  • 重点阐述决策的“原因”,而不仅仅是“存在什么”

指南 3:高管指南

文件onboarding/executive-guide.md 受众:工程副总裁/总监。需要了解能力概览、风险评估和投资背景——而非代码层面的细节。 篇幅:400–800行。具有战略性、简洁明了、以决策为导向。

必备章节

  1. 系统概述— 用2-3句话说明其功能、用户群体及业务价值
  2. 能力图谱— 表格:能力、状态(已实现/部分实现/计划中)、成熟度、依赖关系。系统当前能做什么和不能做什么。
  3. 架构一览— 高层级的 MermaidLR图。服务、数据存储、外部集成 — 切勿包含内部代码细节。重点在于部署单元和团队边界。
  4. 团队拓扑— 哪个团队/人员负责哪些组件。表格:组件、负责人、关键性、业务关键性系数。
  5. 技术投资论据——为何选择这些技术。表格:技术、目的、考虑过的替代方案、风险等级。
  6. 风险评估— 表格:风险、发生概率、影响、缓解措施、负责人。涵盖可靠性、安全性、可扩展性、合规性。
  7. 成本与扩展模型— 成本如何随使用量变化。瓶颈在哪里。何时需要进行下一次扩展投资。
  8. 依赖关系图图表形式展示关键外部依赖关系。表格:依赖项、类型(服务/库/平台)、不可用时的风险。
  9. 关键指标与可观测性— 测量内容、现有仪表盘、告警覆盖范围。表格:指标、当前值、目标值、来源。
  10. 路线图对齐— 将工程工作流与业务优先级进行映射。当前进行中的工作、计划中的工作以及受阻的工作。
  11. 技术债务摘要— 影响业务的前 5 大债务项。表格:问题、业务影响、修复工作量、优先级。
  12. 建议— 针对下一季度的3-5条可执行建议,按影响程度排序。

规则

  • 禁止包含代码片段— 本指南面向工程领导者,而非开发人员
  • 图表应展示服务/团队层面的内容,而非类/函数层面的内容
  • 每项论点均需证据支持— 引用维基页面、架构文档或源文件
  • 至少包含 3 张 Mermaid 图表(架构概览、依赖关系图、能力/路线图)
  • 每项结构化发现均需配以表格——目标读者更习惯阅读表格,而非长篇大论
  • 使用商业语言——将技术概念转化为具体影响(可靠性、速度、成本、风险)

指南 4:产品经理指南

文件onboarding/product-manager-guide.md 受众:产品经理和非工程背景的相关方。需要了解系统能做什么、有哪些可能性以及界限在哪里——而不是了解它是如何构建的。 篇幅:400–800 行。以用户为中心,聚焦功能,兼顾限制条件。

必备章节

  1. 系统功能——用面向用户的语言(无专业术语)撰写2–3 句的简短介绍
  2. 用户旅程图采用Mermaid绘制的 LR 图旅程图,展示用户在系统中的主要流程
  3. 功能能力图— 表格:功能、状态(已上线/测试版/计划中/不可行)、用户可见行为、限制条件。全面展示已实现和未实现功能。
  4. 数据模型(产品视角)——简化的 MermaiderDiagram,展示用户交互的实体。请用业务术语解释(例如,“一个项目包含多个文档”,而非“外键关系”)。
  5. 配置与功能开关— 表格:开关/配置项、控制对象、默认值、可修改人员。无需工程开发即可启用或禁用的功能。
  6. API 功能— 支持哪些集成。表格:功能、端点/方法、身份验证、速率限制。面向集成合作伙伴而非开发人员编写。
  7. 性能与服务水平协议 (SLA)— 响应时间、吞吐量限制、可用性目标。表格:操作、预期延迟、吞吐量限制、当前 SLA。
  8. 已知限制与约束— 如实列出系统无法实现或表现不佳的功能。表格:限制、对用户的影响、解决方法、计划修复方案。
  9. 数据与隐私— 收集哪些数据、存储位置、保留政策、合规状态。表格:数据类型、存储位置、保留期限、合规性。
  10. 术语表— 用通俗易懂的语言(而非工程术语)解释领域术语
  11. 常见问题解答— 产品经理常会提出的10余个常见问题,并给出简明解答

规则

  • 零工程术语——杜绝“中间件”、“依赖注入”、“ORM”等术语。使用通俗语言。
  • 以用户为中心——从用户体验的角度描述一切,而非代码的工作原理
  • 至少包含3张Mermaid图(用户旅程、数据模型、功能图/能力概览)
  • 所有结构化结论均需以表格呈现——产品经理习惯浏览表格,而非长篇大论
  • 若必须提及技术概念,请用一句话解释(例如:“功能开关——允许我们在不部署代码的情况下开启或关闭功能的切换开关”)
  • 每项论点均需有据可依——引用维基页面或源文件以供核查

Mermaid 图表规则(所有指南)

所有图表必须使用深色模式配色:

  • 节点填充色:#2d333b,边框色:#6d5dfc,文字色:#e6edf3
  • 图背景:#161b22,边框:#30363d
  • 连线:#8b949e
  • 若使用行内样式指令,请使用深色填充并设置`color:#e6edf3`
  • 请勿在
    (请使用
    或换行符代替)

验证

生成每份指南后,请验证:

  • 提及的所有文件路径在代码库中确实存在
  • 所有类/方法名称均准确无误(非虚构)
  • Mermaid 图表能正常渲染(无语法错误)
  • 代码围栏外不应出现裸露的 HTML 样式标签(如List 等泛型)——应使用反引号包裹
  • 每份指南都应适合其目标受众——高管/项目经理指南中不应包含代码
在 GitHub 上查看
---
name: wiki-onboarding
description: Generates four audience-tailored onboarding guides in an onboarding/ folder — Contributor, Staff Engineer, Executive, and Product Manager. Use when the user wants onboarding documentation for a codebase.
license: MIT
---

# Wiki Onboarding Guide Generator

Generate four audience-tailored onboarding documents in an `onboarding/` folder, each giving a different stakeholder exactly the understanding they need.

## Source Repository Resolution (MUST DO FIRST)

Before generating any guides, you MUST determine the source repository context:

1. **Check for git remote**: Run `git remote get-url origin` to detect if a remote exists
2. **Ask the user**: _"Is this a local-only repository, or do you have a source repository URL (e.g., GitHub, Azure DevOps)?"_
   - Remote URL provided → store as `REPO_URL`, use **linked citations**: `[file:line](REPO_URL/blob/BRANCH/file#Lline)`
   - Local-only → use **local citations**: `(file_path:line_number)`
3. **Determine default branch**: Run `git rev-parse --abbrev-ref HEAD`
4. **Do NOT proceed** until source repo context is resolved

## When to Activate

- User asks for onboarding docs or getting-started guides
- User runs `/deep-wiki:onboard` command
- User wants to help new team members understand a codebase

## Output Structure

Generate an `onboarding/` folder with these files:

```
onboarding/
├── index.md                    # Onboarding hub — links to all 4 guides with audience descriptions
├── contributor-guide.md        # For new contributors (assumes Python or JS background)
├── staff-engineer-guide.md     # For staff/principal engineers
├── executive-guide.md          # For VP/director-level engineering leaders
└── product-manager-guide.md    # For product managers and non-engineering stakeholders
```

### `index.md` — Onboarding Hub

A landing page with:
- **One-paragraph project summary**
- **Guide selector table**:

| Guide | Audience | What You'll Learn | Time |
|-------|----------|-------------------|------|
| [Contributor Guide](./contributor-guide.md) | New contributors with Python/JS experience | Setup, first PR, codebase patterns | ~30 min |
| [Staff Engineer Guide](./staff-engineer-guide.md) | Staff/principal engineers | Architecture, design decisions, system boundaries | ~45 min |
| [Executive Guide](./executive-guide.md) | VP/directors of engineering | Capabilities, risks, team topology, investment thesis | ~20 min |
| [Product Manager Guide](./product-manager-guide.md) | Product managers | Features, user journeys, constraints, data model | ~20 min |

## Language Detection

Scan the repository for build files to determine the primary language for code examples:
- `package.json` / `tsconfig.json` → TypeScript/JavaScript
- `*.csproj` / `*.sln` → C# / .NET
- `Cargo.toml` → Rust
- `pyproject.toml` / `setup.py` / `requirements.txt` → Python
- `go.mod` → Go
- `pom.xml` / `build.gradle` → Java

---

## Guide 1: Contributor Guide

**File**: `onboarding/contributor-guide.md`
**Audience**: Engineers joining the project. Assumes proficiency in Python or JavaScript and general software engineering experience.
**Length**: 1000–2500 lines. Progressive — each section builds on the last.

### Required Sections

**Part I: Foundations** (skip if repo uses Python or JS)
1. **{Primary Language} for Python/JS Engineers** — Syntax comparison tables, async model, collections, type system, package management. Concrete code side-by-side, NOT abstract descriptions.
2. **{Primary Framework} Essentials** — Compare to equivalent Python/JS frameworks (e.g., FastAPI, Express). Request pipeline, routing, DI, config.

**Part II: This Codebase**
3. **What This Project Does** — 2-3 sentence elevator pitch
4. **Project Structure** — Annotated directory tree (what lives where and why). Include `graph TB` architecture overview.
5. **Core Concepts** — Domain-specific terminology explained with code examples. Use `erDiagram` for data model.
6. **Request Lifecycle** — `sequenceDiagram` (with `autonumber`) tracing a typical request end-to-end.
7. **Key Patterns** — "If you want to add X, follow this pattern" templates with real code

**Part III: Getting Productive**
8. **Prerequisites & Setup** — Table: Tool, Version, Install Command. Step-by-step with expected output at each step.
9. **Your First Task** — End-to-end walkthrough of adding a simple feature
10. **Development Workflow** — Branch strategy, commit conventions, PR process. Use `flowchart` diagram.
11. **Running Tests** — All tests, single file, single test, coverage commands
12. **Debugging Guide** — Common issues table: Symptom, Cause, Fix
13. **Common Pitfalls** — Mistakes every new contributor makes and how to avoid them

**Appendices**
- **Glossary** (40+ terms)
- **Key File Reference** — Table: Path, Purpose, Why It Matters, Source
- **Quick Reference Card** — Cheat sheet of most-used commands and patterns

### Rules
- All code examples in the detected primary language
- Every command must be copy-pasteable with expected output
- **Minimum 5 Mermaid diagrams** (architecture, ER, sequence, flowchart, state)
- Use Mermaid for workflow diagrams (dark-mode colors) — add `<!-- Sources: ... -->` comment block after each
- Ground all claims in actual code — cite using linked format

---

## Guide 2: Staff Engineer Guide

**File**: `onboarding/staff-engineer-guide.md`
**Audience**: Staff/principal engineers who need the "why" behind every decision. Deep systems experience, may not know this repo's language.
**Length**: 800–1200 lines. Dense, opinionated, architectural.

### Required Sections

1. **Executive Summary** — What the system is in one dense paragraph. What it owns vs delegates.
2. **The Core Architectural Insight** — The SINGLE most important concept. Include pseudocode in a DIFFERENT language from the repo.
3. **System Architecture** — Full Mermaid `graph TB` diagram. Call out the "heart" of the system.
4. **Domain Model** — Mermaid `erDiagram` of core entities. Data invariants table: Entity, Invariant, Enforced By, Source.
5. **Key Abstractions & Interfaces** — `classDiagram` showing load-bearing abstractions.
6. **Request Lifecycle** — `sequenceDiagram` (with `autonumber`) showing typical request from entry to response.
7. **State Transitions** — `stateDiagram-v2` for entities with meaningful lifecycle states.
8. **Decision Log** — Table: Decision, Alternatives Considered, Rationale, Source.
9. **Dependency Rationale** — Table: Dependency, Purpose, What It Replaced, Source.
10. **Data Flow & State** — How data moves through the system. Storage comparison table.
11. **Failure Modes & Error Handling** — `flowchart` for error propagation paths.
12. **Performance Characteristics** — Bottlenecks, scaling limits, hot paths.
13. **Security Model** — Auth, authorization, trust boundaries, data sensitivity.
14. **Testing Strategy** — What's tested, what isn't, testing philosophy.
15. **Known Technical Debt** — Table: Issue, Risk Level, Affected Files, Source.
16. **Where to Go Deep** — Recommended reading order of source files, links to wiki sections.

### Rules
- Use **pseudocode in a different language** to explain concepts
- Use **comparison tables** to map unfamiliar concepts (e.g., `Task<T>` = `Awaitable[T]`)
- Dense prose with tables, NOT shallow bullet lists
- Every claim backed by linked citation
- **Minimum 5 Mermaid diagrams** (architecture, ER, class, sequence, state, flowchart)
- Each diagram followed by `<!-- Sources: ... -->` comment block
- **Use tables aggressively** — decisions, dependencies, debt should ALL be tables with Source columns
- Focus on WHY decisions were made, not just WHAT exists

---

## Guide 3: Executive Guide

**File**: `onboarding/executive-guide.md`
**Audience**: VP/director of engineering. Needs capability overview, risk assessment, and investment context — NOT code-level details.
**Length**: 400–800 lines. Strategic, concise, decision-oriented.

### Required Sections

1. **System Overview** — What it does, who uses it, business value in 2-3 sentences
2. **Capability Map** — Table: Capability, Status (Built/Partial/Planned), Maturity, Dependencies. What the system can and cannot do today.
3. **Architecture at a Glance** — High-level Mermaid `graph LR` diagram. Services, data stores, external integrations — NO internal code details. Focus on deployment units and team boundaries.
4. **Team Topology** — Which team/person owns which components. Table: Component, Owner, Criticality, Bus Factor.
5. **Technology Investment Thesis** — Why these technologies were chosen. Table: Technology, Purpose, Alternatives Considered, Risk Level.
6. **Risk Assessment** — Table: Risk, Likelihood, Impact, Mitigation, Owner. Cover reliability, security, scalability, compliance.
7. **Cost & Scaling Model** — How costs scale with usage. What the bottlenecks are. When the next scaling investment is needed.
8. **Dependency Map** — `graph TB` showing critical external dependencies. Table: Dependency, Type (Service/Library/Platform), Risk if Unavailable.
9. **Key Metrics & Observability** — What's measured, what dashboards exist, alerting coverage. Table: Metric, Current Value, Target, Source.
10. **Roadmap Alignment** — Engineering workstreams mapped to business priorities. What's in progress, what's planned, what's blocked.
11. **Technical Debt Summary** — Top 5 debt items with business impact. Table: Issue, Business Impact, Effort to Fix, Priority.
12. **Recommendations** — 3-5 actionable recommendations for the next quarter, prioritized by impact.

### Rules
- **NO code snippets** — this guide is for engineering leaders, not coders
- **Diagrams at service/team level**, not class/function level
- **Every claim backed by evidence** — cite wiki sections, architecture docs, or source files
- **Minimum 3 Mermaid diagrams** (architecture overview, dependency map, capability/roadmap)
- Tables for every structured finding — this audience reads tables, not prose
- **Business language** — translate technical concepts into impact (reliability, velocity, cost, risk)

---

## Guide 4: Product Manager Guide

**File**: `onboarding/product-manager-guide.md`
**Audience**: Product managers and non-engineering stakeholders. Needs to understand what the system does, what's possible, and where the boundaries are — NOT how it's built.
**Length**: 400–800 lines. User-centric, feature-focused, constraint-aware.

### Required Sections

1. **What This System Does** — 2-3 sentence elevator pitch in user-facing language (no jargon)
2. **User Journey Map** — Mermaid `graph LR` or `journey` diagram showing primary user flows through the system
3. **Feature Capability Map** — Table: Feature, Status (Live/Beta/Planned/Not Possible), User-Facing Behavior, Limitations. Comprehensive map of what's built and what's not.
4. **Data Model (Product View)** — Simplified Mermaid `erDiagram` showing entities users interact with. Explain in business terms (e.g., "A Project has many Documents" not "FK relationship").
5. **Configuration & Feature Flags** — Table: Flag/Config, What It Controls, Default, Who Can Change It. What can be toggled without engineering work.
6. **API Capabilities** — What integrations are possible. Table: Capability, Endpoint/Method, Authentication, Rate Limits. Written for integration partners, not developers.
7. **Performance & SLAs** — Response times, throughput limits, availability targets. Table: Operation, Expected Latency, Throughput Limit, Current SLA.
8. **Known Limitations & Constraints** — Honest list of what the system can't do or does poorly. Table: Limitation, User Impact, Workaround, Planned Fix.
9. **Data & Privacy** — What data is collected, where it's stored, retention policies, compliance status. Table: Data Type, Storage Location, Retention, Compliance.
10. **Glossary** — Domain terms explained in plain language (not engineering jargon)
11. **FAQ** — 10+ common questions a PM would ask, answered concisely

### Rules
- **ZERO engineering jargon** — no "middleware", "dependency injection", "ORM". Use plain language.
- **User-centric framing** — describe everything in terms of what users experience, not how code works
- **Minimum 3 Mermaid diagrams** (user journey, data model, feature map/capability overview)
- Tables for every structured finding — PMs scan tables, not prose
- If a technical concept must be mentioned, explain it in one sentence (e.g., "Feature flags — toggles that let us turn features on/off without deploying code")
- Every claim grounded in evidence — cite wiki sections or source files for verification

---

## Mermaid Diagram Rules (ALL guides)

ALL diagrams must use dark-mode colors:
- Node fills: `#2d333b`, borders: `#6d5dfc`, text: `#e6edf3`
- Subgraph backgrounds: `#161b22`, borders: `#30363d`
- Lines: `#8b949e`
- If using inline `style` directives, use dark fills with `,color:#e6edf3`
- Do NOT use `<br/>` in Mermaid labels (use `<br>` or line breaks)

## Validation

After generating each guide, verify:
- All file paths mentioned actually exist in the repo
- All class/method names are accurate (not hallucinated)
- Mermaid diagrams render (no syntax errors)
- No bare HTML-like tags (generics like `List<T>`) outside code fences — wrap in backticks
- Each guide is appropriate for its audience — no code in Executive/PM guides

所有文件

0 个文件

安装 wiki-onboarding

下载技能文件并将其解压到 .claude/skills/ 目录中。

下载ZIP

克隆仓库并复制技能文件到您的项目中。

git clone https://github.com/microsoft/skills/tree/main/.github/plugins/deep-wiki/skills/wiki-onboarding # Copy SKILL.md to your .claude/skills/ directory

复制 复制
快速设置: 将技能文件夹复制到 .claude/skills/ Claude 会自动检测并使用该技能

相关技能

golang-dependency-injection
更新时间 2026-06-29
nuxthub
更新时间 2026-08-23
tc-tracker
更新时间 2026-08-27
code-quality
更新时间 2026-08-22
OR