FlightPlan

FlightPlan

YOUR AGENTS COLLIDE. File a FlightPlan. Run multiple coding agents without them stepping on each other. FlightPlan gives each agent the same preflight picture, lets them coordinate while plans are still cheap to change, and leaves behind what changed and why for whichever agent comes next. Across sessions. Across people. Across providers. Across time. One shared picture.

Category
Visit Server

README

FlightPlan

Your agents collide. File a FlightPlan.

Before work begins, each of your agents declares where it's headed and sees what's already in flight. They coordinate around conflicts, then leave behind what changed and why.

Advisory, never locking.

A byproduct of agent work, not another process to maintain.

FlightPlan coordinates coding agents before their work collides. This repo contains the CLI, MCP server, and installer for the hosted service at getflightplan.com.

Quick start

From your repo's root:

uvx getflightplan install

That installs FlightPlan for Claude Code. For Codex, append --agent codex (or --agent both). The command is safe to re-run. The first time on a machine, run uvx getflightplan login next — it connects your account and finishes the MCP setup.

The hosted service is in beta; sign in with your GitHub account at getflightplan.com. The package is on PyPI, so the command above is all you need. To pin a branch or commit instead, install from the source: uvx --from git+https://github.com/sledmonkey/getflightplan getflightplan install.

Version and compatibility policy: docs/versioning.md.

How it works

  1. File the work. Before editing, an agent declares its task and the files it expects to touch.
  2. See what's in flight. FlightPlan returns overlapping active work, including uncommitted changes Git cannot see, decisions made during coding, plus relevant recent outcomes.
  3. Coordinate. Overlaps are advisory: narrow the work, sequence it, or proceed with context.
  4. Debrief. The agent records what changed, what surprised it, and what it tried so the next session does not start cold.

What the installer adds

  • .flightplan.toml — pins the repo name every agent posts under, plus the registry URL. Committed on purpose; no secrets.
  • A managed agent snippet in CLAUDE.md and/or AGENTS.md.
  • /registry-digest — an on-demand "what happened lately" command.
  • A session-end stop hook (.claude/hooks/flightplan_stop_hook.py plus its settings wiring) that reminds the agent to close out open intents.

It also checks MCP registration and service reachability, and repairs the registration when the machine has a credential — no prompts. Verification is advisory and never fails the run.

To remove everything the installer wrote, run getflightplan uninstall from the repo root (--dry-run to preview, --purge-key to also delete the saved API key).

Logging in

getflightplan login gets a credential without a copied API key. It opens your browser, you approve there, and the credential goes to ~/.config/flightplan/env with mode 600. The credential is never printed. After the credential is stored, login also registers the MCP server for the agent binaries on your machine — the step install has to skip while the machine has no credential.

On a machine with no browser, run getflightplan login --headless. The command shows a short code and an address. Open that address on another device and enter the code.

getflightplan logout removes the stored credential from this machine. To revoke it on the service, use the /devices page.

Finding your repository

After a login, the client asks the registry which repository this checkout is. It sends the address of your origin remote and up to 1000 commit ids, which prove that you have a clone. If your account has access, the id and the name go into .flightplan.toml. If the registry does not know the repository, the client offers to register it in your browser. If your account has no access, the client offers to request it.

getflightplan login --no-register skips the check. getflightplan register runs it on its own, later. A failed check never fails a login.

Saying that work has landed

An intent completed with uncommitted: true says the work is in someone's working tree and nowhere else. The registry cannot see your tree, so it keeps warning everyone who touches those paths until it is told the work landed.

Agents do this with the mark_intent_landed tool. You can do it by hand:

getflightplan landed <intent-id> --commit <sha> --commit <sha>

The commits are optional; the timestamp is the correction. Pass the SHAs only if you know them — the client never guesses which commits belong to an intent. Landing can be repeated safely and never rewrites the completed record.

Configuration

  • FLIGHTPLAN_URL — https://api.getflightplan.com
  • FLIGHTPLAN_API_KEY — your key (the MCP server's env; the stop hook also reads ~/.config/flightplan/env).
  • .flightplan.toml — the per-repo pin: a repo name and url, or a target_id with a readable name once the repo has an id pinned.

What your agent is told

The installer adds the following managed contract with your repo name pinned.

<details> <summary>View the agent instructions</summary>

Intent registry

This repo participates in the team intent registry (MCP server: flightplan).

  • Before starting non-trivial work, call post_intent. The test: will the work change behavior, defaults, or contracts another agent would encounter — or, for pure investigation, would the findings save the next agent an hour? Yes to either → post; Q&A and typo-level fixes, no. Send a one-paragraph summary (what + why), kind (build, or explore/spike for throwaway investigation), and touches globs for the areas you expect to change. Keep the returned id for later. For repo, use the basename of the git origin remote (or the repo root directory name if there is no remote) — every agent on this repo must use the same name or collision checks silently miss each other. The response may include context: recent completed work relevant to your task — read those outcomes before starting; the surprises and dead ends in them are load-bearing.
  • If the response includes overlaps at level warn, check what the overlap is before pausing. Two cases need no confirmation — mention the overlap and keep going: the overlapping intent is the very work you were asked to act on (reviewing it, verifying it, following up on it), or your task is read-only. Otherwise, tell your user who is doing what and which globs collide, and ask how to proceed before continuing. fyi/nudge levels: mention briefly and keep going.
  • If the work changes shape or runs long, call update_intent: revise the summary/touches when scope grows (collision checks run against them — stale globs miss real collisions), or call with just the id to renew the TTL on work spanning more than a day. The response includes fresh overlaps — the same collision check as posting, glob-based — and a warn there gets the same treatment as a warn at post time.
  • When the work finishes or is abandoned — including when the session is wrapping up — call complete_intent with a one-paragraph outcome: what actually changed, anything surprising, approaches tried and rejected, anything deliberately left in place. If a warn overlap changed how the work went (coordinated, narrowed scope, proceeded anyway), say which. Attach the git facts you already know: files actually changed (git diff --name-only), commits created, and uncommitted: true if any of the work is not yet committed — that flag is what lets other agents' collision checks warn loudly instead of quietly. Completing an intent ends the slice, not the session: follow-up work after a complete that changes behavior, defaults, or contracts gets a fresh post — "same session" doesn't exempt it.
  • When you learn declared-uncommitted work has landed, call mark_intent_landed with that intent's id (and the commit SHAs if you know them): until someone says so, the registry keeps warning everyone who touches those paths.
  • Re-check for collisions whenever your picture of in-flight work may be stale — posting checks once, and it goes stale over a long session. Re-check moments: a file changed between your read and your edit, or an Edit fails on text you just read — someone's work landed under you; before editing a shared doc or artifact you didn't create this session; when resuming after a handoff from another agent; and before touching files named in an earlier warn. The cheapest re-check is update_intent with just your intent id (renews the TTL, returns fresh overlaps); use list_intents (pass overlaps globs, plus summary for a semantic check, or q/since for history) when you have no open intent or are scoping new work.
  • When a decision gets resolved in conversation (an approach chosen, an alternative rejected, a direction set), record it the moment it settles: post_intent with kind: "decision", the question as the summary, and the resolution in outcome — what was decided, what was rejected, and why. One call; no touches, no completion later. Decisions never collide and become searchable team memory. Decisions are also the correction mechanism: completed outcomes are immutable, so if one later proves wrong, post a decision citing what actually held.
  • The registry is advisory and must never block work: if its tools are missing or error, proceed with the work, and tell your user once that they can run uvx getflightplan install (see getflightplan.com) to join this repo's registry.

</details>

Data

What leaves your machine is the coordination record: intent summaries and outcome paragraphs, glob patterns, changed-file paths, branch names, and commit ids — sent only to the FlightPlan service. Source code contents are never uploaded. Everything the registry knows, it learns as a byproduct of your agents' work.

The details — what never leaves, and what is stored where — are in docs/data-flow.md. Vulnerability reporting: SECURITY.md.

License

Apache-2.0

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured