Skip to content

Latest commit

 

History

History
71 lines (50 loc) · 2.03 KB

File metadata and controls

71 lines (50 loc) · 2.03 KB

AITable Agent Skills

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.

Included Skills

Skill Description
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.

Install All Skills

Add the entire toolkit to your agent (OpenClaw, Claude Code, Cursor, etc.):

npx skills add apitable/agent-skills

Install Specific Skills

If you only need a specific capability:

npx skills add apitable/agent-skills --skill aitable-api

Manual Installation

Clone 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)/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

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