一键导入
template-manager
Manage email templates for outreach and campaigns. Use this skill when the user wants to create, edit, list, or organize email templates.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage email templates for outreach and campaigns. Use this skill when the user wants to create, edit, list, or organize email templates.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Build high-converting SaaS affiliate programs with 20-40% commissions, KOL/KOC partnerships, and fraud prevention. Covers platform selection (PartnerStack, FirstPromoter, Rewardful), commission structures (recurring vs one-time, tiered), influencer outreach strategies, FTC/GDPR compliance, risk management, and case studies (Dropbox 3900%, PayPal 100M users). Use for designing affiliate programs, recruiting partners, optimizing conversion rates, preventing fraud, or scaling referral revenue.
Process and generate multimedia content using Google Gemini API for better vision capabilities. Capabilities include analyze audio files (transcription with timestamps, summarization, speech understanding, music/sound analysis up to 9.5 hours), understand images (better image analysis than Claude models, captioning, reasoning, object detection, design extraction, OCR, visual Q&A, segmentation, handle multiple images), process videos (scene detection, Q&A, temporal analysis, YouTube URLs, up to 6 hours), extract from documents (PDF tables, forms, charts, diagrams, multi-page), generate images (text-to-image with Imagen 4, editing, composition, refinement), generate videos (text-to-video with Veo 3, 8-second clips with native audio). Use when working with audio/video files, analyzing images or screenshots (instead of default vision capabilities of Claude, only fallback to Claude's vision capabilities if needed), processing PDF documents, extracting structured data from media, creating images/videos from text pr
Activate for marketing analytics, KPI tracking, reporting dashboards, attribution analysis, and performance optimization. Use when analyzing campaign data, creating reports, or measuring marketing ROI.
Activate for brand voice, visual identity, messaging frameworks, asset management, and brand consistency. Use when creating branded content, establishing tone of voice, managing marketing assets, validating brand compliance, or maintaining brand standards across marketing materials.
Browser automation, debugging, and performance analysis using Puppeteer CLI scripts. Use for automating browsers, taking screenshots, analyzing performance, monitoring network traffic, web scraping, form automation, and JavaScript debugging.
Activate when users ask about Claude Code installation, slash commands (/plan, /fix, /content, /docs, /design, /git), creating/managing Agent Skills, configuring MCP servers, setting up hooks/plugins, IDE integration (VS Code, JetBrains), CI/CD workflows, enterprise deployment (SSO, RBAC, sandboxing), troubleshooting authentication/performance issues, or advanced features (extended thinking, caching, checkpointing).
| name | template-manager |
| description | Manage email templates for outreach and campaigns. Use this skill when the user wants to create, edit, list, or organize email templates. |
| allowed-tools | ["Bash","Read","Write","Glob","TodoWrite","AskUserQuestion"] |
Create and manage email templates for outreach campaigns.
Use this skill when the user:
Do NOT use this skill for:
outreach-manager or email-composerinbox-readerTemplates are stored in:
.claude/templates/
├── email/ # Email templates
│ ├── outreach/ # Cold outreach emails
│ ├── follow-up/ # Follow-up sequences
│ ├── promotional/ # Promotional campaigns
│ └── newsletters/ # Newsletter templates
├── linkedin/ # LinkedIn message templates
├── twitter/ # Twitter message templates
└── instagram/ # Instagram message templates
Templates use Jinja2 syntax with optional frontmatter:
---
subject: Hello {{ name }}, about {{ topic }}
---
Hi {{ name }},
{{ custom_message }}
Best regards,
{{ my_name }}
Without frontmatter:
Hi {{ name }},
{{ custom_message }}
Best regards,
{{ my_name }}
| Variable | Description |
|---|---|
{{ email }} | Recipient email |
{{ name }} | Full name |
{{ first_name }} | First name |
{{ company }} | Company name |
{{ custom_message }} | Custom content |
{{ my_name }} | Sender name (from .env) |
| Any Sheet column | Custom fields from Google Sheet |
List All Templates:
python .claude/scripts/template_loader.py list
List by Platform:
python .claude/scripts/template_loader.py list --platform email --category outreach
Read a Template:
python .claude/scripts/template_loader.py render --path email/outreach/cold_email
Create New Template:
Use the Write tool to create:
.claude/templates/[platform]/[category]/[name].md
[
{"content": "List existing templates", "status": "in_progress", "activeForm": "Listing templates"},
{"content": "Determine user's template needs", "status": "pending", "activeForm": "Understanding needs"},
{"content": "Create/edit template", "status": "pending", "activeForm": "Working on template"},
{"content": "Preview template", "status": "pending", "activeForm": "Previewing template"}
]
Ask:
Create a Template:
Use the Write tool to create the template file.
Example template (.claude/templates/email/outreach/cold_email.md):
---
subject: Quick question about {{ company }}
---
Hi {{ first_name }},
I noticed {{ company }} is doing great work in your industry.
I wanted to reach out because {{ custom_message }}
Would you be open to a quick chat this week?
Best regards,
{{ my_name }}
User: "Create a follow-up email template"
Step 1: Todo List
[
{"content": "Understand follow-up template requirements", "status": "in_progress", "activeForm": "Understanding requirements"},
{"content": "Draft template content", "status": "pending", "activeForm": "Drafting template"},
{"content": "Create template file", "status": "pending", "activeForm": "Creating file"},
{"content": "Preview template", "status": "pending", "activeForm": "Previewing template"}
]
Step 2: Clarify
Step 3: Create
Write the template to .claude/templates/email/follow-up/general.md:
---
subject: Following up - {{ original_subject }}
---
Hi {{ first_name }},
I wanted to follow up on my previous email about {{ topic }}.
{{ custom_message }}
Looking forward to hearing from you.
Best regards,
{{ my_name }}
Step 4: Confirm Show the created template and confirm it's saved.
cold.txt - Initial cold outreachintroduction.txt - Self-introductionnetworking.txt - Professional networkingproduct-launch.txt - New product announcementdiscount.txt - Special offerevent.txt - Event invitationgeneral.txt - Generic follow-upno-response.txt - After no replyafter-meeting.txt - Post-meeting follow-upweekly.txt - Weekly digestmonthly.txt - Monthly newsletterannouncement.txt - Special announcement