ROST implementation methodCompass authoring guideInstall the ROST implementation SkillROST implementation evidence and groundingAICOS chat guideResponsibility Graph playbookCharter design playbookCharter authoring deep-diveAgent staffing playbookAdd agents to your Responsibility GraphDesign a custom agentAgent builder guideAgent definition import guideHow agents workTool access and vaultAvailable tools guideCLI and MCP installation guideSkill builder guideAgent Skill authoring guideAgent Skill setup guideAgent reference mapCascade guideSignal guideFriction guideSteward queue guideBilling and pricing guideConfirmations and human gates guideGoverned command capability matrixSettings guideMembers and invites guideNotifications guideLocal runner guideStock agents guideTroubleshooting guideAI model data handling guideSecurity model guideSync rhythm playbookMigration and legal notes
Docs

Agent definition import guide

The strict versioned JSON format for importing an agent as a draft Seat/setup without credentials, placement ids, or go-live side effects.

staffingcharter design

Use agent.import_definition when you already have a bounded agent description and want to turn it into a draft ROST agent setup. Import is a starting point, not go-live.

The command creates a draft agent Seat, starts the canonical setup flow, maps the definition into operational answers, and returns agent_setup.get state. It does not sign the Charter, grant tools, store credentials, run a dry run, or approve go-live.

Safety rules

  • The file must use "format": "rost.agent_definition" and "version": 1.
  • Unknown fields are rejected.
  • Credentials, vault refs, API keys, tokens, tenant ids, Seat ids, parent ids, steward ids, and integration ids are rejected.
  • Secret-shaped string values are rejected even when they appear in otherwise allowed fields.
  • Requested tools are review context only. Grants and credential ingress still happen through setup.
  • Placement is server-side. The import file cannot choose a parent Seat or Steward.

Example

{
  "format": "rost.agent_definition",
  "version": 1,
  "agent": {
    "name": "Customer Follow-up Agent",
    "purpose": "Prepare account follow-ups for steward review.",
    "responsibilities": ["Summarize recent customer signals", "Draft follow-up tasks"],
    "success_criteria": ["Stewards receive concise weekly follow-up drafts"],
    "never_do_alone": ["Send external customer messages", "Change billing or credentials"],
    "lane": "cloud",
    "model_tier": "balanced",
    "requested_tools": [
      {
        "capability_id": "google.gmail.read",
        "access": "read",
        "rationale": "Read recent customer context"
      }
    ]
  }
}

After import, continue from the draft Seat page. Review the Charter, choose a Steward, configure tools and connections, sign the manifest, run a dry run, and approve go-live only when the human review is complete.

Version

2026-07-15.1

Used by

  • human
  • cli
  • mcp
  • in app agent

API

/api/reference/files/agent-definition-import-guide