Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计异常

airtable-masterAirtable master 搜索

Agent Skill

airtable-master 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

465

周安装

19

GitHub Stars

2

下载量

149
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:airtable-master(Airtable master 搜索)
来源仓库:https://github.com/abdullahbeam/nexus-design-abdullah
仓库路径:skills/airtable-master
安装命令:
npx skills add https://github.com/abdullahbeam/nexus-design-abdullah --skill airtable-master
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/abdullahbeam/nexus-design-abdullah --skill airtable-master

简介

airtable-master 是 Airtable 相关技能的共享资源库,提供通用配置、API 文档和错误处理参考。

  • 不直接面向用户,而是被 airtable-connect、airtable-query 等技能复用,避免内容重复。
  • 包含预检脚本和参考文档,用于统一 setup 流程和异常处理逻辑。
  • 无需单独安装,由其他 Airtable 技能自动加载所需模块和说明。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Airtable Master

This is NOT a user-facing skill. It's a shared resource library.

Purpose

Provides shared resources to eliminate duplication across:

  • airtable-connect - Connect to bases, discover schema
  • airtable-query - Query records with filters
  • airtable-sync - Import/export records

Instead of loading this skill, users invoke the specific skill above.


Architecture: DRY Principle

Problem solved: Multiple Airtable skills would have duplicated content (setup instructions, API docs, error handling).

Solution: Extract shared content into references/ and scripts/.

Result: Single source of truth, reduced context per skill.


Shared Resources

references/

setup-guide.md - Complete setup wizard

  • Creating Personal Access Token (PAT)
  • Configuring.env file
  • Selecting scopes
  • Validation steps

api-reference.md - API patterns

  • Base URL and headers
  • Key endpoints (bases, tables, records)
  • Pagination
  • Batch operations
  • Rate limits

error-handling.md - Troubleshooting

  • HTTP error codes (401, 403, 404, 422, 429)
  • Recovery patterns
  • Debugging tips

field-types.md - Field type reference

  • All 20+ Airtable field types
  • Read and write formats
  • Type-specific validation

scripts/

Configuration & Setup

check_airtable_config.py - Pre-flight validation

python check_airtable_config.py [--verbose] [--json]
ArgumentRequiredDefaultDescription
--verbose / -vNoFalseShow detailed output
--jsonNoFalseOutput structured JSON for AI consumption

Exit codes: 0=configured, 1=partial (no bases), 2=not configured

When to Use: Run this FIRST before any Airtable operation. Use to validate PAT is configured, test API connection, check base access, or diagnose authentication issues.


setup_airtable.py - Interactive setup wizard

python setup_airtable.py [--non-interactive] [--api-key KEY]
ArgumentRequiredDefaultDescription
--non-interactiveNoFalseSkip prompts (requires API key)
--api-keyNo-API key for non-interactive mode

Default: Runs interactively. Guides through PAT creation, tests connection, saves to .env, auto-runs base discovery.

When to Use: Use when Airtable integration needs initial setup, when check_airtable_config.py returns exit code 2, or when user needs to reconfigure credentials or switch workspaces.


discover_bases.py - Base discovery (GET /meta/bases)

python discover_bases.py [--refresh] [--json] [--with-schema]
ArgumentRequiredDefaultDescription
--refreshNoFalseForce re-discovery even if cache exists
--jsonNoFalseOutput as JSON only (no progress messages)
--with-schemaNoFalseAlso fetch table schemas (slower)

Saves to: 01-memory/integrations/airtable-bases.yaml

When to Use: Use when user asks "what bases do I have", "list my airtable bases", "show tables", after adding new bases, or when base/table name resolution fails (--refresh to update cache).


Record Operations

query_records.py - Query records from table (GET /{baseId}/{tableIdOrName})

python query_records.py --base BASE --table TABLE [--filter FORMULA] [--fields FIELDS] [--view VIEW] [--sort FIELD] [--limit N] [--json] [--verbose]
ArgumentRequiredDefaultDescription
--baseYes-Base ID (appXXX) or name
--tableYes-Table ID (tblXXX) or name
--filterNo-Airtable formula filter
--fieldsNo-Comma-separated field names to retrieve
--viewNo-View ID or name
--sortNo-Sort field (prefix with - for descending)
--limitNo-Max records to return
--jsonNoFalseOutput as JSON
--verbose / -vNoFalseShow debug info

Filter Formula Examples:

--filter "{Status}='Active'"
--filter "AND({Status}='Active', {Priority}='High')"
--filter "SEARCH('john', LOWER({Name}))"
--filter "{Due Date} < TODAY()"

When to Use: Use when user wants to read records from a table, search with filters, list data from Airtable, or retrieve specific records. Supports Airtable formula syntax for complex filters.


manage_records.py - CRUD operations (POST/PATCH/PUT/DELETE /{baseId}/{tableIdOrName})

# Create record(s)
python manage_records.py create --base BASE --table TABLE --data JSON [--file FILE] [--typecast] [--json] [--verbose]

# Update record(s)
python manage_records.py update --base BASE --table TABLE --record RECID --data JSON [--file FILE] [--typecast] [--replace] [--json] [--verbose]

# Delete record(s)
python manage_records.py delete --base BASE --table TABLE --record RECID [--file FILE] [--json] [--verbose]
ArgumentRequiredDefaultDescription
actionYes-Action: create, update, delete (positional)
--baseYes-Base ID (appXXX) or name
--tableYes-Table ID (tblXXX) or name
--recordNo*-Record ID (for update/delete single record)
--dataNo*-JSON data for fields
--fileNo*-JSON file with record(s) data
--typecastNoFalseEnable automatic type conversion
--replaceNoFalseReplace mode for update (PUT vs PATCH)
--jsonNoFalseOutput as JSON
--verbose / -vNoFalseShow debug info

*For create: --data or --file required *For update: --record + --data or --file required *For delete: --record or --file required

Usage Examples:

# Create a single record
python manage_records.py create --base "My CRM" --table "Contacts" \
    --data '{"Name": "John Doe", "Email": "john@example.com"}'

# Create multiple records from file
python manage_records.py create --base appXXX --table tblYYY --file records.json

# Update a record
python manage_records.py update --base "Tasks" --table "Tasks" \
    --record recXXX --data '{"Status": "Done"}'

# Delete a record
python manage_records.py delete --base "Tasks" --table "Tasks" --record recXXX

# Batch operations with typecast
python manage_records.py create --base "CRM" --table "Leads" \
    --file leads.json --typecast

Batch Limits: Max 10 records per API call (script handles batching automatically)

When to Use: Use create when user wants to add new records, update to modify existing records (PATCH=partial, PUT=replace), delete to remove records. Supports batch operations from JSON files.


Intelligent Error Detection Flow

When an Airtable skill fails due to missing configuration, the AI should:

Step 1: Run Config Check with JSON Output

python 00-system/skills/airtable/airtable-master/scripts/check_airtable_config.py --json

Step 2: Parse the ai_action Field

The JSON output includes an ai_action field that tells the AI what to do:

ai_actionWhat to Do
proceed_with_operationConfig OK, continue with the original operation
proceed_with_warningPartial config (API works but no bases accessible)
prompt_for_api_keyAsk user: "I need your Airtable API key. Get one at https://airtable.com/create/tokens"
run_setup_wizardRun: python 00-system/skills/airtable/airtable-master/scripts/setup_airtable.py

Step 3: Help User Fix Issues

If ai_action is prompt_for_api_key:

  1. Tell user: "Airtable integration needs setup. I need your Personal Access Token (PAT)."
  2. Show them: "Get one at: https://airtable.com/create/tokens"
  3. Guide them through scopes: "Add scopes: data.records:read, data.records:write, schema.bases:read"
  4. Ask: "Paste your Airtable PAT here (starts with 'pat.'):"
  5. Once they provide it, write directly to .env: # Edit.env file to add: AIRTABLE_API_KEY=pat.their_token_here
  6. Re-run config check to verify

JSON Output Structure

{
  "status": "not_configured",
  "exit_code": 2,
  "ai_action": "prompt_for_api_key",
  "missing": [
    {"item": "AIRTABLE_API_KEY", "required": true, "location": ".env"}
  ],
  "fix_instructions": [...],
  "env_template": "AIRTABLE_API_KEY=pat.YOUR_TOKEN_HERE",
  "setup_wizard": "python 00-system/skills/airtable/airtable-master/scripts/setup_airtable.py"
}

How Skills Reference This

Each skill loads shared resources only when needed (progressive disclosure):

airtable-connect uses:

  • check_airtable_config.py (validate before connection)
  • discover_bases.py (find and cache bases)
  • api-reference.md (schema endpoints)
  • error-handling.md (troubleshooting)

airtable-query uses:

  • check_airtable_config.py (validate before query)
  • query_records.py (list/filter records)
  • api-reference.md (query patterns)
  • field-types.md (interpret results)

airtable-sync uses:

  • check_airtable_config.py (validate before sync)
  • manage_records.py (CRUD operations)
  • api-reference.md (batch patterns)
  • error-handling.md (recovery)

Usage Example

User says: "query my Projects base in Airtable"

What happens:

  1. AI loads airtable-connect (NOT airtable-master)
  2. airtable-connect SKILL.md says: "Run check_airtable_config.py first"
  3. AI executes: python 00-system/skills/airtable/airtable-master/scripts/check_airtable_config.py --json
  4. If exit code 2, AI prompts user for API key and helps them set up
  5. If exit code 0, AI executes: python 00-system/skills/airtable/airtable-master/scripts/query_records.py --base "Projects"
  6. If errors occur, AI loads: airtable-master/references/error-handling.md

airtable-master is NEVER loaded directly - it's just a resource library.


Key Differences from Notion

AspectAirtableNotion
AuthPersonal Access Token (PAT)Integration Token
Rate Limit5 req/s per base3 req/s
Batch Size10 recordsVariable
PaginationOffset-basedCursor-based
Field Types20+ types20+ property types

Version: 1.3 Created: 2025-12-11 Updated: 2025-12-11 Status: Production Ready

Changelog:

  • v1.3: Added "When to Use" sections to all 5 scripts for AI routing guidance
  • v1.2: Added comprehensive script argument documentation with usage examples and argument tables
  • v1.1: Added Intelligent Error Detection Flow with --json support, added setup_airtable.py
  • v1.0: Initial release

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

29.66%
按下载量换算44

Gemini CLI

21.82%
按下载量换算33

Antigravity

14.98%
按下载量换算22

windsurf

11.43%
按下载量换算17

Codex

6.62%
按下载量换算10

OpenCode

3.67%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills