https://github.com/apitable/agent-skills
AITable.ai skills for AI coding agents (Claude Code, Codex, OpenClaw) - Turn your AI assistant into an AITable automation expert
https://github.com/apitable/agent-skills
Last synced: about 1 month ago
JSON representation
AITable.ai skills for AI coding agents (Claude Code, Codex, OpenClaw) - Turn your AI assistant into an AITable automation expert
- Host: GitHub
- URL: https://github.com/apitable/agent-skills
- Owner: apitable
- Created: 2026-03-22T10:13:22.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-04-06T09:55:24.000Z (4 months ago)
- Last Synced: 2026-06-09T00:27:53.176Z (about 2 months ago)
- Homepage:
- Size: 16.6 KB
- Stars: 4
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AITable Agent Skills
A collection of skills for AI agents to interact with [AITable.ai](https://aitable.ai) - a collaborative database platform.
Turn your coding assistant into an AITable automation expert.
## Included Skills
| Skill | Description |
|-------|-------------|
| **[aitable-api](./skills/aitable-api)** | Interact with AITable REST API via curl commands. CRUD operations for records, fields, views, datasheets, attachments, and more. |
## Installation
You can install these skills using the [Agent Skills CLI](https://github.com/vercel-labs/skills).
### Install All Skills
Add the entire toolkit to your agent (OpenClaw, Claude Code, Cursor, etc.):
```bash
npx skills add apitable/agent-skills
```
### Install Specific Skills
If you only need a specific capability:
```bash
npx skills add apitable/agent-skills --skill aitable-api
```
### Manual Installation
Clone this repository and symlink the skills to your agent's skill directory:
```bash
git clone https://github.com/apitable/agent-skills.git
cd agent-skills
# For Claude Code
ln -s $(pwd)/skills/aitable-api ~/.claude/skills/
```
## Requirements
- **API Token**: Get your token from AITable User Center > Developer Token
- **curl**: All API calls use curl (no additional dependencies)
### Environment Setup
```bash
export AITABLE_TOKEN="your_api_token"
# Optional: for self-hosted instances
export AITABLE_HOST="https://your-instance.com"
```
## What's Inside aitable-api
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 |
## License
MIT