Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

migrating-to-zero-yamlmigrating TO zero YAML 命令行

Agent Skill

migrating-to-zero-yaml 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

509

周安装

21

GitHub Stars

公开资料未说明

下载量

166
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/nangohq/skills --skill migrating-to-zero-yaml

简介

migrating-to-zero-yaml 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围和维护状态,注意是否触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Migrating to Zero YAML

This skill replaces the old CLI migrator with an LLM-driven mechanical migration. Keep behavior as close as possible to the existing YAML project, then validate and stop. Do not turn this into a broader cleanup unless the user asks.

Critical rule

  • Do not tell the user to run nango migrate-to-zero-yaml.
  • Perform the migration manually in code.
  • Preserve existing behavior first.
  • Do not opportunistically migrate lastSyncDate, syncType, trackDeletes, or validation patterns unless the user asks or compilation forces you to touch them.
  • If the repo is already Zero YAML, stop and switch to a regular Zero YAML refactor workflow instead of forcing a migration.

Preconditions

  1. Confirm you are in the Nango project root and nango.yaml exists.
  2. Make sure there is a rollback path before destructive edits (git branch/commit or external backup).
  3. Read nango.yaml and inventory:

- integrations - syncs - actions - on-event handlers - models

  1. Inspect the existing TypeScript files that those YAML entries point to.
  2. Keep the migration mechanical. Avoid redesigning APIs, renaming scripts, or changing business logic.

End state you are aiming for

The migrated project should have:

  • package.json
  • tsconfig.json
  • root models.ts
  • root index.ts
  • integration files exporting createSync(), createAction(), or createOnEvent()
  • helper files importing Nango runtime types from nango
  • no nango.yaml in the final migrated state

Migration workflow

  1. Read nango.yaml and build a migration inventory.
  2. Create or update Zero YAML scaffolding:

- package.json - tsconfig.json

  1. Generate models.ts from the YAML models.
  2. Rewrite each sync file into createSync(...).
  3. Rewrite each action file into createAction(...).
  4. Rewrite each lifecycle handler into createOnEvent(...).
  5. Generate index.ts side-effect imports for every migrated script.
  6. Fix helper-file imports and small TypeScript breakages.
  7. Compile and validate.
  8. Remove nango.yaml only after the replacement project is in place and there is still a rollback path outside the file.

Scaffolding rules

package.json

If the project does not have a package file, create one. If it already exists, preserve existing fields and add the Zero YAML essentials:

  • type: "module"
  • engines.node: ">=20.0"
  • scripts:

- compile: "nango compile" - dev: "nango dev"

  • devDependencies.nango
  • devDependencies.zod

Prefer preserving the repo's package manager and existing workspace fields.

tsconfig.json

Use the standard Zero YAML TypeScript config shape:

{
  "$schema": "https://json.schemastore.org/tsconfig",
  "include": ["index.ts", "**/*.ts"],
  "exclude": ["node_modules", "dist", "build", ".nango"],
  "compilerOptions": {
    "module": "node16",
    "target": "esnext",
    "strict": true,
    "esModuleInterop": true,
    "skipLibCheck": true,
    "forceConsistentCasingInFileNames": true,
    "moduleResolution": "node16",
    "exactOptionalPropertyTypes": true,
    "noImplicitOverride": true,
    "noImplicitReturns": true,
    "noPropertyAccessFromIndexSignature": true,
    "noUncheckedIndexedAccess": true,
    "noUnusedLocals": true,
    "noUnusedParameters": true,
    "sourceMap": true,
    "noEmit": true
  }
}

Generate models.ts

Create a root models.ts file that turns YAML model definitions into Zod schemas plus exported inferred types.

Use this pattern:

import * as z from 'zod';

export const Ticket = z.object({
    id: z.string(),
    title: z.string()
});

export type Ticket = z.infer<typeof Ticket>;

export const models = {
    Ticket
};

Conversion rules:

  • string -> z.string()
  • number -> z.number()
  • boolean -> z.boolean()
  • Date -> z.date()
  • any -> z.any() or z.unknown() if you need a safer fallback
  • optional field -> .optional()
  • array -> z.array(...)
  • nested object -> nested z.object(...)
  • union -> z.union([...])
  • model reference -> reuse the referenced schema
  • dynamic object fields -> z.record(...) or .catchall(...)

Practical rule: if the old YAML model is hard to express exactly, preserve migration momentum with the broadest safe schema that still lets the project compile. Tighten later only if needed.

Define models in dependency order. If you hit circular references, use z.lazy(() => ModelName).

Rewrite syncs

For each YAML sync, keep the existing file path when possible and wrap the current default-exported function in createSync(...).

Map YAML config to Zero YAML config like this:

  • description -> description
  • version -> version (default to 0.0.1 if missing)
  • runs -> frequency
  • auto_start -> autoStart
  • sync_type -> syncType
  • track_deletes -> trackDeletes
  • endpoints -> endpoints
  • scopes -> scopes
  • webhook subscriptions -> webhookSubscriptions
  • YAML input model -> metadata
  • YAML output models -> models
  • existing default export function body -> exec

If no YAML input model exists for the sync, default metadata to z.object({}) for migration parity.

If the file exports onWebhookPayloadReceived, move that function into the createSync(...) config as onWebhook.

Use this shape:

import { createSync } from 'nango';
import * as z from 'zod';
import { Metadata, Ticket } from '../../models.js';

const sync = createSync({
    description: 'Sync tickets',
    version: '0.0.1',
    frequency: 'every hour',
    autoStart: true,
    syncType: 'full',
    trackDeletes: false,
    endpoints: [{ method: 'GET', path: '/tickets', group: 'Tickets' }],
    metadata: Metadata,
    models: { Ticket },
    exec: async (nango) => {
        // keep existing logic
    }
});

export type NangoSyncLocal = Parameters<typeof sync['exec']>[0];
export default sync;

Rewrite actions

For each YAML action, wrap the existing default-exported function in createAction(...).

Map YAML config like this:

  • description -> description
  • version -> version (default 0.0.1)
  • endpoint -> endpoint
  • input -> input
  • output -> output
  • scopes -> scopes
  • existing default export function body -> exec

If the action has no input or output schema, use z.void().

Use this shape:

import { createAction } from 'nango';
import * as z from 'zod';
import { CreateTicketInput, CreateTicketOutput } from '../../models.js';

const action = createAction({
    description: 'Create ticket',
    version: '0.0.1',
    endpoint: { method: 'POST', path: '/tickets', group: 'Tickets' },
    input: CreateTicketInput,
    output: CreateTicketOutput,
    exec: async (nango, input) => {
        // keep existing logic
    }
});

export type NangoActionLocal = Parameters<typeof action['exec']>[0];
export default action;

Rewrite on-event handlers

For each YAML lifecycle handler, wrap the existing default export in createOnEvent(...).

Map like this:

  • event name -> event
  • description -> preserve an existing description if one exists; otherwise use <event> event handler
  • existing default export function body -> exec

Use this shape:

import { createOnEvent } from 'nango';

export default createOnEvent({
    event: 'post-connection-creation',
    description: 'post-connection-creation event handler',
    exec: async (nango) => {
        // keep existing logic
    }
});

Import and typing fixes

The old migrator also cleaned up imports. Do the same manually.

  • Remove NangoSync, NangoAction, ProxyConfiguration, and ActionError imports from old models imports.
  • Import runtime types from nango instead.
  • Keep generated model imports pointing to ../../models.js or the correct relative path.
  • Use side-effect imports with .js in index.ts.

Important mechanical fixes:

  • Replace local NangoSync parameter annotations with NangoSyncLocal after wrapping the file.
  • Replace local NangoAction parameter annotations with NangoActionLocal after wrapping the file.
  • Remove type arguments from:

- nango.batchSave<T>(...) - nango.batchUpdate<T>(...) - nango.batchDelete<T>(...) - nango.getMetadata<T>()

Those generic arguments often compile in the old format but become noisy or unnecessary after migration.

Generate index.ts

Create a root index.ts with side-effect imports for every migrated script. Include the .js extension.

Example:

import './github/syncs/fetch-issues.js';
import './github/actions/create-issue.js';
import './github/on-events/post-connection-creation.js';

Do not use named or default imports here.

Helper-file cleanup

Search the rest of the repo for TypeScript helper files outside the migrated integration entrypoints.

If they import Nango runtime types from old model files, move those imports to nango and leave model imports in place only for actual model schemas/types.

Do not rewrite unrelated business logic in helper files.

Keep the migration parity-first

The manual migration should behave like the old CLI migrator:

  • preserve script names
  • preserve file locations when possible
  • preserve function bodies
  • preserve syncType
  • preserve trackDeletes
  • preserve nango.lastSyncDate usage if it already exists

Only do a second modernization pass if the user explicitly asks.

Validation loop

After the mechanical migration:

  • run nango compile
  • fix straightforward TypeScript/import/schema issues
  • run nango dryrun <script-name> <connection-id> --validate -e dev --no-interactive --auto-confirm
  • for actions, add --input '{...}' or --input '{}'
  • if validation passes, run nango dryrun <script-name> <connection-id> --save -e dev --no-interactive --auto-confirm
  • run nango generate:tests && npm test
  • never hand-edit generated *.test.json

If a migrated sync/action still needs a true behavioral refactor after this point, stop and treat that as a separate task.

Useful docs

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.26%
按下载量换算64

Claude

28.45%
按下载量换算47

Cursor

18.81%
按下载量换算31

Gemini CLI

9.53%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills