tractorjuice/arc-kit
GitHub: tractorjuice/arc-kit
企业架构治理与供应商采购工具包,将分散的架构文档转化为系统化、AI 辅助的可追溯流程。
Stars: 574 | Forks: 87
# ArcKit - 企业架构治理工具包
[](https://github.com/tractorjuice/arc-kit/stargazers)
[](https://github.com/tractorjuice/arc-kit/network/members)
[](LICENSE)
[](https://github.com/tractorjuice/arc-kit/releases)
[](https://github.com/tractorjuice/arc-kit/issues)
[](https://deepwiki.com/tractorjuice/arc-kit)

**通过结构化治理、供应商采购和设计审查流程,构建更优的企业架构。**
ArcKit 是企业架构师的工具包,它将架构治理从分散的文档转化为系统化、AI 辅助的工作流程:
- 🏛️ 建立并强制执行架构原则
- 👥 分析利益相关者的驱动因素、目标与结果
- 🛡️ 风险管理(HM Treasury Orange Book)
- 💼 商业案例合理性证明(HM Treasury Green Book SOBC)
- 📋 创建全面的需求文档
- 🗄️ 数据建模(ERD)、GDPR 合规与数据治理
- 🔬 技术研究(自建与采购分析,Web 搜索驱动)
- ☁️ 使用 Microsoft Learn MCP 进行 Azure 特定研究,获取权威文档
- 🗺️ 使用 Wardley 映射进行战略规划
- 📊 生成可视化架构图(Mermaid)
- 🤝 管理供应商 RFP 与选择流程
- ✅ 执行正式设计审查(HLD/DLD)
- 🔧 ServiceNow 服务管理设计
- 🔗 维护需求可追溯性
- 📎 外部文档的引文可追溯性(内联 `[DOC-CN]` 标记及来源引用)
## 快速开始
### 安装
**Claude Code**(首选体验)— 安装 ArcKit 插件(需要 **v2.1.112+**):
```
/plugin marketplace add tractorjuice/arc-kit
```
然后从“发现”标签页安装。Claude Code 是 ArcKit 的**主要开发平台**,提供最完整的体验:所有 68 个命令、10 个自主研究代理、5 个自动化钩子(会话初始化、项目上下文注入、文件名强制、输出验证、影响扫描)、内置的 MCP 服务器(AWS 知识库、Microsoft Learn、Google 开发者知识库、govreposcrape)以及通过市场自动更新。请参阅下方的 [为什么选择 Claude Code?](#为什么-claude-code) 了解详情。
**Gemini CLI** — 安装 ArcKit 扩展:
```
gemini extensions install https://github.com/tractorjuice/arckit-gemini
```
零配置:所有 68 个命令、模板、脚本以及内置的 MCP 服务器(AWS 知识库、Microsoft Learn)。通过 `gemini extensions update arckit` 更新。
**GitHub Copilot**(VS Code)— 安装 ArcKit CLI 并生成提示文件:
```
# Install with pip
pip install git+https://github.com/tractorjuice/arc-kit.git
# Scaffold a project with Copilot prompt files
arckit init my-project --ai copilot
```
创建 `.github/prompts/arckit-*.prompt.md`(68 个提示文件)、`.github/agents/arckit-*.agent.md`(10 个自定义代理)以及 `.github/copilot-instructions.md`(仓库级上下文)。在 Copilot 聊天中调用命令,例如 `/arckit-requirements`、`/arckit-stakeholders` 等。
**Codex CLI** — 安装 ArcKit CLI:
```
# Install with pip
pip install git+https://github.com/tractorjuice/arc-kit.git
# Or with uv
uv tool install arckit-cli --from git+https://github.com/tractorjuice/arc-kit.git
# Or run without installing
uvx --from git+https://github.com/tractorjuice/arc-kit.git arckit init my-project
```
**最新版本**: [v4.6.11](https://github.com/tractorjuice/arc-kit/releases/tag/v4.6.11)
### 平台支持
| 平台 | Claude Code 插件 | Gemini CLI 扩展 | GitHub Copilot | Codex / OpenCode CLI |
|------|-----------------|-----------------|----------------|----------------------|
| macOS | 完全支持 | 完全支持 | 完全支持 | 完全支持 |
| Linux | 完全支持 | 完全支持 | 完全支持 | 完全支持 |
| Windows (WSL2) | 完全支持 | 完全支持 | 完全支持 | 完全支持 |
| Windows (原生) | 完全支持 | 完全支持 | 完全支持 | 部分支持 |
**Windows 用户**:Claude Code 插件、Gemini CLI 扩展以及 GitHub Copilot 提示文件在所有平台上均可原生运行。对于原生 Windows 上的 Codex CLI / OpenCode CLI(不使用 WSL),某些包含内联 Bash 片段的命令可能需要 [Git Bash](https://git-scm.com/downloads/win) 或 [WSL2](https://learn.microsoft.com/en-us/windows/wsl/install)。我们推荐使用 WSL2 以获得最佳体验。
### 初始化项目
**Claude Code**:无需初始化 — 插件提供一切。
**GitHub Copilot**(VS Code):
```
# Create a new architecture governance project
arckit init payment-modernization --ai copilot
# Or initialize in current directory
arckit init . --ai copilot
```
**OpenCode CLI**:
```
# Create a new architecture governance project
arckit init payment-modernization --ai opencode
# Or initialize in current directory
arckit init . --ai opencode
```
**Codex CLI**:
```
# Create a new architecture governance project
arckit init payment-modernization --ai codex
# Minimal install (skip docs and guides)
arckit init payment-modernization --ai codex --minimal
# Or initialize in current directory
arckit init . --ai codex
```
### 开始使用 ArcKit
```
# GitHub Copilot (VS Code)
cd payment-modernization && code .
# In Copilot Chat, use ArcKit commands:
/arckit-principles Create principles for a financial services company
/arckit-requirements Build a payment processing system...
# Codex CLI
cd payment-modernization
codex
# Inside your AI assistant, use ArcKit commands:
/arckit.principles Create principles for a financial services company
/arckit.requirements Build a payment processing system...
/arckit.sow Generate RFP for vendor selection
```
### 升级
**Claude Code 插件**:通过市场自动更新 — 无需操作。
**Gemini CLI 扩展**:通过 `gemini extensions update arckit` 更新。
**GitHub Copilot**:重新运行 `arckit init --here --ai copilot` 以更新提示文件、代理和说明。
**Codex CLI**:
```
# Step 1: Upgrade the CLI tool
pip install --upgrade git+https://github.com/tractorjuice/arc-kit.git
# Or with uv:
uv tool upgrade arckit-cli --from git+https://github.com/tractorjuice/arc-kit.git
# Step 2: Update your existing project (re-run init in place)
cd /path/to/your-existing-project
arckit init --here --ai codex
```
此命令会更新命令、模板、脚本和代理,同时**保留**您的项目数据(`projects/`)和自定义模板(`.arckit/templates-custom/`)。
如果从 v0.x 升级,可能还需要迁移旧版文件名 — 请参阅[升级指南](docs/guides/upgrading.md)获取完整细节。
### 探索示例输出
公共演示仓库展示了完整的 ArcKit 交付成果:
- **NHS 预约挂号** — [arckit-test-project-v7-nhs-appointment](https://github.com/tractorjuice/arckit-test-project-v7-nhs-appointment):数字健康平台,集成 NHS Spine 并具备 GDPR 安全保障。
- **M365 GCC-H 迁移** — [arckit-test-project-v1-m365](https://github.com/tractorjuice/arckit-test-project-v1-m365):政府云迁移,含合规映射与变更管理。
- **HMRC 税务助手** — [arckit-test-project-v2-hmrc-chatbot](https://github.com/tractorjuice/arckit-test-project-v2-hmrc-chatbot):对话式 AI 服务,涵盖 PII 保护与双语支持。
- **Windows 11 部署** — [arckit-test-project-v3-windows11](https://github.com/tractorjuice/arckit-test-project-v3-windows11):企业操作系统 rollout,包含策略迁移与安全基线。
- **专利申请系统** — [arckit-test-project-v6-patent-system](https://github.com/tractorjuice/arckit-test-project-v6-patent-system):知识产权工作流自动化,使用 GOV.UK Pay 与 Notify。
- **ONS 数据平台** — [arckit-test-project-v8-ons-data-platform](https://github.com/tractorjuice/arckit-test-project-v8-ons-data-platform):官方统计分析环境,遵循 Five Safes 治理。
- **内阁办公室 GenAI 平台** — [arckit-test-project-v9-cabinet-office-genai](https://github.com/tractorjuice/arckit-test-project-v9-cabinet-office-genai):跨政府 GenAI 平台,含负责任 AI 护栏。
- **英国政府培训市场** — [arckit-test-project-v10-training-marketplace](https://github.com/tractorjuice/arckit-test-project-v10-training-marketplace):AI 培训采购平台,含多边市场设计。
- **国家高速公路数据架构** — [arckit-test-project-v11-national-highways-data](https://github.com/tractorjuice/arckit-test-project-v11-national-highways-data):战略道路网络数据平台现代化。
- **苏格兰法院 GenAI** — [arckit-test-project-v14-scottish-courts](https://github.com/tractorjuice/arckit-test-project-v14-scottish-courts):苏格兰法院与审裁处服务 GenAI 策略,含全面 MLOps 与 FinOps。
- **医生预约系统** — [arckit-test-project-v16-doctors-appointment](https://github.com/tractorjuice/arckit-test-project-v16-doctors-appointment):在线预约挂号系统,集成 NHS。
- **英国燃油价格透明度** — [arckit-test-project-v17-fuel-prices](https://github.com/tractorjuice/arckit-test-project-v17-fuel-prices):英国政府燃油价格实时数据服务。
- **智能电表消费者应用** — [arckit-test-project-v18-smart-meter](https://github.com/tractorjuice/arckit-test-project-v18-smart-meter):英国智能电表数据消费者移动应用,含 DCC/SMIP 集成。
- **英国政府 API 聚合器** — [arckit-test-project-v19ov-api-aggregator](https://github.com/tractorjuice/arckit-test-project-v19-gov-api-aggregator):统一访问 34 个部门、240+ 个英国政府 API。
## 为何选择 ArcKit?
### 问题:架构治理已失效
传统企业架构存在以下问题:
- ❌ 分散在多种工具中的文档(Word、Confluence、PowerPoint)
- ❌ 治理执行不一致
- ❌ 手动供应商评估存在偏见
- ❌ 需求与设计之间的可追溯性丢失
- ❌ 文档与现实脱节
### 解决方案:结构化、AI 辅助的治理
ArcKit 提供:
- ✅ **模板驱动的质量**:全面模板确保不会遗漏任何内容
- ✅ **系统化工作流**:从需求 → 采购 → 设计审查的清晰流程
- ✅ **AI 辅助**:让 AI 处理文档生成,您专注于决策
- ✅ **强制执行的可追溯性**:自动缺口检测与覆盖分析
- ✅ **版本控制**:所有架构工件均采用 Git 工作流
## 英国政府合规
ArcKit 包含针对英国公共部门交付的专用命令:
- `/arckit.tcop` — 评估全部 13 项《技术实践守则》要点,覆盖交付各阶段。
- `/arckit.ai-playbook` — 生成符合《英国政府 AI 手册》及 ATRS 的负责任 AI 评估。
- `/arckit.secure` — 生成《安全设计》制品,涵盖 NCSC CAF、网络安全基础、UK GDPR 控制项。
- `/arckit.mod-secure` — 映射 MOD《安全设计》要求(JSP 440、IAMM、通行许可路径)。
- `/arckit.jsp-936` — 为国防 AI 系统交付 JSP 936 AI 保证包。
请参阅演示仓库获取端到端示例,特别是 `arckit-test-project-v7-nhs-appointment`(民用服务)与 `arckit-test-project-v9-cabinet-office-genai`(AI 治理)。
## ArcKit 工作流程
ArcKit 引导您完成企业架构生命周期:
### 阶段 0:项目规划
**`/arckit.plan`** → 创建包含时间线、阶段与关卡的项目计划
可视化您的整个项目交付:
- GDS 敏捷交付阶段(探索 → Alpha → Beta → 正式上线)
- 包含时间线、依赖关系与里程碑的 Mermaid 甘特图
- 显示关卡与决策点的流程图
- 基于项目复杂度量身定制的时间线
- 所有 ArcKit 命令的集成计划
- 关卡批准标准
### 阶段 1:建立治理
**`/arckit.principles`** → 创建企业架构原则
定义组织的架构标准:
- 云战略(AWS / Azure / GCP)
- 安全框架(零信任、合规)
- 技术标准
- FinOps 与成本治理
### 阶段 2:利益相关者分析
**`/arckit.stakeholders`** → 分析利益相关者的驱动因素、目标与可衡量结果
**在制定商业案例之前执行**,以明确谁关心该项目及原因:
- 识别所有利益相关者(内部与外部)
- 记录底层驱动因素(战略、运营、财务、合规、风险、个人)
- 将驱动因素映射到 SMART 目标
- 将目标映射到可衡量结果
- 创建利益相关者 → 驱动因素 → 目标 → 结果的追溯性
- 识别冲突与协同效应
- 定义参与与沟通策略
### 阶段 3:风险评估
**`/arckit.risk`** → 创建全面的风险登记册(Orange Book)
**在制定商业案例之前执行**,以系统化识别与评估风险:
- 遵循 HM Treasury Orange Book 2023 框架
- 识别 6 类风险(战略、运营、财务、合规、声誉、技术)
- 评估固有风险(控制前)与残余风险(控制后)
- 应用 4T 响应框架(容忍、处理、转移、终止)
- 将每个风险关联至 RACI 矩阵中的利益相关者
- 监控风险 appetite 合规性
- 反馈至 SOBC 管理案例 Part E
### 阶段 4:商业案例合理性证明
**`/arckit.sobc`** → 创建战略大纲商业案例(SOBC)
**在需求定义之前执行**,以证明投资并获取批准:
- 使用 HM Treasury Green Book 5 案例模型(战略、经济、商业、财务、管理)
- 分析战略选项(不做、最小、平衡、全面)
- 将效益映射至利益相关者目标(完整追溯性)
- 提供粗略量级成本估算
- 经济评估(ROI 范围、投资回收期)
- 采购与资金策略
- 治理与风险管理(使用风险登记册)
- 在详细需求工作开始前实现 go/no-go 决策
### 阶段 5:定义需求
**`/arckit.requirements`** → 记录全面需求
在**知情于利益相关者目标**的前提下(若 SOBC 已获批准)制定详细需求:
- 业务需求及理由
- 功能需求及验收标准
- 非功能需求(性能、安全、可扩展性、合规)
- 集成需求(上下游系统)
- 数据需求(DR-xxx)
- 成功标准与 KPI
### 阶段 5.3:平台策略设计(可选 — 适用于多边平台)
**`/arckit.platform-design`** → 使用平台设计工具包设计多边平台策略
适用于设计**基于生态系统的平台**(政府即平台、市场、数据平台):
- **生态系统画布**:映射供给方、需求方与支持实体及其关系图
- **实体角色画像**:深入 3–5 个关键实体(背景、压力、目标、收益)
- **动机矩阵**:识别实体间的协同与冲突及缓解策略
- **交易板**:设计 10–20 项交易,分析成本降低(搜索、信息、谈判、协调、执行)
- **学习引擎画布**:5 项以上帮助参与者改进的服务(数据、反馈循环、网络效应)
- **平台体验画布**:用户旅程图、商业模式与单位经济
- **MVP 画布**:解决鸡与蛋问题的流动性引导策略
- **平台设计画布**:将上述 8 个画布整合为连贯的平台策略
- **英国政府背景**:与政府作为平台(GaaP)、TCoP 第 8 点(共享/重用)、数字市场对齐
**用例**:NHS 预约挂号、地方当局数据市场、培训采购平台、公民服务门户。
### 阶段 5.5:数据建模
**`/arckit.data-model`** → 创建包含 ERD 的全面数据模型
基于数据需求(DR-xxx)创建数据模型:
- 使用 Mermaid 的可视化实体关系图
- 详细实体目录(含属性、类型、验证规则)
- PII 识别与 GDPR / DPA 2018 合规
- 数据治理矩阵(业务所有者、管家、保管人)
- CRUD 矩阵展示组件访问模式
- 数据集成映射(上游来源、下游消费者)
- 数据质量框架(含可衡量指标)
- 需求追溯(DR-xxx → 实体 → 属性)
### 阶段 5.7:数据保护影响评估
**`/arckit.dpia`** → 生成 [DPIA](https://ico.org.uk/for-organisations/uk-gdpr-guidance-and-resources/accountability-and-governance/data-protection-impact-assessments-dpias/) 以符合 UK GDPR 第 35 条
**对高风险处理强制执行**,在技术选型前评估隐私风险:
- ICO 9 项标准自动化筛查(敏感数据、大规模、脆弱主体、AI/ML 等)
- 自动从数据模型填充(实体、PII、特殊类别数据、法律依据)
- 针对个人影响的隐私风险(隐私伤害、歧视)评估
- 数据主体权利实施检查表(SAR、删除、可移植性)
- 儿童数据处理评估(年龄验证、父母同意)
- AI/ML 算法处理评估(偏差、可解释性、人类监督)
- ICO 预先咨询标志(高残留风险)
- 国际传输保障(SCC、BCR、充分性决定)
- 与风险登记册的双向链接(DPIA-xxx 风险 ID)
- 链接至安全设计的控制措施
### 阶段 5.8:数据源发现
**`/arckit.datascout`** → 发现外部数据源以满足项目需求
发现并评估用于满足需求的外部数据源:
- 从需求(业务/功能/非功能/集成/数据)中提取数据需求
英国政府开放数据门户(data.gov.uk、ONS、NHS Digital、公司注册处、OS Data Hub)
- 商业 API 提供商与数据市场
- 免费/免费增值 API 与开源数据集
- 加权评估评分(需求契合度、数据质量、许可与成本、API 质量、合规性、可靠性)
- 未满足需求的缺口分析
- 数据模型影响评估(新实体、属性、同步策略)
- 需求追溯(每个 DR-xxx 映射到来源或标记为缺口)
- TCoP 第 10 点(更好地利用数据)合规
### 阶段 6:技术研究
**`/arckit.research`** → 研究技术、服务与产品
针对需求进行技术研究,执行自建与采购分析:
- 根据需求动态识别类别(认证、支付、数据库等)
- 包含价格、评论与评级的商业 SaaS 选项(Web 搜索)
- 带有 GitHub 统计与社区成熟度的开源替代方案
- 英国政府 GOV.UK 平台(One Login、Pay、Notify、Forms)
- 数字市场供应商(G-Cloud、DOS)
- 总拥有成本(TCO)3 年对比
- 自建与采购/采纳建议
- 供应商短名单以供深入评估
- 与 Wardley 映射集成(演进定位)
- 反馈至 SOBC 经济案例(成本数据、选项分析)
### 阶段 6.5:资助与资金研究
**`/arckit.grants`** → 研究英国政府资助、慈善资助与加速器计划
识别并评估资金机会,含资格评分:
- 英国 Innovate UK 资助与研发资金(如 Smart Grants、KTP、SBRI)
- 英国研究与创新(UKRI)资助呼吁
- 慈善与基金会资助(如国家彩票遗产基金、惠康信托)
- 加速器与孵化器计划(如 DCMS、DSIT 支持的队列)
- Horizon Europe 继任计划对英国实体的开放性
- 资格评分矩阵(对照项目需求与利益相关者概况)
- 申请时间表、截止日期与授奖金额
- 战略契合度评估(与项目目标及公共部门背景)
- 输出结构化的 GRNT 资金机会登记册
### 阶段 7:战略规划(Wardley 映射)
**`/arckit.wardley`** → 创建战略 Wardley 映射
通过以下方式可视化战略定位:
- 组件演进分析(起源 → 定制 → 产品 → 商品)
- 自建与采购决策框架
- 供应商比较与采购策略
- 英国数字市场映射
- 演进预测与战略博弈
### 阶段 7.5:战略路线图
**`/arckit.roadmap`** → 创建多年度架构路线图
为多年度转型计划创建战略路线图:
- **多年时间线**:3–5 年路线图,含 Mermaid 甘特图,关联财政年度(2024/25 等)
- **战略主题**:云迁移、数据现代化、安全与合规、DevOps 转型
- **能力演进**:成熟度从 L1(初始)到 L5(优化)随时间推进
- **投资规划**:按财政年度划分的 CAPEX/OPEX、ROI 预测、效益实现
- **治理框架**:ARB 月度、计划委员会月度、 steering committee 季度
- **服务标准关卡**:Alpha / Beta / 正式上线评估(英国政府)
- **依赖关系**:Mermaid 流程图展示计划排序与关键路径
- **成功指标**:云采用率、技术债务减少、部署频率、上市时间
- **追溯性**:将路线图主题关联至利益相关者驱动、架构原则、需求
- **英国政府具体内容**:支出审查对齐、TCoP 时间线、NCSC CAF 进展
**适用场景**:当您拥有包含多个并行项目的多年度转型计划时。路线图用于战略沟通(多年度、多计划、领导层)而非项目计划(战术、单一计划、团队执行)。
**路线图输入至**:`/arckit.plan` 用于详细阶段执行、`/arckit.sobc` 用于投资商业案例、`/arckit.backlog` 用于优先级用户故事、`/arckit.strategy` 用于高层综合。
### 阶段 7.6:架构策略综合
**`/arckit.strategy`** → 将战略工件综合为架构策略
创建综合架构策略文档,将多个战略工件整合为连贯的叙事:
- **战略愿景**:2–3 段阐述转型愿景与成功定义
- **战略驱动因素**:从利益相关者分析中总结,含外部驱动(监管、市场、技术)
- **指导原则**:关键原则及其战略影响、合规摘要
- **现状评估**:技术景观、能力成熟度基线(L1–L5)、技术债务、SWOT
- **目标状态愿景**:未来架构、能力成熟度目标、架构愿景图
- **技术演进**:自建与采购决策、技术雷达(采纳/试验/评估/搁置)
- **战略主题**:3–5 项投资主题,含目标、计划、成功标准、原则对齐
- **交付路线图摘要**:路线图时间线、阶段、里程碑
- **投资摘要**:CAPEX/OPEX、NPV、IRR、回报周期、效益实现(来自 SOBC)
- **战略风险**:关键风险热图、假设、约束(来自风险登记册)
- **成功指标**:KPI 及基线与年度目标
- **治理模型**:论坛、决策权、评审节奏
- **追溯性**:驱动因素 → 目标 → 结果 → 主题 → 原则 → KPI 链
**适用场景**:当您拥有多个战略工件(原则、利益相关者、Wardley、路线图、SOBC)并需要创建单一高层级文档用于策略板展示或高管简报时。非常适合策略委员会展示、利益相关者沟通或项目组合报告。
**独特要求**:这是唯一需要**两个强制输入**(原则 AND 利益相关者)的 ArcKit 命令。策略无法在不了解决策框架和利益相关者驱动的情况下创建。
**策略输入至**:`/arckit.requirements` 用于详细需求、`/arckit.roadmap` 用于扩展时间线、`/arckit.plan` 用于项目交付。
### 阶段 7.7:架构决策记录
**`/arckit.adr`** → 记录架构决策
遵循 MADR v4.0 格式并增强英国政府要求,记录架构决策:
- **决策元数据**:顺序编号(ADR-001、ADR-002)、状态(提议/已接受/取代)、升级级别(团队/跨团队/部门/跨政府)
- **利益相关者 RACI**:决策者(负责)、咨询方(SME,两位)、通知方(单向沟通)
- **上下文与问题陈述**:为何需要此决策、业务/技术/监管驱动因素
- **决策驱动因素**:技术力量(性能、安全、可扩展性)、商业力量(成本、时间)、合规力量(GDS 服务标准、TCoP、NCSC、UK GDPR)
- **选项分析**:至少 2–3 个选项(含“不作为”基线),每个选项含优缺点、成本(CAPEX/OPEX/TCO)、GDS 服务标准影响、Wardley 演进阶段
- **Y 陈述**:结构化理由 — “在 X 背景下,面临 Y,我们决定为 Z 以实现 A,接受 B”
- **后果**:正面(效益、能力)、负面(折衷、技术债务)、中性(培训、基础设施)、风险与缓解
- **验证**:如何验证实施(设计审查、代码审查、测试、监控)
- **追溯性**:链接至需求、原则、利益相关者、研究、Wardley 地图、图表、风险登记册
- **英国政府具体内容**:升级级别(团队 → 跨团队 → 部门 → 跨政府)、治理论坛(ARB、TDA、计划委员会)、服务标准 / TCoP 合规文档
**适用场景**:做出影响系统结构、质量属性或行为的重要架构决策时 — 技术选型(数据库、框架、云服务)、集成模式、安全方法、部署策略、数据管理。
**ADR 输入至**:`/arckit.diagram`(架构图反映决策)、`/arckit.hld-review` 和 `/arckit.dld-review`(审查验证决策实施)、`/arckit.traceability`(决策是关键追溯性工件)。
### 阶段 8:供应商采购(按需
**`/arckit.sow`** → 生成工作说明书(SOW/RFP)
创建 RFP 就绪文档:
- 工作范围与交付成果
- 技术要求
- 供应商资格
- 评估标准
- 合同条款
**`/arckit.dos`** → 数字成果与专家(DOS)采购 🇬🇧
适用于需要定制开发的英国公共部门组织:
- 生成符合 DOS 的采购文档
- 从项目工件提取需求(BR/FR/NFR/INT/DR)
- 必需与优选技能提取
- 成功标准(技术中立)
- 评估框架(40% 技术、30% 团队、20% 质量、10% 价值)
- 可审计文档以符合数字市场
**`/arckit.gcloud-search`** → G-Cloud 服务搜索(含实时市场搜索) 🇬🇧
适用于需要现成云服务的英国公共部门组织:
- 生成 G-Cloud 需求文档
- **实时数字市场搜索**(使用 Web 搜索)
- 查找实际供应商、价格、功能、链接
- 服务对比表(含推荐)
- 短名单 3–5 个匹配服务
- 提供数字市场指南链接(gov.uk)
**`/arckit.gcloud-clarify`** → G-Cloud 服务验证与差距分析 🇬🇧
验证 G-Cloud 服务并生成供应商澄清问题:
- **系统性差距分析**(必须/应该/要求 vs 服务描述)
- 检测缺口:✅ 确认、⚠️ 模糊、❌ 未提及
- 生成优先级问题(🔴 关键 / 🟠 高 / 🔵 中 / 🟢 低)
- 每个服务的风险评估矩阵
- 供应商参与邮件模板
- 证据要求规范
- 下一步检查清单
**`/arckit.evaluate`** → 创建供应商评估框架
设置系统性评分:
- 技术评估标准(100 分)
- 成本评估方法
- 推荐信检查模板
- 决策矩阵
**`/arckit.evaluate`**(比较模式)→ 比较供应商提案
并排分析:
- 技术方法
- 成本分解
- 风险评估
- 价值主张
### 阶段 9:设计审查
**`/arckit.hld-review`** → 审查高层设计(HLD)
验证设计是否符合:
- 架构原则
- 需求覆盖
- 安全与合规
- 可扩展性与弹性
- 运维准备度
**`/arckit.dld-review`** → 审查详细设计(DLD)
实施就绪验证:
- 组件规范
- API 契约(OpenAPI)
- 数据库模式
- 安全实现
- 测试策略
### 阶段 10:冲刺规划
**`/arckit.backlog`** → 从需求生成优先级产品待办事项
将需求转化为冲刺就绪用户故事:
- 将 BR/FR/NFR/INT/DR 转换为符合 GDS 格式的用户故事
- 多因素优先级(MoSCoW + 风险 + 价值 + 依赖)
- 组织为包含容量平衡的冲刺计划
- 生成追溯矩阵(需求 → 故事 → 冲刺)
- 导出至 Jira/Azure DevOps(CSV)或自定义工具(JSON)
- **节省时间**:4–6 周 → 3–5 天(节省 75%+)
**适用时机**:HLD 批准后、Sprint 1 开始前(Alpha → Beta 过渡)
### 阶段 10.5:待办事项导出
**`/arckit.trello`** → 将产品待办事项导出至 Trello
将待办事项直接推送到 Trello:
- 创建基于冲刺的看板(产品待办事项 + 每个冲刺 + 进行中 + 完成)
- 卡片含优先级标签、故事点及验收标准检查框
- 按 MoSCoW 优先级和类型着色的标签
- 考虑 Trello API 速率限制的限流集成
- 需要 `TRELLO_API_KEY` 和 `TRELLO_TOKEN` 环境变量
**适用时机**:`/arckit.backlog` 生成产品待办事项后(需 JSON 导出)
### 阶段 11:ServiceNow 服务管理设计
**`/arckit.servicenow`** → 生成 ServiceNow 服务设计
连接架构到运营:
- CMDB 设计(源自架构图)
- SLA 定义(源自 NFR)
- 事件管理设计
- 变更管理计划
- 监控与告警计划
- 服务过渡计划
### 阶段 12:追溯性
**`/arckit.traceability`** → 生成追溯矩阵
确保完整覆盖:
- 需求 → 设计
- 设计 → 测试
- 缺口分析与孤立项检测
- 变更影响跟踪
### 阶段 13:质量管理
**`/arckit.analyze`** → 对所有工件进行全面的治理质量分析
周期性评估治理质量:
- 架构原则合规性
- 需求覆盖与追溯性
- 利益相关者对齐验证
- 风险管理完整性
- 设计审查质量
- 文档完整性与质量
- 缺口识别与建议
**适用时机**:里程碑、设计审查或采购决策前,用于识别差距并确保治理标准维持。
### 阶段 14:合规评估(英国政府)
对于英国政府和公共部门项目:
**`/arckit.service-assessment`** → 准备 [GDS 服务标准](https://www.gov.uk/service-manual/service-assessments) 评估
准备强制性 GDS 服务标准评估:
- 分析证据是否符合全部 14 项服务标准要点
- 识别 Alpha、Beta 或正式上线评估的缺口
- 生成 RAG(红/黄/绿)评级与整体就绪分数
- 提供优先级建议与时间线
- 包含评估日准备指南
- 将 ArcKit 工件映射到服务标准证据要求
在探索阶段(Alpha 准备)、Beta 中期或正式上线前运行。
**`/arckit.tcop`** → [技术实践守则](https://www.gov.uk/guidance/the-technology-code-of-practice) 评估
评估全部 13 项 TCoP 要点:
- 第 1 点:定义用户需求
- 第 2 点:实现无障碍
- 第 3 点:开放并使用开源
- 第 4 点:使用开放标准
- 第 5 点:优先使用云
- 第 6 点:保障安全
- 第 7 点:隐私为核心
- 第 8 点:共享、重用与协作
- 第 9 点:集成与适配技术
- 第 10 点:更好地利用数据
- 第 11 点:定义采购策略
- 第 12 点:满足数字支出控制
- 第 13 点:定义负责任的 AI 使用
**`/arckit.secure`** → [安全设计](https://tractorjuice.github.io/arckit-test-project-v8-ons-data-platform/#projects/001-ons-data-platform-modernisation/ARC-001-SECD-v1.0.md) 评估
安全合规评估:
- NCSC 云安全原则
- NCSC 网络安全评估框架(CAF)
- 网络安全基础 / Cyber Essentials
- UK GDPR 与 DPA 2018 合规
- 安全架构审查
- 威胁建模
**`/arckit.ai-playbook`** → [英国政府 AI 手册](https://www.gov.uk/government/publications/ai-playbook-for-the-uk-government) 合规(适用于 AI 系统)
负责任 AI 评估:
- AI 伦理原则
- 透明度与可解释性
- 公平性与偏差缓解
- 数据治理(AI)
- 人类监督机制
- 影响评估
**`/arckit.atrs`** → [算法透明度记录标准](https://www.gov.uk/government/collections/algorithmic-transparency-recording-standard-hub)
为算法决策生成 ATRS 记录:
- 算法详情与逻辑
- 目的与使用场景
- 数据来源与数据质量
- 性能指标与监控
- 影响评估与缓解
**适用于 MOD 项目**:
**`/arckit.mod-secure`** → MOD [安全设计](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/001-windows-11-migration-intune/ARC-001-SECD-MOD-v1.0.md) 评估
MOD 特定安全合规:
- JSP 440(国防项目与计划管理)
- 信息安全成熟度模型(IAMM)
- 通行许可路径
- STRAP 分类处理
- 安全操作程序(SyOPs)
- 供应商声明要求
**`/arckit.jsp-936` → [MOD JSP 936](https://www.gov.uk/government/publications/jsp-936-dependable-artificial-intelligence-ai-in-defence-part-1-directive) AI 保证文档
适用于国防 AI/ML 系统:
- JSP 936(国防领域可信人工智能)
- 5 项伦理原则(人类中心主义、责任、理解、偏差与伤害缓解、可靠性)
- 5 级风险分类(关键至轻微)
- AI 生命周期 8 个阶段(规划至质量保证)
- 批准路径(2PUS/部长级 → 国防级 → TLB 级)
- RAISOs 与伦理经理治理
- 人类-AI 团队策略与持续监控
### 第 15 阶段:项目故事与报告
**`/arckit.story`** → 生成综合项目故事
创建包含完整时间线分析的综合叙事:
- **时间线分析**:4 种可视化类型(甘特图、线性流程图、详细表格、阶段时长饼图)
- **时间线指标**:项目时长、速度、阶段分析、关键路径识别
- **完整时间线**:从 git 日志或文件修改日期开始的所有事件(含距起始天数)
- **8 个叙事章节**:基础 → 商业案例 → 需求 → 研究 → 采购 → 设计 → 交付 → 合规
- **追溯性演示**:端到端链展示利益相关者 → 目标 → 需求 → 故事 → 冲刺(使用 Mermaid 图)
- **治理成就**:展示合规(TCoP、服务标准、NCSC CAF)、风险管理、决策依据
- **战略背景**:Wardley 映射洞察、自建与采购决策、供应商选择依据
- **经验教训**:进度分析、时间线偏差、未来项目建议
- **附录**:工件登记、时序活动日志、DSM、命令参考、术语表
**适用时机**:项目里程碑或完成时,用于向利益相关者、领导层或组合汇报。非常适合展示系统性治理与 ArcKit 工作流价值。
**`/arckit.presentation`** → 从项目工件生成 MARP 幻灯片
从现有架构工件生成演示文稿:
- **MARP 格式**:Markdown 幻灯片(`---` 分隔),可导出为 PDF、PPTX 或 HTML
- **聚焦模式**:高管(董事会级)、技术(架构细节)、利益相关者(效益导向)、采购(RFP 简报)
- **工件驱动**:读取所有可用项目工件并提取关键内容生成幻灯片
- **Mermaid 图表**:甘特图、C4 图、饼图、象限图原生嵌入
- **可配置**:选择幻灯片数量(6–8、10–12、15–20)和 MARP 主题(默认、Gaia、Uncover)
- **文档类型代码**:`PRES`
**适用时机**:治理委员会汇报、利益相关者简报、关卡评审或季度组合汇报。运行时机建议在创建大部分项目工件后,以生成最丰富的幻灯片集。
### 第 16 阶段:文档发布
**`/arckit.pages`** → 生成交互式文档网站
发布所有项目文档为交互式网站:
- **静态站点生成**:生成 `docs/index.html` 和 `docs/manifest.json` — 可部署到任意静态主机(GitHub Pages、Netlify、Vercel、S3 等)
- **Mermaid 图表渲染**:所有架构图表内联使用 mermaid.js 渲染
- **项目导航**:侧边栏包含可折叠的项目树、文档分类与版本徽章 — 多版本文档显示内联下拉选择器
- **GOV.UK 样式**:专业的政府设计系统样式
- **文档索引**:`manifest.json` 提供对所有工件的程序化访问
- **LLM 发现**:生成 `docs/llms.txt`([llmstxt.org](https://llmstxt.org/) 格式),使 LLM 代理与爬虫可索引每个工件、指导与项目。手工整理的 `docs/llms.txt` 文件(不包含 ArcKit 生成标记)在重新运行时保留
**适用时机**:当您希望以专业网页界面向利益相关者分享项目文档,或创建可作为组合展示的项目组合视图时。
## 支持的 AI 助手
| 助手 | 支持程度 | 说明 |
|------|----------|------|
| [Claude Code](https://www.anthropic.com/claude-code) | ✅ 首选 | **主要平台**。插件与代理、MCP 服务器、自动更新 |
| [Gemini CLI](https://github.com/google-gemini/gemini-cli) | ✅ 完整 | 扩展、命令、MCP 服务器与自动更新 |
| [GitHub Copilot](https://github.com/features/copilot) | ✅ 核心 | VS Code 提示文件、自定义代理、仓库级说明(`arckit init --ai copilot`) |
| [OpenAI Codex CLI](https://chatgpt.com/features/codex) | ✅ 核心 | CLI 与模板。ChatGPT Plus/Pro/Enterprise([设置指南](.codex/README.md)) |
| [OpenCode CLI](https://opencode.net/cli) | ✅ 核心 | CLI 与模板 |
### 为何选择 Claude Code?
Claude Code 是 ArcKit 的**主要开发平台**,提供其他格式不具备的能力:
| 功能 | Claude Code | Gemini CLI | Copilot | Codex / OpenCode |
|------|-------------|------------|---------|------------------|
| 68 条斜杠命令 | ✅ | ✅ | ✅ | ✅ |
| 模板与脚本 | ✅ | ✅ | ✅ | ✅ |
| **捆绑的 MCP 服务器**(AWS、Azure、GCP、DataCommons、govreposcrape) | ✅ | ✅(3 个服务器) | — | 手动设置 |
| **自主研究代理**(10 个代理,用于研究、数据源发现、云研究、政府代码发现、资助等) | ✅ | — | ✅(10 个代理) | — |
| **SessionStart 钩子**(自动检测版本 + 项目) | ✅ | — | — | — |
| **UserPromptSubmit 钩子**(每次提示注入项目上下文) | ✅ | — | — | — |
| **PreToolUse 钩子**(ARC 文件名自动修正) | ✅ | — | — | — |
| **PermissionRequest 钩子**(自动允许 MCP 文档工具) | ✅ | — | — | — |
| **Per-command Stop 钩子**(输出验证,如 Wardley 地图数学检查) | ✅ | — | — | — |
| Wardley 映射技能(带 Pinecone MCP 书籍语料库) | ✅ | — | — | — |
| Mermaid 语法参考技能(23 种图表类型 + 配置) | ✅ | ✅ | — | ✅ |
| 自动市场更新 | ✅ | ✅ | 手动重新安装 | 手动重新安装 |
| 零配置安装 | ✅ | ✅ | `arckit init` 必需 | `arckit init` 必需 |
**代理**:运行研究密集型命令(市场研究、数据源发现、云服务评估)在隔离的上下文窗口中,保持主对话简洁,并支持数十次 WebSearch / WebFetch / MCP 调用而不会造成上下文膨胀。
**钩子**:提供自动化治理:文件名自动修正为 ArcKit 约定、项目上下文注入每个提示、自动批准 MCP 工具、生成输出(如 Wardley 地图)进行验证后再最终确定。
Gemini CLI 提供完整的命令与 MCP 服务器体验,但缺少代理委派与钩子。GitHub Copilot 提供所有 68 个命令作为提示文件与 10 个自定义代理,但缺少钩子与 MCP 服务器。Codex CLI 和 OpenCode CLI 提供核心命令功能,但需要手动设置与 `arckit init` 脚手架。
### 使用 GitHub Copilot
对于 GitHub Copilot 用户在 VS Code 中,ArcKit 命令以提示文件和自定义代理形式提供:
```
# Install and create project (3 steps, zero config)
pip install git+https://github.com/tractorjuice/arc-kit.git
arckit init my-project --ai copilot
cd my-project && code .
# Then use ArcKit commands in Copilot Chat
/arckit-principles Create principles for financial services
/arckit-stakeholders Analyze stakeholders for cloud migration
/arckit-requirements Create comprehensive requirements
```
这将创建 `.github/prompts/arckit-*.prompt.md`(67 个提示文件)、`.github/agents/arckit-*.agent.md`(9 个自定义代理)以及 `.github/copilot-instructions.md`(仓库级上下文)。
### 使用 Codex CLI
对于 OpenAI Codex CLI 用户,ArcKit 命令作为技能提供并自动发现:
```
# Install and create project (3 steps, zero config)
pip install git+https://github.com/tractorjuice/arc-kit.git
arckit init my-project --ai codex
cd my-project && codex
# Then use ArcKit skills
$arckit-principles Create principles for financial services
$arckit-stakeholders Analyze stakeholders for cloud migration
$arckit-requirements Create comprehensive requirements
```
请参阅 [.codex/README.md](.codex/README.md) 获取完整的 Codex CLI 设置与说明。
## 项目结构
ArcKit 创建以下结构:
```
payment-modernization/
├── .arckit/
│ ├── scripts/
│ │ └── bash/ # Automation scripts
│ ├── templates/ # Default templates (refreshed by arckit init)
│ └── templates-custom/ # Your customizations (preserved across updates)
├── projects/
│ ├── 000-global/
│ │ └── ARC-000-PRIN-v1.0.md # Global principles
│ └── 001-payment-gateway/
│ ├── ARC-001-STKE-v1.0.md # Stakeholder analysis
│ ├── ARC-001-RISK-v1.0.md # Risk register (Orange Book)
│ ├── ARC-001-SOBC-v1.0.md # Strategic Outline Business Case
│ ├── ARC-001-REQ-v1.0.md # Comprehensive requirements
│ ├── ARC-001-DATA-v1.0.md # Data model with ERD, GDPR compliance
│ ├── wardley-maps/ # Strategic Wardley Maps
│ │ ├── ARC-001-WARD-001-v1.0.md # Current architecture positioning
│ │ ├── ARC-001-WARD-002-v1.0.md # Target architecture vision
│ │ ├── ARC-001-WARD-003-v1.0.md # Gap analysis
│ │ └── ARC-001-WARD-004-v1.0.md # Build vs buy decisions
│ ├── ARC-001-SOW-v1.0.md # Statement of Work (RFP)
│ ├── ARC-001-EVAL-v1.0.md # Vendor evaluation framework
│ ├── vendors/
│ │ ├── acme-corp/
│ │ │ ├── proposal.pdf
│ │ │ ├── scoring.md
│ │ │ ├── hld-v1.md
│ │ │ └── reviews/
│ │ │ └── hld-v1-review.md
│ │ ├── beta-systems/
│ │ │ └── ...
│ │ └── comparison.md
│ ├── ARC-001-SNOW-v1.0.md # Service management design
│ ├── ARC-001-TRAC-v1.0.md # Traceability matrix
│ └── final/
│ ├── selected-vendor.md
│ ├── approved-hld.md
│ └── dld/
├── .agents/skills/ # Codex CLI skills (auto-discovered)
├── .codex/
│ ├── agents/ # Agent configs
│ └── config.toml # MCP servers + agent roles
├── .github/
│ ├── prompts/arckit-*.prompt.md # GitHub Copilot prompt files (68 commands)
│ ├── agents/arckit-*.agent.md # GitHub Copilot custom agents (10 agents)
│ └── copilot-instructions.md # Repo-wide Copilot context
└── .opencode/commands/ # OpenCode CLI commands
```
## 模板定制
在不修改默认模板的前提下定制 ArcKit 模板:
```
# Inside your AI assistant
/arckit.customize requirements # Copy requirements template for editing
/arckit.customize all # Copy all templates
/arckit.customize list # See available templates
```
**工作原理**:
- 默认模板位于 `.arckit/templates/`(通过 `arckit init` 刷新)
- 您的定制位于 `.arckit/templates-custom/`(在更新中保留)
- 命令会优先检查定制模板,若不存在则回退至默认模板
**常见定制**:
- 添加组织特定的文档控制字段
- 包含强制性合规章节(ISO 27001、PCI-DSS)
- 添加部门特定的审批工作流
- 自定义英国政府分类横幅
## 完整命令参考
所有 67 个 ArcKit 命令(含成熟度状态及公共测试仓库示例输出)。
### 状态图例
| 状态 | 描述 |
|------|------|
| 🟢 **Live** | 生产就绪,经过广泛测试 |
| 🔵 **Beta** | 功能完整,持续优化中 |
| 🟠 **Alpha** | 可用,测试中 |
| 🟣 **Experimental** | v0.11.x 中的新功能,邀请早期使用者 |
### 示例仓库
| 代码 | 仓库 | 描述 |
|------|------|------|
| v1 | [arckit-test-project-v1-m365](https://github.com/tractorjuice/arckit-test-project-v1-m365) | Microsoft 365 GCC-H 迁移 |
| v2 | [arckit-test-project-v2-hmrc-chatbot](https://github.com/tractorjuice/arckit-test-project-v2-hmrc-chatbot) | HMRC 税务助手聊天机器人 |
| v3 | [arckit-test-project-v3-windows11](https://github.com/tractorjuice/arckit-test-project-v3-windows11) | Windows 11 企业部署 |
| v6 | [arckit-test-project-v6-patent-system](https://github.com/tractorjuice/arckit-test-project-v6-patent-system) | 专利申请系统 |
| v7 | [arckit-test-project-v7-nhs-appointment](https://github.com/tractorjuice/arckit-test-project-v7-nhs-appointment) | NHS 预约挂号 |
| v8 | [arckit-test-project-v8-ons-data-platform](https://github.com/tractorjuice/arckit-test-project-v8-ons-data-platform) | ONS 数据平台现代化 |
| v9 | [arckit-test-project-v9-cabinet-office-genai](https://github.com/tractorjuice/arckit-test-project-v9-cabinet-office-genai) | 内阁办公室 GenAI 平台 |
| v10 | [arckit-test-project-v10-training-marketplace](https://github.com/tractorjuice/arckit-test-project-v10-training-marketplace) | 英国政府培训市场 |
| v11 | [arckit-test-project-v11-national-highways-data](https://github.com/tractorjuice/arckit-test-project-v11-national-highways-data) | 国家高速公路数据架构 |
| v14 | [arckit-test-project-v14-scottish-courts](https://github.com/tractorjuice/arckit-test-project-v14-scottish-courts) | 苏格兰法院 GenAI 策略 |
| v16 | [arckit-test-project-v16-doctors-appointment](https://github.com/tractorjuice/arckit-test-project-v16-doctors-appointment) | 医生在线预约系统 |
| v17 | [arckit-test-project-v17-fuel-prices](https://github.com/tractorjuice/arckit-test-project-v17-fuel-prices) | 英国政府燃油价格透明度服务 |
| v18 | [arckit-test-project-v18-smart-meter](https://github.com/tractorjuice/arckit-test-project-v18-smart-meter) | 英国智能电表数据消费者移动应用 |
| v19 | [arckit-test-project-v19-gov-api-aggregator](https://github.com/tractorjuice/arckit-test-project-v19-gov-api-aggregator) | 英国政府 API 聚合器 |
### 基础
| 命令 | 描述 | 示例 | 状态 |
|------|------|------|------|
| `/arckit.init` | 初始化 ArcKit 项目结构,包含编号项目目录与全局工件 | — | 🟢 生效 |
| `/arckit.start` | 获取 ArcKit 使用向导 — 检查项目状态、探索可用命令并选择下一步 | — | 🟢 生效 |
| `/arckit.plan` | 创建项目计划(含时间线、阶段、关卡与 Mermaid 图表) | [v3/001](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/001-windows-11-migration-intune/ARC-001-PLAN-v1.0.md) [v3/002](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/002-application-packaging-rationalisation/ARC-002-PLAN-v1.0.md) [v3/004](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/004-conference-facilities-modernization/ARC-004-PLAN-v1.0.md) [v3/005](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/005-cloud-pki/ARC-005-PLAN-v1.0.md) [v8](https://tractorjuice.github.io/arckit-test-project-v8-ons-data-platform/#projects/001-ons-data-platform-modernisation/ARC-001-PLAN-v1.0.md) [v9](https://tractorjuice.github.io/arckit-test-project-v9-cabinet-office-genai/#projects/001-cabinet-office-genai/ARC-001-PLAN-v1.0.md) [v10](https://tractorjuice.github.io/arckit-test-project-v10-training-marketplace/#projects/001-ai-training-marketplace/ARC-001-PLAN-v1.0.md) [v11](https://tractorjuice.github.io/arckit-test-project-v11-national-highways-data/#projects/001-national-highways-data-architecture-modernization/ARC-001-PLAN-v1.0.md) [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/ARC-001-PLAN-v1.0.md) [v17](https://tractorjuice.github.io/arckit-test-project-v17-fuel-prices/#projects/001-uk-fuel-price-transparency-service/ARC-001-PLAN-v1.0.md) [v18](https://tractorjuice.github.io/arckit-test-project-v18-smart-meter/#projects/001-smart-meter-app/ARC-001-PLAN-v1.0.md) | 🟢 生效 |
| `/arckit.principles` | 创建或更新企业架构原则 | [v1](https://tractorjuice.github.io/arckit-test-project-v1-m365/#projects/000-global/ARC-000-PRIN-v1.0.md) [v2](https://tractorjuice.github.io/arckit-test-project-v2-hmrc-chatbot/#projects/000-global/ARC-000-PRIN-v1.0.md) [v3](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/000-global/ARC-000-PRIN-v1.0.md) [v6](https://tractorjuice.github.io/arckit-test-project-v6-patent-system/#projects/000-global/ARC-000-PRIN-v1.0.md) [v8](https://tractorjuice.github.io/arckit-test-project-v8-ons-data-platform/#projects/000-global/ARC-000-PRIN-v1.0.md) [v9](https://tractorjuice.github.io/arckit-test-project-v9-cabinet-office-genai/#projects/000-global/ARC-000-PRIN-v1.0.md) [v10](https://tractorjuice.github.io/arckit-test-project-v10-training-marketplace/#projects/000-global/ARC-000-PRIN-v1.0.md) [v11](https://tractorjuice.github.io/arckit-test-project-v11-national-highways-data/#projects/000-global/ARC-000-PRIN-v1.0.md) [v7](https://tractorjuice.github.io/arckit-test-project-v7-nhs-appointment/#projects/000-global/ARC-000-PRIN-v1.0.md) [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/000-global/ARC-000-PRIN-v1.0.md) [v16](https://tractorjuice.github.io/arckit-test-project-v16-doctors-appointment/#projects/000-global/ARC-000-PRIN-v1.0.md) [v17](https://tractorjuice.github.io/arckit-test-project-v17-fuel-prices/#projects/000-global/ARC-000-PRIN-v1.0.md) [v18](https://tractorjuice.github.io/arckit-test-project-v18-smart-meter/#projects/000-global/ARC-000-PRIN-v1.0.md) [v19](https://tractorjuice.github.io/arckit-test-project-v19-gov-api-aggregator/#projects/000-global/ARC-000-PRIN-v1.0.md) | 🟢 生效 |
### 战略上下文
| 命令 | 描述 | 示例 | 状态 |
|------|------|------|------|
| `/arckit.stakeholders` | 分析利益相关者的驱动因素、目标与可衡量结果 | [v1](https://tractorjuice.github.io/arckit-test-project-v1-m365/#projects/001-exchange-online-migration/ARC-001-STKE-v1.0.md) [v2](https://tractorjuice.github.io/arckit-test-project-v2-hmrc-chatbot/#projects/001-hmrc-chatbot/ARC-001-STKE-v1.0.md) [v3/001](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/001-windows-11-migration-intune/ARC-001-STKE-v1.0.md) [v3/002](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/002-application-packaging-rationalisation/ARC-002-STKE-v1.0.md) [v3/003](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/003-peripherals-update-upgrade/ARC-003-STKE-v1.0.md) [v3/004](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/004-conference-facilities-modernization/ARC-004-STKE-v1.0.md) [v3/005](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/005-cloud-pki/ARC-005-STKE-v1.0.md) [v3/006](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/006-large-format-printer/ARC-006-STKE-v1.0.md) [v3/007](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/007-vpn-service-windows11-autopilot/ARC-007-STKE-v1.0.md) [v6](https://tractorjuice.github.io/arckit-test-project-v6-patent-system/#projects/001-patent-management-system-for-the-intellectual-property-office/ARC-001-STKE-v1.0.md) [v8](https://tractorjuice.github.io/arckit-test-project-v8-ons-data-platform/#projects/001-ons-data-platform-modernisation/ARC-001-STKE-v1.0.md) [v9](https://tractorjuice.github.io/arckit-test-project-v9-cabinet-office-genai/#projects/001-cabinet-office-genai/ARC-001-STKE-v1.0.md) [v10](https://tractorjuice.github.io/arckit-test-project-v10-training-marketplace/#projects/001-ai-training-marketplace/ARC-001-STKE-v1.0.md) [v11](https://tractorjuice.github.io/arckit-test-project-v11-national-highways-data/#projects/001-national-highways-data-architecture-modernization/ARC-001-STKE-v1.0.md) [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/ARC-001-STKE-v1.0.md) [v16](https://tractorjuice.github.io/arckit-test-project-v16-doctors-appointment/#projects/001-doctors-appointment/ARC-001-STKE-v1.0.md) [v17](https://tractorjuice.github.io/arckit-test-project-v17-fuel-prices/#projects/001-uk-fuel-price-transparency-service/ARC-001-STKE-v1.0.md) [v18](https://tractorjuice.github.io/arckit-test-project-v18-smart-meter/#projects/001-smart-meter-app/ARC-001-STKE-v1.0.md) [v19](https://tractorjuice.github.io/arckit-test-project-v19-gov-api-aggregator/#projects/001-uk-government-api-aggregator/ARC-001-STKE-v1.0.md) | 🟢 生效 |
| `/arckit.risk` | 创建遵循 HM Treasury Orange Book 原则的全面风险登记册 | [v3/001](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/001-windows-11-migration-intune/ARC-001-RISK-v1.0.md) [v3/002](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/002-application-packaging-rationalisation/ARC-002-RISK-v1.0.md) [v3/003](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/003-peripherals-update-upgrade/ARC-003-RISK-v1.0.md) [v3/004](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/004-conference-facilities-modernization/ARC-004-RISK-v1.0.md) [v3/005](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/005-cloud-pki/ARC-005-RISK-v1.0.md) [v3/006](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/006-large-format-printer/ARC-006-RISK-v1.0.md) [v3/007](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/007-vpn-service-windows11-autopilot/ARC-007-RISK-v1.0.md) [v8](https://tractorjuice.github.io/arckit-test-project-v8-ons-data-platform/#projects/001-ons-data-platform-modernisation/ARC-001-RISK-v1.0.md) [v9](https://tractorjuice.github.io/arckit-test-project-v9-cabinet-office-genai/#projects/001-cabinet-office-genai/ARC-001-RISK-v1.0.md) [v11](https://tractorjuice.github.io/arckit-test-project-v11-national-highways-data/#projects/001-national-highways-data-architecture-modernization/ARC-001-RISK-v1.0.md) [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/ARC-001-RISK-v1.0.md) [v16](https://tractorjuice.github.io/arckit-test-project-v16-doctors-appointment/#projects/001-doctors-appointment/ARC-001-RISK-v1.0.md) [v17](https://tractorjuice.github.io/arckit-test-project-v17-fuel-prices/#projects/001-uk-fuel-price-transparency-service/ARC-001-RISK-v1.0.md) [v18](https://tractorjuice.github.io/arckit-test-project-v18-smart-meter/#projects/001-smart-meter-app/ARC-001-RISK-v1.0.md) | 🟢 生效 |
| `/arckit.sobc` | 使用英国政府《绿色皮书》5 案例模型创建战略大纲商业案例(SOBC) | [v3/001](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/001-windows-11-migration-intune/ARC-001-SOBC-v1.0.md) [v3/002](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/002-application-packaging-rationalisation/ARC-002-SOBC-v1.0.md) [v3/003]( ) [v3/004](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/004-conference-facilities-modernization/ARC-004-SOBC-v1.0.md) [v3/005](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/005-cloud-pki/ARC-005-SOBC-v1.0.md) [v3/007](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/007-vpn-service-windows11-autopilot/ARC-007-SOBC-v1.0.md) [v8](https://tractorjuice.github.io/arckit-test-project-v8-ons-data-platform/#projects/001-ons-data-platform-modernisation/ARC-001-SOBC-v1.0.md) [v9](https://tractorjuice.github.io/arckit-test-project-v9-cabinet-office-genai/#projects/001-cabinet-office-genai/ARC-001-SOBC-v1.0.md) | 🟢 生效 |
### 需求与数据
| 命令 | 描述 | 示例 | 状态 |
|------|------|------|------|
| `/arckit.requirements` | 创建全面的业务和技术需求 | [v1](https://tractorjuice.github.io/arckit-test-project-v1-m365/#projects/001-exchange-online-migration/ARC-001-REQ-v1.0.md) [v2](https://tractorjuice.github.io/arckit-test-project-v2-hmrc-chatbot/#projects/001-hmrc-chatbot/ARC-001-REQ-v1.0.md) [v3/001](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/001-windows-11-migration-intune/ARC-001-REQ-v1.0.md) [v3/002](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/002-application-packaging-rationalisation/ARC-002-REQ-v1.0.md) [v3/003](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/003-peripherals-update-upgrade/ARC-003-REQ-v1.0.md) [v3/004](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/004-conference-facilities-modernization/ARC-004-REQ-v1.0.md) [v3/005](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/005-cloud-pki/ARC-005-REQ-v1.0.md) [v3/006](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/006-large-format-printer/ARC-006-REQ-v1.0.md) [v6](https://tractorjuice.github.io/arckit-test-project-v6-patent-system/#projects/001-patent-management-system-for-the-intellectual-property-office/ARC-001-REQ-v1.0.md) [v8](https://tractorjuice.github.io/arckit-test-project-v8-ons-data-platform/#projects/001-ons-data-platform-modernisation/ARC-001-REQ-v1.0.md) [v9](https://tractorjuice.github.io/arckit-test-project-v9-cabinet-office-genai/#projects/001-cabinet-office-genai/ARC-001-REQ-v1.0.md) [v10](https://tractorjuice.github.io/arckit-test-project-v10-training-marketplace/#projects/001-ai-training-marketplace/ARC-001-REQ-v1.0.md) [v11](https://tractorjuice.github.io/arckit-test-project-v11-national-highways-data/#projects/001-national-highways-data-architecture-modernization/ARC-001-REQ-v1.0.md) [v7](https://tractorjuice.github.io/arckit-test-project-v7-nhs-appointment/#projects/001-nhs-appointment-booking/ARC-001-REQ-v1.0.md) [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/ARC-001-REQ-v1.0.md) [v16](https://tractorjuice.github.io/arckit-test-project-v16-doctors-appointment/#projects/001-doctors-appointment/ARC-001-REQ-v1.0.md) [v17](https://tractorjuice.github.io/arckit-test-project-v17-fuel-prices/#projects/001-uk-fuel-price-transparency-service/ARC-001-REQ-v1.0.md) [v18](https://tractorjuice.github.io/arckit-test-project-v18-smart-meter/#projects/001-smart-meter-app/ARC-001-REQ-v1.0.md) [v19](https://tractorjuice.github.io/arckit-test-project-v19-gov-api-aggregator/#projects/001-uk-government-api-aggregator/ARC-001-REQ-v1.0.md) | 🟢 生效 |
| `/arckit.data-model` | 创建包含 ERD 的全面数据模型 | [v3/001](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/001-windows-11-migration-intune/ARC-001-DATA-v1.0.md) [v3/002](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/002-application-packaging-rationalisation/ARC-002-DATA-v1.0.md) [v8](https://tractorjuice.github.io/arckit-test-project-v8-ons-data-platform/#projects/001-ons-data-platform-modernisation/ARC-001-DATA-v1.0.md) [v9](https://tractorjuice.github.io/arckit-test-project-v9-cabinet-office-genai/#projects/001-cabinet-office-genai/ARC-001-DATA-v1.0.md) [v10](https://tractorjuice.github.io/arckit-test-project-v10-training-marketplace/#projects/001-ai-training-marketplace/ARC-001-DATA-v1.0.md) [v11](https://tractorjuice.github.io/arckit-test-project-v11-national-highways-data/#projects/001-national-highways-data-architecture-modernization/ARC-001-DATA-v1.0.md) [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/ARC-001-DATA-v1.0.md) [v16](https://tractorjuice.github.io/arckit-test-project-v16-doctors-appointment/#projects/001-doctors-appointment/ARC-001-DATA-v1.0.md) [v17](https://tractorjuice.github.io/arckit-test-project-v17-fuel-prices/#projects/001-uk-fuel-price-transparency-service/ARC-001-DATA-v1.0.md) [v18](https://tractorjuice.github.io/arckit-test-project-v18-smart-meter/#projects/001-smart-meter-app/ARC-001-DATA-v1.0.md) | 🟢 生效 |
| `/arckit.data-mesh-contract` | 创建联邦数据产品合同(SLA、治理、互操作性) | 🟠 Alpha |
| `/arckit.dpia` | 生成符合 UK GDPR 第 35 条的 DPIA | [v3](https://ico.org.uk/for-organisations/uk-gdpr-guidance-and-resources/accountability-and-governance/data-protection-impact-assessments-dpias/) [v8](https://tractorjuice.github.io/arckit-test-project-v8-ons-data-platform/#projects/001-ons-data-platform-modernisation/ARC-001-DPIA-v1.0.md) [v9](https://tractorjuice.github.io/arckit-test-project-v9-cabinet-office-genai/#projects/001-cabinet-office-genai/ARC-001-DPIA-v1.0.md) [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/ARC-001-DPIA-v1.0.md) [v16](https://tractorjuice.github.io/arckit-test-project-v16-doctors-appointment/#projects/001-doctors-appointment/ARC-001-DPIA-v1.0.md) [v17](https://tractorjuice.github.io/arckit-test-project-v17-fuel-prices/#projects/001-uk-fuel-price-transparency-service/ARC-001-DPIA-v1.0.md) [v18](https://tractorjuice.github.io/arckit-test-project-v18-smart-meter/#projects/001-smart-meter-app/ARC-001-DPIA-v1.0.md) | 🔵 Beta |
| `/arckit.datascout` | 发现外部数据源以满足需求 | [v17](https://tractorjuice.github.io/arckit-test-project-v17-fuel-prices/#projects/001-uk-fuel-price-transparency-service/ARC-001-DSCT-v1.0.md) [v18](https://tractorjuice.github.io/arckit-test-project-v18-smart-meter/#projects/001-smart-meter-app/ARC-001-DSCT-v1.0.md) [v19](https://tractorjuice.github.io/arckit-test-project-v19-gov-api-aggregator/#projects/001-uk-government-api-aggregator/ARC-001-DSCT-v1.0.md) | 🟣 实验性 |
### 研究与战略
| 命令 | 描述 | 示例 | 状态 |
|------|------|------|------|
| `/arckit.platform-design` | 使用平台设计工具包设计多边平台策略 | [v8](https://tractorjuice.github.io/arckit-test-project-v8-ons-data-platform/#projects/001-ons-data-platform-modernisation/ARC-001-GAAP-v1.0.md) [v10](https://tractorjuice.github.io/arckit-test-project-v10-training-marketplace/#projects/001-ai-training-marketplace/ARC-001-PLAT-v1.0.md) | 🟠 实验性 |
| `/arckit.research` | 研究技术、服务与产品以满足需求(含自建 vs 采购分析) | [v3/001](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/001-windows-11-migration-intune/ARC-001-RSCH-v1.0.md) [v3/002](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/002-application-packaging-rationalisation/ARC-002-RSCH-v1.0.md) [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/research/ARC-001-RSCH-001-v1.0.md) [v17](https://tractorjuice.github.io/arckit-test-project-v17-fuel-prices/#projects/001-uk-fuel-price-transparency-service/ARC-001-RSCH-v1.0.md) [v18](https://tractorjuice.github.io/arckit-test-project-v18-smart-meter/#projects/001-smart-meter-app/ARC-001-RSCH-v1.0.md) | 🔵 Beta |
| `/arckit.grants` | 研究英国政府资助、慈善资助与加速器计划(含资格评分) | — | 🟣 实验性 |
| `/arckit.wardley` | 创建战略 Wardley 映射(含组件演进分析) | [v3](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/001-windows-11-migration-intune/wardley-maps/ARC-001-WARD-001-v1.0.md) [v6](https://tractorjuice.github.io/arckit-test-project-v6-patent-system/#projects/001-patent-management-system-for-the-intellectual-property-office/wardley-maps/ARC-001-WARD-001-v1.0.md) [v11](https://tractorjuice.github.io/arckit-test-project-v11-national-highways-data/#projects/001-national-highways-data-architecture-modernization/wardley-maps/ARC-001-WARD-001-v1.0.md) [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/wardley-maps/ARC-001-WARD-001-v1.0.md) | 🟣 实验性 |
| `/arckit.wardley.value-chain` | 分解用户价值链以识别差距与重复 | — | 🟣 实验性 |
| `/arckit.wardley.doctrine` | 评估组织治理原则成熟度(4 阶段、40+ 原则) | — | 🟣 实验性 |
| `/arckit.wardley.gameplay` | 分析 60+ 战略博弈模式 | — | 🟣 实验性 |
| `/arckit.wardley.climate` | 评估 32 项气候模式对组件的影响 | — | 🟣 实验性 |
| `/arckit.strategy` | 综合战略工件生成执行级架构策略文档 | — | 🔵 Beta |
| `/arckit.roadmap` | 创建多年度架构路线图(含 Mermaid 甘特图) | [v3](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/001-windows-11-migration-intune/ARC-001-ROAD-v1.0.md) | 🔵 Beta |
| `/arckit.framework` | 将工件转化为可重用框架(含原则、模式、实现指导) | — | 🔵 Beta |
### 云研究(MCP)
| 命令 | 描述 | 示例 | 状态 |
|------|------|------|------|
| `/arckit.azure-research` | 使用 Microsoft Learn MCP 研究 Azure 服务 | [v3/001](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/001-windows-11-migration-intune/research/ARC-001-AZRS-v1.0.md) [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/research/ARC-001-AZRS-v1.0.md) [v17](https://tractorjuice.github.io/arckit-test-project-v17-fuel-prices/#projects/001-uk-fuel-price-transparency-service/research/ARC-001-AZRS-v1.0.md) [v18](https://tractorjuice.github.io/arckit-test-project-v18-smart-meter/#projects/001-smart-meter-app/research/ARC-001-AZRS-v1.0.md) [v19](https://tractorjuice.github.io/arckit-test-project-v19-gov-api-aggregator/#projects/001-uk-government-api-aggregator/research/ARC-001-AZRS-v1.0.md) | 🟣 实验性 |
| `/arckit.aws-research` | 使用 AWS Knowledge MCP 研究 AWS 服务 | [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/research/ARC-001-AWRS-v1.0.md) [v17](https://tractorjuice.github.io/arckit-test-project-v17-fuel-prices/#projects/001-uk-fuel-price-transparency-service/research/ARC-001-AWRS-v1.0.md) [v18](https://tractorjuice.github.io/arckit-test-project-v18-smart-meter/#projects/001-smart-meter-app/research/ARC-001-AWRS-v1.0.md) [v19](https://tractorjuice.github.io/arckit-test-project-v19-gov-api-aggregator/#projects/001-uk-government-api-aggregator/research/ARC-001-AWRS-v1.0.md) | 🟣 实验性 |
| `/arckit.gcp-research` | 使用 Google Developer Knowledge MCP 研究 GCP 服务 | — | 🟣 实验性 |
### 采购
| 命令 | 描述 | 示例 | 状态 |
|------|------|------|------|
| `/arckit.sow` | 生成工作说明书(RFP)文档 | [v1](https://tractorjuice.github.io/arckit-test-project-v1-m365/#projects/001-exchange-online-migration/ARC-001-SOW-v1.0.md) [v2](https://tractorjuice.github.io/arckit-test-project-v2-hmrc-chatbot/#projects/001-hmrc-chatbot/ARC-001-SOW-v1.0.md) [v3/001](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/001-windows-11-migration-intune/ARC-001-SOW-v1.0.md) [v3/002](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/002-application-packaging-rationalisation/ARC-002-SOW-v1.0.md) [v3/003](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/003-peripherals-update-upgrade/ARC-003-SOW-v1.0.md) [v6](https://tractorjuice.github.io/arckit-test-project-v6-patent-system/#projects/001-patent-management-system-for-the-intellectual-property-office/ARC-001-SOW-v1.0.md) | 🟢 生效 |
| `/arckit.dos` | 生成数字成果与专家(DOS)采购文档 🇬🇧 | — | 🟣 实验性 |
| `/arckit.gcloud-search` | 搜索 G-Cloud 服务(含实时市场对比) 🇬🇧 | [v3](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/001-windows-11-migration-intune/ARC-001-GCLD-v1.0.md) [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/ARC-001-GCLD-v1.0.md) | 🟣 实验性 |
| `/arckit.gcloud-clarify` | 分析 G-Cloud 服务差距并生成澄清问题 | — | 🟣 实验性 |
| `/arckit.evaluate` | 创建供应商评估框架与评分 | [v1](https://tractorjuice.github.io/arckit-test-project-v1-m365/#projects/001-exchange-online-migration/ARC-001-EVAL-v1.0.md) [v2](https://tractorjuice.github.io/arckit-test-project-v2-hmrc-chatbot/#projects/001-hmrc-chatbot/ARC-001-EVAL-v1.0.md) [v3/001](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/001-windows-11-migration-intune/ARC-001-EVAL-v1.0.md) [v3/002](LINK_URL_205/>) [v3/003](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/003-peripherals-update-upgrade/ARC-003-EVAL-v1.0.md) [v3/005](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/005-cloud-pki/ARC-005-EVAL-v1.0.md) [v6](https://tractorjuice.github.io/arckit-test-project-v6-patent-system/#projects/001-patent-management-system-for-the-intellectual-property-office/ARC-001-EVAL-v1.0.md) | 🟢 生效 |
| `/arckit.evaluate`(比较模式) | 并排比较供应商提案 | — | 🔵 Beta |
### 设计审查
| 命令 | 描述 | 示例 | 状态 |
|------|------|------|------|
| `/arckit.hld-review` | 审查高层设计(HLD) | [v3](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/001-windows-11-migration-intune/reviews/ARC-001-HLDR-v1.0.md) [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/reviews/ARC-001-HLDR-v1.0.md) | 🔵 Beta |
| `/arckit.dld-review` | 审查详细设计(DLD) | — | 🔵 Beta |
### 运营
| 命令 | 描述 | 示例 | 状态 |
|------|------|------|------|
| `/arckit.backlog` | 生成优先级产品待办事项 | [v3/001](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/001-windows-11-migration-intune/ARC-001-BKLG-v1.0.md) [v3/002](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/002-application-packaging-rationalisation/ARC-002-BKLG-v1.0.md) [v3/003](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/003-peripherals-update-upgrade/ARC-003-BKLG-v1.0.md) [v3/004](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/004-conference-facilities-modernization/ARC-004-BKLG-v1.0.md) [v9](https://tractorjuice.github.io/arckit-test-project-v9-cabinet-office-genai/#projects/001-cabinet-office-genai/ARC-001-BKLG-v1.0.md) [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/ARC-001-BKLG-v1.0.md) [v17](https://tractorjuice.github.io/arckit-test-project-v17-fuel-prices/#projects/001-uk-fuel-price-transparency-service/ARC-001-BKLG-v1.0.md) [v19](https://tractorjuice.github.io/arckit-test-project-v19-gov-api-aggregator/#projects/001-uk-government-api-aggregator/ARC-001-BKLG-v1.0.md) | 🔵 Beta |
| `/arckit.trello` | 导出待办事项至 Trello | — | 🟣 实验性 |
| `/arckit.servicenow` | 生成 ServiceNow 服务设计 | [v3](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/001-windows-11-migration-intune/ARC-001-SNOW-v1.0.md) | 🔵 Beta |
| `/arckit.devops` | 创建 DevOps 策略(含 CI/CD、IaC) | [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/ARC-001-DEVOPS-v1.0.md) | 🟣 实验性 |
| `/arckit.mlops` | 创建 MLOps 策略(含模型生命周期) | [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/ARC-001-MLOPS-v1.0.md) | 🟣 实验性 |
| `/arckit.finops` | 创建 FinOps 策略(含云成本管理) | [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/ARC-001-FINOPS-v1.0.md) | 🟣 实验性 |
| `/arckit.operationalize` | 创建运营就绪包(含支持模型、DR/BCP) | — | 🟣 实验性 |
### 治理与质量
| 命令 | 描述 | 示例 | 状态 |
|------|------|------|------|
| `/arckit.traceability` | 生成需求追溯矩阵 | [v1](https://tractorjuice.github.io/arckit-test-project-v1-m365/#projects/001-exchange-online-migration/ARC-001-TRAC-v1.0.md) [v2](https://tractorjuice.github.io/arckit-test-project-v2-hmrc-chatbot/#projects/001-hmrc-chatbot/ARC-001-TRAC-v1.0.md) [v3/001](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/001-windows-11-migration-intune/ARC-001-TRAC-v1.0.md) [v3/002](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/002-application-packaging-rationalisation/ARC-002-TRAC-v1.0.md) [v3/003](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/003-peripherals-update-upgrade/ARC-003-TRAC-v1.0.md) [v6](https://tractorjuice.github.io/arckit-test-project-v6-patent-system/#projects/001-patent-management-system-for-the-intellectual-property-office/ARC-001-TRAC-v1.0.md) [v9](https://tractorjuice.github.io/arckit-test-project-v9-cabinet-office-genai/#projects/001-cabinet-office-genai/ARC-001-TRAC-v1.0.md) [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/ARC-001-TRAC-v1.0.md) | 🟢 生效 |
| `/arckit.analyze` | 进行全面的治理质量分析 | [v6](https://tractorjuice.github.io/arckit-test-project-v6-patent-system/#projects/001-patent-management-system-for-the-intellectual-property-office/ARC-001-ANAL-v1.0.md) [v9](https://tractorjuice.github.io/arckit-test-project-v9-cabinet-office-genai/#projects/001-cabinet-office-genai/ARC-001-ANAL-v1.0.md) [v11](https://tractorjuice.github.io/arckit-test-project-v11-national-highways-data/#projects/001-national-highways-data-architecture-modernization/ARC-001-ANAL-v1.0.md) [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/ARC-001-ANAL-v1.0.md) | 🔵 Beta |
| `/arckit.principles-compliance` | 评估架构原则合规性并生成改进建议 | [v3](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/001-windows-11-migration-intune/ARC-001-PRIN-COMP-v1.0.md) [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/ARC-001-PRIN-COMP-v1.0.md) | 🟢 生效 |
| `/arckit.story` | 生成综合项目故事(含时间线分析) | [v3](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/001-windows-11-migration-intune/ARC-001-STORY-v1.0.md) [v8](https://tractorjuice.github.io/arckit-test-project-v8-ons-data-platform/#projects/001-ons-data-platform-modernisation/ARC-001-STORY-v1.0.md) [v9](https://tractorjuice.github.io/arckit-test-project-v9-cabinet-office-genai/#projects/001-cabinet-office-genai/ARC-001-STORY-v1.0.md) [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/ARC-001-STORY-v1.0.md) | 🟢 生效 |
| `/arckit.presentation` | 生成 MARP 幻灯片(含多模式) | — | 🔵 Beta |
| `/arckit.conformance` | 评估架构一致性(含 ADR 实施、技术债务) | — | 🔵 Beta |
| `/arckit.health` | 扫描项目以发现陈旧工件与问题 | — | 🔵 Beta |
| `/arckit.search` | 全局搜索项目工件 | — | 🔵 Beta |
| `/arckit.customize` | 复制模板以进行定制(更新时保留) | — | 🟢 生效 |
| `/arckit.maturity-model` | 生成能力成熟度模型(含当前/目标状态) | — | 🔵 Beta |
| `/arckit.template-builder` | 交互式创建新模板 | — | 🟠 实验性 |
### 英国政府
| 命令 | 描述 | 示例 | 状态 |
|------|------|------|------|
| `/arckit.service-assessment` | 准备 GDS 服务标准评估 | [v16](https://tractorjuice.github.io/arckit-test-project-v16-doctors-appointment/#projects/001-doctors-appointment/ARC-001-SASS-v1.0.md) | 🔵 Beta |
| `/arckit.tcop` | 生成《技术实践守则》(TCoP)评估文档 | [v6](https://tractorjuice.github.io/arckit-test-project-v6-patent-system/#projects/001-patent-management-system-for-the-intellectual-property-office/ARC-001-TCOP-v1.0.md) [v8](https://tractorjuice.github.io/arckit-test-project-v8-ons-data-platform/#projects/001-ons-data-platform-modernisation/ARC-001-TCOP-v1.0.md) [v9](https://tractorjuice.github.io/arckit-test-project-v9-cabinet-office-genai/#projects/001-cabinet-office-genai/ARC-001-TCOP-v1.0.md) [v11](https://tractorjuice.github.io/arckit-test-project-v11-national-highways-data/#projects/001-national-highways-data-architecture-modernization/ARC-001-TCOP-v1.0.md) [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/ARC-001-TCOP-v1.0.md) | 🔵 Beta |
| `/arckit.secure` | 生成《安全设计》评估(NCSC CAF、网络安全基础、UK GDPR) | [v8](https://tractorjuice.github.io/arckit-test-project-v8-ons-data-platform/#projects/001-ons-data-platform-modernisation/ARC-001-SECD-v1.0.md) [v9](https://tractorjuice.github.io/arckit-test-project-v9-cabinet-office-genai/#projects/001-cabinet-office-genai/ARC-001-SECD-v1.0.md) [v11](https://tractorjuice.github.io/arckit-test-project-v11-national-highways-data/#projects/001-national-highways-data-architecture-modernization/ARC-001-SECD-v1.0.md) [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/ARC-001-SECD-v1.0.md) [v16](https://tractorjuice.github.io/arckit-test-project-v16-doctors-appointment/#projects/001-doctors-appointment/ARC-001-SECD-v1.0.md) [v17](https://tractorjuice.github.io/arckit-test-project-v17-fuel-prices/#projects/001-uk-fuel-price-transparency-service/ARC-001-SECD-v1.0.md) [v18](https://tractorjuice.github.io/arckit-test-project-v18-smart-meter/#projects/001-smart-meter-app/ARC-001-SECD-v1.0.md) [v19](https://tractorjuice.github.io/arckit-test-project-v19-gov-api-aggregator/#projects/001-uk-government-api-aggregator/ARC-001-SECD-v1.0.md) | 🔵 Beta |
| `/arckit.ai-playbook` | 生成《英国政府 AI 手册》合规评估 | [v9](https://tractorjuice.github.io/arckit-test-project-v9-cabinet-office-genai/#projects/001-cabinet-office-genai/ARC-001-AIPB-v1.0.md) [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/ARC-001-AIPB-v1.0.md) | 🟠 Alpha |
| `/arckit.atrs` | 生成《算法透明度记录标准》(ATRS)记录 | [v2](https://www.gov.uk/government/collections/algorithmic-transparency-recording-standard-hub) [v9](https://tractorjuice.github.io/arckit-test-project-v9-cabinet-office-genai/#projects/001-cabinet-office-genai/ARC-001-ATRS-v1.0.md) [v14](https://tractorjuice.github.io/arckit-test-project-v14-scottish-courts/#projects/001-scts-genai-programme/ARC-001-ATRS-v1.0.md) | 🟠 Alpha |
### UK MOD
| 命令 | 描述 | 示例 | 状态 |
|------|------|------|------|
| `/arckit.mod-secure` | 生成 MOD《安全设计》评估(JSP 440、IAMM、通行许可) | [v3/001](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/001-windows-11-migration-intune/ARC-001-SECD-MOD-v1.0.md) [v3/006](https://tractorjuice.github.io/arckit-test-project-v3-windows11/#projects/006-large-format-printer/ARC-006-SECD-MOD-v1.0.md) | 🟣 实验性 |
| `/arckit.jsp-936` | 生成 MOD《JSP 936》AI 保证文档 | — | 🟣 实验性 |
### 文档与发布
| 命令 | 描述 | 示例 | 状态 |
|------|------|------|------|
| `/arckit.glossary` | 生成项目术语表(含定义、缩写、交叉引用) | — | 🔵 Beta |
| `/arckit.pages` | 生成静态文档网站(含 Mermaid 渲染) | [v1](https://tractorjuice.github.io/arckit-test-project-v1-m365/) [v2](https://tractorjuice.github.io/arckit-test-project-v2-hmrc-chatbot/) [v3](https://tractorjuice.github.io/arckit-test-project-v3-windows11/) [v6](https://tractorjuice.github.io/arckit-test-project-v6-patent-system/) [v7](https://tractorjuice.github.io/arckit-test-project-v7-nhs-appointment/) [v8](https://tractorjuice.github.io/arckit-test-project-v8-ons-data-platform/) [v9](https://tractorjuice.github.io/arckit-test-project-v9-cabinet-office-genai/) [v10](https://tractorjuice.github.io/arckit-test-project-v10-training-marketplace/) [v14](
专为希望进行系统化、AI 辅助治理的企业架构师而构建。
标签:AI辅助架构, Azure, DLD, ERD, GDPR合规, Green Book SOBC, HLD, HM Treasury Orange Book, Mermaid, Microsoft Learn MCP, RFP管理, ServiceNow, Shellcode, Wardley Mapping, 企业架构, 企业架构治理工具包, 供应商选择, 供应商采购, 利益相关者分析, 后端开发, 商业案例, 战略规划, 技术调研, 抓包工具, 数据治理, 服务管理, 架构原则, 架构治理, 网络安全研究, 网络搜索, 自建与采购分析, 视觉架构图, 设计评审, 逆向工具, 采购工具包, 防御加固, 需求可追溯性, 需求文档