技能 airtable-automation
📦

airtable-automation

低風險 ⚙️ 外部命令🌐 網路存取

自動化 Airtable 資料庫操作

無需手動呼叫 API 即可管理 Airtable 基礎資料庫、資料表和記錄。此技能透過 Rube MCP 整合處理結構探索、記錄操作和批次處理。

支援: Claude Codex Code(CC)
🥉 72 青銅
1

下載技能 ZIP

2

在 Claude 中上傳

前往 設定 → 功能 → 技能 → 上傳技能

3

開啟並開始使用

測試它

正在使用「airtable-automation」。 List all bases and show tables in the first base

預期結果:

  • Base: Customer CRM (appABC123...)
  • - Tables: Contacts, Companies, Deals, Activities
  • Base: Project Tracker (appXYZ789...)
  • - Tables: Projects, Tasks, Team Members

正在使用「airtable-automation」。 Find active deals with value over 10000

預期結果:

  • Found 3 matching records:
  • - Acme Corp Expansion: $25,000 (Stage: Proposal)
  • - TechStart Integration: $15,000 (Stage: Negotiation)
  • - GlobalServ Migration: $12,500 (Stage: Discovery)

安全審計

低風險
v1 • 2/24/2026

Static analyzer flagged 62 external_commands and 6 cryptographic patterns, but all are FALSE POSITIVES. The SKILL.md file is documentation-only (Markdown format). Detected backticks are code formatting, not shell execution. No executable code or cryptographic functions exist. Network reference is documented MCP endpoint URL. Safe to publish with documented external_dependencies on Rube MCP and Airtable API.

1
已掃描檔案
176
分析行數
3
發現項
1
審計總數
低風險問題 (1)
External API Dependency
Skill requires Rube MCP server connection to external service (rube.app) for Airtable operations

風險因素

⚙️ 外部命令
未記錄任何特定位置
🌐 網路存取 (1)
審計者: claude

品質評分

38
架構
100
可維護性
87
內容
50
社群
88
安全
91
規範符合性

你能建構什麼

CRM 聯絡人管理

自動同步和更新客戶記錄,追蹤互動歷史,並在 Airtable 中管理銷售 pipeline 階段

專案任務追蹤

建立和更新專案任務、指派團隊成員、追蹤狀態變更,並產生進度報告

內容日曆自動化

排程內容發布、管理編輯工作流程,並追蹤多個管道的內容狀態

試試這些提示

列出可用的基礎資料庫
Show me all Airtable bases I have access to and their table structures
依條件尋找記錄
Find all records in the Projects table where Status equals 'In Progress' and sort by Due Date
批次建立記錄
Create 5 new task records in the Tasks table with the following data: [list task details with name, assignee, due date]
使用公式更新記錄
Update all records where the Due Date is before today and Status is not 'Complete' to mark them as 'Overdue'

最佳實務

  • 在任何操作前始終先呼叫 RUBE_SEARCH_TOOLS 以取得目前的工具結構
  • 驗證欄位名稱與結構完全符合 - 它們區分大小寫
  • 透過檢查回應中的偏移並將其不變地傳遞給後續請求來處理分頁

避免

  • 不要在分頁請求之間變更篩選器或排序順序 - 這會導致記錄被跳過或重複
  • 避免超過 Airtable 速率限制(每個基礎資料庫每秒約 5 個請求)
  • 不要假設欄位名稱 - 始終使用 AIRTABLE_GET_BASE_SCHEMA 先檢視結構

常見問題

如何將我的 Airtable 帳戶連線至此技能?
在您的用戶端中將 https://rube.app/mcp 新增為 MCP 伺服器,然後使用工具包 'airtable' 呼叫 RUBE_MANAGE_CONNECTIONS,如果連線狀態不是 ACTIVE,請遵循授權連結。
一次可以建立的最大記錄數量是多少?
Airtable 限制每次請求最多 10 筆記錄的批次操作。對於較大的匯入,技能會自動將資料分塊為每組 10 筆。
為什麼我收到 UNKNOWN_FIELD_NAME 錯誤?
欄位名稱區分大小寫,必須與結構完全符合。在建立或更新記錄前,使用 AIRTABLE_GET_BASE_SCHEMA 驗證確切的欄位名稱。
如何透過條件篩選記錄?
使用 filterByFormula 參數搭配 Airtable 公式語法。例如:{Status}='Active' 表示相等,AND({A}='x', {B}='y') 表示多個條件。
我可以修改公式或匯總欄位嗎?
不行,計算欄位(公式、匯總、查閱)無法透過 Airtable API 建立或修改。這些必須在 Airtable 介面中設定。
如果觸及 Airtable 的速率限制會怎麼樣?
技能會收到 429 回應以及 Retry-After 標頭。操作將暫停並在指定延遲後重試。

開發者詳情

檔案結構

📄 SKILL.md