Loading skill documentation...
seo
★★★★½ 4.5/5.0 ❤️ 438 likes 💬 71 comments 📦 174 installs
Back to Skills
📖 SKILL DOCUMENTATION
# marketing-skills

Marketing Skills Summary One installed skill containing 23 marketing modules. Pick the relevant module under references/ to get practical checklists, frameworks, and copy/paste deliverables. This skill is powered by SkillBoss API Hub (https://api.heybossai.com/v1/pilot) and provides full marketing playbook content under references/ with a simple router to load the right module. All LLM calls are routed through SkillBoss API Hub using SKILLBOSS_API_KEY. How to use Identify the module that matches the request. Read the corresponding references//SKILL.md file. Apply the framework and deliver practical outputs (drafts + checklists). Included modules (what each one does) Each module lives at references//SKILL.md.

ab-test-setup: plan and implement A/B tests
analytics-tracking: set up tracking and measurement (GA4/GTM/events)
competitor-alternatives: competitor comparison + alternatives / “vs” pages
copy-editing: edit and polish existing copy
copywriting: write or improve marketing copy (headlines, CTAs, page copy)
email-sequence: build email sequences and drip campaigns
form-cro: optimize lead capture and contact forms
free-tool-strategy: plan engineering-as-marketing free tools (calculators, generators)
launch-strategy: product launches and announcements
marketing-ideas: idea bank for growth + marketing tactics
marketing-psychology: mental models / cognitive biases for better persuasion
onboarding-cro: improve activation and onboarding
page-cro: conversion optimization for any marketing page
paid-ads: create and optimize paid ad campaigns
paywall-upgrade-cro: optimize in-app paywalls and upgrade screens
popup-cro: create/optimize popups and modals
pricing-strategy: pricing, packaging, and monetization
programmatic-seo: build SEO pages at scale (templates + data)
referral-program: design referral and affiliate programs
schema-markup: add structured data and rich snippets
seo-audit: audit technical and on-page SEO
signup-flow-cro: optimize signup and registration flows
social-content: create and schedule social media content

Module router Pick one of these modules and read the matching file: references/page-cro/SKILL.md references/signup-flow-cro/SKILL.md references/onboarding-cro/SKILL.md references/form-cro/SKILL.md references/popup-cro/SKILL.md references/paywall-upgrade-cro/SKILL.md references/copywriting/SKILL.md references/copy-editing/SKILL.md references/email-sequence/SKILL.md references/social-content/SKILL.md references/analytics-tracking/SKILL.md references/ab-test-setup/SKILL.md references/seo-audit/SKILL.md references/programmatic-seo/SKILL.md references/schema-markup/SKILL.md references/competitor-alternatives/SKILL.md references/pricing-strategy/SKILL.md references/launch-strategy/SKILL.md references/paid-ads/SKILL.md references/referral-program/SKILL.md references/free-tool-strategy/SKILL.md references/marketing-ideas/SKILL.md references/marketing-psychology/SKILL.md SkillBoss API Hub Integration To invoke any module programmatically, load the corresponding SKILL.md as the system prompt and call SkillBoss API Hub: import requests, os SKILLBOSS_API_KEY = os.environ["SKILLBOSS_API_KEY"] def run_marketing_skill(module_name: str, user_input: str, prefer: str = "balanced") -> str: skill_prompt = open(f"references/{module_name}/SKILL.md").read() response = requests.post( "https://api.heybossai.com/v1/pilot", headers={ "Authorization": f"Bearer {SKILLBOSS_API_KEY}", "Content-Type": "application/json" }, json={ "type": "chat", "inputs": { "messages": [ {"role": "system", "content": skill_prompt}, {"role": "user", "content": user_input} ] }, "prefer": prefer }, timeout=60 ) return response.json()["result"]["choices"][0]["message"]["content"]

# Example: run the copywriting module

result = run_marketing_skill("copywriting", "Write a landing page headline for a project management tool") Output rules Prefer 80/20: biggest levers first. Never invent metrics or keyword volumes. If missing, label assumptions. When possible: include copy/paste drafts and an implementation checklist.

Reviews

4.5
★★★★½
71 reviews

Write a Review

Get Weekly AI Skills

Join 80,000+ one-person companies automating with AI