
Security News
The Code You Didn't Write Is Still Yours to Defend
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.
@robinpath/airtable
Advanced tools
Airtable integration — list, get, create, update, delete records, plus base/table/field schema management. Uses the encrypted credential vault for personal access tokens.
Airtable module for RobinPath.
The airtable module lets you:
All functions are callable directly from RobinPath scripts with a simple, consistent API.
robinpath add @robinpath/airtable
1. Set up credentials
airtable.setToken "default" "patXXXXXXXXXXXXXX"
2. List all bases accessible by the configured token
airtable.listBases "default"
| Function | Description |
|---|---|
airtable.setToken | Store an Airtable personal access token for authentication |
airtable.listBases | List all bases accessible by the configured token |
airtable.getBaseSchema | Get the schema (tables and fields) for a base |
airtable.listRecords | List records from a table with optional filtering, sorting, and pagination |
airtable.getRecord | Get a single record by ID |
airtable.createRecord | Create a single record in a table |
airtable.createRecords | Bulk create up to 10 records in a table |
airtable.updateRecord | Update a single record (PATCH - only updates specified fields) |
airtable.updateRecords | Bulk update up to 10 records (PATCH) |
airtable.replaceRecord | Replace a single record (PUT - clears unspecified fields) |
airtable.deleteRecord | Delete a single record by ID |
airtable.deleteRecords | Bulk delete up to 10 records by ID |
airtable.createTable | Create a new table in a base with field definitions |
airtable.updateTable | Update a table's name or description |
airtable.createField | Create a new field in a table |
airtable.updateField | Update a field's name or description |
airtable.listBases "default"
airtable.getBaseSchema "default" "appABC123"
airtable.listRecords "default" "appABC123" "Tasks" {"filterByFormula": "{Status}='Done'", "maxRecords": 50}
import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/airtable";
const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);
const result = await rp.executeScript(`
airtable.setToken "default" "patXXXXXXXXXXXXXX"
airtable.listBases "default"
`);
See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.
@robinpath/google-sheets — Google Sheets module for complementary functionality@robinpath/google-calendar — Google Calendar module for complementary functionality@robinpath/google-contacts — Google Contacts module for complementary functionality@robinpath/google-forms — Google Forms module for complementary functionality@robinpath/gmail — Gmail module for complementary functionalityMIT
FAQs
Airtable integration — list, get, create, update, delete records, plus base/table/field schema management. Uses the encrypted credential vault for personal access tokens.
The npm package @robinpath/airtable receives a total of 27 weekly downloads. As such, @robinpath/airtable popularity was classified as not popular.
We found that @robinpath/airtable demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.