{
  "_comment": [
    "PUBLIC platform Agent Card (A2A discovery). Deliberately NOT the same as",
    "https://api.sistava.com/.well-known/agent.json, which is TENANT-SCOPED: it",
    "lists that customer's own active employees by name and correctly answers",
    "401 without an API key. Publishing that one would hand a customer's staff",
    "roster to anyone who asked, so it stays authenticated.",
    "",
    "This card carries only what is already on the public marketing site: the",
    "team templates anyone can browse at /en/market. No tenant data, no user",
    "data, no employee instances. `skills` here means 'team templates you can",
    "hire', which is what an outside agent can usefully discover about us.",
    "",
    "The `url` below is the real A2A endpoint and it really does demand bearer",
    "auth, which is exactly what `securitySchemes` declares. Nothing here",
    "advertises an interface that does not answer.",
    "",
    "Every skill id is asserted against src/generated/catalog/teams.ts by",
    "agent-discovery.spec.ts. Adding a team does not break the build; inventing",
    "one does."
  ],
  "protocolVersion": "0.3.0",
  "name": "Sistava",
  "description": "AI Workforce platform. Hire AI employees, individually or as pre-built teams, that own a role and run the work around the clock inside your existing tools.",
  "url": "https://api.sistava.com/api/a2a/",
  "preferredTransport": "JSONRPC",
  "version": "1.0.0",
  "provider": {
    "organization": "Sistava",
    "url": "https://sistava.com"
  },
  "documentationUrl": "https://sistava.com/en/guide/channels/api",
  "iconUrl": "https://sistava.com/global-assets/logo/sistava-logo.png",
  "capabilities": {
    "streaming": true,
    "pushNotifications": false,
    "stateTransitionHistory": false
  },
  "securitySchemes": {
    "bearer": {
      "type": "http",
      "scheme": "bearer",
      "description": "API key issued from your Sistava workspace. Every A2A method requires it, as does the workspace-specific Agent Card served from the API host."
    }
  },
  "security": [{ "bearer": [] }],
  "defaultInputModes": ["text/plain"],
  "defaultOutputModes": ["text/plain"],
  "skills": [
    {
      "id": "sales",
      "name": "Sales Team",
      "description": "Lead qualification, outbound sequences, meeting booking, pipeline reporting, proposals.",
      "tags": ["sales", "outbound", "crm", "team-template"],
      "examples": ["Qualify this week's inbound leads and book the ones worth a call"]
    },
    {
      "id": "marketing",
      "name": "Marketing Team",
      "description": "Content strategy, SEO writing, email campaigns, social posts, ad creative, performance reporting.",
      "tags": ["marketing", "seo", "content", "team-template"],
      "examples": ["Draft and schedule this month's blog and newsletter calendar"]
    },
    {
      "id": "customer-support",
      "name": "Support Team",
      "description": "Front-line ticket handling, escalation, knowledge-base maintenance.",
      "tags": ["support", "helpdesk", "team-template"],
      "examples": ["Answer the overnight support queue and escalate anything about billing"]
    },
    {
      "id": "human-resources",
      "name": "HR Team",
      "description": "Recruiting, screening, interview scheduling, onboarding.",
      "tags": ["hr", "recruiting", "team-template"],
      "examples": ["Screen this week's applicants against the role brief"]
    },
    {
      "id": "operations",
      "name": "Operations Team",
      "description": "Process documentation, vendor coordination, recurring operational work and reporting.",
      "tags": ["operations", "process", "team-template"],
      "examples": ["Turn our onboarding steps into a documented, repeatable process"]
    },
    {
      "id": "finance",
      "name": "Finance Team",
      "description": "Bookkeeping support, invoicing follow-up, spend tracking and financial reporting.",
      "tags": ["finance", "bookkeeping", "team-template"],
      "examples": ["Chase the overdue invoices and summarise what is still outstanding"]
    },
    {
      "id": "ecommerce",
      "name": "E-commerce Team",
      "description": "Store management, catalogue and inventory work, competitor and review monitoring.",
      "tags": ["ecommerce", "shopify", "team-template"],
      "examples": ["Review this month's product listings and flag the ones underperforming"]
    }
  ]
}
