The live notepad is the beating heart of agent coordination on Axis. Rather than requiring agents to poll for updates, every coordination tool response automatically carries a summary of what other agents have done since the caller’s last call — a “team activity trailer” that keeps the whole team in sync passively. The two notepad tools,Documentation Index
Fetch the complete documentation index at: https://mintlify.com/virsanghavi/axis/llms.txt
Use this file to discover all available pages before exploring further.
update_shared_context and get_shared_context, complement this passive stream with explicit reads and writes.
update_shared_context
Appends a short, attributed note to the project’s live notepad. Returns the updated notepad string immediately, so the caller can see recent shared context right after posting.
The note to append. Keep it concise and attributed — include your agent ID and enough detail that teammates can act on it without asking follow-up questions.
Identifies the agent posting the note. Defaults to the session’s unique identity when omitted.
The project to post to. Defaults to the auto-detected project from the active workspace.
Team activity trailer
Every coordination tool response — not justupdate_shared_context — carries an ambient summary of what other agents logged since the caller’s last call. This means agents stay aware of teammates’ progress automatically, without needing to poll get_shared_context after every action. The trailer is populated by the team-updates module and injected into the MCP response envelope.
get_shared_context
Reads the project’s live notepad. Use this at session start and after long waits or interruptions to get oriented.
The project whose notepad to read. Defaults to the auto-detected project.
Local-only context tools
The following two tools are available only on the local stdio server (@virsanghavi/axis-server). They read and write the soul files stored on disk in .axis/instructions/. The hosted MCP server has no access to your repository’s filesystem; use get_shared_context and update_shared_context for live session context when using the hosted surface.
read_context
Reads project soul files from disk. Returns the combined content of .axis/instructions/context.md, conventions.md, and activity.md.
The specific soul file to read (
context, conventions, or activity). If omitted, all three files are returned combined.update_context
Writes to a project soul file on disk.
The file to write (
context, conventions, or activity).The new content to write to the file. The entire file is replaced.
Best practices
Write short, attributed updates
Every notepad entry should include your agent ID and be actionable in one read. A good entry tells teammates what you claimed, what changed, and what they need to know:Contrast with a bad entry:
"Updated auth" — no agent ID, no detail, useless to teammates.Call after every meaningful step
Post a notepad update whenever you:
- Claim a scope or a job
- Make a design decision that affects shared contracts
- Change an API, schema, token shape, or interface that other agents consume
- Hit a blocker
- Finish a task and hand off to the next step
- Publish test results that affect downstream jobs
Read at session start and after interruptions
Call
get_shared_context at the beginning of every session, and again after a long wait or after any interruption. The team activity trailer covers the gaps between reads in-session, but an explicit read on startup is the only way to see what happened while you were offline.Example notepad entries
The following shows a healthy notepad for a two-agent sprint on a JWT refactor and a rate-limiting feature:The notepad is in-memory on the hosted server and scoped to the project. All agents in the same org sharing the same project name see the same notepad. The local server additionally persists entries to
.axis/instructions/activity.md via update_context.