A collection of agent skills for AI coding assistants. Skills extend agent capabilities with specialized knowledge, workflows, and tool integrations.
| Skill | Description |
|---|---|
| teable-assistant-ops | Operate Teable bases, tables, fields, views, records, SQL queries, and automations with a safe read-before-write process. |
Install via the skills CLI:
npx skills add https://github.com/teableio/agent-skills/tree/main/skills/teable-assistant-opsOr copy the skill folder manually:
cp -r skills/teable-assistant-ops .claude/skills/Package the skill as a zip and upload it as project knowledge:
cd skills && zip -r teable-assistant-ops.zip teable-assistant-ops/skills/
└── <skill-name>/
├── SKILL.md # Skill definition (entry point for agents)
├── api-reference/ # API documentation (optional)
├── guides/ # Usage guides (optional)
├── rules/ # Rule files compiled into AGENTS.md (optional)
└── metadata.json # Version and metadata (optional)
Each skill follows the Agent Skills format:
SKILL.mdis the entry point that agents read first. It contains frontmatter (name, description) and instructions.- Supporting files (API references, guides, rules) provide detailed knowledge that agents load on demand.
See AGENTS.md for contributor guidelines.
MIT