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/far-se/tabame/tbm-pluginnpx skills add Far-Se/tabame --skill tbm-plugingit clone --depth 1 https://github.com/Far-Se/tabameWrote 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/far-se/tabame/tbm-plugin)<a href="https://agentmods.dev/skills/far-se/tabame/tbm-plugin"><img src="https://agentmods.dev/badge/skills/far-se/tabame/tbm-plugin.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.00074 | $0.01830 |
| Opus 5 | $0.00037 | $0.00915 |
| Sonnet 5 | $0.00015 | $0.00366 |
| Haiku 4.5 | $0.00007 | $0.00183 |
Grade A, and why
tbm-plugin scanned grade A with 1 finding 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
The plugin is an ordinary process: HTTP (`requests`/`urllib`, or global `fetch` in Node 18+/Bun), filesystem, spawning tools. Read secrets from a `config.json` in the plugin folder (the CWD) or env vars — see `plugins/li How it starts
The opening of the file, as written. The whole thing — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Tabame Launcher Plugin Authoring
Tabame's launcher is extensible with plugins: standalone scripts (Python, Node.js, or Bun) that Tabame runs as a long-lived child process when the user types the plugin's keyword. Communication is newline-delimited JSON over stdin/stdout — no SDK, no dependencies.
- Tabame → script (stdin): UI events (
init,query,select,action,close). - Script → Tabame (stdout): render frames — JSON objects that fully describe what the launcher shows right now.
The script is the source of truth for the UI: every time you want the launcher to display something different, you print a new render frame.
Authoritative references (read these)
The complete, authoritative protocol spec lives in the repo. Read it before writing non-trivial plugins — do not invent fields or message types not documented there:
- Full spec: skills/TABAME_PLUGIN_SKILL.md — every message type, render-frame field, item field, view type, icon name, and pattern.
- Working examples to copy from:
plugins/echo/— Python demo exercising list/grid/detail/preview + actions.plugins/linear/— Node.js plugin with an HTTP API andconfig.jsonsecrets.plugins/caniuse/— Node.js plugin with fetched data and detail views.
When a detail isn't covered below, consult the full spec rather than guessing.
Workflow for building a plugin
- Clarify the shape (only if unspecified): keyword, runtime, data source, what each item shows, what Enter does, what Ctrl+K actions to offer, and which view (list / grid / detail / preview pane).
- Pick a runtime the user has on
PATH:python,node(18+), orbun. Tabame bundles none. - Scaffold the folder with
plugin.json+ entry script. Start from the matching template in §15 of the full spec, or copy the closestplugins/plugin. - Implement the event loop (see contract below).
- Install & test: drop the folder in
%localappdata%\Tabame\plugins\<id>\, reopen the launcher (it rescans on every open — no restart), and type the keyword.
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.
- 4d ago First seen · 113 lines · 74 tokens per session scan A 0ed08a24a70d
tbm-plugin is a skill published in the GitHub repository Far-Se/tabame (366 stars, last pushed 2d ago), licensed MIT. It adds 74 tokens to every session and 1,830 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
abusing-dpapi-for-credential-access
Extract and decrypt Windows DPAPI-protected secrets (Credential Manager, browser logins/cookies, Wi-Fi credentials, KeePass keys) online or offline using SharpDPAPI, SharpChrome, Mimikatz, or Impacket's dpapi.py, including domain-wide decryption via the DPAPI backup key. Use during authorized red-team…
reverse-engineering-tools
Guide for reverse engineering protected games and anti-cheat components across user mode, kernel mode, and hypervisor-aware environments. Use this skill when analyzing drivers, IOCTL protocols, callback registration, injected-code artifacts, integrity checks, protected binaries, or debugging security-sensitive game…
shadcn-ui-flutter
A comprehensive Flutter UI library inspired by shadcn/ui. Provides high-quality, customizable, and accessible components including Buttons, Cards, Forms, and more. Use this skill when building Flutter UIs, implementing design systems, or needing specific component usage examples.
test-bridge
Bridge Server (TypeScript) のテスト実行・型チェック・テスト記述ガイド.
web-preview
Flutter Web版をビルド → サーバー起動 → Playwright でアクセス確認 → URLをユーザーに案内する。.
firebase-messaging
Use when setting up Firebase Cloud Messaging, managing permissions and tokens, handling background/foreground notification taps, or dispatching messages server-side (HTTP v1).