{
  "schemaVersion": "1.0",
  "item": {
    "slug": "podio",
    "name": "Podio",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/byungkyu/podio",
    "canonicalUrl": "https://clawhub.ai/byungkyu/podio",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/podio",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=podio",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "LICENSE.txt"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/podio"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/podio",
    "agentPageUrl": "https://openagent3.xyz/skills/podio/agent",
    "manifestUrl": "https://openagent3.xyz/skills/podio/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/podio/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Podio",
        "body": "Access the Podio API with managed OAuth authentication. Manage organizations, workspaces (spaces), apps, items, tasks, comments, and files."
      },
      {
        "title": "Quick Start",
        "body": "# List organizations\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/podio/org/')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Base URL",
        "body": "https://gateway.maton.ai/podio/{native-api-path}\n\nReplace {native-api-path} with the actual Podio API endpoint path. The gateway proxies requests to api.podio.com and automatically injects your OAuth token."
      },
      {
        "title": "Authentication",
        "body": "All requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\""
      },
      {
        "title": "Getting Your API Key",
        "body": "Sign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key"
      },
      {
        "title": "Connection Management",
        "body": "Manage your Podio OAuth connections at https://ctrl.maton.ai."
      },
      {
        "title": "List Connections",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=podio&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Create Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'podio'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Get Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"podio\",\n    \"metadata\": {}\n  }\n}\n\nOpen the returned url in a browser to complete OAuth authorization."
      },
      {
        "title": "Delete Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Specifying Connection",
        "body": "If you have multiple Podio connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/podio/org/')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nIf omitted, the gateway uses the default (oldest) active connection."
      },
      {
        "title": "Organization Operations",
        "body": "List Organizations\n\nReturns all organizations and spaces the user is a member of.\n\nGET /podio/org/\n\nResponse:\n\n[\n  {\n    \"org_id\": 123456,\n    \"name\": \"My Organization\",\n    \"url\": \"https://podio.com/myorg\",\n    \"url_label\": \"myorg\",\n    \"type\": \"premium\",\n    \"role\": \"admin\",\n    \"status\": \"active\",\n    \"spaces\": [\n      {\n        \"space_id\": 789,\n        \"name\": \"Project Space\",\n        \"url\": \"https://podio.com/myorg/project-space\",\n        \"role\": \"admin\"\n      }\n    ]\n  }\n]\n\nGet Organization\n\nGET /podio/org/{org_id}"
      },
      {
        "title": "Space (Workspace) Operations",
        "body": "Get Space\n\nGET /podio/space/{space_id}\n\nResponse:\n\n{\n  \"space_id\": 789,\n  \"name\": \"Project Space\",\n  \"privacy\": \"closed\",\n  \"auto_join\": false,\n  \"url\": \"https://podio.com/myorg/project-space\",\n  \"url_label\": \"project-space\",\n  \"role\": \"admin\",\n  \"created_on\": \"2025-01-15T10:30:00Z\",\n  \"created_by\": {\n    \"user_id\": 12345,\n    \"name\": \"John Doe\"\n  }\n}\n\nCreate Space\n\nPOST /podio/space/\nContent-Type: application/json\n\n{\n  \"org_id\": 123456,\n  \"name\": \"New Project Space\",\n  \"privacy\": \"closed\",\n  \"auto_join\": false,\n  \"post_on_new_app\": true,\n  \"post_on_new_member\": true\n}\n\nResponse:\n\n{\n  \"space_id\": 790,\n  \"url\": \"https://podio.com/myorg/new-project-space\"\n}"
      },
      {
        "title": "Application Operations",
        "body": "Get Apps by Space\n\nGET /podio/app/space/{space_id}/\n\nOptional query parameters:\n\ninclude_inactive - Include inactive apps (default: false)\n\nGet App\n\nGET /podio/app/{app_id}\n\nResponse:\n\n{\n  \"app_id\": 456,\n  \"status\": \"active\",\n  \"space_id\": 789,\n  \"config\": {\n    \"name\": \"Tasks\",\n    \"item_name\": \"Task\",\n    \"description\": \"Track project tasks\",\n    \"icon\": \"list\"\n  },\n  \"fields\": [...]\n}"
      },
      {
        "title": "Item Operations",
        "body": "Get Item\n\nGET /podio/item/{item_id}\n\nOptional query parameters:\n\nmark_as_viewed - Mark notifications as viewed (default: true)\n\nResponse:\n\n{\n  \"item_id\": 123,\n  \"title\": \"Complete project plan\",\n  \"app\": {\n    \"app_id\": 456,\n    \"name\": \"Tasks\"\n  },\n  \"fields\": [\n    {\n      \"field_id\": 1,\n      \"external_id\": \"status\",\n      \"type\": \"category\",\n      \"values\": [{\"value\": {\"text\": \"In Progress\"}}]\n    }\n  ],\n  \"created_on\": \"2025-01-20T14:00:00Z\",\n  \"created_by\": {\n    \"user_id\": 12345,\n    \"name\": \"John Doe\"\n  }\n}\n\nFilter Items\n\nPOST /podio/item/app/{app_id}/filter/\nContent-Type: application/json\n\n{\n  \"sort_by\": \"created_on\",\n  \"sort_desc\": true,\n  \"filters\": {\n    \"status\": [1, 2]\n  },\n  \"limit\": 30,\n  \"offset\": 0\n}\n\nResponse:\n\n{\n  \"total\": 150,\n  \"filtered\": 45,\n  \"items\": [\n    {\n      \"item_id\": 123,\n      \"title\": \"Complete project plan\",\n      \"fields\": [...],\n      \"comment_count\": 5,\n      \"file_count\": 2\n    }\n  ]\n}\n\nAdd New Item\n\nPOST /podio/item/app/{app_id}/\nContent-Type: application/json\n\n{\n  \"fields\": {\n    \"title\": \"New task\",\n    \"status\": 1,\n    \"due-date\": {\"start\": \"2025-02-15\"}\n  },\n  \"tags\": [\"urgent\", \"project-alpha\"],\n  \"file_ids\": [12345]\n}\n\nOptional query parameters:\n\nhook - Execute hooks (default: true)\nsilent - Suppress notifications (default: false)\n\nResponse:\n\n{\n  \"item_id\": 124,\n  \"title\": \"New task\"\n}\n\nUpdate Item\n\nPUT /podio/item/{item_id}\nContent-Type: application/json\n\n{\n  \"fields\": {\n    \"status\": 2\n  },\n  \"revision\": 5\n}\n\nOptional query parameters:\n\nhook - Execute hooks (default: true)\nsilent - Suppress notifications (default: false)\n\nResponse:\n\n{\n  \"revision\": 6,\n  \"title\": \"New task\"\n}\n\nDelete Item\n\nDELETE /podio/item/{item_id}\n\nOptional query parameters:\n\nhook - Execute hooks (default: true)\nsilent - Suppress notifications (default: false)"
      },
      {
        "title": "Task Operations",
        "body": "Get Tasks\n\nNote: Tasks require at least one filter: org, space, app, responsible, reference, created_by, or completed_by.\n\nGET /podio/task/?org={org_id}\nGET /podio/task/?space={space_id}\nGET /podio/task/?app={app_id}&completed=false\n\nQuery parameters:\n\norg - Filter by organization ID (required if no other filter)\nspace - Filter by space ID\napp - Filter by app ID\ncompleted - Filter by completion status (true or false)\nresponsible - Filter by responsible user IDs\ncreated_by - Filter by creator\ndue_date - Date range (YYYY-MM-DD-YYYY-MM-DD)\nlimit - Maximum results\noffset - Result offset\nsort_by - Sort by: created_on, completed_on, rank (default: rank)\ngrouping - Group by: due_date, created_by, responsible, app, space, org\n\nGet Task\n\nGET /podio/task/{task_id}\n\nResponse:\n\n{\n  \"task_id\": 789,\n  \"text\": \"Review project proposal\",\n  \"description\": \"Detailed review of the Q1 proposal\",\n  \"status\": \"active\",\n  \"due_date\": \"2025-02-15\",\n  \"due_time\": \"17:00:00\",\n  \"responsible\": {\n    \"user_id\": 12345,\n    \"name\": \"John Doe\"\n  },\n  \"created_on\": \"2025-01-20T10:00:00Z\",\n  \"labels\": [\n    {\"label_id\": 1, \"text\": \"High Priority\", \"color\": \"red\"}\n  ]\n}\n\nCreate Task\n\nPOST /podio/task/\nContent-Type: application/json\n\n{\n  \"text\": \"Review project proposal\",\n  \"description\": \"Detailed review of the Q1 proposal\",\n  \"due_date\": \"2025-02-15\",\n  \"due_time\": \"17:00:00\",\n  \"responsible\": 12345,\n  \"private\": false,\n  \"ref_type\": \"item\",\n  \"ref_id\": 123,\n  \"labels\": [1, 2]\n}\n\nOptional query parameters:\n\nhook - Execute hooks (default: true)\nsilent - Suppress notifications (default: false)\n\nResponse:\n\n{\n  \"task_id\": 790,\n  ...\n}"
      },
      {
        "title": "Comment Operations",
        "body": "Get Comments on Object\n\nGET /podio/comment/{type}/{id}/\n\nWhere {type} is the object type (e.g., \"item\", \"task\") and {id} is the object ID.\n\nOptional query parameters:\n\nlimit - Maximum comments (default: 100)\noffset - Pagination offset (default: 0)\n\nResponse:\n\n[\n  {\n    \"comment_id\": 456,\n    \"value\": \"This looks great!\",\n    \"created_on\": \"2025-01-20T15:30:00Z\",\n    \"created_by\": {\n      \"user_id\": 12345,\n      \"name\": \"John Doe\"\n    },\n    \"files\": []\n  }\n]\n\nAdd Comment to Object\n\nPOST /podio/comment/{type}/{id}\nContent-Type: application/json\n\n{\n  \"value\": \"Great progress on this task!\",\n  \"file_ids\": [12345],\n  \"embed_url\": \"https://example.com/doc\"\n}\n\nOptional query parameters:\n\nalert_invite - Auto-invite mentioned users (default: false)\nhook - Execute hooks (default: true)\nsilent - Suppress notifications (default: false)\n\nResponse:\n\n{\n  \"comment_id\": 457,\n  ...\n}"
      },
      {
        "title": "Pagination",
        "body": "Podio uses offset-based pagination with limit and offset parameters:\n\nPOST /podio/item/app/{app_id}/filter/\nContent-Type: application/json\n\n{\n  \"limit\": 30,\n  \"offset\": 0\n}\n\nResponse includes total counts:\n\n{\n  \"total\": 150,\n  \"filtered\": 45,\n  \"items\": [...]\n}\n\nFor subsequent pages, increment the offset:\n\n{\n  \"limit\": 30,\n  \"offset\": 30\n}"
      },
      {
        "title": "JavaScript",
        "body": "const response = await fetch(\n  'https://gateway.maton.ai/podio/org/',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst data = await response.json();"
      },
      {
        "title": "Python",
        "body": "import os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/podio/org/',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n)\ndata = response.json()"
      },
      {
        "title": "Notes",
        "body": "Organization IDs, space IDs, app IDs, and item IDs are integers\nField values can be specified by field_id or external_id\nCategory fields use option IDs (integers), not text values\nDeleting an item also deletes associated tasks (cascade delete)\nTasks require at least one filter (org, space, app, responsible, reference, created_by, or completed_by)\nUse silent=true to suppress notifications for bulk operations\nUse hook=false to skip webhook triggers\nInclude revision in update requests for conflict detection (returns 409 if conflict)\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments"
      },
      {
        "title": "Error Handling",
        "body": "StatusMeaning400Missing Podio connection or invalid request401Invalid or missing Maton API key403Forbidden - insufficient permissions404Resource not found409Conflict (revision mismatch on update)410Resource has been deleted429Rate limited4xx/5xxPassthrough error from Podio API"
      },
      {
        "title": "Troubleshooting: API Key Issues",
        "body": "Check that the MATON_API_KEY environment variable is set:\n\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Troubleshooting: Invalid App Name",
        "body": "Ensure your URL path starts with podio. For example:\n\nCorrect: https://gateway.maton.ai/podio/org/\nIncorrect: https://gateway.maton.ai/org/"
      },
      {
        "title": "Resources",
        "body": "Podio API Documentation\nPodio API Authentication\nPodio Items API\nPodio Tasks API\nMaton Community\nMaton Support"
      }
    ],
    "body": "Podio\n\nAccess the Podio API with managed OAuth authentication. Manage organizations, workspaces (spaces), apps, items, tasks, comments, and files.\n\nQuick Start\n# List organizations\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/podio/org/')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nBase URL\nhttps://gateway.maton.ai/podio/{native-api-path}\n\n\nReplace {native-api-path} with the actual Podio API endpoint path. The gateway proxies requests to api.podio.com and automatically injects your OAuth token.\n\nAuthentication\n\nAll requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\"\n\nGetting Your API Key\nSign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key\nConnection Management\n\nManage your Podio OAuth connections at https://ctrl.maton.ai.\n\nList Connections\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=podio&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Connection\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'podio'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nGet Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"podio\",\n    \"metadata\": {}\n  }\n}\n\n\nOpen the returned url in a browser to complete OAuth authorization.\n\nDelete Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nSpecifying Connection\n\nIf you have multiple Podio connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/podio/org/')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nIf omitted, the gateway uses the default (oldest) active connection.\n\nAPI Reference\nOrganization Operations\nList Organizations\n\nReturns all organizations and spaces the user is a member of.\n\nGET /podio/org/\n\n\nResponse:\n\n[\n  {\n    \"org_id\": 123456,\n    \"name\": \"My Organization\",\n    \"url\": \"https://podio.com/myorg\",\n    \"url_label\": \"myorg\",\n    \"type\": \"premium\",\n    \"role\": \"admin\",\n    \"status\": \"active\",\n    \"spaces\": [\n      {\n        \"space_id\": 789,\n        \"name\": \"Project Space\",\n        \"url\": \"https://podio.com/myorg/project-space\",\n        \"role\": \"admin\"\n      }\n    ]\n  }\n]\n\nGet Organization\nGET /podio/org/{org_id}\n\nSpace (Workspace) Operations\nGet Space\nGET /podio/space/{space_id}\n\n\nResponse:\n\n{\n  \"space_id\": 789,\n  \"name\": \"Project Space\",\n  \"privacy\": \"closed\",\n  \"auto_join\": false,\n  \"url\": \"https://podio.com/myorg/project-space\",\n  \"url_label\": \"project-space\",\n  \"role\": \"admin\",\n  \"created_on\": \"2025-01-15T10:30:00Z\",\n  \"created_by\": {\n    \"user_id\": 12345,\n    \"name\": \"John Doe\"\n  }\n}\n\nCreate Space\nPOST /podio/space/\nContent-Type: application/json\n\n{\n  \"org_id\": 123456,\n  \"name\": \"New Project Space\",\n  \"privacy\": \"closed\",\n  \"auto_join\": false,\n  \"post_on_new_app\": true,\n  \"post_on_new_member\": true\n}\n\n\nResponse:\n\n{\n  \"space_id\": 790,\n  \"url\": \"https://podio.com/myorg/new-project-space\"\n}\n\nApplication Operations\nGet Apps by Space\nGET /podio/app/space/{space_id}/\n\n\nOptional query parameters:\n\ninclude_inactive - Include inactive apps (default: false)\nGet App\nGET /podio/app/{app_id}\n\n\nResponse:\n\n{\n  \"app_id\": 456,\n  \"status\": \"active\",\n  \"space_id\": 789,\n  \"config\": {\n    \"name\": \"Tasks\",\n    \"item_name\": \"Task\",\n    \"description\": \"Track project tasks\",\n    \"icon\": \"list\"\n  },\n  \"fields\": [...]\n}\n\nItem Operations\nGet Item\nGET /podio/item/{item_id}\n\n\nOptional query parameters:\n\nmark_as_viewed - Mark notifications as viewed (default: true)\n\nResponse:\n\n{\n  \"item_id\": 123,\n  \"title\": \"Complete project plan\",\n  \"app\": {\n    \"app_id\": 456,\n    \"name\": \"Tasks\"\n  },\n  \"fields\": [\n    {\n      \"field_id\": 1,\n      \"external_id\": \"status\",\n      \"type\": \"category\",\n      \"values\": [{\"value\": {\"text\": \"In Progress\"}}]\n    }\n  ],\n  \"created_on\": \"2025-01-20T14:00:00Z\",\n  \"created_by\": {\n    \"user_id\": 12345,\n    \"name\": \"John Doe\"\n  }\n}\n\nFilter Items\nPOST /podio/item/app/{app_id}/filter/\nContent-Type: application/json\n\n{\n  \"sort_by\": \"created_on\",\n  \"sort_desc\": true,\n  \"filters\": {\n    \"status\": [1, 2]\n  },\n  \"limit\": 30,\n  \"offset\": 0\n}\n\n\nResponse:\n\n{\n  \"total\": 150,\n  \"filtered\": 45,\n  \"items\": [\n    {\n      \"item_id\": 123,\n      \"title\": \"Complete project plan\",\n      \"fields\": [...],\n      \"comment_count\": 5,\n      \"file_count\": 2\n    }\n  ]\n}\n\nAdd New Item\nPOST /podio/item/app/{app_id}/\nContent-Type: application/json\n\n{\n  \"fields\": {\n    \"title\": \"New task\",\n    \"status\": 1,\n    \"due-date\": {\"start\": \"2025-02-15\"}\n  },\n  \"tags\": [\"urgent\", \"project-alpha\"],\n  \"file_ids\": [12345]\n}\n\n\nOptional query parameters:\n\nhook - Execute hooks (default: true)\nsilent - Suppress notifications (default: false)\n\nResponse:\n\n{\n  \"item_id\": 124,\n  \"title\": \"New task\"\n}\n\nUpdate Item\nPUT /podio/item/{item_id}\nContent-Type: application/json\n\n{\n  \"fields\": {\n    \"status\": 2\n  },\n  \"revision\": 5\n}\n\n\nOptional query parameters:\n\nhook - Execute hooks (default: true)\nsilent - Suppress notifications (default: false)\n\nResponse:\n\n{\n  \"revision\": 6,\n  \"title\": \"New task\"\n}\n\nDelete Item\nDELETE /podio/item/{item_id}\n\n\nOptional query parameters:\n\nhook - Execute hooks (default: true)\nsilent - Suppress notifications (default: false)\nTask Operations\nGet Tasks\n\nNote: Tasks require at least one filter: org, space, app, responsible, reference, created_by, or completed_by.\n\nGET /podio/task/?org={org_id}\nGET /podio/task/?space={space_id}\nGET /podio/task/?app={app_id}&completed=false\n\n\nQuery parameters:\n\norg - Filter by organization ID (required if no other filter)\nspace - Filter by space ID\napp - Filter by app ID\ncompleted - Filter by completion status (true or false)\nresponsible - Filter by responsible user IDs\ncreated_by - Filter by creator\ndue_date - Date range (YYYY-MM-DD-YYYY-MM-DD)\nlimit - Maximum results\noffset - Result offset\nsort_by - Sort by: created_on, completed_on, rank (default: rank)\ngrouping - Group by: due_date, created_by, responsible, app, space, org\nGet Task\nGET /podio/task/{task_id}\n\n\nResponse:\n\n{\n  \"task_id\": 789,\n  \"text\": \"Review project proposal\",\n  \"description\": \"Detailed review of the Q1 proposal\",\n  \"status\": \"active\",\n  \"due_date\": \"2025-02-15\",\n  \"due_time\": \"17:00:00\",\n  \"responsible\": {\n    \"user_id\": 12345,\n    \"name\": \"John Doe\"\n  },\n  \"created_on\": \"2025-01-20T10:00:00Z\",\n  \"labels\": [\n    {\"label_id\": 1, \"text\": \"High Priority\", \"color\": \"red\"}\n  ]\n}\n\nCreate Task\nPOST /podio/task/\nContent-Type: application/json\n\n{\n  \"text\": \"Review project proposal\",\n  \"description\": \"Detailed review of the Q1 proposal\",\n  \"due_date\": \"2025-02-15\",\n  \"due_time\": \"17:00:00\",\n  \"responsible\": 12345,\n  \"private\": false,\n  \"ref_type\": \"item\",\n  \"ref_id\": 123,\n  \"labels\": [1, 2]\n}\n\n\nOptional query parameters:\n\nhook - Execute hooks (default: true)\nsilent - Suppress notifications (default: false)\n\nResponse:\n\n{\n  \"task_id\": 790,\n  ...\n}\n\nComment Operations\nGet Comments on Object\nGET /podio/comment/{type}/{id}/\n\n\nWhere {type} is the object type (e.g., \"item\", \"task\") and {id} is the object ID.\n\nOptional query parameters:\n\nlimit - Maximum comments (default: 100)\noffset - Pagination offset (default: 0)\n\nResponse:\n\n[\n  {\n    \"comment_id\": 456,\n    \"value\": \"This looks great!\",\n    \"created_on\": \"2025-01-20T15:30:00Z\",\n    \"created_by\": {\n      \"user_id\": 12345,\n      \"name\": \"John Doe\"\n    },\n    \"files\": []\n  }\n]\n\nAdd Comment to Object\nPOST /podio/comment/{type}/{id}\nContent-Type: application/json\n\n{\n  \"value\": \"Great progress on this task!\",\n  \"file_ids\": [12345],\n  \"embed_url\": \"https://example.com/doc\"\n}\n\n\nOptional query parameters:\n\nalert_invite - Auto-invite mentioned users (default: false)\nhook - Execute hooks (default: true)\nsilent - Suppress notifications (default: false)\n\nResponse:\n\n{\n  \"comment_id\": 457,\n  ...\n}\n\nPagination\n\nPodio uses offset-based pagination with limit and offset parameters:\n\nPOST /podio/item/app/{app_id}/filter/\nContent-Type: application/json\n\n{\n  \"limit\": 30,\n  \"offset\": 0\n}\n\n\nResponse includes total counts:\n\n{\n  \"total\": 150,\n  \"filtered\": 45,\n  \"items\": [...]\n}\n\n\nFor subsequent pages, increment the offset:\n\n{\n  \"limit\": 30,\n  \"offset\": 30\n}\n\nCode Examples\nJavaScript\nconst response = await fetch(\n  'https://gateway.maton.ai/podio/org/',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst data = await response.json();\n\nPython\nimport os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/podio/org/',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n)\ndata = response.json()\n\nNotes\nOrganization IDs, space IDs, app IDs, and item IDs are integers\nField values can be specified by field_id or external_id\nCategory fields use option IDs (integers), not text values\nDeleting an item also deletes associated tasks (cascade delete)\nTasks require at least one filter (org, space, app, responsible, reference, created_by, or completed_by)\nUse silent=true to suppress notifications for bulk operations\nUse hook=false to skip webhook triggers\nInclude revision in update requests for conflict detection (returns 409 if conflict)\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments\nError Handling\nStatus\tMeaning\n400\tMissing Podio connection or invalid request\n401\tInvalid or missing Maton API key\n403\tForbidden - insufficient permissions\n404\tResource not found\n409\tConflict (revision mismatch on update)\n410\tResource has been deleted\n429\tRate limited\n4xx/5xx\tPassthrough error from Podio API\nTroubleshooting: API Key Issues\nCheck that the MATON_API_KEY environment variable is set:\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nTroubleshooting: Invalid App Name\nEnsure your URL path starts with podio. For example:\nCorrect: https://gateway.maton.ai/podio/org/\nIncorrect: https://gateway.maton.ai/org/\nResources\nPodio API Documentation\nPodio API Authentication\nPodio Items API\nPodio Tasks API\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/podio",
    "publisherUrl": "https://clawhub.ai/byungkyu/podio",
    "owner": "byungkyu",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/podio",
    "downloadUrl": "https://openagent3.xyz/downloads/podio",
    "agentUrl": "https://openagent3.xyz/skills/podio/agent",
    "manifestUrl": "https://openagent3.xyz/skills/podio/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/podio/agent.md"
  }
}