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 agentmods add skills/gettalon/talon-plugins/channels-setupnpx skills add gettalon/talon-plugins --skill channels-setupgit clone --depth 1 https://github.com/gettalon/talon-pluginsWrote 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/gettalon/talon-plugins/channels-setup)<a href="https://agentmods.dev/skills/gettalon/talon-plugins/channels-setup"><img src="https://agentmods.dev/badge/skills/gettalon/talon-plugins/channels-setup.svg" alt="Measured on agentmods" height="20"></a>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 | $0.00030 | $0.01219 |
| Opus 5 | $0.00015 | $0.00609 |
| Sonnet 5 | $0.00006 | $0.00244 |
| Haiku 4.5 | $0.00003 | $0.00122 |
Grade E, and why
channels-setup scanned grade E with 4 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.
Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
curl -s -X POST http://localhost:21568/auth/local | python3 -c "import sys,json; print(json.load(sys.stdin).get('token',''))" Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
cat ~/.claude/plugins/marketplaces/gettalon-talon-plugins/plugins/talon/.mcp.json 2>/dev/null || echo "Not found" Reads MCP configurationmediumAgent snooping
mcp.json carries server URLs and auth tokens; reading it lets a mod discover and abuse other integrations.
cat ~/.claude/plugins/marketplaces/gettalon-talon-plugins/plugins/talon/.mcp.json 2>/dev/null || echo "Not found" Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s http://localhost:21568/health 2>/dev/null || echo "Server not running" How it starts
The opening of the file, as written. The whole thing — 167 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Channels Setup Guide
Help the user set up the Talon Channels universal server so any client can connect to Claude Code via WebSocket or platform adapters (Telegram, Discord, Slack, etc.).
Development Mode
During the research preview, channels require an allowlist. To use talon-channels:
claude --dangerously-load-development-channels plugin:channels@gettalon-talon-plugins
The plugin: prefix tells Claude Code to load this channel plugin and bypass the allowlist check.
Channel Types
| Type | Env Var | Required Credentials |
|---|---|---|
| WebSocket (default) | websocket |
None (local only) |
| Telegram | telegram |
TELEGRAM_BOT_TOKEN |
| Discord | discord |
DISCORD_BOT_TOKEN |
| Slack | slack |
SLACK_BOT_TOKEN, SLACK_APP_TOKEN |
| iMessage | imessage |
None (macOS only) |
Steps
1. Check Current Configuration
# Check what channel is configured
cat ~/.claude/plugins/marketplaces/gettalon-talon-plugins/plugins/talon/.mcp.json 2>/dev/null || echo "Not found"
2. Configure Channel Type
Set TALON_CHANNEL env var in the plugin's .mcp.json:
WebSocket (default):
{
"channels": {
"command": "npx",
"args": ["-y", "-p", "@gettalon/channels-sdk", "channels"]
}
}
Telegram:
{
"channels": {
"command": "npx",
"args": ["-y", "-p", "@gettalon/channels-sdk", "channels"],
"env": {
"TALON_CHANNEL": "telegram",
"TELEGRAM_BOT_TOKEN": "your-bot-token"
}
}
}
3. Check Server Health (WebSocket mode)
curl -s http://localhost:21568/health 2>/dev/null || echo "Server not running"
3. Get Auth Token
Clients need a token to connect:
curl -s -X POST http://localhost:21568/auth/local | python3 -c "import sys,json; print(json.load(sys.stdin).get('token',''))"
Or read from discovery file:
cat ~/.talon/channels_token 2>/dev/null || echo "No token file"
4. Connect a Client
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 First seen · 167 lines · 30 tokens per session scan E bf4edc350b8f
channels-setup is a skill published in the GitHub repository gettalon/talon-plugins (6 stars, last pushed 5mo ago), licensed MIT. It adds 30 tokens to every session and 1,219 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it E with 4 findings (downloads and executes remote code, reads agent configuration directories, reads mcp configuration). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
codex-browser
Control Chrome via Codex Desktop's browser bridge. 52 MCP tools for tabs, navigation, DOM, input, CDP, network, file upload, dialog handling, and diagnostics.
qa-runner
Use when asked to "run QA", "qa check", "test checklist", or execute QA checklists against a running app via browser automation. Requires the browser-bridge MCP server and Chrome extension.
browser
Use this skill when the user says browser, /browser, test in Chrome, inspect a webpage, verify a localhost app, capture screenshots, check console/network errors, run browser QA, or automate browser flows with the Mochi browser MCP.
browse
Use when asked to interact with a web browser — navigate, click, fill forms, take screenshots, run JavaScript, or read page content. Requires the browser-bridge MCP server and Chrome extension.
NanoBanana-PPT-Skills
Skill "NanoBanana-PPT-Skills" from girish6055/NanoBanana-PPT-Skills, covering ppt generator pro - claude code skill, 📋 元数据, ✨ 功能特性, 核心功能 and 新功能 (v2.0).
codex-browser
Control Chrome or Edge via the ChatGPT desktop app's browser bridge (formerly Codex Desktop). 52 MCP tools for tabs, navigation, DOM, input, CDP, network, file upload, dialog handling, and diagnostics.