Install
$ agentstack add skill-zach-lloyd-dev-aaa-authority-acceleration-content-to-airtable ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Content to Airtable Skill
> Pipeline Connector - Push generated content directly into Airtable Content Engine
Purpose
After /topic-to-matrix generates content, this skill pushes it directly to the Airtable "AAA Content Engine" base, creating proper records with relationships.
When to Use
- After running
/topic-to-matrixand generating content - User says "push to airtable", "save to airtable", "add to content queue"
- User wants to store generated content for scheduling/review
- After any content generation that should be tracked
Prerequisites
- Airtable MCP server connected
- AAA Content Engine base exists (ID: apptbYRdtuqrSGXJb)
- Client record exists in AAA Clients table
- Topic record exists in AAA Topics table (or will be created)
Process
Step 1: Identify Content Source
Ask: "What content should I push to Airtable?"
Options:
- From conversation - Content just generated in this session
- From file - Read from a specific file path
- Manual input - User pastes content directly
Step 2: Parse Content Structure
For each content piece, extract:
- Platform: Twitter, Email, Instagram, LinkedIn, YouTube, Blog
- Content Type: Thread, Single Post, Newsletter, Carousel, Short Video, Article
- Content: Main body text
- Hook: Opening line (first sentence or explicit hook)
- CTA: Call to action (last sentence or explicit CTA)
- Hashtags: Any tags mentioned
- Voice Match Score: If provided (default: 90.0)
Step 3: Verify/Create Client Record
Check if client exists in AAA Clients table:
mcp__airtable__search_records
baseId: apptbYRdtuqrSGXJb
tableId: AAA Clients
searchTerm: [client name]
If not found, create:
mcp__airtable__create_record
baseId: apptbYRdtuqrSGXJb
tableId: AAA Clients
fields:
Client Name: [name]
Status: Active
Step 4: Verify/Create Topic Record
Check if topic exists in AAA Topics table:
mcp__airtable__search_records
baseId: apptbYRdtuqrSGXJb
tableId: AAA Topics
searchTerm: [topic name]
If not found, create:
mcp__airtable__create_record
baseId: apptbYRdtuqrSGXJb
tableId: AAA Topics
fields:
Topic Name: [topic]
ERISE Bucket: [bucket if known]
Priority Score: [score if known]
Status: In Production
Client: [client record ID]
Client Tag: [client short name - matches Content Pieces mapping]
Step 5: Create Content Piece Records
For EACH content piece:
mcp__airtable__create_record
baseId: apptbYRdtuqrSGXJb
tableId: AAA Content Pieces
fields:
Content Title: "[Topic] - [Platform] [Type]"
Platform: [platform]
Content Type: [type]
Content: [full content]
Hook: [opening line]
CTA: [call to action]
Status: Draft
Voice Match Score: [score]
Hashtags: [tags]
Topic: [topic record ID]
Client: [client record ID]
Client Tag: [client short name - e.g., "Zach Lloyd" or "Stephanie Jones"]
Client Tag Mapping: | Client Name | Client Tag Value | |-------------|------------------| | Zach Lloyd Coaching | Zach Lloyd | | Stephanie Jones | Stephanie Jones | | [New Client] | [Add to AAA Content Pieces field options first] |
> Important: When adding a new client, first add their name as a new option to the "Client Tag" single-select field in both AAA Content Pieces and AAA Topics tables.
Step 6: Confirm Success
Report:
- Number of records created
- Link to Airtable base
- Next steps (review in Airtable, run /content-review)
Airtable Schema Reference
Base ID: apptbYRdtuqrSGXJb
Tables: | Table | ID | Purpose | |-------|-----|---------| | AAA Clients | tbldySumfGgo1nHs1 | Client profiles | | AAA Topics | tbl9EBQO0Swy8O9IY | Topic library | | AAA Content Pieces | tblZoCZeYRMzMS0ld | Content queue |
Platform Options: Twitter, Email, Instagram, LinkedIn, YouTube, Blog
Content Type Options: Thread, Single Post, Newsletter, Carousel, Short Video, Article
Status Options: Draft, Review, Approved, Scheduled, Published
Client Tag Options: Zach Lloyd (green), Stephanie Jones (purple), [Add new clients as needed]
Example Usage
User: "Push the Digital Sabbath content we just generated to Airtable for Stephanie"
Process:
- Identify client: Stephanie Jones
- Identify topic: Digital Sabbath
- Parse generated content (thread, newsletter, carousel, etc.)
- Create/verify client record
- Create/verify topic record
- Create 19 content piece records (one per generated piece)
- Report: "Created 19 content pieces in AAA Content Engine"
Important Rules
- Always verify client/topic exist before creating content pieces
- Set initial status to "Draft" (never auto-approve)
- Include Voice Match Score if available
- Extract Hook from first sentence if not explicit
- Extract CTA from last sentence if not explicit
- Use descriptive Content Title: "[Topic] - [Platform] [Type]"
- Always set Client Tag for visual differentiation in Airtable views
- New clients: Add their name as a Client Tag option in Airtable before first content push
Next Steps
After pushing content:
- "Run /content-review to review draft content"
- "Open Airtable to see your content queue"
- "Run /content-calendar to schedule content"
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: zach-lloyd-dev
- Source: zach-lloyd-dev/aaa-authority-acceleration
- License: MIT
- Homepage: https://www.youtube.com/@BlackSheepSystems
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.