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

ops-integration-sync操作集成同步

Agent Skill

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

总安装

5,913

周安装

221

GitHub Stars

公开资料未说明

下载量

2,356
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sixtysecondsapp/use60 --skill 'Ops Integration Sync'

简介

ops-integration-sync 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 适用于跨系统集成、数据同步和协作流程自动化等场景。
  • 可自动映射不同平台间的任务状态与代码变更关系。
  • 安装命令:npx skills add https://github.com/sixtysecondsapp/use60 --skill 'Ops Integration Sync';需确保各平台 API 连通性。
  • 同步操作可能产生副作用,建议先在小范围验证逻辑正确性。

SKILL.md

Available Context

@_platform-references/org-variables.md

Ops Integration Sync

Goal

Sync ops table data with external CRM and outreach platforms. This skill bridges the gap between the user's enriched ops tables and their go-to-market tools, enabling bidirectional data flow with HubSpot, one-way push to Attio, and campaign-ready lead push to Instantly.

Prerequisites

Before any sync can execute, the organization must have integration credentials configured:

  • HubSpot: Requires hubspot credential in integration_credentials table with a valid API key
  • Attio: Requires attio credential in integration_credentials table with a valid API key
  • Instantly: Requires instantly credential in integration_credentials table with a valid API key

If credentials are missing, inform the user: "Your [integration] credentials aren't configured yet. Ask your admin to set them up in Settings > Integrations."

Available Actions

1. sync_ops_hubspot -- HubSpot Sync (Bidirectional)

Syncs table data with HubSpot contacts. Supports both push and pull directions.

Parameters:

  • table_id (required): The ops table to sync
  • direction (required): push or pull

- push: Sends table rows to HubSpot as contacts. Creates new contacts or updates existing ones matched by email. - pull: Imports HubSpot contacts into the ops table. Creates new rows or updates existing ones matched by email.

  • field_mapping (optional): Custom mapping between table columns and HubSpot properties. If omitted, uses default mapping (email, first_name, last_name, company, job_title, phone).

When to use push vs pull:

  • Pull first when the user wants to enrich existing HubSpot contacts -- pull them into an ops table, run enrichments, then push back.
  • Push when the user has built a prospecting list in ops tables and wants to add them to HubSpot for CRM tracking.
  • Bidirectional workflow: pull -> enrich -> push (see seq-ops-hubspot-enrich-sync sequence).

Example conversation:

User: "Sync my prospecting table with HubSpot"
Assistant: "Which direction? I can:
  - **Push** -- send your table contacts to HubSpot
  - **Pull** -- import your HubSpot contacts into this table
  Which would you like?"

2. sync_ops_attio -- Attio Sync (Push Only)

Pushes table data to Attio as company or person records.

Parameters:

  • table_id (required): The ops table to sync

Notes:

  • Attio sync is currently push-only (table -> Attio)
  • Records are matched by email (people) or domain (companies)
  • New records are created if no match is found

3. push_ops_to_instantly -- Instantly Campaign Push

Pushes table leads to Instantly for outreach campaigns. Can add to an existing campaign or create a new one.

Parameters:

  • table_id (required): The ops table containing leads
  • campaign_id (optional): Add leads to an existing Instantly campaign
  • campaign_config (optional): Configuration for creating a new campaign:

- name: Campaign name - schedule: Send schedule (days, time windows, timezone) - sequences: Email sequence steps

Important notes:

  • Table must have an email column -- leads without valid emails will be skipped
  • When creating a new campaign, campaign_schedule with a schedules array is mandatory
  • Timezone must use the Instantly-supported enum (e.g., America/Chicago, not America/New_York)
  • Default timezone: America/Chicago
  • Leads are deduplicated by email within the campaign

Example conversation:

User: "Send these leads to Instantly"
Assistant: "I'll push your 47 leads to Instantly. Would you like to:
  - Add them to an **existing campaign**? (I'll need the campaign ID)
  - Create a **new campaign**? (I'll set up a default schedule)
  Which do you prefer?"

Sync Flow

  1. Validate credentials -- Check that the organization has valid credentials for the target integration
  2. Validate table -- Confirm the table exists and has the required columns (e.g., email for Instantly)
  3. Confirm with user -- Show record count and sync direction before executing
  4. Execute sync -- Run the sync action and report results
  5. Report outcome -- Show records synced, records skipped, and any errors

Error Handling

Missing credentials

Do not attempt the sync. Tell the user exactly which credential is missing and where to configure it.

Missing required columns

If pushing to Instantly and no email column exists, inform the user: "Your table needs an email column to push to Instantly. Would you like me to add one?"

Partial sync failures

Report the count of successful and failed records. Common failure reasons:

  • Invalid email format
  • Duplicate records in target system
  • Rate limiting from the integration API

Rate limits

HubSpot and Instantly have rate limits. For large tables (500+ rows), the sync may take longer. Inform the user of expected duration.

Guidelines

  • Always confirm the sync direction and target before executing
  • Show a preview of what will be synced (record count, key fields)
  • For HubSpot pull, warn that existing table data in matching columns will be overwritten
  • For Instantly push, verify the table has usable email addresses before pushing
  • After sync, suggest next steps (e.g., "Your contacts are in HubSpot. Want me to create a follow-up task list?")

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.62%
按下载量换算886

Claude

31.98%
按下载量换算753

Cursor

17.86%
按下载量换算421

Gemini CLI

8.3%
按下载量换算196

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills