Skip to main content
Glama

FlightPlan

Ваши агенты сталкиваются. Подайте FlightPlan.

Перед началом работы каждый из ваших агентов объявляет, куда направляется, и видит, что уже находится в полете. Они координируют действия при конфликтах, затем оставляют запись о том, что изменилось и почему.

Рекомендательный, не блокирующий.

Побочный продукт работы агентов, а не еще один процесс для поддержки.

FlightPlan координирует действия агентов до того, как их работа столкнется. Этот репозиторий содержит CLI, MCP-сервер и установщик для хостингового сервиса на getflightplan.com.

Быстрый старт

Из корня вашего репозитория:

uvx getflightplan install

Это устанавливает FlightPlan для Claude Code. Для Codex добавьте --agent codex (или --agent both). Команду можно безопасно повторять. При первом запуске на машине выполните uvx getflightplan login — она подключает вашу учетную запись и завершает настройку MCP.

Хостинговый сервис находится в бета-версии; войдите через учетную запись GitHub на getflightplan.com. Пакет находится на PyPI, поэтому указанной выше команды достаточно. Чтобы зафиксировать ветку или коммит, установите из исходного кода: uvx --from git+https://github.com/sledmonkey/getflightplan getflightplan install.

Политика версий и совместимости: docs/versioning.md.

Related MCP server: asynkor

Как это работает

  1. Оформите работу. Перед редактированием агент объявляет свою задачу и файлы, которые планирует затронуть.

  2. Узнайте, что в работе. FlightPlan возвращает пересекающуюся активную работу, включая незафиксированные изменения, которые Git не видит, решения, принятые во время кодирования, а также соответствующие недавние результаты.

  3. Координируйте. Пересечения носят рекомендательный характер: сузьте работу, выстройте последовательность или продолжайте с учетом контекста.

  4. Подведите итоги. Агент записывает, что изменилось, что его удивило и что он попробовал, чтобы следующий сеанс не начинался с нуля.

Что добавляет установщик

  • .flightplan.toml — фиксирует имя репозитория, под которым публикует каждый агент, а также URL реестра. Преднамеренно добавляется в коммит; никаких секретов.

  • Управляемый фрагмент для агента в CLAUDE.md и/или AGENTS.md.

  • /registry-digest — команда "что произошло в последнее время" по запросу.

  • Хук остановки сеанса (.claude/hooks/flightplan_stop_hook.py плюс его настройки), который напоминает агенту закрыть открытые намерения.

Он также проверяет регистрацию MCP и доступность сервиса и исправляет регистрацию, если на машине есть учетные данные — без запросов. Проверка носит рекомендательный характер и никогда не прерывает выполнение.

Чтобы удалить все, что записал установщик, выполните getflightplan uninstall из корня репозитория (--dry-run для предварительного просмотра, --purge-key для удаления сохраненного API-ключа).

Вход в систему

getflightplan login получает учетные данные без копирования API-ключа. Он открывает ваш браузер, вы подтверждаете там, и учетные данные сохраняются в ~/.config/flightplan/env с правами 600. Учетные данные никогда не выводятся на экран. После сохранения учетных данных вход также регистрирует MCP-сервер для двоичных файлов агента на вашей машине — шаг, который установщик пропускает, пока на машине нет учетных данных.

На машине без браузера выполните getflightplan login --headless. Команда показывает короткий код и адрес. Откройте этот адрес на другом устройстве и введите код.

getflightplan logout удаляет сохраненные учетные данные с этой машины. Чтобы отозвать их в сервисе, используйте страницу /devices.

Поиск вашего репозитория

После входа клиент спрашивает у реестра, какой репозиторий соответствует этой копии. Он отправляет адрес вашего удаленного репозитория origin и до 1000 идентификаторов коммитов, которые доказывают, что у вас есть клон. Если ваша учетная запись имеет доступ, идентификатор и имя сохраняются в .flightplan.toml. Если реестр не знает репозиторий, клиент предлагает зарегистрировать его в вашем браузере. Если ваша учетная запись не имеет доступа, клиент предлагает запросить его.

getflightplan login --no-register пропускает проверку. getflightplan register запускает ее отдельно, позже. Неудачная проверка никогда не приводит к сбою входа.

Сообщение о завершении работы

Намерение, завершенное с uncommitted: true, означает, что работа находится в рабочем дереве кого-то и нигде больше. Реестр не видит ваше дерево, поэтому он продолжает предупреждать всех, кто затрагивает эти пути, пока ему не сообщат, что работа завершена.

Агенты делают это с помощью инструмента mark_intent_landed. Вы можете сделать это вручную:

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

Коммиты необязательны; временная метка является корректировкой. Передавайте SHA только если вы их знаете — клиент никогда не угадывает, к какому намерению относятся коммиты. Завершение можно повторять безопасно и никогда не перезаписывает запись о выполненной работе.

Конфигурация

  • FLIGHTPLAN_URLhttps://api.getflightplan.com

  • FLIGHTPLAN_API_KEY — ваш ключ (переменная окружения MCP-сервера; хук остановки также читает ~/.config/flightplan/env).

  • .flightplan.toml — привязка к репозиторию: имя repo и url, или target_id с читаемым name, когда у репозитория есть закрепленный идентификатор.

Что сообщается вашему агенту

Установщик добавляет следующий управляемый контракт с закрепленным именем вашего репозитория.

Реестр намерений

Этот репозиторий участвует в командном реестре намерений (MCP-сервер: flightplan).

  • Перед началом нетривиальной работы вызовите post_intent. Критерий: изменит ли работа поведение, настройки по умолчанию или контракты, с которыми столкнется другой агент — или, для чистого исследования, сэкономят ли результаты следующему агенту час? Да на любой из пунктов → публикуйте; вопросы и исправления опечаток — нет. Отправьте одноабзацное резюме (что + почему), kind (build, или explore/spike для одноразового исследования) и touches glob-шаблоны для областей, которые вы планируете изменить. Сохраните возвращенный идентификатор для дальнейшего использования. Для repo используйте базовое имя удаленного репозитория git origin (или имя корневого каталога репозитория, если удаленного репозитория нет) — каждый агент в этом репозитории должен использовать одно и то же имя, иначе проверки коллизий молча пропустят друг друга. Ответ может включать context: недавно завершенную работу, относящуюся к вашей задаче — прочитайте эти результаты перед началом; сюрпризы и тупики в них важны.

  • Если ответ включает пересечения на уровне warn, проверьте, в чем пересечение, прежде чем приостанавливаться. Два случая не требуют подтверждения — упомяните пересечение и продолжайте: пересекающееся намерение — это именно та работа, которую вас попросили выполнить (проверить ее, подтвердить, продолжить), или ваша задача предназначена только для чтения. В противном случае сообщите пользователю, кто что делает и какие glob-шаблоны конфликтуют, и спросите, как действовать дальше, прежде чем продолжать. Уровни fyi/nudge: кратко упомяните и продолжайте.

  • Если работа меняет форму или затягивается, вызовите update_intent: пересмотрите резюме/шаблоны, когда объем растет (проверки коллизий выполняются по ним — устаревшие glob-шаблоны пропускают реальные коллизии), или вызовите только с идентификатором, чтобы продлить TTL для работы, длящейся более дня. Ответ включает свежие overlaps — ту же проверку коллизий, что и при публикации, на основе glob-шаблонов — и warn там обрабатывается так же, как warn при публикации.

  • Когда работа завершена или прекращена — в том числе когда сеанс завершается — вызовите complete_intent с одноабзацным результатом: что фактически изменилось, что было неожиданным, какие подходы были опробованы и отвергнуты, что намеренно оставлено на месте. Если warn-пересечение повлияло на ход работы (скоординировались, сузили объем, продолжили в любом случае), укажите, какое. Приложите известные вам факты git: files, которые фактически изменились (git diff --name-only), созданные commits и uncommitted: true, если какая-либо часть работы еще не зафиксирована — этот флаг позволяет проверкам коллизий других агентов предупреждать громко, а не молча. Завершение намерения заканчивает срез, а не сеанс: последующая работа после завершения, которая меняет поведение, настройки по умолчанию или контракты, требует новой публикации — "тот же сеанс" не освобождает от этого.

  • Когда вы узнаете, что объявленная незафиксированная работа завершена, вызовите mark_intent_landed с идентификатором этого намерения (и SHA коммитов, если вы их знаете): пока кто-то не сообщит об этом, реестр продолжает предупреждать всех, кто затрагивает эти пути.

  • Повторно проверяйте коллизии всякий раз, когда ваша картина выполняемой работы может быть устаревшей — публикация проверяет один раз, и она устаревает в течение длительного сеанса. Моменты для повторной проверки: файл изменился между вашим чтением и редактированием, или редактирование не удается на только что прочитанном тексте — чья-то работа завершилась под вами; перед редактированием общего документа или артефакта, который вы не создавали в этом сеансе; при возобновлении после передачи от другого агента; и перед касанием файлов, упомянутых в более раннем warn. Самая дешевая повторная проверка — это update_intent только с вашим идентификатором намерения (продлевает TTL, возвращает свежие overlaps); используйте list_intents (передайте glob-шаблоны overlaps, плюс summary для семантической проверки, или q/since для истории), когда у вас нет открытого намерения или вы определяете объем новой работы.

  • Когда решение принято в разговоре (выбран подход, отвергнута альтернатива, задано направление), запишите его в момент принятия: post_intent с kind: "decision", вопросом в качестве резюме и решением в outcome — что было решено, что было отвергнуто и почему. Один вызов; никаких касаний, никакого последующего завершения. Решения никогда не конфликтуют и становятся доступной для поиска командной памятью. Решения также являются механизмом исправления: завершенные результаты неизменны, поэтому если позже одно окажется неверным, опубликуйте решение, ссылаясь на то, что на самом деле подтвердилось.

  • Реестр носит рекомендательный характер и никогда не должен блокировать работу: если его инструменты отсутствуют или выдают ошибку, продолжайте работу и один раз сообщите пользователю, что он может запустить uvx getflightplan install (см. getflightplan.com), чтобы присоединиться к реестру этого репозитория.

Данные

С вашей машины отправляется только запись координации: резюме намерений и абзацы результатов, glob-шаблоны, пути измененных файлов, имена веток и идентификаторы коммитов — отправляется только в сервис FlightPlan. Содержимое исходного кода никогда не загружается. Все, что знает реестр, он узнает как побочный продукт работы ваших агентов.

Подробности — что никогда не покидает машину и что где хранится — в docs/data-flow.md. Сообщение об уязвимостях: SECURITY.md.

Лицензия

Apache-2.0

Available Tools

5 tools
complete_intentA

Close out an intent when work finishes or is abandoned. The outcome summary is required for done and is the most valuable artifact this system produces: write one paragraph covering what actually changed, anything surprising, approaches tried and rejected, and anything deliberately left in place. Gather git facts as exhaust — you already have them at completion time: files = repo-relative paths actually changed (git diff --name-only over the work, committed or not); commits = SHAs created for this work; uncommitted = true if ANY of the work is not yet committed (untracked/unstaged/staged-only) — this flag is what lets other agents' collision checks warn loudly instead of quietly. Omit anything unknown.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe intent id returned by post_intent.
filesNoRepo-relative paths actually changed (from `git diff --name-only` over the work). Omit if unknown.
statusYesdone = landed; abandoned = stopped without landing.
commitsNoCommit SHAs produced for this work. Omit if unknown.
outcomeYesOne paragraph: what actually changed, surprises, dead ends, things deliberately left alone.
uncommittedNoTrue if ANY of the work is not yet committed (untracked/unstaged/staged-only). This flag escalates collision warnings for other agents. False = all committed. Omit if unknown.

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Despite no annotations, the description explains key behaviors: outcome summary is the 'most valuable artifact', the uncommitted flag escalates collision warnings, and it instructs to omit unknown fields. It does not address reversibility or permissions, but overall provides substantial behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single dense paragraph, front-loaded with purpose, then outcome guidance, then git facts. Every sentence contributes essential operational detail; no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 6 params and no output schema, the description explains the purpose of each param in operational context and the workflow. It stops short of describing the tool's return value or post-conditions, but that may not be needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema covers all parameters with descriptions, but the description adds practical guidance: how to gather files via git diff, what uncommitted means for other agents, and that outcome should cover 'what actually changed, surprises, dead ends'. A minor ambiguity: says outcome required for 'done' while schema requires it always.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description opens with 'Close out an intent when work finishes or is abandoned' — a specific verb+resource+scope. It clearly distinguishes from sibling tools like post_intent (create) and update_intent (modify).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

States explicitly when to use: 'when work finishes or is abandoned'. However, it does not mention alternatives or exclusions, relying on sibling names to disambiguate.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_intentsA

Query in-flight and recent work across the team. Three distinct uses — pick exactly one: (1) pre-planning semantic check — pass summary (and optionally overlaps globs) to get judge-assessed semantic overlap before you post_intent; this is the strong collision check; (2) fast glob collision check — pass overlaps alone (no summary, no q) for deterministic prefix matching; (3) context search — pass q and since (add match=any for recall if a precise query returns nothing) to search summaries and outcomes including completed work. q and overlaps are AND-combined: a descriptive q alongside overlaps filters out overlapping intents whose summaries don't contain your words — for a collision check, omit q. q matches per-word (all words must appear, any order). Each returned intent carries an alert_level when overlaps is given: warn = surface loudly to your user; fyi = quiet mention; nudge = possible duplicate spike, suggest comparing notes.

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoPlain-text search over summaries and outcomes.
kindNoFilter results by kind.
repoNoFilter to one repository. Use the basename of the git origin remote (or the repo root directory name if there is no remote) — must match the name used in post_intent, or the filter silently returns nothing.
limitNo
matchNoHow q terms combine: all (default) = every word must match — precise; any = recall mode, use when a context search with several descriptive words comes back empty.all
sinceNoISO-8601 timestamp or shorthand like '24h', '7d'.
authorNoFilter to one person's intents, e.g. 'sarah' — for questions like 'what did Sarah's agent work on last week?'.
branchNoYOUR git branch. Overlaps on the same branch are flagged `same_branch` — your own line of work, likely already in your tree, but verify (it may be uncommitted in another session).
statusNoComma-separated of: active, done, abandoned, expired. Omit for all (history included).
my_kindNoThe kind of YOUR planned work; sets alert levels.build
sessionNoFilter to one agent session. Pass 'current' for this session's own intents — e.g. to find your still-open intent before wrapping up. Any other value passes through verbatim.
summaryNoYour planned task, one paragraph. Provide it to get semantic (judge) collision assessment instead of glob-prefix matching — use for a pre-planning check before you're ready to post_intent.
overlapsNoGlobs you expect to touch; filters to overlapping intents and computes alert levels.

TDQS

A4.8/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden. It thoroughly discloses behavior: how q matches per-word (all words must appear, any order), AND-combination of q and overlaps, the effect of match='any', alert_level values when overlaps is given, and the purpose of each parameter mode. No contradictions exist between description and annotations (none provided).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with numbered use cases and clear separation, but it is quite lengthy. While every sentence adds value, it could be slightly more concise by integrating the alert_level explanation into the use case descriptions. Overall, it is well-organized but not maximally concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 13 parameters, no output schema, and no annotations, the description covers the three distinct use cases thoroughly and explains parameter interactions. However, it does not describe the return format beyond mentioning 'alert_level.' Without an output schema, a brief note on the fields returned (e.g., summary, kind, status, author) would improve completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is high (92%), but the description adds significant meaning beyond individual parameter descriptions: it explains the three usage patterns, how parameters interact (e.g., summary enables semantic checks, overlaps triggers alert levels, q and overlaps are AND-combined, omit q for collision checks), and provides real-world context for parameters like session, branch, and my_kind.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'Query in-flight and recent work across the team,' clearly stating the action and resource. It then enumerates three distinct use cases, each with a specific purpose, effectively distinguishing this read-only tool from its siblings (post_intent, update_intent, etc.).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly instructs the agent to 'pick exactly one' of the three use cases and provides concrete guidance on when to use each: pre-planning semantic check (summary + overlaps), fast glob collision check (overlaps alone), and context search (q + since). It also warns against combining q with overlaps incorrectly and explains when to omit q, offering exceptional decision support.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

mark_intent_landedA

Record that work an already-COMPLETED intent declared uncommitted is now in git. Call this the moment you learn it: you committed and pushed that work yourself, or you can see in the tree that the work another session left uncommitted has since landed. Until someone says so, the registry keeps warning every agent who touches those paths and keeps re-telling the same story about work that is no longer at risk — a tree it cannot see is the one thing it cannot check for itself. Pass the commit SHAs if you know them; landing without them is fine and complete, the timestamp is the correction. Idempotent, and it never rewrites the completion record — the outcome, the reported files and the original uncommitted declaration all stand.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe intent id whose work has landed.
commitsNoCommit SHAs that carried the work, if you know them. Omit if you don't — do not guess.

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It clearly discloses that the tool is idempotent, never rewrites the completion record, and that providing commit SHAs is optional ('pass the commit SHAs if you know them; landing without them is fine and complete'). It also explains behavioral nuance ('the tree it cannot see is the one thing it cannot check for itself').

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single paragraph that front-loads the core action ('Record that work... is now in git'), then adds context about when and why to call it. Every sentence contributes meaningful information — no redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given that there is no output schema and no annotations, the description covers the tool's purpose, usage cues, behavioral traits, and parameter guidance comprehensively. The tool has low complexity (2 params, 1 required), and the description provides everything needed for an agent to select and invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so baseline is 3. The description adds value beyond the schema by explaining the purpose of the `commits` parameter in context ('if you know them. Omit if you don't — do not guess'), and emphasizes that the timestamp is the correction when commits are unknown. This added guidance justifies above baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses specific verbs ('Record', 'mark', 'landed') and clearly identifies the resource ('work an already-COMPLETED intent declared uncommitted is now in git'). It distinguishes this tool from siblings like complete_intent (which marks intent completion) and post_intent (which creates a new intent) by focusing on the post-completion git state update.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to call this ('the moment you learn it') and provides clear examples ('you committed and pushed that work yourself, or you can see in the tree that the work another session left uncommitted has since landed'). It explains the consequences of not calling it ('registry keeps warning', 'keeps re-telling the same story'), which strongly implies when it should be used.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

post_intentA

Register what you are about to work on so other developers' agents can avoid collisions. Call this before starting any non-trivial coding task (anything touching more than a trivial fix). Infer kind: build for work meant to land, explore/spike for throwaway investigation, decision for a resolved decision worth recording (post it the moment a debate settles: pass the resolution in outcome — what was decided, what was rejected, and why; no touches needed; it is stored complete, never collides, and needs no complete_intent). Infer touches from your plan as repo-relative glob patterns. Returns the intent id — keep it to post the outcome later. Also returns any overlapping in-flight intents — active work (alert warn/nudge/fyi) and recently-completed work that may not have landed in git yet (always fyi): overlaps are the COLLISION signal — if overlap level is warn, tell your user before proceeding; for fyi, check whether that work is already in your tree before redoing it. The response also includes context — recently-completed work relevant to THIS task: read those outcomes before you start, the surprises and dead ends in them are load-bearing (a rejected approach you might retry, a gotcha you will hit).

ParametersJSON Schema
NameRequiredDescriptionDefault
kindNobuild = meant to land; explore/spike = throwaway investigation; decision = a resolved decision recorded for the feed (requires `outcome`).build
repoYesRepository name, e.g. 'raveneye'. Use the basename of the git origin remote (or the repo root directory name if there is no remote) — every agent on the same repo must derive the same string or collision checks silently miss each other.
titleNoShort headline for the work, ≤80 chars, like a commit subject line (e.g. 'FTS5 search + recall mode'). Cheap to write and the feed reads far better with one — provide it.
branchNoGit branch, if known.
outcomeNokind=decision only: the resolution — what was decided, what was rejected, and why. Other kinds write outcomes at completion instead.
summaryYesOne paragraph: what you're doing and why.
touchesYesRepo-relative glob patterns you expect to touch, e.g. ['central/services/scorecard*'].

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It comprehensively explains what the tool returns (intent id, overlapping intents with severity levels warn/nudge/fyi, and context of recent work), how to interpret collision signals, and that decision intents are stored as complete and never collide. It also notes the requirement to keep the intent id for posting outcomes later. No contradictions exist.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is lengthy but every sentence adds important context for correct tool usage. It is structured with clear explanations for inferred parameters and return value handling. While it could be slightly more terse, the density of actionable information justifies its length. The guidance is front-loaded with the core purpose and when to call.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite having no output schema, the description thoroughly explains the return values (id, overlaps with severity, context) and how to act on them. It covers all 7 parameters with extra context, including required fields and special handling for decisions. For a complex tool with 3 required params and behavioral nuance, the description is complete enough for an AI agent to use correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds significant value beyond the schema by explaining how to infer 'kind' (build/explore/spike/decision with usage rules), how to derive 'repo' consistently, what 'title' should look like (like a commit subject ≤80 chars), and that 'outcome' is only for decisions. It also offers guidance on 'summary' as a one-paragraph explanation. This extra context raises the score above baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Register what you are about to work on so other developers' agents can avoid collisions.' This is a specific verb (register) on a specific resource (intent). It distinguishes from sibling tools like list_intents, update_intent, complete_intent, and mark_intent_landed by focusing on creation and registration of new work intentions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit guidance on when to use the tool: 'Call this before starting any non-trivial coding task (anything touching more than a trivial fix).' It also explains how to infer the 'kind' and 'touches' parameters, and for decisions, it clarifies that no complete_intent is needed. However, it does not explicitly state when not to use it or list alternative tools for specific scenarios, so it stops short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

update_intentA

Update an in-progress intent. Call when the work changes shape (revise summary or touches — collision checks run against these fields, so stale globs silently miss real collisions) or when work runs long (a call with just the id renews the TTL heartbeat; active intents expire after ~48h without one). Calling with just the id ALSO returns fresh overlaps — the cheap mid-session collision re-check, since a post-time check goes stale over a long session. Treat a warn here exactly like a warn at post time: tell your user before proceeding. Never use this to finish work — call complete_intent for that.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe intent id returned by post_intent.
titleNoRevised short headline, ≤80 chars.
branchNoGit branch, if it has changed.
summaryNoRevised one-paragraph summary: what + why.
touchesNoRevised repo-relative glob patterns. Replaces the existing list — include all globs, not just new ones.

TDQS

A5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations were provided, so the description carries full burden for behavioral disclosure. It excellently covers key behaviors: the collision-check dependency on stale globs ('stale globs silently miss real collisions'), the TTL heartbeat mechanism with explicit expiry ('active intents expire after ~48h without one'), the side-effect of returning fresh overlaps when calling with just the id, and the importance of treating 'warn' responses seriously. This is comprehensive for a mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact yet dense with information, using front-loaded key points (verb, resource, when-to-use) then expanding logically. Every sentence adds substantive value: purpose, use-cases, side-effect, warning, and explicit exclusion. No redundancy or filler. It efficiently uses punctuation (semicolons, dashes, parentheses) to pack information without verbosity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of this tool (5 parameters, mutation, TTL-aware, collision-sensitive) and the absence of an output schema, the description is remarkably complete. It covers all critical aspects: usage triggers, parameter semantics, side-effects (overlaps, warn), failure modes (stale globs), lifecycle (TTL expiry), and what not to do (complete_intent). The description fully compensates for missing annotations and output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. However, the description adds significant meaning beyond the schema: it explains the impact of stale globs on collision detection ('collision checks run against these fields'), clarifies that calling with just the id 'returns fresh overlaps' (a behavioral side-effect not in any parameter description), and gives real-world time context ('~48h'). This elevates the score well above baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Update an in-progress intent' as the primary purpose, with specific verbs (update, revise, renew) and resources (summary, touches, TTL). It distinguishes itself from 'complete_intent' by explicitly stating 'Never use this to finish work — call complete_intent for that.' This matches the sibling list and provides clear differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit guidance on when to use the tool: 'Call when the work changes shape' (revise summary or touches) or 'when work runs long' (renew TTL heartbeat). It also states what NOT to do ('Never use this to finish work') and points to a sibling alternative ('call complete_intent for that'). Additionally, it warns about treating a 'warn' response similarly to post-time checks, giving clear behavioral context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 5 tool updatesv0.1.0
    • First observedcomplete_intent
    • First observedlist_intents
    • First observedmark_intent_landed
    • First observedpost_intent
    • First observedupdate_intent

TDQS

A4.7/5.0
Disambiguation5/5

Each tool has a clearly distinct lifecycle phase: post_intent for starting, list_intents for querying, update_intent for mid-work adjustments, complete_intent for closing, and mark_intent_landed for post-completion git confirmation. There is no functional overlap between any two tools.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with underscores (post_intent, list_intents, update_intent, complete_intent, mark_intent_landed), using clear imperative verbs. The pattern is uniform and predictable.

Tool Count5/5

5 tools is well-scoped for a full lifecycle management server (create, read, update, delete/complete, and a specialized post-completion action). Each tool covers a necessary step without unnecessary redundancy.

Completeness5/5

The tool surface provides complete lifecycle coverage: intent creation with collision detection, query by multiple modes, live update with re-check, completion with rich outcome, and post-completion git tracking. No obvious gaps for the stated purpose of coordinating developer work.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    A coordination layer for coding agents that provides memorable identities, inbox/outbox messaging, searchable message history, and file lease management to prevent conflicts. Uses Git for human-auditable artifacts and SQLite for fast queries, enabling multiple agents to collaborate across projects without stepping on each other.
    2,128
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Coordination layer for AI coding agents working on the same codebase. Adds file locks, shared project memory, and cross-machine file sync so Claude Code, Cursor, Windsurf, and other MCP agents stop overwriting each other.
    50
    Apache 2.0
  • A
    license
    A
    quality
    C
    maintenance
    Shared, versioned memory and governance control plane for AI coding agents. Compiler pipeline resolves architectural decision conflicts across Claude Code, Cursor, and custom agent fleets.
    3
    5
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Coordination for parallel coding agents: TTL file claims stored in the git common dir (visible across all worktrees), enforcement hooks that block colliding edits, agent presence, handoff notes, and a git-committed lessons knowledge base with BM25 search. Single static Go binary — no server, no database.
    8
    1
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/sledmonkey/getflightplan'

If you have feedback or need assistance with the MCP directory API, please join our Discord server