fleet-helper

fleet-helper is a skill for Claude Code from Szotasz/marveen. It costs 86 tokens per session (1,265 once invoked), scanned A, original, MIT.

A set of dependency-free Python helpers for an agent fleet, meaning several cooperating agents. It includes dashboard and Kanban access, memory and messaging helpers, Telegram text escaping, and rule-based unread Mail.app filtering.

In plain words
What is it for?
Use it to read or filter Kanban items and email, save or search memory, send agent messages, format Telegram messages, and build heartbeat checks.
Why use it?
It moves repeatable fetching, filtering, formatting, and message preparation into scripts instead of having the agent redo that work in each session.

Skill for Claude Code

Written for Claude Code: $CLAUDE_PROJECT_DIR variable. Also seen: mentions subagents.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is P=../../seed-skills/fleet-helper/scripts.

Good fit Use it to read or filter Kanban items and email, save or search memory, send agent messages, format Telegram messages, and build heartbeat checks.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/Szotasz/marveen
agentmods
npx agentmods add skills/szotasz/marveen/fleet-helper

Made for: Claude Code.

Wrote 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.

agentmods badge for fleet-helper

README.md
[![agentmods](https://agentmods.dev/badge/skills/szotasz/marveen/fleet-helper/github.svg)](https://agentmods.dev/skills/szotasz/marveen/fleet-helper)
Your own site
<a href="https://agentmods.dev/skills/szotasz/marveen/fleet-helper"><img src="https://agentmods.dev/badge/skills/szotasz/marveen/fleet-helper/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.

agentmods 80×15 button for fleet-helper

Your own site · 80×15
<a href="https://agentmods.dev/skills/szotasz/marveen/fleet-helper"><img src="https://agentmods.dev/badge/skills/szotasz/marveen/fleet-helper.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 86 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,265 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00086 $0.01265
Opus 5 $0.00043 $0.00633
Sonnet 5 $0.00017 $0.00253
Haiku 4.5 $0.00009 $0.00127

Measured 8d ago against content hash 6a842bb4510a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

fleet-helper 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 8d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/fleet.py, scripts/gate_example.py, scripts/mail_triage.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

seed-skills/fleet-helper/SKILL.md · 79 lines

How it starts

The opening of the file, as written. The whole thing — 79 lines — stays where its author put it; the contents beside it link to each section on GitHub.

fleet-helper

Move deterministic work (fetch / filter / SQL / format / escape) out of the model and into Python, so heartbeats and scheduled tasks stop spending tokens re-deriving the same plumbing each cycle. Python 3 stdlib only, no pip deps.

No secrets or personal data are baked in: the dashboard token is read from store/.dashboard-token at call time, the project root comes from CLAW_DIR (or is auto-detected), and any personal sender/keyword lists live in a gitignored mail_rules.json (see scripts/mail_rules.example.json).

When to use

  • Saving/searching memory, posting daily-log, sending inter-agent messages.
  • Reading kanban (due today / stuck / by status) without writing SQL by hand.
  • Escaping text for a Telegram MarkdownV2 message.
  • An email heartbeat: pre-filter unread mail to a compact JSON before the model reasons about it.
  • Building a token-cheap heartbeat gate (see "The heartbeat gate pattern" below).

Scripts

  • scripts/fleet.py - dashboard API + kanban read helpers + MarkdownV2 escaper (CLI and importable module).
    • KET escaper van, es a rossz valasztas nemitja a formazast (2026-08-28-i meres). mdv2 MINDENT escapel, a *-ot IS: az *felkover* markereidbol \*felkover\* lesz, tehat sima szoveg. Ez akkor helyes, ha PROGRAMBOL rakod ossze az uzenetet (escapeled a dinamikus reszt, aztan te teszed ra a *-ot). KEZZEL IRT hosszu uzenethez (reggeli napindito) mdv2b kell: az a *-ot meghagyja, minden mast escapel, ES kuldes elott lefuttatja az outgoing_gate_check-et (em dash, --, paratlan csillag). Ha talal valamit, exit 2 es NEM ad kimenetet.
  • scripts/mail_triage.py - rule-based unread Mail.app filter (macOS), JSON out, never sends and never marks read.
  • scripts/gate_example.py - reference heartbeat gate; its shell invocation IS the mandatory keep-alive tool call (the LLM turn is not skipped, just cheap).
  • scripts/mail_rules.example.json - copy to mail_rules.json (gitignored) with your real senders/keywords.
  • scripts/README.md - full usage and the heartbeat gate pattern write-up.

Read the full file on GitHub · 79 lines

Files

What ships with it

6 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.

Changes

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.

  1. 8d ago Changed · +8 lines 6a842bb4510a
  2. 12d ago First seen · 71 lines · 86 tokens per session scan A 303649b859ba

Subscribe to this mod's changes

fleet-helper is a skill published in the GitHub repository Szotasz/marveen (98 stars, last pushed today), licensed MIT. It adds 86 tokens to every session and 1,265 once invoked, about $0.0004 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.

Related

Other skills, from other repositories

commonly

You are a member of a Commonly workspace — a shared space where humans and AI agents from any origin collaborate in pods (chat rooms with memory). Use this whenever you are connected to Commonly via the commonly MCP tools: to read what's happening, post, remember things across sessions, react, DM other agents, and…

Team-Commonly/commonly · 0 tokens

oma-pm

Product manager that decomposes requirements into actionable tasks with priorities and dependencies. Use for planning, requirements, specification, scope, prioritization, task breakdown, and ISO 21500, ISO 31000, or ISO 38500-aligned planning recommendations.

first-fluke/oh-my-agent · 55 tokens

oma-coordination

Guide for coordinating PM, Frontend, Backend, Mobile, and QA agents on complex projects via CLI. Use for manual step-by-step coordination and workflow guidance.

first-fluke/oh-my-agent · 36 tokens

wayfinder

Plan a huge chunk of work — more than one agent session can hold — as a shared map of decision tickets on your issue tracker, and resolve them one at a time until the way to the destination is clear.

willdady/platypus · 46 tokens

triage

Move issues and external PRs through a state machine of triage roles — categorise, verify, grill if needed, and write agent-ready briefs.

willdady/platypus · 33 tokens

to-tickets

Break a plan, spec, or the current conversation into a set of tracer-bullet tickets, each declaring its blocking edges, published to the configured tracker — edges as text in one file per ticket locally, or native blocking links on a real tracker.

willdady/platypus · 54 tokens