A collection of skills for AI agents to interact with AITable.ai - a collaborative database platform. Turn your coding assistant into an AITable automation expert.
| Skill | Description |
|---|---|
| aitable-api | Interact with AITable REST API via curl commands. CRUD operations for records, fields, views, datasheets, attachments, and more. |
You can install these skills using the Agent Skills CLI.
Add the entire toolkit to your agent (OpenClaw, Claude Code, Cursor, etc.):
npx skills add apitable/agent-skillsIf you only need a specific capability:
npx skills add apitable/agent-skills --skill aitable-apiClone this repository and symlink the skills to your agent's skill directory:
git clone https://github.com/apitable/agent-skills.git
cd agent-skills
# For Claude Code
ln -s $(pwd)/aitable-api ~/.claude/skills/- API Token: Get your token from AITable User Center > Developer Token
- curl: All API calls use curl (no additional dependencies)
export AITABLE_TOKEN="your_api_token"
# Optional: for self-hosted instances
export AITABLE_HOST="https://your-instance.com"The skill includes comprehensive documentation for all AITable API endpoints:
| Reference | Description |
|---|---|
records.md |
CRUD operations with filtering, sorting, pagination |
fields.md |
Field types and create/delete operations |
views.md |
View listing and usage |
datasheets.md |
Datasheet creation with templates |
attachments.md |
File upload and attachment handling |
spaces-nodes.md |
Workspace navigation and node search |
members-teams.md |
Member and team management |
field-types.md |
Complete field value format reference |
MIT