marketing-loops

Когда пользователь хочет настроить повторяющийся, автоматический маркетинговый процесс — цикл, который ИИ-агент выполняет по расписанию (еженедельно, ежедневно, по триггеру), а не как разовую задачу. Также используйте, когда пользователь упоминает «маркетинговый цикл», «повторяющийся маркетинговый процесс», «автоматизируйте мой маркетинг», «маркетинг на автопилоте», «еженедельный маркетинговый обзор», «проверка усталости от рекламы», «цикл обновления контента», «мониторинг оттока», «оповещение о падении рейтинга», «постоянно активный маркетинг», «процесс маркетинговой автоматизации» или «запустите это...»

npx skills add https://github.com/coreyhaines31/marketingskills --skill marketing-loops

Marketing Loops

You help set up marketing loops — repeatable marketing workflows an AI agent runs on a cadence, each with a defined trigger, a bounded set of steps, a self-check, and an explicit stopping condition. A loop turns a marketing task you'd otherwise do manually (and forget) into an always-on system: the weekly SEO opportunity scan, the ad-fatigue refresh, the churn-signal watch.

This is the operational cousin of marketing-ideas. Ideas tell you what to try once. Loops tell you what to keep doing on a schedule — and wire the other marketing skills together to do it.

How to Use This Skill

Check for product marketing context first: if .agents/product-marketing.md exists (or .claude/product-marketing.md, or the legacy product-marketing-context.md), read it before asking questions. Use that context and only ask for what's missing.

Then:

  1. Clarify the job. What outcome should this loop protect or grow? (rankings, ad efficiency, activation, retention, revenue, referrals)
  2. Pick a loop from the catalog in references/loop-catalog.md — or adapt the closest one.
  3. Tune the cadence to how fast the underlying signal actually changes (see the cadence rule below).
  4. Confirm the human checkpoint. Decide what the loop does autonomously vs. what it stages for human approval before publishing or spending — see references/loop-guardrails.md.
  5. Schedule it (see "Scheduling a loop" below).

Building more than one loop, or a whole marketing operating system? See references/loop-orchestration.md for how loops compose and the order to adopt them (start with tracking + a weekly review; don't build 43 at once).

Anatomy of a Marketing Loop

Every loop in the catalog has these nine parts. When you author or adapt one, fill all of them — a loop missing a stop condition, a self-check, or its state handling is a liability, not an asset.

PartWhat it defines
Check cadenceHow often the loop looks (weekly / daily / on-trigger). Match it to signal speed.
Acts whenThe action condition — what must be true to actually do something, vs. just check and skip. Most runs of a good loop are "checked, nothing to do."
PurposeThe one outcome this loop exists to move.
Skills usedWhich marketing skills the loop orchestrates each iteration.
Loop bodyThe ordered steps run each iteration.
Self-checkThe verification done before acting — so the loop doesn't act on noise, seasonality, or a tracking bug.
State / idempotencyWhat the loop remembers between runs: last-run marker, dedupe key, cooldown window, "already handled" set. Without this, loops double-act, re-nag the same people, or re-alert the same thing. Non-negotiable for anything scheduled — see references/loop-state.md for where state lives and the idempotency patterns.
Stop / bail-outWhen the loop skips, halts, escalates to a human, or disables itself — plus what it does on error. Every loop needs one, including heartbeat loops (their stop is "manual disable + error-halt," never "n/a").
OutputWhere results go: a file, a PR, a staged draft, a notification, a report.

The Check cadence / Acts when split matters: a churn-signal loop might check daily but only act when an account crosses a risk threshold it hasn't been contacted about inside the cooldown window. Conflating the two produces loops that either miss the window or spam.

The cadence rule

Match cadence to how fast the signal actually changes — not to how often you'd like an update.

SignalRealistic cadenceWhy
Rankings, backlinks, domain authorityWeeklyMove slowly; daily checks are noise
Ad creative fatigue, CPA driftEvery 2–3 daysMeta/Google feedback loops are days, not hours
Activation / onboarding funnelWeeklyNeeds enough signups to be significant
Churn signalsDaily or on-triggerEarly intervention window is short
Content / copy decayMonthlyTraffic erosion is gradual
Competitor changesWeeklyPricing/positioning shifts are infrequent but matter
Social listening / mentionsDailyEngagement windows close fast

Over-frequent loops are the most common failure mode: they generate busywork, burn budget, and train you to ignore the output.

When NOT to loop

Not everything should be automated on a cadence. Skip a loop — or add a mandatory human checkpoint — when:

  • Strategy or creative direction is the real work. Loops maintain and optimize; they don't set positioning, invent campaigns, or make brand calls.
  • The action publishes or spends without review. Auto-drafting an ad, email, or post is fine. Auto-publishing or auto-shifting budget needs a human checkpoint unless the user has explicitly authorized autonomous action and set guardrails (caps, allowlists).
  • The signal is too sparse to be significant. A weekly conversion-rate loop on 40 visitors/week is measuring noise.
  • It's a vanity loop. If nobody acts on the output, delete the loop. A loop that emails a dashboard nobody reads is worse than nothing.

For any loop that sends, spends, publishes, or touches personal data, apply references/loop-guardrails.md — the two-tier action model (autonomous-safe vs. gated), spend/send caps, CAN-SPAM/GDPR/FTC/ToS rules, the always-escalate list, and a required kill switch.

Scheduling a loop

These loops are agent-agnostic — the body works in any agent. The scheduling depends on your environment:

  • Claude Code — native options: /loop (self-paced, until a condition), ScheduleWakeup (dynamic pacing that reacts to state), and CronCreate (fixed cron schedule). If you have a loop-mechanics skill such as loopify installed, use it to choose between them and tune delays; otherwise the guidance below is enough.
  • Any agent + cron — wrap the loop body as a scheduled prompt/script (0 9 * * 1 for Mondays 9am, etc.).
  • Manual cadence — for high-judgment loops, "run this skill every Monday" is a perfectly good loop. The value is the repeatable body, not the automation.

Default to time-of-day cron for review-style loops (weekly review, ranking watch) and dynamic pacing for monitor-until-threshold loops (churn watch, launch-day tracking).

The Catalog

references/loop-catalog.md holds the full library — 43 marketing loops with thorough funnel coverage: SEO & Content, Paid, Earned/Social/Partnerships, Activation, Retention, Revenue, Referral & Advocacy, and Ongoing Ops. Each is a complete, adaptable spec. Start there, pick the closest match, and tune it to the user's product, stage, and tooling.

Authoring a new loop

When nothing in the catalog fits, author a new loop from references/loop-template.md — a copy-paste template with fill-in prompts, a worked before/after example, and a ship checklist. Fill all nine anatomy parts; if you can't answer the self-check, state/idempotency, and stop/bail-out concretely, the loop isn't ready to run.

Anti-patterns

  • Looping without a stop condition → runaway spend or infinite churn.
  • Same cadence for every loop → most run too often and get ignored.
  • No self-check → the loop acts on noise, seasonality, or a tracking bug.
  • No human checkpoint on spend/publish actions.
  • Building 10 loops at once → start with one, prove it earns its keep, then add the next.

Banned vocabulary

Avoid: "set it and forget it," "fully autonomous marketing," "AI does everything," "10x on autopilot," "growth hacking machine." Loops are disciplined systems with checkpoints, not magic. Describe them honestly.

Related Skills

  • marketing-ideas — one-off tactics and inspiration (what to try). Loops operationalize the ones worth repeating.
  • ab-testing — the experimentation loop specifically (hypothesis → test → promote winner → repeat).
  • analytics — most loops read from analytics to decide whether to act.
  • Individual channel skills (ads, seo-audit, emails, social, churn-prevention, pricing, referrals) — the loop bodies orchestrate these.

Больше skills от coreyhaines31

copywriting
coreyhaines31
Когда пользователь хочет написать, переписать или улучшить маркетинговый текст для любой страницы — включая главную, посадочные страницы, страницы с ценами, страницы функций, страницу «О нас» или страницы продуктов. Также используйте, когда пользователь говорит: «напиши текст для», «улучши этот текст», «перепиши эту страницу», «маркетинговый текст», «помощь с заголовком», «текст для CTA», «ценностное предложение», «слоган», «подзаголовок», «текст для геройского раздела», «выше сгиба», «этот текст слабый», «сделай это более убедительным» или «помоги мне описать мой продукт». Используйте это...
marketingcreativecommunication
seo-audit
coreyhaines31
Когда пользователь хочет провести аудит, проверить или диагностировать проблемы SEO на своем сайте. Также используйте, когда пользователь упоминает «SEO-аудит», «техническое SEO», «почему я не ранжируюсь», «проблемы SEO», «внутренняя оптимизация», «проверка мета-тегов», «проверка здоровья SEO», «мой трафик упал», «потерял позиции», «не отображаюсь в Google», «сайт не ранжируется», «меня затронуло обновление Google», «скорость страницы», «основные веб-показатели», «ошибки сканирования» или «проблемы индексации». Используйте это, даже если пользователь просто говорит что-то неопределенное, например «у меня плохое SEO» или «помогите...»
marketingresearchdata-analysis
marketing-psychology
coreyhaines31
Когда пользователь хочет применить психологические принципы, ментальные модели или поведенческую науку в маркетинге. Также используйте, когда пользователь упоминает «психологию», «ментальные модели», «когнитивное искажение», «убеждение», «поведенческую науку», «почему люди покупают», «принятие решений», «поведение потребителей», «якорение», «социальное доказательство», «дефицит», «неприятие потерь», «фрейминг» или «подталкивание». Используйте это всякий раз, когда кто-то хочет понять или использовать то, как люди думают и принимают решения в маркетинговом контексте. Для применения...
marketingresearch
content-strategy
coreyhaines31
Когда пользователь хочет спланировать контент-стратегию, решить, какой контент создавать, или определить темы для освещения. Также используйте, когда пользователь упоминает «контент-стратегия», «о чем мне писать», «идеи для контента», «стратегия блога», «тематические кластеры», «планирование контента», «редакционный календарь», «контент-маркетинг», «дорожная карта контента», «какой контент мне создать», «темы для блога», «столпы контента» или «я не знаю, что писать». Используйте это всякий раз, когда кому-то нужна помощь в решении, какой контент...
marketingresearchcreative
ai-seo
coreyhaines31
Когда пользователь хочет оптимизировать контент для AI-поисковиков, получить цитирование от LLM или появляться в AI-сгенерированных ответах. Также используйте, когда пользователь упоминает «AI SEO», «AEO», «GEO», «LLMO», «оптимизация для поисковых систем с ответами», «оптимизация для генеративных движков», «оптимизация для LLM», «AI Overviews», «оптимизация для ChatGPT», «оптимизация для Perplexity», «AI-цитирование», «AI-видимость», «поиск с нулевым кликом», «как мне появиться в AI-ответах», «упоминания в LLM» или «оптимизация для Claude/Gemini». Используйте это всякий раз, когда кто-то...
marketingresearch
programmatic-seo
coreyhaines31
Когда пользователь хочет массово создавать SEO-ориентированные страницы с использованием шаблонов и данных. Также используйте, когда пользователь упоминает «программное SEO», «страницы по шаблонам», «массовое создание страниц», «страницы каталогов», «страницы локаций», «страницы [ключевое слово] + [город]», «страницы сравнения», «страницы интеграций», «создание множества страниц для SEO», «pSEO», «сгенерировать 100 страниц», «страницы на основе данных» или «шаблонные лендинги». Используйте это всякий раз, когда кто-то хочет создать множество похожих страниц, нацеленных на разные ключевые слова или локации. Для...
marketingdata-analysisweb-scraping
marketing-ideas
coreyhaines31
Когда пользователю нужны маркетинговые идеи, вдохновение или стратегии для его SaaS или программного продукта. Также используйте, когда пользователь спрашивает о «маркетинговых идеях», «идеях для роста», «как продвигать», «маркетинговых стратегиях», «маркетинговых тактиках», «способах продвижения», «идеях для роста», «что ещё можно попробовать», «я не знаю, как это продвигать», «мозговой штурм маркетинга» или «какой маркетинг мне выбрать». Используйте это как отправную точку, когда кто-то застрял или ищет вдохновения для роста. Для конкретных...
marketing
copy-editing
coreyhaines31
Когда пользователь хочет отредактировать, проверить или улучшить существующий маркетинговый текст, или обновить устаревший контент. Также используйте, когда пользователь упоминает «отредактируй этот текст», «проверь мой текст», «отзыв о тексте», «вычитка», «отполируй это», «сделай это лучше», «проверка текста», «сократи это», «это читается неестественно», «очисти этот текст», «слишком многословно», «улучши формулировки», «обнови этот контент», «обнови эту страницу», «этот контент устарел» или «аудит контента». Используйте это, когда у пользователя уже есть текст и он хочет его...
documentcommunicationmarketing