/memtrace-fleet-publish-intent
Declare a structural intent BEFORE editing in a fleet — what symbols you'll touch and why — so other agents on your branch coordinate around you. Use when the user says 'I'm about to edit/rename/refactor X', or when starting any non-trivial edit while other agents share your
$ npx -y skills add syncable-dev/memtrace-public --skill memtrace-fleet-publish-intent --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/memtrace-fleet-publish-intent
Context preview
The summary Claude sees to decide when to auto-load this skill.
Declare a structural intent BEFORE editing in a fleet — what symbols you'll touch and why — so other agents on your branch coordinate around you. Use when the user says 'I'm about to edit/rename/refactor X', or when starting any non-trivial edit while other agents share your
SKILL.md
memtrace-fleet-publish-intent.SKILL.mdname: memtrace-fleet-publish-intent
description: "Declare a structural intent BEFORE editing in a fleet — what symbols you'll touch and why — so other agents on your branch coordinate around you. Use when the user says 'I'm about to edit/rename/refactor X', or when starting any non-trivial edit while other agents share your repo+branch. Returns the graph blast radius, overlapping live intents on your branch, and a shift-left coordination/partition hint. Do not start editing shared symbols without publishing first."
Overview
`fleet_publish_intent` is step 1 of the fleet protocol: announce what you're about to touch so other agents on the **same `(repo, branch)`** coordinate around you. It's a typed, ~20-token declaration — not prose.
Call it
fleet_publish_intent({
repo_id: "myrepo",
branch: "session/auth-revamp", // your fleet's session branch
agent_id:"agent-a",
touched: ["auth::verify_token"], // qualified symbol identities
intent: {"refactor": {"pattern": "change_signature"}},
assignment: "widen verify_token signature for pagination" // the alignment anchor
})Full parameter spec for every Memtrace tool: `references/mcp-parameters.md` (bundled at the memtrace-skills plugin root).
Output
{
"impact_preview": "…graph blast radius of the touched symbols…",
"active_conflicts": [],
"coordination": { "would_escalate": false, "suggested_partition": null }
}- `impact_preview` — the real graph blast radius of the touched symbols.
- `active_conflicts` — overlapping live intents **on your branch** (none from other
branches; coordination is branch-scoped).
- `coordination` — a shift-left hint: `would_escalate`, a `suggested_partition`
(who should own a contested symbol), and advice to realign *before* you edit.
Intent kinds (JSON, snake_case, externally-tagged)
- `{"refactor":{"pattern":"rename_symbol"|"change_signature"|"move_symbol"|"extract_function"|…}}`
- `{"feature_add":{"surface":"new_symbol"|"new_endpoint"|…}}`
- `{"bug_fix":{"defect":"logic_error"|"null_handling"|…}}`
- `{"cleanup":{"kind":"dead_code"|"unused_import"|…}}`
- `{"performance":{"axis":"latency"|…}}`, `{"security_fix":{"severity":"high"}}`,
`{"test_add":{"covers":[…]}}`, `"docs_only"`, `"exploratory"`
**Destructive** kinds — `change_signature`, `move_symbol`, `cleanup/dead_code` — are what raise a Class C decision when they overlap another agent's work.
Rules
- Always pass `branch` (your session branch) and `assignment` (your task).
- Read-only check first? Use `fleet_preflight` (same inputs, no registration).
- An empty `active_conflicts` is good — proceed and `fleet_record_episode` when done.
Read more
name: memtrace-fleet-publish-intent description: "Declare a structural intent BEFORE editing in a fleet — what symbols you'll touch and why — so other agents on your branch coordinate around you. Use when the user says 'I'm about to edit/rename/refactor X', or when starting any non-trivial edit while other agents share your repo+branch. Returns the graph blast radius, overlapping live intents on your branch, and a shift-left coordination/partition hint. Do not start editing shared symbols without publishing first."
Overview
`fleet_publish_intent` is step 1 of the fleet protocol: announce what you're about to touch so other agents on the **same `(repo, branch)`** coordinate around you. It's a typed, ~20-token declaration — not prose.
Call it
fleet_publish_intent({
repo_id: "myrepo",
branch: "session/auth-revamp", // your fleet's session branch
agent_id:"agent-a",
touched: ["auth::verify_token"], // qualified symbol identities
intent: {"refactor": {"pattern": "change_signature"}},
assignment: "widen verify_token signature for pagination" // the alignment anchor
})Full parameter spec for every Memtrace tool: `references/mcp-parameters.md` (bundled at the memtrace-skills plugin root).
Output
{
"impact_preview": "…graph blast radius of the touched symbols…",
"active_conflicts": [],
"coordination": { "would_escalate": false, "suggested_partition": null }
}- `impact_preview` — the real graph blast radius of the touched symbols.
- `active_conflicts` — overlapping live intents **on your branch** (none from other
branches; coordination is branch-scoped).
- `coordination` — a shift-left hint: `would_escalate`, a `suggested_partition`
(who should own a contested symbol), and advice to realign *before* you edit.
Intent kinds (JSON, snake_case, externally-tagged)
- `{"refactor":{"pattern":"rename_symbol"|"change_signature"|"move_symbol"|"extract_function"|…}}`
- `{"feature_add":{"surface":"new_symbol"|"new_endpoint"|…}}`
- `{"bug_fix":{"defect":"logic_error"|"null_handling"|…}}`
- `{"cleanup":{"kind":"dead_code"|"unused_import"|…}}`
- `{"performance":{"axis":"latency"|…}}`, `{"security_fix":{"severity":"high"}}`,
`{"test_add":{"covers":[…]}}`, `"docs_only"`, `"exploratory"`
**Destructive** kinds — `change_signature`, `move_symbol`, `cleanup/dead_code` — are what raise a Class C decision when they overlap another agent's work.
Rules
- Always pass `branch` (your session branch) and `assignment` (your task).
- Read-only check first? Use `fleet_preflight` (same inputs, no registration).
- An empty `active_conflicts` is good — proceed and `fleet_record_episode` when done.
Structural memory for AI coding agents. Bi-temporal graph, MCP-native, zero LLM calls. Cursor · Claude Code · Codex · Hermes · VS Code · Windsurf.
Repo: syncable-dev/memtrace-public
Other skills on memtrace-public.
- /memtrace-api-topology
Map API endpoints, outbound HTTP calls, and cross-repo service topology in indexed source code. Use when the user asks about API endpoints, HTTP routes, fetch/client calls, REST surface, service dependencies, cross-repo dependencies, or API topology. Do not use Grep, Glob, rg,
Open skill - /memtrace-change-impact-analysis
Compute what a planned source-code change will break — blast radius, affected processes, cross-repo callers, temporal stability, and Cortex decision-memory constraints — and produce a risk-rated change plan. Use for multi-symbol or multi-part edits, refactors, API changes,
Open skill - /memtrace-cochange
Find files that historically co-change with a target symbol or file, ranked by co-occurrence across git episodes. Use when the user asks about historical coupling, co-change, what changes with this, hidden dependencies, or what else needs to move for source code. Do not use git
Open skill - /memtrace-code-review
Review GitHub pull requests with Memtrace's local graph-backed review engine. Use when the user asks to review a GitHub pull request, run Memtrace code review, post Memtrace review comments, create a PR with a review step, or publish local graph-backed review findings to GitHub.
Open skill - /memtrace-codebase-exploration
Map an indexed source-code repo into a structured overview — scale, communities, central symbols, execution flows, API surface, recent activity. Use when the user wants to explore, understand, onboard to, map, or get an overview of an indexed source-code repo, architecture,
Open skill - /memtrace-continuous-memory
Keep the Memtrace index fresh while editing by watching a repo for live, incremental re-indexing. Use when the user asks to keep Memtrace fresh while editing, watch a repo, enable live or incremental indexing, set up always-on memory (meaning Memtrace index watching, not generic
Open skill

