airtable
Installation
SKILL.md
Airtable
Manage Airtable bases and records via the REST API.
Environment Variables
AIRTABLE_ACCESS_TOKEN- Personal access token (generate at https://airtable.com/create/tokens)
List records
curl -s -H "Authorization: Bearer $AIRTABLE_ACCESS_TOKEN" \
"https://api.airtable.com/v0/BASE_ID/TABLE_NAME?maxRecords=20" | jq '.records[] | {id, fields}'