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/to-agent/agent-exec/pluginsnpx skills add to-agent/agent-exec --skill pluginsgit clone --depth 1 https://github.com/to-agent/agent-execWhat 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.00000 | $0.00365 |
| Opus 5 | $0.00000 | $0.00182 |
| Sonnet 5 | $0.00000 | $0.00073 |
| Haiku 4.5 | $0.00000 | $0.00036 |
Grade A, and why
plugins 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 yesterday.
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.
curl -H "X-API-Key: <API_KEY>" http://<host>/api/plugins What it actually says
SKILL: plugins
Endpoint: GET /api/plugins
Description: List active plugins and links to their documentation
Overview
Returns active plugins with links to their SKILL documentation.
curl -H "X-API-Key: <API_KEY>" http://<host>/api/plugins
Response
{
"plugins": [
{"name": "<plugin name>", "skill": "/private/skills/<name>/SKILL.json"}
]
}
The skill URL follows the response format:
GET /api/plugins.jsonreturnsSKILL.jsonlinksGET /api/plugins.mdreturnsSKILL.mdlinksGET /api/plugins.htmlreturnsSKILL.htmllinks
How to use
- Call
GET /api/pluginsto get the plugin list - For each plugin, fetch the
skillURL with your API_KEY to read its usage documentation - Use the documented commands via
POST /api/exec
# Step 1: list plugins
curl -H "X-API-Key: <API_KEY>" http://<host>/api/plugins
# Step 2: read plugin docs
curl -H "X-API-Key: <API_KEY>" http://<host>/private/skills/<name>/SKILL.json
# Step 3: execute
curl -X POST http://<host>/api/exec \
-H "X-API-Key: <API_KEY>" \
-H "Content-Type: application/json" \
-d '{"args": ["<command>", "--version"]}'
Authentication
Required: X-API-Key: <API_KEY>.
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.
- yesterday First seen · 52 lines · 0 tokens per session scan A 8b8fe9cad616
plugins is a skill published in the GitHub repository to-agent/agent-exec (1 stars, last pushed 3mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 365 tokens. 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-31.
Other skills, from other repositories
add-provider
Add or extend an open-source OOMOL Connect provider under src/providers, including provider definition, action schemas, local executors, credential validation, examples, and generated catalog updates.
vs-product-qa
Answer Viking AI Search product questions, CLI usage questions, API/auth questions, configuration questions, and troubleshooting questions by grounding every claim in either the installed vs CLI's own output or official Volcengine documentation. Never fabricate.
vs-search
Search runtime and scene management: verify queries, inspect scenes, debug app readiness, and diagnose recall or scene-config issues.
vs-shared
Shared SearchCLI setup: install, authenticate, run doctor, and verify the local environment.
local-search
Skill "local-search" from taxueseek/argo, covering local search 子技能, 设计原则, 本地引擎列表(33 个,29 个默认启用), 调用方式 and 直接调用子技能(单引擎).
scrape-structured-data
Get the repeating records off a web page (product grids, search results, job listings, news feeds, tables) as JSON, without writing CSS selectors and without spending a model call to read the HTML. Works on sites with no API, including ones behind a login or bot protection. Runs locally, one binary, no API key. Use…