Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

toingg-skill技巧

Agent Skill

toingg-skill 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

15,150

周安装

625

GitHub Stars

公开资料未说明

下载量

4,950
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install toingg-skill

简介

通过创建活动、安排日常分析、转换 Excel 联系人、上传列表和发送 WhatsApp 模板消息来自动化 Toingg 操作。

SKILL.md

name
toingg-skill
description
End-to-end Toingg ops: create campaigns, (optionally) schedule daily analytics pulls, and turn Excel contact sheets into WhatsApp outreach via add_contacts + send_whatsapp_templates. Use when Codex needs to automate Toingg voice/WhatsApp workflows and requires scripts for campaign POSTs, analytics cron setup, or bulk contact uploads.

Toingg Ops Toolkit

This skill bundles everything needed to manage Toingg campaigns from Claw:

  • Campaign creation via create_campaign.py
  • Optional analytics cron (7 PM daily) powered by get_campaign_analytics.py
  • Contact upload + WhatsApp broadcast using xlsx_to_contacts.py, add_contacts.py, and send_whatsapp_templates.py

All HTTP calls reuse the TOINGG_API_TOKEN bearer token.

Setup

  1. Export your token in every environment that runs these scripts (gateway, cron, terminals).
   export TOINGG_API_TOKEN="tg_..."
  1. Install Python deps once if you will ingest Excel files:
   pip install openpyxl requests
  1. Keep payloads (campaign JSON, analytics snapshots, contact exports) in version control or shared storage per your security rules.

Campaign creation workflow

  1. Gather campaign fields from the user (title, voice, language, script, purpose, tone,

post-call schema, notification numbers, autopilot flags, etc.).

  1. Draft a payload JSON using references/payload-template.md as the scaffold.
  2. Run the helper:
   cd skills/toingg-skill
   ./scripts/create_campaign.py payloads/my_campaign.json > responses/create-$(date +%s).json
  1. Return the API response (campaign ID, status, or validation errors) to the user and log it.

Opt-in analytics cron (7 PM daily)

Only offer this when the user explicitly asks for daily analytics.

  1. Confirm desired schedule/output directory.
  2. Follow references/analytics-cron.md to create openclaw cron create toingg-analytics-digest ... with the provided command snippet. Adjust paths if needed.
  3. Double-check TOINGG_API_TOKEN is visible to the gateway before enabling the cron.
  4. After the first run, share where the JSON snapshots live and how to disable the cron (openclaw cron delete ...).

get_campaign_analytics.py can also be run ad-hoc for on-demand pulls:

./scripts/get_campaign_analytics.py > analytics.json

Contact upload + WhatsApp templates

When a user supplies an Excel sheet (name / phone / context columns) and wants to blast a WhatsApp template:

  1. Convert Excel → JSON
   ./scripts/xlsx_to_contacts.py ~/Downloads/leads.xlsx contacts.json

See references/contact-workflow.md for the exact column expectations and troubleshooting. The script skips blank rows and normalizes phone numbers.

  1. Upload contacts to a Toingg contact list (auto-creates if missing):
   ./scripts/add_contacts.py ClawTest contacts.json
  1. Send WhatsApp templates once the list is ready:
   ./scripts/send_whatsapp_templates.py \
     231565687 \
     bfesfbgf \
     en-US \
     ClawTest \
     --payload template-variables.json

- Omit --payload (defaults to []) if the template has no variables. - Pass --resend only when the user explicitly wants to re-contact existing recipients.

  1. Confirm delivery status in Toingg and report any errors back to the user (the helper prints full JSON responses for logging).

File map

ScriptPurpose
scripts/create_campaign.pyPOST /api/v3/create_campaign with arbitrary payloads
scripts/get_campaign_analytics.pyGET /api/v3/get_campaign_analytics (cron-friendly)
scripts/xlsx_to_contacts.pyConvert Excel sheets into Toingg contact JSON
scripts/add_contacts.pyUpload contact lists via /api/v3/add_contacts
scripts/send_whatsapp_templates.pyTrigger /api/v3/send_whatsapp_templates

Keep this toolkit lightweight: update the references when Toingg adds new fields or workflows so other operators can follow the same patterns.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

75.73%
按下载量换算3,749

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills