Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问许可证需确认审计通过

airtable-automationAirtable 自动化

Agent Skill

airtable-automation 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

16,296

周安装

670

GitHub Stars

89

下载量

5,712
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/claude-office-skills/skills --skill airtable-automation

简介

airtable-automation 实现 Airtable 数据库的视图与自动化流程。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中管理项目跟踪系统。
  • 通过 GitHub 仓库安装,基于 n8n 集成模板构建工作流。
  • 使用前需准备基础表结构和字段定义。
  • 注意公式和汇总设计应符合业务逻辑一致性要求。

SKILL.md

Airtable Automation

Automate Airtable bases with views, automations, integrations, and cross-platform workflows. Based on n8n's Airtable integration templates.

Overview

This skill covers:

  • Database design and views
  • Built-in automations
  • n8n integration workflows
  • Formula and rollup design
  • Reporting and dashboards

Database Design

Base Structure Template

base: "Project Management"

tables:
  Projects:
    fields:
      - Name: single_line_text (primary)
      - Status: single_select [Planning, Active, On Hold, Complete]
      - Priority: single_select [P0, P1, P2, P3]
      - Owner: collaborator
      - Start Date: date
      - Due Date: date
      - Budget: currency
      - Tasks: link_to_records (Tasks)
      - Progress: rollup (Tasks.Status, COUNTIF(Done)/COUNT)
      - Days Remaining: formula (DATETIME_DIFF(Due Date, TODAY(), 'days'))

  Tasks:
    fields:
      - Task Name: single_line_text (primary)
      - Project: link_to_records (Projects)
      - Status: single_select [To Do, In Progress, Review, Done]
      - Assignee: collaborator
      - Due Date: date
      - Hours Estimated: number
      - Hours Actual: number
      - Attachments: attachment

  Team:
    fields:
      - Name: single_line_text (primary)
      - Email: email
      - Role: single_select [PM, Developer, Designer, QA]
      - Current Projects: link_to_records (Projects)
      - Capacity: number (hours/week)
      - Utilization: rollup (calculate from Tasks)

Views Configuration

views:
  Projects:
    - Grid: All Projects
        fields: [Name, Status, Owner, Due Date, Progress]
        sort: Due Date (ascending)

    - Kanban: By Status
        group_by: Status
        card_fields: [Name, Owner, Due Date]

    - Calendar: Timeline
        date_field: Due Date

    - Gallery: Project Cards
        cover: Attachments

  Tasks:
    - Grid: My Tasks
        filter: Assignee = {Current User}
        sort: Due Date

    - Kanban: Sprint Board
        group_by: Status

    - Calendar: Task Calendar
        date_field: Due Date

Automations

Built-in Airtable Automations

automation_1:
  name: "New Task Notification"
  trigger:
    when: record_created
    table: Tasks
  actions:
    - send_slack:
        channel: "#project-updates"
        message: |
          📋 New task created!
          Task: {Task Name}
          Project: {Project}
          Assignee: {Assignee}
          Due: {Due Date}

automation_2:
  name: "Overdue Task Alert"
  trigger:
    when: record_matches_conditions
    table: Tasks
    conditions:
      - Status: not "Done"
      - Due Date: before today
  actions:
    - send_email:
        to: "{Assignee.email}"
        subject: "⚠️ Overdue Task: {Task Name}"
        body: "Your task '{Task Name}' was due on {Due Date}."
    - update_record:
        field: Status
        value: "Overdue"

automation_3:
  name: "Project Complete"
  trigger:
    when: record_updated
    table: Projects
    field: Progress
    condition: equals 100%
  actions:
    - update_record:
        field: Status
        value: "Complete"
    - send_slack:
        channel: "#wins"
        message: "🎉 Project '{Name}' completed!"

n8n Integration Workflows

workflow: "Form to Airtable to CRM"

trigger: typeform_submission

steps:
  1. create_airtable_record:
      base: "Leads"
      table: "Contacts"
      fields:
        Name: "{form.name}"
        Email: "{form.email}"
        Company: "{form.company}"
        Source: "Website Form"
        Created: "{timestamp}"

  2. enrich_data:
      clearbit: lookup_email
      update_record:
        Company Size: "{clearbit.company_size}"
        Industry: "{clearbit.industry}"

  3. sync_to_hubspot:
      create_contact:
        email: "{email}"
        properties: from_airtable

  4. notify_sales:
      slack:
        channel: "#new-leads"
        message: "New lead: {Name} from {Company}"

Formula Reference

Common Formulas

formulas:
  days_until_due:
    formula: "DATETIME_DIFF({Due Date}, TODAY(), 'days')"
    output: number

  is_overdue:
    formula: "IF(AND({Status}!='Done', {Due Date}<TODAY()), 'Yes', 'No')"
    output: text

  full_name:
    formula: "CONCATENATE({First Name}, ' ', {Last Name})"
    output: text

  progress_bar:
    formula: |
      REPT('▓', ROUND({Progress}/10, 0)) &
      REPT('░', 10-ROUND({Progress}/10, 0)) &
      ' ' & ROUND({Progress}, 0) & '%'
    output: text (visual progress)

  status_emoji:
    formula: |
      SWITCH({Status},
        'To Do', '⬜',
        'In Progress', '🔵',
        'Review', '🟡',
        'Done', '✅',
        '❓'
      )
    output: text

  workdays_remaining:
    formula: "WORKDAY_DIFF(TODAY(), {Due Date})"
    output: number

  quarter:
    formula: |
      'Q' & CEILING(MONTH({Date})/3) & ' ' & YEAR({Date})
    output: text

Rollup Examples

rollups:
  task_count:
    linked_field: Tasks
    aggregation: COUNT(values)

  total_hours:
    linked_field: Tasks
    rollup_field: Hours Estimated
    aggregation: SUM(values)

  completion_rate:
    linked_field: Tasks
    rollup_field: Status
    aggregation: |
      COUNTALL(IF(values='Done', 1)) / COUNT(values) * 100

  average_rating:
    linked_field: Reviews
    rollup_field: Rating
    aggregation: AVERAGE(values)

Integration Patterns

Airtable + Slack

slack_integration:
  new_record_notification:
    trigger: record_created
    action: post_to_channel
    template: |
      *New {Table} Record*
      {Field1}: {value1}
      {Field2}: {value2}
      <{record_url}|View in Airtable>

  daily_digest:
    schedule: "9am weekdays"
    query: records_due_today
    action: post_summary

  slash_command:
    command: /airtable-add
    action: create_record_from_slack

Airtable + Calendar

calendar_sync:
  airtable_to_google:
    trigger: record_with_date_created
    action: create_calendar_event
    mapping:
      title: "{Name}"
      start: "{Date}"
      description: "{Notes}"

  google_to_airtable:
    trigger: calendar_event_created
    action: create_airtable_record
    mapping:
      Name: "{event.title}"
      Date: "{event.start}"
      Type: "Meeting"

Airtable + Zapier/n8n

multi_step_workflow:
  name: "Lead Processing Pipeline"

  trigger:
    platform: airtable
    event: new_record
    table: Raw Leads

  steps:
    - enrich:
        service: clearbit
        input: email
        output: company_data

    - score:
        service: ai_scoring
        criteria: [company_size, industry, title]
        output: lead_score

    - route:
        condition: lead_score
        high: assign_to_sales
        medium: add_to_nurture
        low: mark_as_cold

    - update_airtable:
        table: Qualified Leads
        fields: [enriched_data, score, assignment]

    - notify:
        if: high_score
        slack: dm_sales_rep

Reporting Templates

Weekly Status Report

report_automation:
  schedule: "Friday 5pm"

  queries:
    completed_this_week:
      table: Tasks
      filter:
        - Status: Done
        - Completed Date: this_week

    in_progress:
      table: Tasks
      filter:
        - Status: In Progress

    overdue:
      table: Tasks
      filter:
        - Status: not Done
        - Due Date: before today

  output:
    format: markdown
    destination: [slack, email]
    template: |
      # Weekly Status Report - {week}

      ## Completed ({completed_count})
      {completed_list}

      ## In Progress ({in_progress_count})
      {in_progress_list}

      ## Overdue ({overdue_count}) ⚠️
      {overdue_list}

      ## Metrics
      - Completion rate: {rate}%
      - On-time delivery: {on_time}%

Dashboard View

dashboard:
  name: "Project Dashboard"

  widgets:
    - summary_bar:
        metrics:
          - Total Projects: COUNT(Projects)
          - Active: COUNT(Status='Active')
          - At Risk: COUNT(Days Remaining < 7)

    - progress_chart:
        type: bar
        data: Projects grouped by Status

    - upcoming_deadlines:
        type: list
        query: Projects where Due Date in next 14 days
        sort: Due Date ascending
        limit: 10

    - team_utilization:
        type: horizontal_bar
        data: Team members by task count

Output Example

Request: "Design an Airtable base for content marketing"

Output:

# Content Marketing Base

## Tables

### 1. Content Calendar
| Field | Type | Purpose |
|-------|------|---------|
| Title | Text | Content title |
| Status | Select | Idea → Draft → Review → Published |
| Type | Select | Blog, Video, Social, Email |
| Author | Collaborator | Assigned writer |
| Publish Date | Date | Target publish date |
| Platform | Multi-select | Blog, LinkedIn, Twitter |
| Keywords | Multi-select | SEO keywords |
| Performance | Link | → Analytics |

### 2. Analytics
| Field | Type | Purpose |
|-------|------|---------|
| Content | Link | → Content Calendar |
| Views | Number | Page views |
| Engagement | Number | Likes + comments |
| Conversions | Number | CTAs clicked |
| Date | Date | Measurement date |

## Automations

**1. New Content Idea**

Trigger: Record created Action: Slack to #content-ideas

**2. Ready for Review**

Trigger: Status → Review Action: Email editor + set due date

**3. Published**

Trigger: Status → Published Action:

  • Post to social scheduler
  • Add analytics tracking row
  • Celebrate in Slack 🎉
## Views
- 📅 Calendar View (by Publish Date)
- 📊 Kanban (by Status)
- 👤 My Content (filtered by Author)
- 📈 Performance Dashboard

*Airtable Automation Skill - Part of Claude Office Skills*

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.1%
按下载量换算2,005

Claude

29.01%
按下载量换算1,657

Cursor

18.4%
按下载量换算1,051

Gemini CLI

9.42%
按下载量换算538

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills