Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

fleet-plan机队计划

Agent Skill

fleet-plan 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

404

周安装

17

GitHub Stars

公开资料未说明

下载量

141
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:fleet-plan(机队计划)
来源仓库:https://github.com/quickcall-dev/skills
仓库路径:skills/fleet-plan
安装命令:
npx skills add https://github.com/quickcall-dev/skills --skill fleet-plan
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/quickcall-dev/skills --skill fleet-plan

简介

fleet-plan 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配或来源线索筛选等研究检索场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件读写操作。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

Fleet Plan

Analyze work, pick the right fleet type, generate fleet.json + worker prompts. You plan — the fleet skills execute.

Step 0: Discover available fleet types

Before planning, read the fleet index to know what's available:

  1. Find the index: Glob for **/fleet/FLEET-INDEX.md (or look in the same parent dir as this skill)
  2. Read FLEET-INDEX.md — it has a table of all fleet types with one-liner hints on when to use each
  3. Based on the hints, pick the best fleet type for the user's task
  4. Then read ONLY the chosen fleet's SKILL.md for the full schema: Glob for **/<chosen-fleet>/SKILL.md

This is a two-step lookup: cheap index first (one small file), full schema second (one SKILL.md). Never read all fleet SKILL.md files — that wastes context.

Step 1: Ask where to place the fleet

Before analyzing anything, ask the user:

Where should I place the fleet root? (Press enter for default)
  • If the user provides a path → use it
  • If the user ignores, says "default", or doesn't respond → use: fleet-{YYYYMMDD-HHMMSS}-{fleet-name}/ in the current working directory

Always use absolute paths for the fleet root.

Step 2: Pick a fleet type

Use the hints from FLEET-INDEX.md to match the user's task. Quick heuristic:

Q1: Can one agent handle this in a single session?
    YES → "No fleet needed — this fits in one session." STOP.

Q2: Does FLEET-INDEX.md have a matching fleet type?
    YES → Pick it. Read its SKILL.md for the full schema.

Q3: No match?
    → "Open multiple Claude Code sessions — you're the orchestrator." STOP.

After picking, read the chosen fleet's SKILL.md to get the exact fleet.json schema, worker type rules, and output path conventions. Do not guess schemas from memory — read the SKILL.md. STOP HERE.

**Show the user your reasoning.** Don't just pick a type — explain why.

## Step 3: Generate fleet.json

### Valid models — ONLY use these

**Claude models (provider: "claude", default):**

| Alias | Full ID | When to use |
|-------|---------|-------------|
| `sonnet` | `claude-sonnet-4-6` | Default for most workers |
| `opus` | `claude-opus-4-6` | Complex reasoning, architectural review, large-context synthesis |
| `haiku` | `claude-haiku-4-5` | Cheap/fast — validators, linters, simple checks |

**Codex models (provider: "codex"):**

| Model | When to use |
|-------|-------------|
| `gpt-5.4` | Flagship — strongest reasoning, recommended default |
| `gpt-5.4-mini` | Fast/cheap — validators, simple tasks |
| `gpt-5.3-codex` | Coding-focused (migrating to gpt-5.4) |

**Default:** `sonnet` for Claude workers, `haiku` for fallback_model.
**Only use `opus`** when the task clearly needs it. Cost difference is significant.
**Use codex** when the user requests it or the task benefits from OpenAI models (e.g. research with web search via codex).

### Budget guidelines

| Task complexity | max_budget_usd |
|----------------|---------------|
| One-line change, simple edit | 0.25 - 0.50 |
| Moderate task (new function, refactor one file) | 1.00 - 2.00 |
| Complex task (new feature, multi-file changes) | 3.00 - 5.00 |
| Large task (architectural change, full module) | 5.00 - 10.00 |

**Do NOT set max_turns.** It defaults to unlimited. Budget is the only limiter.

### Worker type selection — CRITICAL

Pick the worker type based on what the worker **needs to output**, not what it reads:

| Worker role | Correct type | WRONG type | Why wrong |
|-------------|-------------|------------|-----------|
| Researcher (web + findings file) | `research` | `read-only` | read-only has no WebFetch/WebSearch and cannot Write |
| Synthesizer (reads inputs, writes synthesis) | `write` | `read-only` | read-only cannot Write — burns entire budget trying |
| Code builder (shell + files) | `code-run` | `write` | write has no Bash |
| Reviewer (reads code, runs tests, writes verdict) | `reviewer` | `write` | reviewer has full access (Bash, Edit, etc.) for verification |

**`read-only` CANNOT write files.** Only use it for workers whose output is captured from assistant messages in session.jsonl, not from output files. If a worker needs to save ANY file, use `write`, `research`, `code-run`, or `reviewer`.

### fleet.json rules by type

**All types:**

{ "fleet_name": "<descriptive-kebab-case-name>", "type": "<worktree|dag|iterative>", "config": { "max_concurrent": 3, "model": "sonnet", "fallback_model": "haiku", "provider": "claude", "reasoning_effort": "" }, "workers": [...] }


**Provider fields (optional):**

- `config.provider` — `"claude"` (default) or `"codex"`. Per-worker override: `worker.provider`.
- `config.reasoning_effort` — `"low"`, `"medium"`, or `"high"` (codex only). Per-worker override: `worker.reasoning_effort`.
- When `provider: "codex"`, the `fallback_model` field is ignored (codex has no fallback).
- When `provider: "codex"`, `max_budget_usd` is NOT enforced per-worker (codex has no budget flag). Fleet-level cost tracking still works via token estimation.

**worktree-fleet additions:**

- Every worker MUST have `target_files` (array of file globs) and `branch` (unique branch name)
- No two workers can have overlapping target_files
- Default worker type: `code-run` (worktree workers need Bash for git commit)

**iterative-fleet additions:**

- Exactly one worker with `type: "reviewer"` (use `depends_on` to ensure it runs after builders)
- Must include `stop_when` block with at least `max_iterations` and `reviewer_lgtm_count`
- Workers have `max_budget_per_iter` instead of `max_budget_usd`

**dag-fleet additions:**

- Use `depends_on: ["worker-id"]` for dependency ordering
- Workers without dependencies run in parallel

## Step 4: Generate prompt.md for each worker

Create `$FLEET_ROOT/workers/{id}/prompt.md` for each worker. Every prompt MUST include:

1. **Clear task description** — what to do, in specific terms
2. **Scope boundaries** — what files to touch, what NOT to touch

### Output path rules (CRITICAL — different per fleet type)

**worktree-fleet:**

- Do NOT include a "Save ALL output to output/" line. The worker edits files in its worktree at the real repo paths.
- MUST include at the end: `When you are done, commit your changes on the current branch with a descriptive message.`

**dag-fleet:**

- Workers that produce artifacts (research, summaries, matrices) → include: `Save ALL output files to $FLEET_ROOT/workers/{id}/output/ — use absolute paths.`
- Workers that edit repo files (code changes, creating docs at specific paths) → tell them the exact target path. Do NOT also mention output/. One destination only.

**iterative-fleet:**

- Same as dag-fleet: if the deliverable is a specific file, give the exact path. Do not also mention output/.
- **Reviewer prompt MUST include verdict-writing instructions.** Without these, the reviewer won't write a verdict file and the orchestrator defaults to `iterate`, wasting an iteration. Every reviewer prompt.md must end with: `` ## Writing your verdict 1. Determine the current iteration number: list the `iterations/` directory and find the highest-numbered subdirectory that does NOT yet contain a `review.md`. 2. Write your verdict to `iterations/<N>/review.md` (relative to your working directory). **Never use absolute paths.** 3. The file MUST contain a line exactly like one of: - `verdict: lgtm` - `verdict: iterate` - `verdict: escalate` 4. Below the verdict line, list **actionable fix instructions** per worker — not just what's wrong, but exactly where and how to fix it (file path, function name, what to change). 2-3 precise points per worker. The builder sees this on next iteration, so vague feedback wastes a cycle. `` This is non-negotiable. Fleet 02 burned an iteration because the reviewer prompt didn't specify where/how to write the verdict.

**The rule:** Never give a worker two destinations. One task = one output location. Conflicting instructions cause workers to write to the wrong place.

## Step 5: Output to user

After generating everything, tell the user:

1. **Plan summary** — what each worker does (a table)
2. **Fleet type chosen** and why
3. **Launch command:** `bash <path-to-fleet-skill>/scripts/launch.sh <fleet-root>` For worktree-fleet, suggest `--dry-run` first.
4. **Status command:** `bash <path-to-fleet-skill>/scripts/status.sh <fleet-root>`

**ALWAYS give the user the status command.** This is mandatory.

## Preferred defaults

- **Implementation workers:** codex `gpt-5.3-codex`, `reasoning_effort: "medium"`
- **Reviewer workers:** claude `opus` (`claude-opus-4-6`), `reasoning_effort: "medium"`
- **max_turns:** unset (unlimited)
- **max_iterations** (iterative-fleet `stop_when`): `10`

Override only when user specifies different models/caps in the request.

## Rationalizations to reject

| Agent says | Rebuttal |
| --- | --- |
| "I can handle this without a fleet" | If the user asked for fleet-plan, they want parallel execution. Walk the decision tree and pick a type. Only say "no fleet" if Q1 is genuinely YES. |
| "I'll use opus for all workers since it's better" | Sonnet is the default. Opus costs ~5x more. Only use opus when the task demonstrably needs complex reasoning. |
| "I'll skip the decision tree and just use dag-fleet" | Walk the tree. Worktree-fleet is better for independent work (git isolation). Iterative-fleet is better for reviewer-gated work. dag-fleet is the fallback, not the default. |
| "The tasks overlap a little but worktree-fleet will work" | Overlapping files = not worktree-fleet. Use dag-fleet with depends_on, or restructure the split so files don't overlap. |
| "I'll set max_budget_usd high to be safe" | Budget should match task complexity. $0.50 for simple edits, $2 for medium, $5 for complex. Don't waste money. |
| "I don't know which fleet type to pick" | You have a decision tree. Walk it. If genuinely ambiguous after the tree, default to dag-fleet. |
| "The synthesizer just reads outputs, so read-only is fine" | **NO.** read-only cannot Write. The synthesizer reads inputs but WRITES a synthesis file. Use `write`. This mistake burned $1.23 in experiment 007 when Opus spent 26 turns trying to find a Write tool. |
| "Researchers should be read-only since they're reading" | **NO.** read-only has no WebFetch/WebSearch and no Write. Researchers need `research` type. |

$ARGUMENTS

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.07%
按下载量换算52

Claude

29.02%
按下载量换算41

Cursor

19.17%
按下载量换算27

Gemini CLI

8.79%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/quickcall-dev/skills --skill fleet-plan 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills