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

integration-setup集成设置

Agent Skill

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

总安装

485

周安装

20

GitHub Stars

2

下载量

158
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lytics/agent-skills --skill integration-setup

简介

用于快速查找和筛选与特定关键词相关的候选资源。

  • 适合在复杂项目中定位潜在的技术方案或实现路径。
  • 可根据任务目标动态调整搜索维度和排序规则。
  • 输出结果建议人工复核以确保业务匹配度。integration-setup 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 注意该技能可能调用外部 API 并产生网络流量消耗。

SKILL.md

Integration Setup

Purpose

Guide users through setting up a complete data integration -- from creating auth credentials to configuring connections and creating jobs. Handles both imports (data flowing into Lytics) and exports (data flowing out to external platforms).

Environment

  • LYTICS_API_TOKEN -- API authentication token
  • LYTICS_API_URL -- Base URL (default: https://api.lytics.io)

Inputs

  • Description of the desired integration (platform, direction, data type)
  • Optional: credentials, segment to export, schedule preferences

Setup Flow

Step 0: Consider Using the Integration Advisor

If the user's request involves choosing a workflow, mapping fields, or setting up a new integration from scratch, suggest starting with the integration-advisor skill:

"For new integrations, I can help you choose the right workflow, map fields, and configure everything optimally. Would you like strategic guidance first?"

If the user has a specific, well-defined setup request (e.g., "create a job with workflow X and auth Y"), proceed directly.

Step 1: Identify Integration Type

Parse the user's description to determine:

  • Platform: Facebook, Google, Salesforce, Klaviyo, etc.
  • Direction: Import (into Lytics) or Export (from Lytics)
  • Data type: Audiences, events, profiles, conversions

Step 2: Check Available Providers

curl -s "${LYTICS_API_URL:-https://api.lytics.io}/v2/provider" \
  -H "Authorization: ${LYTICS_API_TOKEN}"

Find the matching provider for the target platform.

Step 3: Check Existing Auth

curl -s "${LYTICS_API_URL:-https://api.lytics.io}/v2/auth" \
  -H "Authorization: ${LYTICS_API_TOKEN}"

Check if valid auth already exists for the target platform.

Step 4: Create Auth (if needed)

Use connection-manager skill to create auth credentials. Guide the user on what credentials are needed for their platform.

Step 5: Create or Select Connection

# Check existing connections
curl -s "${LYTICS_API_URL:-https://api.lytics.io}/v2/connection" \
  -H "Authorization: ${LYTICS_API_TOKEN}"

Use existing connection if available, or create new one.

Step 6: Configure Job

Use job-manager skill to create the job with:

  • Workflow matching the integration type
  • Config specific to the platform
  • Auth IDs linking to the credentials
  • Segment ID (for exports)

Step 7: Confirmation Gate

Present the complete integration setup:

  • Auth provider details (type, not credentials)
  • Connection configuration
  • Job settings (workflow, schedule, segment)
  • Raw API payloads for each resource to create

Step 8: Execute on Approval

Create resources in order:

  1. Auth (if new)
  2. Connection (if new)
  3. Job

Report success with links to each created resource.

Common Integration Patterns

Audience Export

  1. User selects/creates a segment
  2. Configure export job with segment_id
  3. Set schedule (continuous, daily, etc.)

Data Import

  1. Configure connection to data source
  2. Scan connection to discover available data
  3. Create import job with field mappings

Conversion API (CAPI)

  1. Configure auth for the ad platform
  2. Create conversion export job
  3. Map Lytics events to platform conversion events

Error Handling

  • Missing credentials: Guide user on where to find them in the target platform
  • Invalid auth: Suggest re-creating credentials
  • Workflow not found: List available workflows for the platform
  • Segment not found: Help create the segment first using audience-builder

Dependencies

  • Composes: connection-manager skill, job-manager skill, ../references/confirmation-gate.md
  • Related: audience-builder skill (for creating segments to export)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.06%
按下载量换算55

Claude

31.33%
按下载量换算50

Cursor

19.96%
按下载量换算32

Gemini CLI

9.59%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills