{
  "schemaVersion": "1.0",
  "item": {
    "slug": "native-airtable",
    "name": "Native Airtable",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/codeninja23/native-airtable",
    "canonicalUrl": "https://clawhub.ai/codeninja23/native-airtable",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/native-airtable",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=native-airtable",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/airtable.py"
    ],
    "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/native-airtable"
    },
    "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/native-airtable",
    "agentPageUrl": "https://openagent3.xyz/skills/native-airtable/agent",
    "manifestUrl": "https://openagent3.xyz/skills/native-airtable/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/native-airtable/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": "Airtable",
        "body": "Read bases, tables, and records directly via api.airtable.com."
      },
      {
        "title": "Setup (one-time)",
        "body": "Go to https://airtable.com/create/tokens\nClick + Create new token, give it a name\nAdd scopes:\n\ndata.records:read\nschema.bases:read\n\n\nUnder Access, select which bases to grant access to (or all)\nCopy the token — it starts with pat\nSet the environment variable:\nAIRTABLE_PAT=pat_your_token_here"
      },
      {
        "title": "List all accessible bases",
        "body": "python3 /mnt/skills/user/airtable/scripts/airtable.py list-bases"
      },
      {
        "title": "List tables in a base",
        "body": "python3 /mnt/skills/user/airtable/scripts/airtable.py list-tables <base_id>"
      },
      {
        "title": "List records in a table",
        "body": "python3 /mnt/skills/user/airtable/scripts/airtable.py list-records <base_id> \"Table Name\"\npython3 /mnt/skills/user/airtable/scripts/airtable.py list-records <base_id> \"Table Name\" --limit 50"
      },
      {
        "title": "Filter records with a formula",
        "body": "python3 /mnt/skills/user/airtable/scripts/airtable.py list-records <base_id> \"Tasks\" --filter \"{Status}='Done'\"\npython3 /mnt/skills/user/airtable/scripts/airtable.py list-records <base_id> \"Contacts\" --filter \"NOT({Email}='')\""
      },
      {
        "title": "Filter to specific fields only",
        "body": "python3 /mnt/skills/user/airtable/scripts/airtable.py list-records <base_id> \"People\" --fields \"Name,Email,Company\""
      },
      {
        "title": "Use a specific view",
        "body": "python3 /mnt/skills/user/airtable/scripts/airtable.py list-records <base_id> \"Tasks\" --view \"Active Tasks\""
      },
      {
        "title": "Get a specific record",
        "body": "python3 /mnt/skills/user/airtable/scripts/airtable.py get-record <base_id> \"Table Name\" <record_id>"
      },
      {
        "title": "Search records",
        "body": "python3 /mnt/skills/user/airtable/scripts/airtable.py search-records <base_id> \"Contacts\" \"Smith\"\npython3 /mnt/skills/user/airtable/scripts/airtable.py search-records <base_id> \"Contacts\" \"smith@acme.com\" --field \"Email\""
      },
      {
        "title": "Notes",
        "body": "Free plan: unlimited bases, 1,000 records per base. API reads work on free.\nBase IDs start with app, record IDs start with rec.\nTable names are case-sensitive and must match exactly. Use quotes if the name has spaces.\nAirtable deprecated old API keys in Feb 2024. Only Personal Access Tokens (PAT) work now."
      }
    ],
    "body": "Airtable\n\nRead bases, tables, and records directly via api.airtable.com.\n\nSetup (one-time)\nGo to https://airtable.com/create/tokens\nClick + Create new token, give it a name\nAdd scopes:\ndata.records:read\nschema.bases:read\nUnder Access, select which bases to grant access to (or all)\nCopy the token — it starts with pat\nSet the environment variable:\nAIRTABLE_PAT=pat_your_token_here\n\nCommands\nList all accessible bases\npython3 /mnt/skills/user/airtable/scripts/airtable.py list-bases\n\nList tables in a base\npython3 /mnt/skills/user/airtable/scripts/airtable.py list-tables <base_id>\n\nList records in a table\npython3 /mnt/skills/user/airtable/scripts/airtable.py list-records <base_id> \"Table Name\"\npython3 /mnt/skills/user/airtable/scripts/airtable.py list-records <base_id> \"Table Name\" --limit 50\n\nFilter records with a formula\npython3 /mnt/skills/user/airtable/scripts/airtable.py list-records <base_id> \"Tasks\" --filter \"{Status}='Done'\"\npython3 /mnt/skills/user/airtable/scripts/airtable.py list-records <base_id> \"Contacts\" --filter \"NOT({Email}='')\"\n\nFilter to specific fields only\npython3 /mnt/skills/user/airtable/scripts/airtable.py list-records <base_id> \"People\" --fields \"Name,Email,Company\"\n\nUse a specific view\npython3 /mnt/skills/user/airtable/scripts/airtable.py list-records <base_id> \"Tasks\" --view \"Active Tasks\"\n\nGet a specific record\npython3 /mnt/skills/user/airtable/scripts/airtable.py get-record <base_id> \"Table Name\" <record_id>\n\nSearch records\npython3 /mnt/skills/user/airtable/scripts/airtable.py search-records <base_id> \"Contacts\" \"Smith\"\npython3 /mnt/skills/user/airtable/scripts/airtable.py search-records <base_id> \"Contacts\" \"smith@acme.com\" --field \"Email\"\n\nNotes\nFree plan: unlimited bases, 1,000 records per base. API reads work on free.\nBase IDs start with app, record IDs start with rec.\nTable names are case-sensitive and must match exactly. Use quotes if the name has spaces.\nAirtable deprecated old API keys in Feb 2024. Only Personal Access Tokens (PAT) work now."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/codeninja23/native-airtable",
    "publisherUrl": "https://clawhub.ai/codeninja23/native-airtable",
    "owner": "codeninja23",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/native-airtable",
    "downloadUrl": "https://openagent3.xyz/downloads/native-airtable",
    "agentUrl": "https://openagent3.xyz/skills/native-airtable/agent",
    "manifestUrl": "https://openagent3.xyz/skills/native-airtable/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/native-airtable/agent.md"
  }
}