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.
npx skills add Tencent-RTC/agent-skills --skill trtcgit clone --depth 1 https://github.com/Tencent-RTC/agent-skillsWrote 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.
[](https://agentmods.dev/skills/tencent-rtc/agent-skills/trtc)<a href="https://agentmods.dev/skills/tencent-rtc/agent-skills/trtc"><img src="https://agentmods.dev/badge/skills/tencent-rtc/agent-skills/trtc/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.
<a href="https://agentmods.dev/skills/tencent-rtc/agent-skills/trtc"><img src="https://agentmods.dev/badge/skills/tencent-rtc/agent-skills/trtc.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
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 Agent Snooping · line 55 Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00273 | $0.06522 |
| Opus 5 | $0.00137 | $0.03261 |
| Sonnet 5 | $0.00055 | $0.01304 |
| Haiku 4.5 | $0.00027 | $0.00652 |
Grade A, and why
trtc 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 3d 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.
How it starts
The opening of the file, as written. The whole thing — 398 lines — stays where its author put it; the contents beside it link to each section on GitHub.
TRTC Integration Assistant
Language rule: Always reply in the same language the user writes in. If the user writes Chinese, respond in Chinese throughout the entire session. If the user writes English, respond in English. Keep product names, API identifiers, SDK package names, and error codes in their original form regardless of language. This rule applies to all responses, confirmations, questions, and error messages — including those triggered by sub-skills.
你负责做七件事:
- 读取 session,判断是否要恢复已有 flow。
- 检测是否为 AI 客服 / Conversational AI 场景,是则路由到
trtc-ai-service/SKILL.md。 - 检测是否为 AI 实时翻译 / realtime interpreter 场景,是则路由到
trtc-ai-realtime-interpreter/SKILL.md。 - 检测是否为 AI 口语陪练 / oral coach 场景,是则路由到
trtc-ai-oral-coach/SKILL.md。 - 检测是否为 TIMPush / 离线推送场景,是则路由到
trtc-push/SKILL.md。 - 用共享工具识别 product / intent,路由到正确 owner:
trtc-conference/SKILL.md、trtc-chat/SKILL.md、trtc-chat/docs/SKILL.md、trtc-call/SKILL.md或trtc-docs/SKILL.md。 - Call Flutter guided integration:
product = call且platform = flutter时路由到trtc-call/SKILL.md。 - 对显式日志请求和文档无法解决的运行时症状,路由到
trtc-sdk-log-analysis/SKILL.md;1.0 只做路径指引、用户提供和离线分析。
Hard Boundary
-
root 只路由,不直接生成 TRTC 集成代码。
-
search是工具,不是 skill:一律通过python3 -m tools.search ...调用。 -
apply是工具,不是 skill:一律通过python3 -m tools.apply ...调用。 -
执行任何
python3 -m tools.*命令时,必须从当前trtcskill 根目录执行 (例如先cd "<当前 trtc skill 目录>")。不要依赖客户项目根目录存在tools/包,也不要让客户项目自己的tools包抢占解析。 Session 例外:虽然仍需从 Skill 根目录运行,但所有tools.session的create/read/write/write-batch/reset/status/validate/migrate命令都必须携带--project-root "<projectRoot>",或在命令前设置TRTC_PROJECT_ROOT="<projectRoot>"。这样 session 不会误写到.claude/skills/trtc/、.codex/skills/trtc/等安装目录。<当前 trtc skill 目录>解析规则:npx 安装器根据 IDE 将 skills 安装到 不同目录,trtc skill 的实际位置是:- Claude Code:
<project>/.claude/skills/trtc/ - Cursor:
<project>/.cursor/skills/trtc/ - CodeBuddy:
<project>/.codebuddy/skills/trtc/ - Codex:
<project>/.codex/skills/trtc/
不要硬编码
.claude/前缀——根据当前 IDE 选择正确路径。如果无法确定,用find回退定位包含skills/trtc/SKILL.md的技能根目录。 - Claude Code:
-
当前 guided integration 支持
(conference, web)、(chat, web)与(call, flutter); TIMPush 由trtc-push的独立流程承接。 -
除 TIMPush 外的其他产品若用户要”接入 / 搭建 / 加功能 / 逐步带我做”,明确告知当前 仅支持 Conference Web / Chat Web / Call Flutter 的引导式集成,并导向文档查询路径。
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- .package-version 6 B
- guardrails 5 B
- hooks/gate_slice_read.py 4.5 KB runs code
- hooks/gate_slice_write.py 5.5 KB runs code
- hooks/stop_require_apply_evidence.py 3.6 KB runs code
- hooks/topic_phase_gate.py 4.2 KB runs code
- room-builder/assets/local-usersig/basic-info-config.ts 1.2 KB runs code
- room-builder/assets/local-usersig/lib-generate-test-usersig-es.min.d.ts 162 B runs code
- room-builder/assets/local-usersig/lib-generate-test-usersig-es.min.js 147 KB runs code
- runtime/adapters/claude.js 546 B runs code
- runtime/adapters/codebuddy.js 2.3 KB runs code
- runtime/adapters/codex.js 667 B runs code
- runtime/adapters/cursor.js 861 B runs code
- runtime/adapters/gemini.js 231 B runs code
- runtime/continuation-notice.js 1.8 KB runs code
- runtime/continuation-notice.json 1.8 KB
- runtime/continuation-notice.md 499 B
- runtime/control.js 31 KB runs code
- runtime/hook-activation.js 4.4 KB runs code
- runtime/identity.js 27 KB runs code
- runtime/lib/__init__.py 0 B runs code
- runtime/lib/platforms.py 6.7 KB runs code
- runtime/normalize-hook.js 5.4 KB runs code
- runtime/notice-locale.js 2.5 KB runs code
- runtime/outbox.js 92 KB runs code
- runtime/package-lock.json 42 KB
- runtime/package.json 297 B
- runtime/preference.js 39 KB runs code
- runtime/project-state.js 1.5 KB runs code
- runtime/README.md 4.4 KB
- runtime/redact.js 15 KB runs code
- runtime/REPORTING.md 31 KB
- runtime/RUNTIME.md 9.0 KB
- runtime/schema.js 8.5 KB runs code
- runtime/sdkappid-cache.js 3.5 KB runs code
- runtime/sdkappid-resolver-web.cjs 3343 KB runs code
- runtime/sdkappid-resolver-web.js 25 KB runs code
- runtime/sdkappid-resolver.js 56 KB runs code
- runtime/sender.js 18 KB runs code
- runtime/session-context.js 14 KB runs code
- runtime/state.js 14 KB runs code
- runtime/stop-hook-dispatcher.cjs 4.9 KB runs code
- runtime/telemetry_collector.py 9.5 KB runs code
- runtime/telemetry-bridge.mjs 11 KB runs code
- runtime/telemetry.cjs 288 KB runs code
- runtime/telemetry.js 72 KB runs code
- runtime/usersig-handling.md 4.3 KB
- scripts 5 B
- tools/__init__.py 36 B runs code
- tools/apply.py 21 KB runs code
- tools/docs.py 25 KB runs code
- tools/docsbot.py 4.9 KB runs code
- tools/entry/render_ai_instructions.py 5.4 KB runs code
- tools/finalize_session.py 3.5 KB runs code
- tools/flow.py 41 KB runs code
- tools/init_slice_queue.py 3.1 KB runs code
- tools/kb.py 3.8 KB runs code
- tools/lib/state_machine.py 19 B runs code
- tools/next_slice.py 4.9 KB runs code
- tools/query_classifier.py 13 KB runs code
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.
- 3d ago Changed · +13 lines · +13 tokens per session 5756280811a9
- 9d ago First seen · 385 lines · 260 tokens per session scan A 0898b87f7d73
trtc is a skill published in the GitHub repository Tencent-RTC/agent-skills (12 stars, last pushed 4d ago), licensed MIT. It adds 273 tokens to every session and 6,522 once invoked, about $0.0014 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.
Other skills, from other repositories
chat-sdk
Build multi-platform chat bots with Chat SDK (chat npm package). Use when developers want to scaffold a bot with create-chat-sdk, build a Slack, Teams, Google Chat, Discord, Telegram, GitHub, Linear, or WhatsApp bot, handle mentions, direct messages, subscribed threads, reactions, slash commands, cards, modals, files…
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…
waniwani-sdk
MCP distribution SDK: build sales funnels, lead generation, booking flows, insurance quote flows, pricing quote flows, and any multi-step conversational MCP app with @waniwani/sdk. Open source createFlow engine (no API key required) with pluggable state backends (in-memory, Redis, Upstash, Cloudflare KV, DynamoDB, or…
stream-feeds-migration
Generate the v2 -> v3 sync mapping for a Stream Activity Feeds app by sampling its live v2 activities and reactions. Use when setting up a Feeds v2 to v3 migration, when asked to build, review, or debug a v3 sync mapping, when someone asks 'what mapping do we need for our app?', or when a migrated activity lands in v3…
scaffold-ai-app
Scaffold a Veryfront app with AI tools, agent definitions, and knowledge base.
stream
Stream router for Chat, Video, Feeds, and Moderation. Use when the user wants to build a new app with Stream, scaffold a project, add Chat/Video/Feeds/Moderation to an existing app, integrate Stream, audit or migrate an integration, build for Swift/SwiftUI/UIKit/iOS/Xcode/Android/Kotlin/React Native/Expo/Flutter…