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

ascn-integrationsascn 集成

Agent Skill

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

总安装

661

周安装

27

GitHub Stars

公开资料未说明

下载量

214
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ascnai/skills --skill ascn-integrations

简介

ascn-integrations 用于设计与交付缺失的 ASCN 能力,封装为可复用的集成插件。

  • 它识别 API 服务、事件源或 schema 不匹配问题,推动可靠工作流组合。
  • 适用于无法用现有处理器完成的新任务,需收集能力缺口与目标用例。
  • 安装来自 GitHub,注意权限与部署环境,确保与 ASCN 平台兼容。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

ASCN Integrations

Design and deliver missing ASCN capability as reusable integrations, then package as user-facing plugins.

When To Use

Use this skill when a workflow task cannot be completed with existing handlers/triggers/tools.

Typical triggers:

  1. missing handler for a required API/service
  2. missing trigger type for required event source
  3. schema/contract mismatch blocks reliable workflow composition
  4. required UI usability (params_ui, options, conditional fields) are missing

Required Inputs

The integrator MUST collect:

  1. capability gap summary (what cannot be built today)
  2. target use-cases (at least one concrete workflow scenario)
  3. expected input/output contract (JSON-level)
  4. auth/secret requirements
  5. publish target (user plugin first, system copy later)

If contract expectations are missing, stop and return input_validation_error.

Required Tool Surface

  1. control.docs.get
  2. control.registry.list
  3. control.registry.details
  4. control.registry.resolve_options
  5. control.workflows.list
  6. control.workflows.describe
  7. control.workflows.validate
  8. control.workflows.create
  9. control.workflows.patch
  10. control.workflows.activate
  11. control.tools.ensure_export
  12. control.tools.list_exports
  13. control.plugins.create_plugin
  14. control.plugins.validate_definition
  15. control.plugins.update_plugin
  16. control.plugins.get
  17. control.plugins.list

If required tools are unavailable, stop and return dependency_failure.

Delivery Modes

Mode A: Workflow-backed (default)

Use existing handlers to build a reusable workflow and export it through Trigger.Tool.

Mode B: Native integration (new handler/trigger code)

Use only when Mode A cannot satisfy latency, auth, determinism, or protocol constraints.

Native integrations MUST still be wrapped/published as plugins for user consumption.

Mode decision gate:

  1. choose Mode A first
  2. choose Mode B only with explicit constraint evidence
  3. if native code surfaces are unavailable in current context, return a native implementation proposal and stop before claiming implementation

Delivery Flow

  1. Discover existing capability (control.registry.list, control.registry.details, control.tools.list_exports).
  2. Produce contract draft:

- exact handler id (Vendor.Action) - params_schema (input object) - returns_schema (output object)

  1. Choose delivery mode (A or B) with explicit reason.
  2. Implement integration.
  3. Validate workflow/config contract (control.workflows.validate).

- payload MUST be wrapped as {"workflow": {...}}

  1. Reconcile export (control.tools.list_exports, control.tools.ensure_export).
  2. Run plugin-definition preflight (control.plugins.validate_definition).
  3. Activate the final workflow (control.workflows.activate).
  4. Bundle handlers into plugin (control.plugins.create_plugin then update_plugin if needed).
  5. Verify plugin visibility with control.plugins.list and registry views (control.plugins.get for deterministic reads).
  6. Return output contract payload with verification evidence.

Plugin Packaging Rules

  1. Plugin name MUST be stable and vendor/domain-scoped (e.g. StripeOps, CRMHubspot).
  2. Handler names MUST be exact and collision-safe.
  3. One plugin MAY contain multiple handlers if they share domain and auth model.
  4. Plugin definitions SHOULD include UI metadata (name, description, icon, tags) before handoff.
  5. Unwrapped Trigger.Tool exports MUST still be user-visible as flat User.<Handler> entries.
  6. Wrapped/published handlers MUST be rendered as first-class plugin cards/forms with plugin metadata (name, description, icon) and handler params_ui.

Params UI Best Practices

params_ui MUST be human-usable and contract-aligned.

  1. Every key in params_ui SHOULD exist in params_schema.properties.
  2. Localize labels/hints where possible (en, ru).
  3. Prefer explicit controls:

- string, string_multiline, number, boolean, options, array, object, string_json

  1. Use conditional visibility for complex forms via displayOptions.show.
  2. Put dangerous/advanced options behind conditional toggles.
  3. Include safe defaults where predictable behavior is expected.
  4. Use options only for selectable values; use displayOptions.show only for conditional visibility.
  5. Keep field order identical to the execution mental model (auth -> target -> behavior -> advanced).
  6. For options_source fields, resolve options via control.registry.resolve_options (never via direct DB queries).
  7. Reuse existing handler params_ui patterns by reading control.plugins.list with include_definition=true.

Example conditional field pattern:

[
  {
    "key": "auth_mode",
    "control": "options",
    "label": {"en": "Auth mode"},
    "options": [
      {"value": "api_key", "label": {"en": "API key"}},
      {"value": "oauth", "label": {"en": "OAuth"}}
    ]
  },
  {
    "key": "api_key",
    "control": "string",
    "label": {"en": "API key"},
    "displayOptions": {"show": {"auth_mode": ["api_key"]}}
  }
]

Minimal params_ui field contract (recommended):

{
  "key": "string",
  "control": "string|string_multiline|number|boolean|options|array|object|string_json",
  "label": {"en": "Field label"},
  "hint": {"en": "Optional guidance"},
  "required": false,
  "default": null,
  "options": [
    {"value": "v1", "label": {"en": "Value 1"}}
  ],
  "displayOptions": {"show": {"other_key": ["match_value"]}}
}

Rules for this contract:

  1. options MUST exist only when control=options.
  2. displayOptions.show MUST reference keys that exist in the same params_ui.
  3. required=true fields SHOULD be present in params_schema.required.
  4. Secret-bearing fields SHOULD use hints directing users to secrets, not literal defaults.

Conditional UI Recipes

Use these generic recipes as defaults for displayOptions.show. They mirror stable patterns already used in current plugin definitions.

Recipe 1: Dropdown controls field visibility

[
  {
    "key": "mode",
    "control": "options",
    "label": {"en": "Mode"},
    "required": true,
    "options": [
      {"value": "inline", "label": {"en": "Inline"}},
      {"value": "file", "label": {"en": "File"}}
    ]
  },
  {
    "key": "file_ref",
    "control": "object",
    "label": {"en": "File"},
    "displayOptions": {"show": {"mode": ["file"]}}
  }
]

Recipe 2: Boolean toggle controls section visibility

[
  {
    "key": "send_body",
    "control": "boolean",
    "label": {"en": "Send Body"}
  },
  {
    "key": "body_format",
    "control": "options",
    "label": {"en": "Body Format"},
    "displayOptions": {"show": {"send_body": [true]}},
    "options": [
      {"value": "json", "label": {"en": "JSON"}},
      {"value": "raw", "label": {"en": "Raw"}}
    ]
  }
]

Recipe 3: Multi-condition show (AND)

[
  {
    "key": "send_body",
    "control": "boolean",
    "label": {"en": "Send Body"}
  },
  {
    "key": "body_format",
    "control": "options",
    "label": {"en": "Body Format"},
    "options": [
      {"value": "json", "label": {"en": "JSON"}},
      {"value": "formdata", "label": {"en": "Form Data"}}
    ]
  },
  {
    "key": "body",
    "control": "string_json",
    "label": {"en": "Body"},
    "displayOptions": {
      "show": {
        "send_body": [true],
        "body_format": ["json"]
      }
    }
  }
]

Recipe 4: Filter dropdown options by another dropdown

[
  {
    "key": "provider",
    "control": "options",
    "label": {"en": "Provider"},
    "options": [
      {"value": "openai", "label": {"en": "OpenAI"}},
      {"value": "azure", "label": {"en": "Azure"}}
    ]
  },
  {
    "key": "model",
    "control": "options",
    "label": {"en": "Model"},
    "options": [
      {
        "value": "gpt-4o-mini",
        "label": {"en": "gpt-4o-mini"},
        "displayOptions": {"show": {"provider": ["openai"]}}
      },
      {
        "value": "azure/gpt-4o-mini",
        "label": {"en": "azure/gpt-4o-mini"},
        "displayOptions": {"show": {"provider": ["azure"]}}
      }
    ]
  }
]

Conditional UI Validation Checklist

Before publish/update, the integrator MUST verify:

  1. Every displayOptions.show key exists in the same params_ui.
  2. Comparison values match the source field type (true as boolean, not "true" string).
  3. show comparisons use option value, not option label.
  4. Controller fields appear earlier than dependent fields in params_ui order.
  5. Hidden-by-default advanced fields have safe defaults or are optional in schema.
  6. For option-level filtering, each option-level displayOptions.show references an existing controller key.

Security & Secrets

  1. Credentials MUST come from secrets (={{$secrets.name}}), never literals.
  2. params_schema SHOULD mark required secret-driven fields clearly.
  3. Integration MUST document minimum secret set for successful invocation.

Stop And Retry Rules

  1. Retry only transient tool/runtime failures, max 3 attempts with exponential backoff.
  2. Do not auto-retry schema mismatch, validation errors, or missing capability.
  3. Do not claim completion if plugin visibility or activation checks are not executed.

Output Contract

Every completion MUST include:

{
  "integration": {
    "mode": "workflow|native|proposal_only",
    "capability_status": "implemented|partially_implemented|blocked",
    "handler_names": ["Vendor.Action"],
    "workflow_id": "uuid-or-null",
    "exported_tool_name": "string-or-null"
  },
  "plugin": {
    "plugin_name": "VendorOps",
    "created_or_updated": true,
    "visible_in_plugins_list": true
  },
  "verification": {
    "validated": true,
    "activated": true,
    "smoke_tested": true,
    "latest_run_status": "COMPLETED|FAILED|RUNNING|UNKNOWN",
    "run_id": "string-or-null"
  },
  "failure": {
    "class": "none|input_validation_error|dependency_failure|schema_failure|runtime_failure|native_surface_unavailable",
    "message": "string"
  },
  "open_items": [],
  "next_action": "string"
}

Hand-off Back To ASCN Operator

After integration delivery:

  1. return exact handler/plugin identifiers
  2. return required secrets and minimal invocation payload
  3. instruct caller to resume lifecycle operations with ascn-operator

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.36%
按下载量换算76

Claude

31.24%
按下载量换算67

Cursor

19.78%
按下载量换算42

Gemini CLI

9.51%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills