quick

A quick project overview that detects the technology stack, important symbols, recent Git activity, and basic coding conventions. It creates a short context file in about 30–60 seconds when the required first-plan engine is available.

In plain words
What is it for?
Use it when opening a project for the first time, refreshing an existing project summary, preparing a demo, or working in CI/CD. Run the full initialization later when deeper indexes and project relationships are needed.
Why use it?
It gives an agent enough initial project context without running the longer full analysis. This is useful when time, compute, or the project environment is limited.

Command

Install

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.

agentmods
npx agentmods add commands/vynazevedo/first-plan/quick
Clone the repo
git clone --depth 1 https://github.com/vynazevedo/first-plan
Per session 45 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,461 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00045 $0.01461
Opus 5 $0.00023 $0.00731
Sonnet 5 $0.00009 $0.00292
Haiku 4.5 $0.00005 $0.00146

Measured 2d ago against content hash 571326b9f58a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

quick 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 2d 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.

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.

commands/quick.md · 156 lines

How it starts

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

/fp:quick

Resumo executivo do projeto em ~30s. Gera .first-plan/quick/00-glance.md com 1 página de contexto suficiente para o Claude começar a ajudar imediatamente, sem rodar o init completo (3-8 min).

Quando usar

  • Primeira vez no projeto - quer ver valor em <1 minuto antes de investir 5 min no init
  • Sessão nova num projeto que ja tem .first-plan/ - quer recap rapido sem re-rodar tudo
  • Demo/screenshot - mostra capacidade do plugin sem espera
  • CI/CD ou ambiente restrito - quer contexto rapido sem indices pesados

Para analise completa (reuse index, reconciliation, co-change graph, provenance), rode /fp:init depois.

Workflow

Passo 1 - Engine check

ENGINE=$(which first-plan-engine 2>/dev/null || echo "${CLAUDE_PLUGIN_ROOT}/engine/bin/first-plan-engine")
if [ ! -x "$ENGINE" ]; then
  echo "Engine nao encontrado. /fp:quick requer first-plan-engine v0.7.0+."
  echo "Instale: cargo install --git https://github.com/vynazevedo/first-plan --path engine/crates/cli"
  echo "Ou baixe binario: https://github.com/vynazevedo/first-plan/releases/latest"
  exit 0
fi

Passo 2 - Rodar glance e salvar arquivo

mkdir -p .first-plan/quick
"$ENGINE" quick --root "$PWD" --output .first-plan/quick/00-glance.md --json > /tmp/fp-quick.json

Tempo tipico: 1-5s (rapido em projetos pequenos, ate 30-40s em monorepos grandes).

Passo 3 - Ler o JSON pra apresentar resumo

cat /tmp/fp-quick.json

JSON estrutura:

{
  "elapsed_ms": 1289,
  "root": "/path/to/project",
  "stacks": [{"language": "Rust", "manifest": "engine/Cargo.toml"}],
  "entry_points": ["engine/crates/cli/src/main.rs"],
  "top_symbols": [{"name": "Args", "kind": "struct", "file": "...", "line": 17}],
  "git_activity": {
    "recent_commits": ["..."],
    "hot_files": [{"path": "...", "change_count": 12}],
    "active_authors": [{"name": "...", "commit_count": 47}]
  },
  "conventions": {
    "naming": "snake_case predominante (45 de 50 arquivos)",
    "test_frameworks": ["Rust #[cfg(test)] mod tests inline"]
  },
  "commands": ["cargo build --release (in engine)", "cargo test --workspace (in engine)"]
}

Read the full file on GitHub · 156 lines

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. 2d ago First seen · 156 lines · 45 tokens per session scan A 571326b9f58a

Subscribe to this mod's changes

quick is a command published in the GitHub repository vynazevedo/first-plan (23 stars, last pushed 8d ago), licensed MIT. It adds 45 tokens to every session and 1,461 once invoked, about $0.0002 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.