# Send Native Airtable to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/native-airtable",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=native-airtable",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/airtable.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "native-airtable",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T00:10:35.608Z",
      "expiresAt": "2026-05-13T00:10:35.608Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=native-airtable",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=native-airtable",
        "contentDisposition": "attachment; filename=\"native-airtable-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "native-airtable"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Airtable

Read bases, tables, and records directly via api.airtable.com.

### Setup (one-time)

Go to https://airtable.com/create/tokens
Click + Create new token, give it a name
Add scopes:

data.records:read
schema.bases:read


Under Access, select which bases to grant access to (or all)
Copy the token — it starts with pat
Set the environment variable:
AIRTABLE_PAT=pat_your_token_here

### List all accessible bases

python3 /mnt/skills/user/airtable/scripts/airtable.py list-bases

### List tables in a base

python3 /mnt/skills/user/airtable/scripts/airtable.py list-tables <base_id>

### List records in a table

python3 /mnt/skills/user/airtable/scripts/airtable.py list-records <base_id> "Table Name"
python3 /mnt/skills/user/airtable/scripts/airtable.py list-records <base_id> "Table Name" --limit 50

### Filter records with a formula

python3 /mnt/skills/user/airtable/scripts/airtable.py list-records <base_id> "Tasks" --filter "{Status}='Done'"
python3 /mnt/skills/user/airtable/scripts/airtable.py list-records <base_id> "Contacts" --filter "NOT({Email}='')"

### Filter to specific fields only

python3 /mnt/skills/user/airtable/scripts/airtable.py list-records <base_id> "People" --fields "Name,Email,Company"

### Use a specific view

python3 /mnt/skills/user/airtable/scripts/airtable.py list-records <base_id> "Tasks" --view "Active Tasks"

### Get a specific record

python3 /mnt/skills/user/airtable/scripts/airtable.py get-record <base_id> "Table Name" <record_id>

### Search records

python3 /mnt/skills/user/airtable/scripts/airtable.py search-records <base_id> "Contacts" "Smith"
python3 /mnt/skills/user/airtable/scripts/airtable.py search-records <base_id> "Contacts" "smith@acme.com" --field "Email"

### Notes

Free plan: unlimited bases, 1,000 records per base. API reads work on free.
Base IDs start with app, record IDs start with rec.
Table names are case-sensitive and must match exactly. Use quotes if the name has spaces.
Airtable deprecated old API keys in Feb 2024. Only Personal Access Tokens (PAT) work now.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: codeninja23
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-06T00:10:35.608Z
- Expires at: 2026-05-13T00:10:35.608Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/native-airtable)
- [Send to Agent page](https://openagent3.xyz/skills/native-airtable/agent)
- [JSON manifest](https://openagent3.xyz/skills/native-airtable/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/native-airtable/agent.md)
- [Download page](https://openagent3.xyz/downloads/native-airtable)