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/eobarretooo/clawlite/trellonpx skills add eobarretooo/ClawLite --skill trellogit clone --depth 1 https://github.com/eobarretooo/ClawLiteWrote 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/eobarretooo/clawlite/trello)<a href="https://agentmods.dev/skills/eobarretooo/clawlite/trello"><img src="https://agentmods.dev/badge/skills/eobarretooo/clawlite/trello.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.00019 | $0.00501 |
| Opus 5 | $0.00010 | $0.00251 |
| Sonnet 5 | $0.00004 | $0.00100 |
| Haiku 4.5 | $0.00002 | $0.00050 |
Grade B, and why
trello scanned grade B with 2 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.
Sends data to an external URLmediumData exfiltration
A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.
curl -s -X PUT "$BASE/cards/{card_id}?$AUTH" -d "closed=true" Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s "$BASE/members/me/boards?$AUTH&fields=id,name,url" What it actually says
Trello
Use this skill when the user wants to manage Trello boards, lists, or cards.
Auth
Set TRELLO_API_KEY and TRELLO_TOKEN (from https://trello.com/power-ups/admin).
BASE="https://api.trello.com/1"
AUTH="key=$TRELLO_API_KEY&token=$TRELLO_TOKEN"
Boards
# List all boards for the authenticated user
curl -s "$BASE/members/me/boards?$AUTH&fields=id,name,url"
# Get a board's lists
curl -s "$BASE/boards/{board_id}/lists?$AUTH"
# Get all cards on a board
curl -s "$BASE/boards/{board_id}/cards?$AUTH"
Lists
# Get cards in a list
curl -s "$BASE/lists/{list_id}/cards?$AUTH"
# Create a list on a board
curl -s -X POST "$BASE/lists?$AUTH" \
-d "name=New List&idBoard={board_id}&pos=bottom"
Cards
# Create a card
curl -s -X POST "$BASE/cards?$AUTH" \
-d "name=Card Title&idList={list_id}&desc=Description"
# Move a card to another list
curl -s -X PUT "$BASE/cards/{card_id}?$AUTH" \
-d "idList={target_list_id}"
# Add a comment
curl -s -X POST "$BASE/cards/{card_id}/actions/comments?$AUTH" \
-d "text=Comment text"
# Archive (close) a card
curl -s -X PUT "$BASE/cards/{card_id}?$AUTH" -d "closed=true"
# Add a label
curl -s -X POST "$BASE/cards/{card_id}/labels?$AUTH" \
-d "color=red&name=Priority"
Safety notes
- Archiving a card is reversible; deleting is not — prefer archive.
- Always resolve board/list IDs before card operations.
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 · 72 lines · 19 tokens per session scan B 94ad0e0033ca
trello is a skill published in the GitHub repository eobarretooo/ClawLite (49 stars, last pushed 2mo ago), licensed MIT. It adds 19 tokens to every session and 501 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, 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
factory-mcp
Use the Warp Factory MCP to hand work to a software factory and collaborate with it — bundle local work and send it to the cloud, find factory tasks from a Slack thread / Linear ticket / description, and pull a task down to test or iterate locally and hand it back.
packet-factory
Creates, reviews, and dispatches atomic work packets. Every task with a side effect requires an APPROVED packet before execution. Scope is immutable after approval — expansion requires a new packet.
a0-create-plugin
Create, extend, or modify Agent Zero plugins. Follows strict full-stack conventions (usr/plugins, plugin.yaml, Store Gating, AgentContext, plugin settings). Use for UI hooks, API handlers, lifecycle extensions, or plugin settings UI.
linux-desktop
Use only for Agent Zero's built-in Docker/Xpra Linux Desktop, XFCE apps, LibreOffice GUI apps, file manager, terminal, or visual workflows inside the Agent Zero runtime. Not for A0 CLI /computer-use or computeruseremote host control.
a0-review-plugin
Full audit of Agent Zero plugins in usr/plugins/. Reviews manifest validity, directory structure, code patterns (Store Gating, notifications, imports), security, and duplicate detection against the community index. Use when asked to review, audit, validate, or check an existing plugin before using or contributing it.
host-computer-use-linux
Backend-specific Linux guidance for computeruseremote. Load after status or startsession reports backendfamily linux, backendid wayland, or AT-SPI features. Covers AT-SPI structural targeting, Wayland portal caveats, and screenshot verification.