一键导入
gdocs-setup
One-time setup for Google Docs integration. Walks through creating a Google Cloud project, enabling APIs, setting up OAuth, and testing the connection.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
One-time setup for Google Docs integration. Walks through creating a Google Cloud project, enabling APIs, setting up OAuth, and testing the connection.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
The 1-Prompt Meta Ads Engine. End-to-end Meta ad generation + paused campaign creation workflow. Asks 4 discovery questions, then runs the full pipeline: competitor intel (claude-ads /ads competitor), brand-site scraping for context, bulk image generation (kie.ai gpt-image-2), ad copy (claude-ads /ads creative), and paused Meta campaign creation (Meta Ads MCP). Dynamic Product Ad principles (brand compliance + variant matrix) are applied inline. Saves brand profiles for one-command re-runs. Trigger phrases (auto-fire on any of these in user prompt): - "/ad-engine" or "/ad engine" - "run the ad engine" - "launch ads for [brand]" / "build ads for [brand]" / "generate ads for [brand]" - "build a Meta campaign for [brand]" / "build the campaign for [brand]" - "20 ads for [brand]" / "20 Meta ads for [brand]" - "automate Meta ads" / "automate my Meta ads" - "one prompt ads" / "one-prompt ads" - "fresh ad batch" / "generate a fresh ad batch"
Use when creating Instagram carousels from a reel script, handout, PDF, article, or rough idea. Triggers on "carousel", "Instagram carousel", "IG carousel", "turn this script into slides", "build a carousel", "make slides for IG", "anchor slide", "visual brief". Runs the reference-first workflow (copy → brief → 3 anchor variants → locked anchor → matched slides one at a time → consistency check) and generates real images via the kie.ai gpt-image-2 MCP. Skip for plain captions or non-designed multi-slide posts.
Generate a hand raiser PDF lead magnet (1-5 pages) for any script or standalone topic. Renders a professional guide/cheatsheet/checklist, uploads to Google Drive, and links in Notion.
One-prompt digital footprint removal. Finds where a person's personal data (home address, phone, email, relatives) is exposed across data brokers and people-search sites, checks for breaches, ranks everything by risk, and auto-writes every CCPA/GDPR opt-out and deletion request filled and ready to send, then saves it all as a personal removal kit. Removes the manual searching and letter-writing. Triggers on: "/wipe-footprint", "wipe my footprint", "wipe my digital footprint", "erase me from the internet", "delete my data", "remove my data from data brokers", "stop the spam calls", "opt me out of data brokers".
Use when running inside Claude Design specifically. Produces a valid, brand-accurate HyperFrames video draft using pre-valid skeletons. For Claude Code / Cursor / Codex, use the `hyperframes` skill instead.
Hourly Instagram analytics pipeline that pulls per-post and account-level insights from the Meta Graph API into Supabase, mirrors live values into a Notion dashboard, and runs a daily Claude routine that classifies each post into Outlier/Average/Underperformer tiers with a 2-3 sentence "why" note. Built for content creators who want feedback that compounds, not a vanity follower counter. Triggers on "ig analytics", "instagram analytics", "performance dashboard", "content analytics pipeline", "instagram graph api", "outlier post detection", "tier classification", "creator analytics".
| name | gdocs-setup |
| description | One-time setup for Google Docs integration. Walks through creating a Google Cloud project, enabling APIs, setting up OAuth, and testing the connection. |
| argument-hint | (no arguments needed) |
| context | conversation |
Walk the user through setting up Google Docs integration for the content pipeline.
Tell the user:
Let's set up Google Docs integration. This is a one-time setup that takes about 5 minutes.
First, we need a Google Cloud project with the Docs and Drive APIs enabled.
- Go to Google Cloud Console
- Create a new project (or use an existing one) — name it something like "Content Pipeline"
- In the left sidebar, go to APIs & Services > Library
- Search for and enable Google Docs API
- Search for and enable Google Drive API
Done? Let me know.
Wait for confirmation before proceeding.
Tell the user:
Now we need OAuth credentials so the script can act on your behalf.
- Go to APIs & Services > Credentials
- Click + CREATE CREDENTIALS > OAuth client ID
- If prompted to configure the consent screen:
- Choose External (unless you have a Workspace org)
- App name: "Content Pipeline"
- Add your email as a test user
- Save and continue through the screens
- Back in Credentials, click + CREATE CREDENTIALS > OAuth client ID
- Application type: Desktop app
- Name: "Content Pipeline Desktop"
- Click Create
- Click Download JSON on the popup
Save the downloaded file — I'll place it in the right location.
Wait for the user to confirm they have the JSON file. Then:
mkdir -p ~/.config/gdocs
Ask the user for the path to their downloaded JSON file, then:
cp "{USER_PROVIDED_PATH}" ~/.config/gdocs/credentials.json
Run the setup command:
cd ~/.claude/skills/scripts && python3 gdocs_push.py --setup
This will:
~/.config/gdocs/token.jsonIf the required Python packages aren't installed, install them first:
pip3 install google-auth google-auth-oauthlib google-api-python-client
If the user wants scripts to go to a specific Google Drive folder:
Want to set a default Drive folder for your scripts?
- Go to Google Drive
- Open (or create) the folder you want scripts saved to
- Copy the folder ID from the URL:
drive.google.com/drive/folders/{THIS_PART}Give me that ID and I'll save it as your default.
If they provide one, update the config:
import json
config_path = "~/.config/gdocs/config.json"
# Read existing config, add/update default_folder_id, write back
Confirm setup is complete by checking:
~/.config/gdocs/credentials.json exists~/.config/gdocs/token.json existsTell the user:
Google Docs integration is ready! When you run
/content-master, scripts will automatically be pushed to a Google Doc.You can also push any markdown file manually:
python3 ~/.claude/skills/scripts/gdocs_push.py --title "My Scripts" --content-file "/path/to/scripts.md"