Skip to main content
Glama

axint.agent.install

Idempotent

Installs local multi-agent coordination files so AI agents, Xcode, and humans share the same project truth layer. Use once per project to set up .axint/agent, context, and coordination files.

Instructions

Install the local Axint multi-agent project brain. Writes .axint/agent.json, .axint/context/latest.*, and .axint/coordination files so AI agents, Xcode, and humans coordinate through the same local truth layer. Use: use once per project to create local multi-agent coordination; not needed for one-off compile. Inputs: cwd scopes local coordination; projectName and hosts shape generated project-brain files. Effects: writes .axint/agent, context, and coordination files; no network.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cwdNoProject directory. Defaults to the MCP process cwd.
agentNoActive host/tool lane. Defaults to all.
forceNoRewrite the existing local agent config if present.
formatNoOutput format. Defaults to markdown.
privacyModeNoPrivacy posture for this project.
projectNameNoOptional project name override.
providerModeNoOptional model-provider posture for future AI-enhanced advice. Defaults to none.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYes
isErrorNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed7 schema fields changed
    • changedInput schema / properties / agent / description
      Previous value: -"Active host/tool..."New value: +"Active host/tool lane. Defaults to all."
    • changedInput schema / properties / cwd / description
      Previous value: -"Project directory..."New value: +"Project directory. Defaults to the MCP process cwd."
    • changedInput schema / properties / force / description
      Previous value: -"Rewrite the exist..."New value: +"Rewrite the existing local agent config if present."
    • changedInput schema / properties / format / description
      Previous value: -"Output format. De..."New value: +"Output format. Defaults to markdown."
    • changedInput schema / properties / privacyMode / description
      Previous value: -"Privacy posture f..."New value: +"Privacy posture for this project."
    • changedInput schema / properties / projectName / description
      Previous value: -"Optional project..."New value: +"Optional project name override."
    • changedInput schema / properties / providerMode / description
      Previous value: -"Optional model-pr..."New value: +"Optional model-provider posture for future AI-enhanced advice. Defaults to none."
  2. Changed9 schema fields changedv0.4.34
    • changedInput schema / properties / agent / description
      Previous value: -"Active host/tool lane. Defaults to all."New value: +"Active host/tool..."
    • changedInput schema / properties / cwd / description
      Previous value: -"Project directory. Defaults to the MCP process cwd."New value: +"Project directory..."
    • changedInput schema / properties / force / description
      Previous value: -"Rewrite the existing local agent config if present."New value: +"Rewrite the exist..."
    • changedInput schema / properties / format / description
      Previous value: -"Output format. Defaults to markdown."New value: +"Output format. De..."
    • changedInput schema / properties / privacyMode / description
      Previous value: -"Privacy posture for this project. Defaults to local_only; source sharing is never enabled by default."New value: +"Privacy posture f..."
    • changedInput schema / properties / projectName / description
      Previous value: -"Optional project name override."New value: +"Optional project..."
    • changedInput schema / properties / providerMode / description
      Previous value: -"Optional model-provider posture for future AI-enhanced advice. Defaults to none."New value: +"Optional model-pr..."
    • removedOutput schema / properties / isError / description
      Removed value: -"Whether Axint marked the tool response as an error."
    • removedOutput schema / properties / text / description
      Removed value: -"Primary Axint tool response text, matching the first text content block."
  3. Changed4 schema fields changedv0.4.28
    • changedInput schema / properties / cwd / description
      Previous value: -"Project directory. Defaults to the MCP..."New value: +"Project directory. Defaults to the MCP process cwd."
    • changedInput schema / properties / force / description
      Previous value: -"Rewrite the existing local agent config if..."New value: +"Rewrite the existing local agent config if present."
    • changedInput schema / properties / privacyMode / description
      Previous value: -"Privacy posture for this project. Defaults..."New value: +"Privacy posture for this project. Defaults to local_only; source sharing is never enabled by default."
    • changedInput schema / properties / providerMode / description
      Previous value: -"Optional model-provider posture for future..."New value: +"Optional model-provider posture for future AI-enhanced advice. Defaults to none."
  4. Addedv0.4.26

TDQS

A4.1/5.0
Behavior4/5

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

The description discloses that it writes specific files (.axint/agent.json, context, coordination files) and that it makes no network calls. This adds meaningful detail beyond the annotations, which already indicate idempotentHint=true and destructiveHint=false. No contradiction.

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 organized with 'Use:', 'Inputs:', and 'Effects:' sections, making it scannable. It is slightly verbose but every sentence provides useful context (purpose, usage, effects). No wasted words.

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 the presence of an output schema and annotations (idempotent, non-destructive), the description covers the essential context: what it does, when to use it, what files it writes, and that it's local-only. It doesn't explain return values, but the output schema handles that. Complete enough for a setup tool.

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

Parameters3/5

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

Schema description coverage is 100%, so each parameter already has a clear description. The tool description adds some extra context (e.g., cwd scopes local coordination, projectName shapes files), but doesn't substantially improve on the schema's parameter docs. Baseline 3 applies.

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 with a specific verb ('Install') and resource (local Axint multi-agent project brain). It distinguishes itself from siblings by noting it is a one-time per-project setup and explicitly says it's not needed for one-off compile, which differentiates it from tools like axint.compile.

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 gives explicit usage guidance: 'use once per project to create local multi-agent coordination; not needed for one-off compile.' This clearly indicates when to use it and provides an exclusion. However, it doesn't mention alternative tools or when not to use it beyond compiling, so it's not a 5.

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