Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

nango-function-buildernango 函数生成器

Agent Skill

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

总安装

2,938

周安装

120

GitHub Stars

公开资料未说明

下载量

941
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/nangohq/skills --skill nango-function-builder

简介

用于查找、检索和筛选相关信息,支持基于关键词或任务场景定位目标内容。

  • 适用于需要快速聚合资料或验证命名规范的智能体工作流场景。
  • 通过命令行工具实现信息提取,输出候选结果供人工筛选或自动处理。
  • 安装前建议检查仓库活跃度与权限设置,留意是否涉及外部 API 调用。
  • nango-function-builder 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Nango Function Builder

Build deployable Nango functions (actions and syncs) with repeatable patterns and validation steps.

When to use

  • User wants to build or modify a Nango function
  • User wants to build an action in Nango
  • User wants to build a sync in Nango

Sync Strategy Gate (required before writing code)

If the task is a sync, read references/syncs.md before writing code and state one of these paths first:

  • Checkpoint plan:

- change source (updated_at, modified_since, changed-records endpoint, cursor, page token, offset/page, since_id, or webhook) - checkpoint schema - how the checkpoint changes the provider request or resume state - whether the request still walks the full dataset or returns changed rows only - delete strategy

  • Full refresh blocker:

- exact provider limitation from the docs or sample payloads - why checkpoints cannot work here

Invalid sync implementations:

  • full refresh because it is simpler
  • saveCheckpoint() without getCheckpoint()
  • reading or saving a checkpoint without using it in request params or pagination state
  • using syncType: 'incremental' or nango.lastSyncDate in a new sync
  • using trackDeletesStart() / trackDeletesEnd() with a changed-only checkpoint (modified_after, updated_after, changed-records endpoint). Those requests omit unchanged rows, so trackDeletesEnd() will falsely delete them.
  • using trackDeletesStart() / trackDeletesEnd() in an incremental sync that already has explicit deleted-record events

Choose the Path

Action:

  • One-time request, user-triggered, built with createAction()
  • Read references/actions.md before writing code

Sync:

  • Scheduled or webhook-driven cache updates built with createSync()
  • Complete the Sync Strategy Gate first
  • Read references/syncs.md before writing code

Workflow (recommended)

  1. Decide whether this is an action or a sync.
  2. Read the matching reference file: references/actions.md or references/syncs.md.
  3. For syncs, inspect provider docs or payloads for checkpoints and deletes, decide whether the endpoint returns full data or changed rows, and complete the Sync Strategy Gate.
  4. Gather required inputs and external values. For connection lookup, credentials, or discovery, use the Nango HTTP API.
  5. Confirm this is a Zero YAML TypeScript project (no nango.yaml) and that you are in the Nango root (.nango/ exists).
  6. Create or update the function under {integrationId}/actions/ or {integrationId}/syncs/, apply the schema and casing rules here, then register it in index.ts.
  7. Validate with nango dryrun... --validate -e dev --no-interactive --auto-confirm.
  8. If validation cannot pass, stop and report the missing external state or inputs.
  9. After validation passes, run nango dryrun... --save, then nango generate:tests, then npm test.
  10. Deploy with nango deploy dev only when requested.

Required Inputs (Ask User if Missing)

Always:

  • Integration ID (provider name)
  • Connection ID (for dryrun)
  • Script name (kebab-case)
  • API reference URL or sample response

Action-specific:

  • Use case summary
  • Input parameters
  • Output fields
  • Metadata JSON if required
  • Test input JSON for dryrun --input and mocks (required; use {} for no-input actions)

Sync-specific:

  • Model name (singular, PascalCase)
  • Frequency (every hour, every 5 minutes, etc.)
  • Checkpoint schema (timestamp, cursor, page token, offset/page, since_id, or composite)
  • How the checkpoint changes the provider request or resume state
  • Delete strategy (deleted-record endpoint/webhook, or why full refresh is required)
  • If proposing a full refresh, the exact provider limitation that blocks checkpoints from the docs/sample response
  • Metadata JSON if required (team_id, workspace_id)

If any required external values are missing, ask a targeted question after checking the repo and provider docs. For syncs, choose a checkpoint plus deletion strategy whenever the provider supports one. If you cannot find a viable checkpoint strategy, state exactly why before writing a full refresh.

Preconditions (Do Before Writing Code)

Confirm TypeScript Project (No nango.yaml)

This skill only supports TypeScript projects using createAction()/createSync().

ls nango.yaml 2>/dev/null && echo "YAML PROJECT DETECTED" || echo "OK - No nango.yaml"

If you see YAML PROJECT DETECTED:

  • Stop immediately.
  • Tell the user to upgrade to the TypeScript format first.
  • Do not attempt to mix YAML and TypeScript.

Reference: https://nango.dev/docs/implementation-guides/platform/migrations/migrate-to-zero-yaml

Verify Nango Project Root

Do not create files until you confirm the Nango root:

ls -la .nango/ 2>/dev/null && pwd && echo "IN NANGO PROJECT ROOT" || echo "NOT in Nango root"

If you see NOT in Nango root:

  • cd into the directory that contains.nango/
  • Re-run the check
  • Do not use absolute paths as a workaround

All file paths must be relative to the Nango root. Creating files with extra prefixes while already in the Nango root will create nested directories that break the build.

Project Structure and Naming

./
|-- .nango/
|-- index.ts
|-- hubspot/
|   |-- actions/
|   |   `-- create-contact.ts
|   `-- syncs/
|       `-- fetch-contacts.ts
`-- slack/
    `-- actions/
        `-- post-message.ts
  • Provider directories: lowercase (hubspot, slack)
  • Action files: kebab-case (create-contact.ts)
  • Sync files: kebab-case (many teams use a fetch- prefix, but it's optional)
  • One function per file (action or sync)
  • All actions and syncs must be imported in index.ts

Register scripts in index.ts (required)

Use side-effect imports only (no default/named imports). Include the .js extension.

// index.ts
import './github/actions/get-top-contributor.js';
import './github/syncs/fetch-issues.js';

Symptom of incorrect registration: the file compiles but you see No entry points found in index.ts... or the function never appears.

Non-Negotiable Rules

Shared platform constraints

  • Zero YAML TypeScript projects use createAction() / createSync(), not nango.yaml.
  • Register every action/sync in index.ts with side-effect imports (import './<path>.js').
  • You cannot add arbitrary packages. Use relative imports; built-ins include zod, crypto/node:crypto, and url/node:url.
  • Use the Nango HTTP API for connection lookup, credentials, and proxy calls outside function code. Do not invent CLI token/connection commands.
  • Add an API doc link comment above each provider call.
  • Action outputs cannot exceed 2MB.
  • HTTP retries default to 0; set retries deliberately, especially for writes.

Sync rules

  • Sync records need a stable string id.
  • New syncs should define a checkpoint schema, call nango.getCheckpoint() first, and nango.saveCheckpoint() after each page or batch.
  • A checkpoint is valid only if it changes the request or resume state (since, updated_after, cursor, page_token, offset, page, since_id, etc.). Saving one without using it is not incremental sync.
  • New syncs must not use syncType: 'incremental' or nango.lastSyncDate.
  • Default to nango.paginate(...) + nango.batchSave(...). Avoid manual while (true) loops when cursor, link, or offset pagination fits.
  • Prefer batchDelete() when the provider returns deletions, tombstones, or delete webhooks.
  • Use full refresh only if the provider cannot return changes, deletions, or resume state, or if the dataset is tiny.
  • For full refresh, cite the exact provider limitation from docs or payloads. "It is easier" is not enough.
  • deleteRecordsFromPreviousExecutions() is deprecated. For full refresh, call trackDeletesStart() before fetch/save and trackDeletesEnd() only after a successful full fetch/save.
  • Never combine trackDeletesStart() / trackDeletesEnd() with changed-only checkpoints (modified_after, updated_after, changed-records endpoints, etc.). They omit unchanged rows, so trackDeletesEnd() would delete them.
  • Checkpointed full refreshes are still full refreshes. Call trackDeletesEnd() only in the run that finishes the full window.

Conventions

  • Match field casing to the external API. Passthrough fields keep provider casing; non-passthrough fields should use the majority casing of that API.
  • Prefer explicit field names.
  • Add .describe() examples for IDs, timestamps, enums, and URLs.
  • Avoid any; use inline mapping types.
  • Prefer static Nango endpoint paths (avoid :id / {id} in the exposed endpoint); pass IDs in input/params.
  • List actions should expose cursor plus a next-cursor field in the majority casing of that API (next_cursor, nextCursor, etc.).
  • Use nango.zodValidateInput() only when you need custom validation or logging; otherwise rely on schemas + nango dryrun --validate.

Schema Semantics

  • Default non-required inputs to .optional().
  • Use .nullable() only when null has meaning, usually clear-on-update; add .optional() when callers may omit the field too.
  • Raw provider schemas should match the provider: .optional() for omitted fields, .nullable() for explicit null, .nullish() only when the provider truly does both.
  • Final action outputs and normalized sync models should prefer .optional() and normalize upstream null to omission unless null matters.
  • Default generated schemas to .optional() for non-required inputs and normalized outputs; widen only when the upstream contract justifies it.
  • Prefer .nullable() over z.union([z.null(), T]) or z.union([T, z.null()]).
  • Return null only when the output schema allows it.
  • z.object() strips unknown keys by default. For provider pass-through use z.object({}).passthrough(), z.record(z.unknown()), or z.unknown() with minimal refinements.

Field Naming and Casing Rules

  • Use explicit suffixes in the API's majority casing: IDs (user_id, userId), names (channel_name, channelName), emails (user_email, userEmail), URLs (callback_url, callbackUrl), and timestamps (created_at, createdAt).

Mapping example (API expects a different parameter name):

const InputSchema = z.object({
    userId: z.string()
});

const config: ProxyConfiguration = {
    endpoint: 'users.info',
    params: {
        user: input.userId
    },
    retries: 3
};

If the API is snake_case, use user_id instead. The goal is API consistency.

Dryrun, Mocks, and Tests (required)

Required loop (do not skip steps):

  1. Run nango dryrun... --validate -e dev --no-interactive --auto-confirm until it passes.
  2. Actions: always pass --input '{...}' (use --input '{}' for no-input actions).
  3. Syncs: use --checkpoint '{...}' when you need to simulate a resumed run.
  4. If validation cannot pass, stop and state the missing external state or inputs required.
  5. After validation passes, run nango dryrun... --save -e dev --no-interactive --auto-confirm to generate <script-name>.test.json.
  6. Run nango generate:tests, then npm test.

Hard rules:

  • Treat <script-name>.test.json as generated output. Never create, edit, rename, or move it (including recorded hash fields).
  • If mocks are wrong or stale, fix the code and re-record with --save.
  • Do not hard-code error payloads in *.test.json; use a Vitest test with vi.spyOn(...) for 404/401/429/timeout cases.
  • Connection ID is the second positional argument; do not use --connection-id.
  • Use --integration-id <integration-id> when script names overlap across integrations.
  • Prefer --checkpoint for new incremental syncs; --lastSyncDate is a legacy pattern.
  • If nango is not on PATH, use npx nango....
  • CLI upgrade prompts can block automation; set NANGO_CLI_UPGRADE_MODE=ignore if needed.

Reference: https://nango.dev/docs/implementation-guides/platform/functions/testing

References

  • Action patterns, CRUD examples, metadata usage, and ActionError examples: references/actions.md
  • Sync patterns, concrete checkpoint examples, delete strategies, and full refresh fallback: references/syncs.md

Useful Nango docs (quick links)

Deploy (Optional)

Deploy functions to an environment in your Nango account:

nango deploy dev

# Deploy only one function
nango deploy --action <action-name> dev
nango deploy --sync <sync-name> dev

Reference: https://nango.dev/docs/implementation-guides/use-cases/actions/implement-an-action

When API Docs Do Not Render

If web fetching returns incomplete docs (JS-rendered):

  • Ask the user for a sample response
  • Use existing actions/syncs in the repo as a pattern
  • Run dryrun with --validate until it passes, then run dryrun with --save, then nango generate:tests

Final Checklists

Action:

  • Nango root verified
  • references/actions.md was used for the action pattern
  • Schemas and types are clear, and missing-value rules match the provider vs normalized contract
  • createAction() includes endpoint, input, output, and scopes when required
  • Fields use passthrough casing or the API's majority casing
  • Provider call includes an API doc link comment and intentional retries
  • nango.ActionError is used for expected failures
  • Registered in index.ts
  • Dryrun succeeds with --validate -e dev --no-interactive --auto-confirm --input '{...}'
  • <action-name>.test.json was generated by nango dryrun... --save after --validate
  • nango generate:tests ran and npm test passes

Sync:

  • Nango root verified
  • references/syncs.md was used for the sync pattern
  • Models map is defined, ids are stable strings, and normalized models prefer .optional() unless null matters
  • Incremental was chosen first, with a checkpoint schema unless full refresh is explicitly justified from docs or payloads
  • nango.getCheckpoint() is read at the start and nango.saveCheckpoint() runs after each page or batch
  • Checkpoint data changes the provider request or resume state (since, updated_after, cursor, page_token, offset, page, since_id, etc.)
  • Changed-only checkpoint syncs (modified_after, updated_after, changed-records endpoint) do not use trackDeletesStart() / trackDeletesEnd()
  • If checkpoints were not used, the response explains exactly why no viable checkpoint strategy exists
  • Raw provider schemas model omitted vs null correctly, and fields use passthrough casing or the API's majority casing
  • nango.paginate() is used unless the API truly cannot fit Nango's paginator
  • Deletion strategy matches the sync type: batchDelete() for incremental only when the provider returns explicit deletions; otherwise full-refresh fallback uses trackDeletesStart() before fetch/save and trackDeletesEnd() only after a successful full fetch plus save
  • Metadata handled if required
  • Registered in index.ts
  • Dryrun succeeds with --validate -e dev --no-interactive --auto-confirm
  • <sync-name>.test.json was generated by nango dryrun... --save after --validate
  • nango generate:tests ran and npm test passes

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.28%
按下载量换算351

Claude

29.22%
按下载量换算275

Cursor

16.92%
按下载量换算159

Gemini CLI

8.98%
按下载量换算85

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills