Skip to content
Back to Filepad

Card snapshot

api.filepad.ai · 2026-07-02 18:42:46 UTC · b8c0155172b5b566bf9cc14a30aef974f8319efeaf31b69df989fb04e050053e

This is a frozen copy of the agent's agent-card.json as we observed it at the timestamp above. We capture a new snapshot every time the card's content hash changes. Useful for: forensic drift analysis, verifying downstream callers see the right version, reproducing routing decisions made historically.

{
  "name": "Filepad",
  "description": "Governed multi-agent workspace. Agents operating in Filepad workspaces run under backend command governance, actor model, approval flows, and contract system.",
  "version": "1.0.0",
  "supportedInterfaces": [
    {
      "url": "https://api.filepad.ai/a2a",
      "protocolBinding": "JSONRPC",
      "protocolVersion": "1.0.0"
    },
    {
      "url": "https://api.filepad.ai/a2a",
      "protocolBinding": "JSONRPC",
      "protocolVersion": "0.3.0"
    }
  ],
  "capabilities": {
    "streaming": true,
    "pushNotifications": false,
    "stateTransitionHistory": false,
    "extendedAgentCard": false
  },
  "defaultInputModes": [
    "text/plain"
  ],
  "defaultOutputModes": [
    "text/plain",
    "application/json"
  ],
  "skills": [
    {
      "id": "execute_task",
      "name": "Execute Task",
      "description": "Execute a natural language task inside a Filepad workspace. FilepadAI runs the task using workspace artifacts, notes, sheets, and files as context. Supports approval gates.",
      "tags": [
        "workspace",
        "agent",
        "filepad"
      ],
      "inputModes": [
        "text/plain"
      ],
      "outputModes": [
        "text/plain",
        "application/json"
      ],
      "security": [
        {
          "filepadOAuth": [
            "actions:invoke",
            "artifacts:write"
          ]
        }
      ]
    }
  ],
  "provider": {
    "organization": "Filepad",
    "url": "https://filepad.com"
  },
  "securitySchemes": {
    "filepadOAuth": {
      "type": "oauth2",
      "flows": {
        "authorizationCode": {
          "authorizationUrl": "https://api.filepad.ai/oauth/authorize",
          "tokenUrl": "https://api.filepad.ai/oauth/token",
          "scopes": {
            "actions:invoke": "Invoke FilepadAI to execute tasks",
            "artifacts:write": "Create and edit workspace artifacts",
            "env:read": "Read workspace structure"
          }
        }
      },
      "oauth2MetadataUrl": "https://api.filepad.ai/.well-known/oauth-authorization-server"
    }
  },
  "security": [
    {
      "filepadOAuth": [
        "actions:invoke"
      ]
    }
  ]
}