trtc-push

trtc-push is a skill for Claude Code from Tencent-RTC/agent-skills. It costs 165 tokens per session (1,966 once invoked), scanned A, original, MIT.

A developer assistant for TIMPush, Tencent Cloud's service for sending push notifications through Android, iOS, Flutter, uni-app, HarmonyOS, and server integrations.

In plain words
What is it for?
Use it when adding or debugging TIMPush, including push registration, badges, console settings, SDK integration, and platform-specific or server-side limits.
Why use it?
It routes integration and troubleshooting questions to the relevant platform workflow and product documentation. The workflow engine controls the required steps so platform-specific details are not skipped.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the trtc-agent-skills plugin — 12 skills, 3 hooks shipped together

Good fit Use it when adding or debugging TIMPush, including push registration, badges, console settings, SDK integration, and platform-specific or server-side limits.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tencent-rtc/agent-skills/trtc-push
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Tencent-RTC/agent-skills --skill trtc-push
Clone the repo
git clone --depth 1 https://github.com/Tencent-RTC/agent-skills

Made for: Claude Code.

Or install trtc-agent-skills, the plugin that ships this one along with the rest of its 12 skills, 3 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for trtc-push

README.md
[![agentmods](https://agentmods.dev/badge/skills/tencent-rtc/agent-skills/trtc-push/github.svg)](https://agentmods.dev/skills/tencent-rtc/agent-skills/trtc-push)
Your own site
<a href="https://agentmods.dev/skills/tencent-rtc/agent-skills/trtc-push"><img src="https://agentmods.dev/badge/skills/tencent-rtc/agent-skills/trtc-push/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for trtc-push

Your own site · 80×15
<a href="https://agentmods.dev/skills/tencent-rtc/agent-skills/trtc-push"><img src="https://agentmods.dev/badge/skills/tencent-rtc/agent-skills/trtc-push.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 165 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,966 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Rogue Agent · line 96
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00165 $0.01966
Opus 5 $0.00082 $0.00983
Sonnet 5 $0.00033 $0.00393
Haiku 4.5 $0.00016 $0.00197

Measured 4d ago against content hash 3528fd9ea941, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

trtc-push scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/trtc-push/SKILL.md · 112 lines

How it starts

The opening of the file, as written. The whole thing — 112 lines — stays where its author put it; the contents beside it link to each section on GitHub.

TIMPush 开发者助手

渐进披露

  • 每 turn 先读 issues/ROUTER.json 做轻量路由;不要先读整个 issues/
  • 进入 Android / iOS / Flutter / UniApp workflow 前,先读一次 references/hard-rules.md
  • 写 Gradle / Application / Podfile / AppDelegate / registerPush 代码前,再读 references/timpush-sdk-api.mdreferences/code-templates.md
  • 路由命中非 workflow 知识时,只读命中的 1 个 target
  • 启动字段、abandon_workflow 等低频协议细节见 references/workflow-protocol.md

核心原则

本 Skill 不含可由 LLM 自行解释的流程正文。阶段、schema、失败路由都由 trtc-push-mcp 的 workflow engine 决定。

你的工作:按 engine 下发的当前 prompt 执行单步 → complete_workflow_step 提交结构化 output → 下一步只能来自引擎返回值。禁止自己编流程、跳步、或用 markdown 手册替代 engine。

每 turn(按顺序)

  1. issues/ROUTER.jsonmatch_any / priority / platform,得到候选 target / workflow_id。路由是 best-effort;未命中不代表不能处理。
  2. 命中 platform=auto 的集成入口(如“集成 push / 接入离线推送”)→ 先调用 detect 系列工具判断项目平台,再选择 wizard-android / wizard-ios / wizard-flutter / wizard-uniapp
  3. 命中 Android / iOS / Flutter / UniApp workflow_id → 读 references/hard-rules.md,进入 Workflow 循环。
  4. 需要解释或非 workflow 知识 → 只读路由命中的 1 个 target
  5. 无命中 → 按 fallback.question 问 1 个澄清问题。
  6. 意图不清 → list_workflows,把 trigger_phrases 复述给用户澄清。

特殊分支:

  • 用户已明确是 Android / iOS TIMPush 排障但缺厂商/错误码 → 进对应 troubleshoot-* stage-0 收集症状与证据,不要自行下结论
  • list_workflows 未返回预期 workflow → 提示用户重启 IDE / 确认 trtc-push-mcp MCP 配置,不要退回 markdown 手册执行。

Workflow 循环

list_workflows(可选,看候选)
  → get_workflow_state(产品使用每 turn 带 user_prompt;调试不传)
  → 按返回的 prompt / required_tool_calls / completion_schema 执行
  → complete_workflow_step { run_id, step, output }(首选)
  → 按 status 继续或停止

run_id 是 workflow 主路径状态句柄;state_token 只作为兼容 / 跨进程快照。后续 get_workflow_statecomplete_workflow_stepabandon_workflow 都优先传 上一轮返回的 run_idstate_token 必须视为 opaque:禁止手改、拼接、解码后重组、 局部复制;如果只剩 state_token,只能原样回传。

产品工作流 MCP(不是 Skill 体验数据上报)

trtc-push-mcp 是 TIMPush 的功能型工作流 MCP,用于推进产品配置状态;它不是体验数据上报 MCP,也不替代 Root/Host 的 Prompt → invoke → Host Stop 链路。

  • 产品使用时,每轮向 get_workflow_stateuser_prompt;工具调试或无法判断时不传,质量事件和本地脱敏由 MCP 统一处理。
  • 不得把 user_prompt 放入 context,也不得执行 --prompt-stdin / --log-stdin;避免原文进入 state_token 或额外 shell 链路。

Read the full file on GitHub · 112 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago Changed · -1 lines · -103 tokens per session 3528fd9ea941
  2. 9d ago First seen · 113 lines · 268 tokens per session scan A e6d5ac2685f4

Subscribe to this mod's changes

trtc-push is a skill published in the GitHub repository Tencent-RTC/agent-skills (12 stars, last pushed 5d ago), licensed MIT. It adds 165 tokens to every session and 1,966 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

stream-flutter

Build and integrate Stream Chat, Video, and Feeds in Flutter apps. Use for Flutter/Dart project work with Stream package setup, auth wiring, and widget blueprints. Supports streamchatflutter (pre-built Chat UI), streamchatfluttercore (custom Chat UI), streamvideoflutter (Video calling and livestreaming), and…

GetStream/agent-skills · 112 tokens

cometchat-ios-calls

CometChat Calls SDK v5 integration for native iOS (Swift; SwiftUI + UIKit hosting). Covers SDK install (SPM + CocoaPods), file-based init via cometchat-settings.json (CometChatCalls.initFromSettings, ai-agent telemetry) with builder fallback, dual-SDK ringing (Chat SDK initiateCall + Calls SDK…

cometchat/cometchat-skills · 124 tokens

cometchat-flutter-v6-events

Use when working with real-time events, SDK listeners, or UI event streams in CometChat Flutter UIKit v6. Triggers on mentions of CometChatMessageEvents, CometChatUserEvents, CometChatGroupEvents, CometChatCallEvents, CometChatConversationEvents, MessageListener, UserListener, GroupListener, CallListener…

cometchat/cometchat-skills · 168 tokens

cometchat-native-production

Production-readiness for React Native — server-minted auth tokens, user management CRUD, external-backend recipes (Express / Hono / Firebase Functions / Vercel Serverless). RN has no API routes, so the backend is always external.

cometchat/cometchat-skills · 55 tokens

build-zoom-contact-center-app

Reference skill for Zoom Contact Center. Use after routing to a contact-center workflow when implementing app, web, or native integrations; engagement context and state handling; campaigns; callbacks; or version-drift troubleshooting.

anthropics/knowledge-work-plugins · 48 tokens

add-signal

Add Signal channel integration via signal-cli device-link. Native adapter — no Chat SDK bridge.

nanocoai/nanoclaw · 22 tokens