Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

nango-toolbox南乡工具箱

Agent Skill

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

总安装

353

周安装

15

GitHub Stars

公开资料未说明

下载量

124
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

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

SKILL.md

When to use

  • Any access to an external API.
  • External API calls must go through Nango.
  • Do not use MCPs, provider CLIs, or ad-hoc direct API calls outside Nango.

Configuration (required)

Resolve values in this order.

Secret key

  1. NANGO_TOOLBOX_SECRET_KEY in the process environment
  2. NANGO_TOOLBOX_SECRET_KEY in a local .env

If missing, ask the user to:

  • create a Nango account: https://app.nango.dev/signup
  • copy the secret key from Environment settings → Backend
  • set NANGO_TOOLBOX_SECRET_KEY in their shell profile (offer to add it)

Compatibility: if other instructions refer to NANGO_SECRET_KEY, treat it as NANGO_TOOLBOX_SECRET_KEY.

Base URL

  1. NANGO_SERVER_URL in the process environment
  2. NANGO_SERVER_URL in a local .env
  3. https://api.nango.dev

HTTP headers

  • Authorization: Bearer <NANGO_TOOLBOX_SECRET_KEY>
  • Content-Type: application/json
  • Prefer JSON bodies over query params when both exist.

Discovery (use these first)

List integrations:

GET <base-url>/integrations
Authorization: Bearer <secret-key>

List connections for an integration:

GET <base-url>/connections?integrationId=<unique_key>
Authorization: Bearer <secret-key>

List deployed actions/syncs:

GET <base-url>/scripts/config
Authorization: Bearer <secret-key>

Choose integration (do this before connection)

  • Check if an integration for your API is setup in Nango
  • If not, set it up for the user:

- If the API is OAuth and has Nango provided developer credentials, ask the user to enable it manually in the dashboard. - If the API is OAuth and doesn't have Nango developer credentials guide the user to get a client id & secret - If the API uses "OAuth client credentials", do not ask the user for client id & secret. Set the integration up and the user will enter them with the Connect Link. - In all other cases, set the integration up and proceed with creating a Connect link

Do not ask the user for any Connection specific parameters. Always let it enter these in the Connect link.

Choose integration + connection (required)

  • Ensure the integration (provider) exists in Nango; create it via Nango HTTP API if needed.
  • Fetch connections for the integration.
  • If multiple connections exist and you cannot disambiguate, ask which connection_id to use.

If no connection exists, generate a connect session link:

POST <base-url>/connect/sessions
Authorization: Bearer <secret-key>
Content-Type: application/json

{
  "tags": { "end_user_id": "<user-firstname>" },
  "allowed_integrations": ["<unique_key>"]
}

Share data.connect_link directly with the user (expires in ~30 minutes). Do not send them to the dashboard.

Before provider calls, confirm required scopes on the connection (often credentials.raw.scope).

If scopes are insufficient, update scopes at the integration level, then ask for permission to delete/recreate the connection:

PATCH <base-url>/integrations/<unique_key>
Authorization: Bearer <secret-key>
Content-Type: application/json

{
  "credentials": {
    "type": "OAUTH2",
    "client_id": "<client_id>",
    "client_secret": "<client_secret>",
    "scopes": "scope1,scope2,scope3"
  }
}

Scopes are comma-separated (no spaces).

Access strategy

  • Use Nango proxy for 1–2 simple provider calls and to explore the API.
  • Use a Nango Action for multi-call logic, transformations, pagination orchestration, retries/error handling, or reuse.

Prefer reusing an existing deployed action (see GET <base-url>/scripts/config).

If you must create a new action, use the building-nango-function-remotely skill and deploy before calling it. If the skill does not exist, offer to install it from https://github.com/NangoHQ/skills

Invoke a deployed action:

POST <base-url>/action/trigger
Authorization: Bearer <secret-key>
Provider-Config-Key: <unique_key>
Connection-Id: <connection_id>
Content-Type: application/json

{"action_name": "<action-name>", "input": {...}}

Docs

Nango maintains a docs page for each API it supports (find it in llms.txt). This page contains a link to the external APIs reference.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.93%
按下载量换算45

Claude

28.01%
按下载量换算35

Cursor

17.09%
按下载量换算21

Gemini CLI

9.51%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills