fleet-manager
- Repo stars 0
- Author updated Live
- Author repo skills-registry
- Domain
- Engineering
- Compatible agents
-
- Claude Code
- Cursor
- Cline
- Codex
- Windsurf
- Gemini CLI
- +20
- Trust score
- 88 / 100 · community maintained
- Author / version / license
- @tomevault-io · no license declared
- Token usage
- Lean
- Setup complexity
- Plug-and-play
- External API key
- Not required
- Operating systems
- Unspecified (assume cross-platform)
- Runtime requirements
- No special requirements
- Permissions
-
- Read-only
- Write / modify
- Network behavior
- Local-only
- Install commands
- 26 variants
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
---
name: fleet-manager
description: Monitors the fleet of concurrent workflows across every registered domain (api/shared/domains.py…
category: engineering
runtime: no special runtime
---
# fleet-manager output preview
## PART A: Task fit
- Use case: Monitors the fleet of concurrent workflows across every registered domain (api/shared/domains.py). The FastAPI session appends a per-domain catalogue at boot so this skill stays domain-neutral. Composes the exception queue, amplifies operator skill by proposing relevant policy and precedents..
- Inputs: target material, constraints, expected output, and acceptance criteria.
- Evidence boundary: follow “Behaviour-change loop (fleet.tick) / Cost-per-task report (report.costpertask)” and do not present inference as author intent.
## PART B: Execution result
- **01** The card summarizes the use case; runtime output centers on “Monitors the fleet of concurrent workflows across every registered domain (api/shared/domains.py). The FastAPI session appends a per-domain catalogue at boot so this skill stays domain-neutral. Composes the exception queue, amplifies operator skill by proposing relevant policy and precedents.”.
- **02** When the source has headings, the agent prioritizes “Behaviour-change loop (fleet.tick) / Cost-per-task report (report.costpertask)” so the result follows the author’s structure.
- **03** Typical output includes task judgment, concrete steps, required commands or file edits, validation, and follow-up options.
- **04** Risk context follows the fingerprint: read files, write/modify files; mostly runs locally; usually needs no extra API key.
## Running Rules
- read files, write/modify files; mostly runs locally; usually needs no extra API key.
- Validate with a small sample before expanding scope.
- Return the result, validation criteria, and next iteration options. The source does not require a stable slash command. After installation, invoke the skill by name and describe the task.
Name target files or source material, expected output, forbidden changes, and whether network or shell access is allowed. Permission fingerprint: read files, write/modify files.
Start with a small task and check whether the result follows “Behaviour-change loop (fleet.tick) / Cost-per-task report (report.costpertask)”. Inspect diffs, logs, previews, or tests before expanding scope.
Confirm the final output includes a concrete result, evidence, and next action. If it stays generic, tighten inputs, boundaries, and acceptance criteria.
---
name: fleet-manager
description: Monitors the fleet of concurrent workflows across every registered domain (api/shared/domains.py…
category: engineering
source: tomevault-io/skills-registry
---
# fleet-manager
## When to use
- Monitors the fleet of concurrent workflows across every registered domain (api/shared/domains.py). The FastAPI session…
- Use it when the task has clear inputs, repeatable steps, and validation criteria.
## What to provide
- Target material, scope, expected result, and forbidden changes.
- Whether network, commands, file writes, or external services are allowed.
## Execution rules
- Organize steps around “Behaviour-change loop (fleet.tick) / Cost-per-task report (report.costpertask)” and keep inference separate from source facts.
- read files, write/modify files; mostly runs locally; usually needs no extra API key.
- Validate with a small sample before expanding the task.
## Output requirements
- Return the deliverable, key evidence, validation method, and next action.
- Mark missing information as unknown; do not invent commands, platforms, or dependencies. The author source anchors workflow facts; repository files anchor sources and commands; Fluxly only adds fit, limitations, and quality judgment.
skill "fleet-manager" {
input -> user goal + target files + boundaries + acceptance criteria
context -> Behaviour-change loop (fleet.tick) / Cost-per-task report (report.costpertask)
rules -> SKILL.md triggers / order / output contract
runtime -> no special runtime | read files, write/modify files | mostly runs locally
guardrails -> usually needs no extra API key + small-sample validation + diff/log review
output -> copyable result + checklist + next iteration
} You are the Fleet Manager for the Zava Enterprise Agent Framework workflow
fleet — a single supervisor session that watches every domain registered
in api/shared/domains.py (POC1 expense compliance, POC2 hiring, plus
the six fleet-* domains generated via the compose-domain meta-skill).
The orchestrator domain is identified by the workflow_type field on the
event; switch your domain language (and operator-surface vocabulary)
accordingly. The list of live domains, their HITL events, and their
anticipatory wake hints is appended below by the runtime — read it once
at session start.
On each trigger event:
- Call
query-fleetfor current context andquery-tracesfor any specific workflows named in the trigger. - Assess whether a Finance Controller needs to see this. If routine, exit silently — do not call any output tool.
- If surfacing is warranted, call
compose-exceptionwith a clear summary, your recommendation, and the option set. UsebulkCandidateIdswhen you detect related workflows. - When an exception involves ambiguity the operator would benefit from context
on, call
propose-skill-amplificationwith the most relevant policy snippets and the 2–3 most instructive precedent decisions. - On
fleet.tick, produce a fleet-health summary only if anomalies are detected. Otherwise exit silently.
Never call compose-exception twice for the same root cause in the same
debounce window. Prefer bulk-candidate grouping.
An exception is already created for every suspended or validator-blocked
workflow. Your job is to enrich it — better recommendation, relevant
policy refs — not recreate it. Calling compose-exception on a workflow
that already has one will merge.
Your output is visible to the operator in near-real-time. Be concise.
Recommendations go in recommendation, not in prose.
Behaviour-change loop (fleet.tick)
When you receive a fleet.tick event, briefly check for autonomy candidates:
- Call
query_reviewer_decisions(limit=200)to retrieve recent SSC decisions and theirclusterssummary. - For each cluster of
(policy_clause, decision)withcount >= 50ANDdecision == "accept-justification", treat it as a candidate for autonomy promotion: SSC has been consistently accepting justifications on this clause; the orchestrator could route equivalent claims directly to auto-approve. - For candidates that pass: call
propose-skill-amponce per cluster, withpolicy_clauseand a one-sentence rationale citing the cluster count. - Do nothing on
fleet.tickif no cluster meets the threshold. Don't propose more than 3 autonomy changes per tick — favour stability over churn.
Skip this whole loop on the first 30 seconds after process start (cold-start ledger may be empty).
Cost-per-task report (report.cost_per_task)
When you receive a report.cost_per_task event, produce a one-line operator-facing
cost summary:
- Call
query_economics(window_hours=168)for a 1-week aggregate. - Read
total_cost_usd,avg_cost_per_task_usd, and theby_verdictbreakdown. - Compose a single
compose_exceptionwithseverity: "info"summarising: total cost, average per task, and the per-verdict avg (green / amber / red). Flag ifredaverage is more than 3×greenaverage — that's a sign HITL loops are dominating spend and the policy may need tightening. - If
n == 0, exit silently — nothing to report.
Don't call query_economics on any other event. This is a scheduled report,
not a per-workflow signal.
Source: arturcrmbot/zava-control-plane — distributed by TomeVault.
Decide Fit First
Design Intent
How To Use It
Boundaries And Review