Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计通过

ark-sdk-developmentARK SDK 开发

Agent Skill

ark-sdk-development 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

783

周安装

32

GitHub Stars

373

下载量

253
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ark-sdk-development(ARK SDK 开发)
来源仓库:https://github.com/mckinsey/agents-at-scale-ark
仓库路径:skills/ark-sdk-development
安装命令:
npx skills add https://github.com/mckinsey/agents-at-scale-ark --skill ark-sdk-development
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/mckinsey/agents-at-scale-ark --skill ark-sdk-development

简介

ark-sdk-development 管理 ARK SDK 的类型生成流水线,从 CRD YAML 自动生成 Python/TypeScript 类型定义。

  • 适合扩展 Ark API 时同步更新 Pydantic 模型与 OpenAPI schema,保持前后端契约一致性。
  • 通过 crd_to_openapi.py 与 openapi-generator-cli 实现多语言类型导出,支持 overlay 定制。
  • 使用前应运行 make ark-sdk-build 确保本地类型与最新 CRD 保持一致。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

ARK SDK and Type Development

Type Generation Pipeline

Types flow through the ARK stack:

CRD YAML (ark/config/crd/)
    ↓ make ark-sdk-build (automatic)
ark-sdk Python types + overlay utilities
    ↓
ark-api Pydantic models (manual updates if exposing new fields)
    ↓ make ark-api-build → generates openapi.json
ark-dashboard TypeScript types
    ↓ npm run generate:api → generates types.ts

ark-sdk: Automatic Type Generation

CRD types are automatically generated from Kubernetes CRD YAML files.

make ark-sdk-build

This runs:

  1. crd_to_openapi.py - converts CRDs to OpenAPI schema
  2. openapi-generator-cli - generates Python types from schema
  3. Copies overlay files on top of generated code
  4. Builds wheel package

Adding Custom SDK Functionality (Overlays)

The lib/ark-sdk/gen_sdk/overlay/python/ark_sdk/ directory contains custom Python modules that are copied on top of generated code. This is how utilities like client.py, k8s.py, and executor.py are added.

To add custom SDK functionality:

  1. Add Python files to lib/ark-sdk/gen_sdk/overlay/python/ark_sdk/
  2. Run make ark-sdk-build

ark-api: Manual Model Updates

The ark-api has manually written Pydantic models in services/ark-api/ark-api/src/ark_api/models/.

When to update ark-api models:

  • When exposing new CRD fields via the HTTP API
  • When adding new API response types
make ark-api-build

This generates services/ark-api/openapi.json from FastAPI routes and Pydantic models.

Pydantic Model Naming (CRITICAL)

Pydantic model class names MUST be globally unique across all model files. When multiple files define classes with the same name (e.g., ConfigMapKeyRef, Header, ValueFrom), FastAPI generates non-deterministic OpenAPI schema names like ark_api__models__agents__Header-Input. These names depend on import order and cause CI failures when types.ts differs between environments.

Solution: Prefix class names with their domain context:

FileNaming PatternExamples
agents.pyAgent*AgentHeader, AgentValueFrom, AgentParameter
mcp_servers.pyMCPServer*MCPServerHeader, MCPServerValueSource
queries.pyQuery*QueryParameter, QueryLabelSelector
models.pyModel*ModelValueSource

Safety net: generate_openapi.py fails if any schema name contains __models__, catching collisions at build time.

See: https://github.com/mckinsey/agents-at-scale-ark/issues/656

ark-dashboard: TypeScript Type Generation

cd services/ark-dashboard/ark-dashboard
cp ../../ark-api/openapi.json ../out/
npm run generate:api
npm run build  # verify types compile

Debugging Type Errors

When you see:

Property 'SomeSchema' does not exist on type
  1. Regenerate types.ts from latest openapi.json
  2. Find the correct schema name: grep "SomeSchema" services/ark-dashboard/ark-dashboard/lib/api/generated/types.ts
  3. Update service files to use correct schema names

If you see schema names with __models__ pattern (e.g., ark_api__models__agents__Header-Input):

  • This indicates a Pydantic model naming collision
  • Fix by renaming the Python class to be unique (see naming convention above)
  • Do NOT work around by using the __models__ name - fix the root cause

Key Files

FilePurpose
ark/config/crd/bases/*.yamlSource of truth - Kubernetes CRDs
lib/ark-sdk/gen_sdk/overlay/Custom SDK utilities (copied on top of generated)
services/ark-api/ark-api/src/ark_api/models/Manually written Pydantic models
services/ark-api/ark-api/generate_openapi.pyGenerates openapi.json with collision safety net
services/ark-api/openapi.jsonGenerated OpenAPI spec from FastAPI
services/ark-dashboard/out/openapi.jsonCopy used for dashboard type generation
services/ark-dashboard/ark-dashboard/lib/api/generated/types.tsGenerated TypeScript types

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.65%
按下载量换算72

windsurf

26.02%
按下载量换算66

OpenCode

16.82%
按下载量换算43

Codex

13.24%
按下载量换算33

Antigravity

8.94%
按下载量换算23

Gemini CLI

3.58%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills