taketomarket 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/plugin.json +10 -0
- package/LICENSE +21 -0
- package/README.md +419 -0
- package/agents/ttm-producer.md +53 -0
- package/bin/lib/campaign.cjs +553 -0
- package/bin/lib/commit.cjs +105 -0
- package/bin/lib/core.cjs +172 -0
- package/bin/lib/deviation.cjs +149 -0
- package/bin/lib/drift-log.cjs +219 -0
- package/bin/lib/health.cjs +438 -0
- package/bin/lib/slug.cjs +59 -0
- package/bin/lib/state.cjs +96 -0
- package/bin/ttm-tools.cjs +157 -0
- package/gates/base-gates.md +266 -0
- package/gates/discipline/.gitkeep +0 -0
- package/gates/gate-evaluation.md +341 -0
- package/gates/meta-gates.md +19 -0
- package/install.js +307 -0
- package/package.json +53 -0
- package/playbooks/.gitkeep +0 -0
- package/playbooks/aeo.md +223 -0
- package/playbooks/affiliate.md +272 -0
- package/playbooks/base.md +110 -0
- package/playbooks/email.md +306 -0
- package/playbooks/events.md +320 -0
- package/playbooks/linkedin.md +263 -0
- package/playbooks/paid-ads.md +318 -0
- package/playbooks/pr-media.md +296 -0
- package/playbooks/seo.md +284 -0
- package/playbooks/social.md +305 -0
- package/playbooks/youtube.md +325 -0
- package/references/context-loading.md +107 -0
- package/references/learnings-extraction.md +94 -0
- package/references/measurement-template.md +48 -0
- package/references/meta-gate-evaluation.md +169 -0
- package/references/positioning-check-report.md +197 -0
- package/references/review-checklist.md +78 -0
- package/references/ship-checklist-items.md +94 -0
- package/settings.json +4 -0
- package/skills/ttm-aeo-check/SKILL.md +20 -0
- package/skills/ttm-affiliate-kit/SKILL.md +19 -0
- package/skills/ttm-archive/SKILL.md +13 -0
- package/skills/ttm-brand-refresh/SKILL.md +19 -0
- package/skills/ttm-brief/SKILL.md +14 -0
- package/skills/ttm-competitor-scan/SKILL.md +19 -0
- package/skills/ttm-email-preflight/SKILL.md +19 -0
- package/skills/ttm-fix/SKILL.md +13 -0
- package/skills/ttm-health/SKILL.md +12 -0
- package/skills/ttm-icp-refresh/SKILL.md +19 -0
- package/skills/ttm-init/SKILL.md +12 -0
- package/skills/ttm-keyword-map/SKILL.md +19 -0
- package/skills/ttm-learn/SKILL.md +14 -0
- package/skills/ttm-measure/SKILL.md +14 -0
- package/skills/ttm-new-campaign/SKILL.md +13 -0
- package/skills/ttm-next/SKILL.md +12 -0
- package/skills/ttm-positioning-check/SKILL.md +19 -0
- package/skills/ttm-positioning-shift/SKILL.md +19 -0
- package/skills/ttm-produce/SKILL.md +14 -0
- package/skills/ttm-repurpose/SKILL.md +20 -0
- package/skills/ttm-research/SKILL.md +13 -0
- package/skills/ttm-resume/SKILL.md +13 -0
- package/skills/ttm-review/SKILL.md +13 -0
- package/skills/ttm-seo-audit/SKILL.md +20 -0
- package/skills/ttm-ship/SKILL.md +13 -0
- package/skills/ttm-state/SKILL.md +13 -0
- package/skills/ttm-verify/SKILL.md +14 -0
- package/templates/agents-md.md +65 -0
- package/templates/campaign-brief.md +74 -0
- package/templates/campaign-research.md +39 -0
- package/templates/campaign-state.md +40 -0
- package/templates/claude-md.md +65 -0
- package/templates/deviation-log.md +12 -0
- package/templates/drift-log.md +17 -0
- package/templates/fix-brief.md +59 -0
- package/templates/fix-log.md +22 -0
- package/templates/measurement-report.md +75 -0
- package/templates/migration-plan.md +24 -0
- package/templates/production-manifest.json +20 -0
- package/templates/reference-files/brand.md +45 -0
- package/templates/reference-files/calendar.md +30 -0
- package/templates/reference-files/channels.md +40 -0
- package/templates/reference-files/competitors.md +40 -0
- package/templates/reference-files/icp.md +50 -0
- package/templates/reference-files/learnings.md +40 -0
- package/templates/reference-files/metrics.md +42 -0
- package/templates/reference-files/positioning.md +38 -0
- package/templates/reference-files/state.md +27 -0
- package/templates/verification-report.md +59 -0
- package/workflows/discipline/.gitkeep +0 -0
- package/workflows/discipline/aeo-check.md +180 -0
- package/workflows/discipline/affiliate-kit.md +147 -0
- package/workflows/discipline/email-preflight.md +150 -0
- package/workflows/discipline/keyword-map.md +125 -0
- package/workflows/discipline/repurpose.md +329 -0
- package/workflows/discipline/seo-audit.md +169 -0
- package/workflows/lifecycle/.gitkeep +0 -0
- package/workflows/lifecycle/brief-positioning-check.md +90 -0
- package/workflows/lifecycle/brief.md +355 -0
- package/workflows/lifecycle/fix.md +495 -0
- package/workflows/lifecycle/learn.md +405 -0
- package/workflows/lifecycle/measure.md +379 -0
- package/workflows/lifecycle/produce.md +383 -0
- package/workflows/lifecycle/research.md +264 -0
- package/workflows/lifecycle/review.md +432 -0
- package/workflows/lifecycle/ship.md +521 -0
- package/workflows/lifecycle/verify.md +507 -0
- package/workflows/reference-mgmt/.gitkeep +0 -0
- package/workflows/reference-mgmt/brand-refresh.md +193 -0
- package/workflows/reference-mgmt/competitor-scan.md +228 -0
- package/workflows/reference-mgmt/icp-refresh.md +200 -0
- package/workflows/reference-mgmt/positioning-check.md +339 -0
- package/workflows/reference-mgmt/positioning-shift.md +368 -0
- package/workflows/setup/.gitkeep +0 -0
- package/workflows/setup/init-questions.md +225 -0
- package/workflows/setup/init-validation.md +155 -0
- package/workflows/setup/init.md +449 -0
- package/workflows/setup/new-campaign.md +134 -0
- package/workflows/utility/.gitkeep +0 -0
- package/workflows/utility/archive.md +334 -0
- package/workflows/utility/health.md +166 -0
- package/workflows/utility/next.md +187 -0
- package/workflows/utility/resume.md +249 -0
- package/workflows/utility/state.md +207 -0
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
# Review Checklist
|
|
2
|
+
|
|
3
|
+
Reference file for the /ttm-review workflow. Contains the structured review
|
|
4
|
+
questions, revision feedback form, and batch review format.
|
|
5
|
+
|
|
6
|
+
## Mandatory Review Questions (D-01)
|
|
7
|
+
|
|
8
|
+
Present these 4 questions for every asset. All 4 are required -- the reviewer
|
|
9
|
+
must answer each one before selecting an outcome.
|
|
10
|
+
|
|
11
|
+
### Question 1: Positioning Reinforcement
|
|
12
|
+
"Does this asset reinforce your positioning -- your primary differentiator, target
|
|
13
|
+
audience, and category? Identify any claims that go beyond or contradict POSITIONING.md."
|
|
14
|
+
|
|
15
|
+
Expected answer: Yes/No + specific notes on any drift found.
|
|
16
|
+
|
|
17
|
+
### Question 2: Outcome Realism
|
|
18
|
+
"Is the outcome metric target realistic given this content? Could this asset
|
|
19
|
+
plausibly drive the defined outcome (e.g., demo requests, signups, pipeline)?"
|
|
20
|
+
|
|
21
|
+
Expected answer: Yes/No + explanation of why or why not.
|
|
22
|
+
|
|
23
|
+
### Question 3: Claim Substantiation
|
|
24
|
+
"Are all factual claims, statistics, and proof points substantiated by approved
|
|
25
|
+
data in BRAND.md? Flag any unverifiable or unsourced claims."
|
|
26
|
+
|
|
27
|
+
Expected answer: Yes/No + list of any unsubstantiated claims.
|
|
28
|
+
|
|
29
|
+
### Question 4: Competitor Differentiation
|
|
30
|
+
"Does this asset clearly differentiate from competitors? Could a competitor
|
|
31
|
+
publish this same content with their name swapped in?"
|
|
32
|
+
|
|
33
|
+
Expected answer: Yes/No + notes on differentiation strength.
|
|
34
|
+
|
|
35
|
+
### Freeform Notes (Optional)
|
|
36
|
+
"Any additional feedback, concerns, or suggestions?"
|
|
37
|
+
|
|
38
|
+
## Review Outcomes (D-03)
|
|
39
|
+
|
|
40
|
+
After answering all 4 questions, select one outcome per asset:
|
|
41
|
+
|
|
42
|
+
1. **Approve** -- Asset is ready for shipping. Advances to `ship-ready` status.
|
|
43
|
+
2. **Revise** -- Asset needs changes. Triggers structured revision feedback (below),
|
|
44
|
+
then routes to /ttm-fix.
|
|
45
|
+
3. **Reject** -- Asset is fundamentally wrong. Killed permanently. Reason logged in
|
|
46
|
+
campaign state. No fix loop -- this is final.
|
|
47
|
+
|
|
48
|
+
## Structured Revision Feedback (D-12)
|
|
49
|
+
|
|
50
|
+
When outcome is "Revise", collect this structured feedback. This data becomes
|
|
51
|
+
the primary input for /ttm-fix root cause analysis.
|
|
52
|
+
|
|
53
|
+
### Failed Checklist Items
|
|
54
|
+
Which review questions did this asset fail? (select all that apply)
|
|
55
|
+
1. Positioning reinforcement
|
|
56
|
+
2. Outcome realism
|
|
57
|
+
3. Claim substantiation
|
|
58
|
+
4. Competitor differentiation
|
|
59
|
+
|
|
60
|
+
### Severity
|
|
61
|
+
1. Minor -- small adjustments to specific sections
|
|
62
|
+
2. Major -- significant rewrite of key sections
|
|
63
|
+
3. Critical -- fundamental approach or angle is wrong
|
|
64
|
+
|
|
65
|
+
### Specific Feedback
|
|
66
|
+
"What specifically needs to change? Be as concrete as possible -- reference
|
|
67
|
+
specific sections, sentences, or claims."
|
|
68
|
+
|
|
69
|
+
## Batch Derivative Review Format (D-02)
|
|
70
|
+
|
|
71
|
+
For derivative assets (after the hero has been reviewed in full):
|
|
72
|
+
|
|
73
|
+
Show abbreviated view:
|
|
74
|
+
- Gate summary: PASS/WARN/FAIL counts only (not full table)
|
|
75
|
+
- Content preview: first ~300 characters + file link
|
|
76
|
+
- "Hero asset for reference: ${HERO_FILE}"
|
|
77
|
+
- Same 4 questions (answers can be shorter in batch mode)
|
|
78
|
+
- Same 3 outcomes (Approve/Revise/Reject)
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
# Ship Checklist Items
|
|
2
|
+
|
|
3
|
+
Reference file for /ttm-ship workflow. Defines checklist items per channel type.
|
|
4
|
+
Ship workflow reads the campaign's channel mix and loads applicable sections.
|
|
5
|
+
|
|
6
|
+
Items are tagged [AI] (Claude can auto-check) or [HUMAN] (user must confirm).
|
|
7
|
+
|
|
8
|
+
## Universal (all campaigns)
|
|
9
|
+
|
|
10
|
+
- [AI] UTM parameters valid on all trackable links (format: ?utm_source=X&utm_medium=Y&utm_campaign=Z)
|
|
11
|
+
- [AI] All asset files exist and are non-empty (no draft markers like TODO, PLACEHOLDER, TBD)
|
|
12
|
+
- [AI] VERIFICATION.md shows overall_result of pass or accepted (no unresolved failures)
|
|
13
|
+
- [AI] All assets in MANIFEST.json have review_status of approved or ship-ready
|
|
14
|
+
- [HUMAN] Tracking/analytics configured for the campaign's outcome metric
|
|
15
|
+
- [HUMAN] Monitoring and alerts set up for the campaign measurement window
|
|
16
|
+
- [HUMAN] Team notified of launch timeline
|
|
17
|
+
|
|
18
|
+
## Blog / SEO (asset type: blog-post)
|
|
19
|
+
|
|
20
|
+
- [AI] Meta title present (frontmatter or first H1)
|
|
21
|
+
- [AI] Meta description present (frontmatter or first paragraph under 160 chars)
|
|
22
|
+
- [AI] H1 contains primary keyword or positioning anchor
|
|
23
|
+
- [AI] No orphaned internal links (links point to existing pages)
|
|
24
|
+
- [HUMAN] Schema markup deployed (Article, FAQPage, HowTo as applicable)
|
|
25
|
+
- [HUMAN] Internal links from existing pages to new content added
|
|
26
|
+
- [HUMAN] XML sitemap updated or auto-regeneration confirmed
|
|
27
|
+
- [HUMAN] Open Graph and Twitter Card meta tags set
|
|
28
|
+
|
|
29
|
+
## Email (asset type: email)
|
|
30
|
+
|
|
31
|
+
- [AI] Subject line under 60 characters
|
|
32
|
+
- [AI] Preview text under 90 characters
|
|
33
|
+
- [AI] Unsubscribe link present in content
|
|
34
|
+
- [AI] Physical mailing address present
|
|
35
|
+
- [AI] No spam trigger words in subject (FREE, URGENT, ACT NOW, etc.)
|
|
36
|
+
- [HUMAN] SPF/DKIM/DMARC records configured for sending domain
|
|
37
|
+
- [HUMAN] Dark mode rendering tested in Outlook, Gmail, Apple Mail
|
|
38
|
+
- [HUMAN] Test send completed to internal list
|
|
39
|
+
- [HUMAN] Send scheduled at optimal time for ICP timezone
|
|
40
|
+
|
|
41
|
+
## LinkedIn (asset type: linkedin-post)
|
|
42
|
+
|
|
43
|
+
- [AI] Post under 3000 characters
|
|
44
|
+
- [AI] Opening line does not start with "I" (per LinkedIn playbook best practice)
|
|
45
|
+
- [AI] No external URL in first line (triggers algorithm suppression)
|
|
46
|
+
- [HUMAN] Author profile has updated headline and about section
|
|
47
|
+
- [HUMAN] First comment with link prepared (if linking out)
|
|
48
|
+
- [HUMAN] Scheduling configured or publish time selected
|
|
49
|
+
|
|
50
|
+
## Social / Twitter/X (asset type: social-post, twitter-post)
|
|
51
|
+
|
|
52
|
+
- [AI] Post under 280 characters (Twitter/X) or platform-appropriate limit
|
|
53
|
+
- [AI] No rhetorical questions (poor engagement on Twitter/X)
|
|
54
|
+
- [AI] Hashtags limited to 2-3 maximum
|
|
55
|
+
- [HUMAN] Platform-specific image or video assets ready
|
|
56
|
+
- [HUMAN] Scheduling configured
|
|
57
|
+
- [HUMAN] Reply/engagement plan prepared for first 30 minutes
|
|
58
|
+
|
|
59
|
+
## Landing Page (asset type: landing-page)
|
|
60
|
+
|
|
61
|
+
- [AI] Primary CTA is clear and present above the fold
|
|
62
|
+
- [AI] Form fields match the brief's conversion goal
|
|
63
|
+
- [AI] UTM parameters captured in form submission
|
|
64
|
+
- [HUMAN] Page load time under 3 seconds
|
|
65
|
+
- [HUMAN] Mobile responsive layout verified
|
|
66
|
+
- [HUMAN] Thank-you/confirmation page configured
|
|
67
|
+
- [HUMAN] Conversion tracking pixel installed
|
|
68
|
+
|
|
69
|
+
## Video / YouTube (asset type: video, youtube-video)
|
|
70
|
+
|
|
71
|
+
- [AI] Title under 60 characters
|
|
72
|
+
- [AI] Description contains primary keyword in first 2 lines
|
|
73
|
+
- [AI] Timestamps present if video exceeds 5 minutes
|
|
74
|
+
- [HUMAN] Thumbnail uploaded (high contrast, readable text)
|
|
75
|
+
- [HUMAN] End screen CTA configured
|
|
76
|
+
- [HUMAN] Cards added at key moments
|
|
77
|
+
- [HUMAN] Captions/subtitles uploaded or auto-generated reviewed
|
|
78
|
+
|
|
79
|
+
## Paid Ads (asset type: paid-ad)
|
|
80
|
+
|
|
81
|
+
- [AI] Ad copy under platform character limits
|
|
82
|
+
- [AI] Headline and description present
|
|
83
|
+
- [AI] Display URL formatted correctly
|
|
84
|
+
- [HUMAN] Landing page matches ad message
|
|
85
|
+
- [HUMAN] Bid strategy configured
|
|
86
|
+
- [HUMAN] Audience targeting set per brief
|
|
87
|
+
- [HUMAN] Budget allocated and campaign scheduled
|
|
88
|
+
|
|
89
|
+
## Default (unknown asset type)
|
|
90
|
+
|
|
91
|
+
- [AI] Content is non-empty and contains no draft markers
|
|
92
|
+
- [AI] UTM links present if applicable
|
|
93
|
+
- [HUMAN] Distribution channel prepared
|
|
94
|
+
- [HUMAN] Tracking configured
|
package/settings.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-aeo-check
|
|
3
|
+
description: >
|
|
4
|
+
Check citation status across AI engines for a query. Use to assess how
|
|
5
|
+
your content appears in AI-generated answers.
|
|
6
|
+
argument-hint: "[query]"
|
|
7
|
+
disable-model-invocation: true
|
|
8
|
+
allowed-tools: Read Write Bash Glob Grep
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# /ttm-aeo-check
|
|
12
|
+
|
|
13
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/discipline/aeo-check.md`
|
|
14
|
+
|
|
15
|
+
This command will:
|
|
16
|
+
- Check how AI engines cite your content for the given query
|
|
17
|
+
- Analyze citation quality and positioning accuracy
|
|
18
|
+
- Compare against competitor citations
|
|
19
|
+
- Report AEO (Answer Engine Optimization) score
|
|
20
|
+
- Suggest content improvements for better AI engine visibility
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-affiliate-kit
|
|
3
|
+
description: >
|
|
4
|
+
Generate creative kit for affiliate partners. Use when preparing materials
|
|
5
|
+
for affiliate or partner marketing programs.
|
|
6
|
+
disable-model-invocation: true
|
|
7
|
+
allowed-tools: Read Write Bash Glob Grep
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# /ttm-affiliate-kit
|
|
11
|
+
|
|
12
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/discipline/affiliate-kit.md`
|
|
13
|
+
|
|
14
|
+
This command will:
|
|
15
|
+
- Generate affiliate-ready copy variants (email, social, ad)
|
|
16
|
+
- Create positioning-compliant messaging templates
|
|
17
|
+
- Include approved proof points and claims from BRAND.md
|
|
18
|
+
- Package UTM-tagged links and tracking guidelines
|
|
19
|
+
- Produce a complete creative kit document
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-archive
|
|
3
|
+
description: >
|
|
4
|
+
Archive a completed campaign, finalize state, and update LEARNINGS.md.
|
|
5
|
+
Use when a campaign lifecycle is fully complete.
|
|
6
|
+
argument-hint: "[campaign-slug]"
|
|
7
|
+
disable-model-invocation: true
|
|
8
|
+
allowed-tools: Read Write Bash Glob AskUserQuestion
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# /ttm-archive
|
|
12
|
+
|
|
13
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/utility/archive.md`
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-brand-refresh
|
|
3
|
+
description: >
|
|
4
|
+
Update BRAND.md with new proof points and deprecate expired ones.
|
|
5
|
+
Use when brand evidence or voice guidelines need updating.
|
|
6
|
+
disable-model-invocation: true
|
|
7
|
+
allowed-tools: Read Write Bash Glob Grep
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# /ttm-brand-refresh
|
|
11
|
+
|
|
12
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/reference-mgmt/brand-refresh.md`
|
|
13
|
+
|
|
14
|
+
This command will:
|
|
15
|
+
- Review current BRAND.md proof points for freshness
|
|
16
|
+
- Accept new proof points and evidence from the user
|
|
17
|
+
- Deprecate expired or outdated brand claims
|
|
18
|
+
- Update voice and tone guidelines if needed
|
|
19
|
+
- Validate changes against POSITIONING.md invariant
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-brief
|
|
3
|
+
description: >
|
|
4
|
+
Generate a campaign brief with mandatory outcome metrics, positioning anchor,
|
|
5
|
+
and channel mix. Use when the user says "brief", "plan campaign", or invokes
|
|
6
|
+
/ttm-brief.
|
|
7
|
+
argument-hint: "[campaign-slug]"
|
|
8
|
+
disable-model-invocation: true
|
|
9
|
+
allowed-tools: Read Write Bash Glob Grep AskUserQuestion
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# /ttm-brief
|
|
13
|
+
|
|
14
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/lifecycle/brief.md`
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-competitor-scan
|
|
3
|
+
description: >
|
|
4
|
+
On-demand competitor analysis that updates COMPETITORS.md. Use when you need
|
|
5
|
+
fresh competitive intelligence for campaign planning.
|
|
6
|
+
disable-model-invocation: true
|
|
7
|
+
allowed-tools: Read Write Bash Glob Grep
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# /ttm-competitor-scan
|
|
11
|
+
|
|
12
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/reference-mgmt/competitor-scan.md`
|
|
13
|
+
|
|
14
|
+
This command will:
|
|
15
|
+
- Analyze competitor content, messaging, and positioning
|
|
16
|
+
- Compare against your POSITIONING.md for collision detection
|
|
17
|
+
- Update COMPETITORS.md with fresh intelligence
|
|
18
|
+
- Flag competitive threats and opportunities
|
|
19
|
+
- Inform upcoming campaign briefs with competitive context
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-email-preflight
|
|
3
|
+
description: >
|
|
4
|
+
Deliverability, dark-mode, and spam-trigger scan for email assets.
|
|
5
|
+
Use before sending any email campaign.
|
|
6
|
+
disable-model-invocation: true
|
|
7
|
+
allowed-tools: Read Write Bash Glob Grep
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# /ttm-email-preflight
|
|
11
|
+
|
|
12
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/discipline/email-preflight.md`
|
|
13
|
+
|
|
14
|
+
This command will:
|
|
15
|
+
- Scan email content for spam trigger words and phrases
|
|
16
|
+
- Check dark-mode rendering compatibility
|
|
17
|
+
- Validate deliverability factors (subject line length, preheader, etc.)
|
|
18
|
+
- Verify links, UTM parameters, and unsubscribe compliance
|
|
19
|
+
- Generate a preflight report with pass/fail per check
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-fix
|
|
3
|
+
description: >
|
|
4
|
+
Fix phase: root cause analysis, fix brief, re-produce in isolated context,
|
|
5
|
+
re-verify. Capped at 3 attempts per asset. Use when assets fail review.
|
|
6
|
+
argument-hint: "[campaign-slug]"
|
|
7
|
+
disable-model-invocation: true
|
|
8
|
+
allowed-tools: Read Write Bash Glob Grep Task AskUserQuestion
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# /ttm-fix
|
|
12
|
+
|
|
13
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/lifecycle/fix.md`
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-health
|
|
3
|
+
description: >
|
|
4
|
+
Validate .marketing/ directory integrity, reference file completeness,
|
|
5
|
+
and state consistency. Auto-triggers when potential issues detected.
|
|
6
|
+
disable-model-invocation: false
|
|
7
|
+
allowed-tools: Read Bash Glob Grep
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# /ttm-health
|
|
11
|
+
|
|
12
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/utility/health.md`
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-icp-refresh
|
|
3
|
+
description: >
|
|
4
|
+
Update ICP.md from new customer data including calls, reviews, and feedback.
|
|
5
|
+
Use when ideal customer profile needs updating from fresh data.
|
|
6
|
+
disable-model-invocation: true
|
|
7
|
+
allowed-tools: Read Write Bash Glob Grep
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# /ttm-icp-refresh
|
|
11
|
+
|
|
12
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/reference-mgmt/icp-refresh.md`
|
|
13
|
+
|
|
14
|
+
This command will:
|
|
15
|
+
- Accept new customer data (call transcripts, reviews, feedback)
|
|
16
|
+
- Analyze patterns against current ICP.md profiles
|
|
17
|
+
- Propose ICP updates with evidence citations
|
|
18
|
+
- Validate changes don't conflict with POSITIONING.md
|
|
19
|
+
- Update ICP.md with human approval gate
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-init
|
|
3
|
+
description: >
|
|
4
|
+
Interview-driven onboarding that generates all .marketing/ reference files
|
|
5
|
+
from structured questioning. Use when setting up takeToMarket for a new project.
|
|
6
|
+
disable-model-invocation: true
|
|
7
|
+
allowed-tools: Read Write Bash Glob Grep AskUserQuestion
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# /ttm-init
|
|
11
|
+
|
|
12
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/setup/init.md`
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-keyword-map
|
|
3
|
+
description: >
|
|
4
|
+
Generate keyword cluster map with intent tags. Use for content planning
|
|
5
|
+
and SEO strategy development.
|
|
6
|
+
disable-model-invocation: true
|
|
7
|
+
allowed-tools: Read Write Bash Glob Grep
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# /ttm-keyword-map
|
|
11
|
+
|
|
12
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/discipline/keyword-map.md`
|
|
13
|
+
|
|
14
|
+
This command will:
|
|
15
|
+
- Generate keyword clusters from seed terms and competitor analysis
|
|
16
|
+
- Tag each cluster with search intent (informational, navigational, transactional)
|
|
17
|
+
- Map clusters to campaign topics and content types
|
|
18
|
+
- Prioritize clusters by opportunity and alignment with positioning
|
|
19
|
+
- Output a structured keyword map for campaign planning
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-learn
|
|
3
|
+
description: >
|
|
4
|
+
Learn phase: extract lessons from campaign measurement data, propose reference
|
|
5
|
+
file edits with human approval gates, log root-cause taxonomy entries to
|
|
6
|
+
LEARNINGS.md, and extract cross-campaign patterns.
|
|
7
|
+
argument-hint: "[campaign-slug]"
|
|
8
|
+
disable-model-invocation: true
|
|
9
|
+
allowed-tools: Read Write Bash Glob Grep AskUserQuestion
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# /ttm-learn
|
|
13
|
+
|
|
14
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/lifecycle/learn.md`
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-measure
|
|
3
|
+
description: >
|
|
4
|
+
Measure phase: analyze campaign analytics data against outcome metrics using
|
|
5
|
+
attribution models. Accepts data via MCP tools, CSV/Markdown paste, or guided
|
|
6
|
+
batch questions. Reports outcome first, output second.
|
|
7
|
+
argument-hint: "[campaign-slug]"
|
|
8
|
+
disable-model-invocation: true
|
|
9
|
+
allowed-tools: Read Write Bash Glob Grep
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# /ttm-measure
|
|
13
|
+
|
|
14
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/lifecycle/measure.md`
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-new-campaign
|
|
3
|
+
description: >
|
|
4
|
+
Create a new campaign directory with initialized state and reference file links.
|
|
5
|
+
Use when starting a new marketing campaign.
|
|
6
|
+
argument-hint: "[campaign-name]"
|
|
7
|
+
disable-model-invocation: true
|
|
8
|
+
allowed-tools: Read Write Bash
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# /ttm-new-campaign
|
|
12
|
+
|
|
13
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/setup/new-campaign.md`
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-next
|
|
3
|
+
description: >
|
|
4
|
+
Guide user to the right next command based on current campaign state.
|
|
5
|
+
Use when unsure what to do next in the marketing workflow.
|
|
6
|
+
disable-model-invocation: true
|
|
7
|
+
allowed-tools: Read Bash Glob
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# /ttm-next
|
|
11
|
+
|
|
12
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/utility/next.md`
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-positioning-check
|
|
3
|
+
description: >
|
|
4
|
+
Sample recent assets and report positioning drift percentage, types, and
|
|
5
|
+
bleeding analysis. Auto-triggers when potential positioning drift is detected.
|
|
6
|
+
disable-model-invocation: false
|
|
7
|
+
allowed-tools: Read Bash Glob Grep
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# /ttm-positioning-check
|
|
11
|
+
|
|
12
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/reference-mgmt/positioning-check.md`
|
|
13
|
+
|
|
14
|
+
This command will:
|
|
15
|
+
- Sample recent campaign assets across all active campaigns
|
|
16
|
+
- Compare each asset against POSITIONING.md invariant
|
|
17
|
+
- Calculate positioning drift percentage and categorize drift types
|
|
18
|
+
- Perform bleeding analysis (where positioning leaks into wrong territory)
|
|
19
|
+
- Report findings with 3 options: Correct, Accept+log, Escalate to shift
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-positioning-shift
|
|
3
|
+
description: >
|
|
4
|
+
Controlled positioning change with reasoning, migration plan, deprecation
|
|
5
|
+
schedule, and approval gate. Use when positioning needs intentional evolution.
|
|
6
|
+
disable-model-invocation: true
|
|
7
|
+
allowed-tools: Read Write Bash Glob Grep
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# /ttm-positioning-shift
|
|
11
|
+
|
|
12
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/reference-mgmt/positioning-shift.md`
|
|
13
|
+
|
|
14
|
+
This command will:
|
|
15
|
+
- Require explicit reasoning for the positioning change
|
|
16
|
+
- Generate a migration plan for in-flight campaigns
|
|
17
|
+
- Create a deprecation schedule for old positioning assets
|
|
18
|
+
- Present the full change for human approval (mandatory gate)
|
|
19
|
+
- Update POSITIONING.md only after approval
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-produce
|
|
3
|
+
description: >
|
|
4
|
+
Produce phase: generate content assets in fresh contexts loaded with brief,
|
|
5
|
+
positioning, brand, ICP, and playbook. Use after a brief is approved.
|
|
6
|
+
argument-hint: "[campaign-slug]"
|
|
7
|
+
disable-model-invocation: true
|
|
8
|
+
context: fork
|
|
9
|
+
allowed-tools: Read Write Bash Glob Grep Task
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# /ttm-produce
|
|
13
|
+
|
|
14
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/lifecycle/produce.md`
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-repurpose
|
|
3
|
+
description: >
|
|
4
|
+
Fan out a long-form asset into derivative assets across channels with full
|
|
5
|
+
brief-produce-verify per derivative. Use to maximize content reach.
|
|
6
|
+
argument-hint: "[source-asset]"
|
|
7
|
+
disable-model-invocation: true
|
|
8
|
+
allowed-tools: Read Write Bash Glob Grep Task
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# /ttm-repurpose
|
|
12
|
+
|
|
13
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/discipline/repurpose.md`
|
|
14
|
+
|
|
15
|
+
This command will:
|
|
16
|
+
- Analyze the source asset for repurposable content segments
|
|
17
|
+
- Generate derivative briefs per target channel from CHANNELS.md
|
|
18
|
+
- Produce each derivative in a fresh context (wave-parallel)
|
|
19
|
+
- Verify each derivative through the full quality gate wall
|
|
20
|
+
- Track all derivatives as linked assets in the campaign
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-research
|
|
3
|
+
description: >
|
|
4
|
+
Discover phase: perform market and audience research including SERP analysis,
|
|
5
|
+
competitor content audit, and ambient narrative mapping. Use after creating a campaign.
|
|
6
|
+
argument-hint: "[campaign-slug]"
|
|
7
|
+
disable-model-invocation: true
|
|
8
|
+
allowed-tools: Read Write Bash Glob Grep
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# /ttm-research
|
|
12
|
+
|
|
13
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/lifecycle/research.md`
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-resume
|
|
3
|
+
description: >
|
|
4
|
+
Resume a paused campaign at its last completed phase. Use when returning
|
|
5
|
+
to a campaign after a session break.
|
|
6
|
+
argument-hint: "[campaign-slug]"
|
|
7
|
+
disable-model-invocation: true
|
|
8
|
+
allowed-tools: Read Write Bash Glob
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# /ttm-resume
|
|
12
|
+
|
|
13
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/utility/resume.md`
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-review
|
|
3
|
+
description: >
|
|
4
|
+
Review phase: present assets with structured review checklist for human
|
|
5
|
+
evaluation. Use after verification to get human approval.
|
|
6
|
+
argument-hint: "[campaign-slug]"
|
|
7
|
+
disable-model-invocation: true
|
|
8
|
+
allowed-tools: Read Write Bash Glob Grep AskUserQuestion
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# /ttm-review
|
|
12
|
+
|
|
13
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/lifecycle/review.md`
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-seo-audit
|
|
3
|
+
description: >
|
|
4
|
+
Technical and content SEO audit of a URL or sitemap. Use for on-demand
|
|
5
|
+
SEO analysis of published content.
|
|
6
|
+
argument-hint: "[url-or-sitemap]"
|
|
7
|
+
disable-model-invocation: true
|
|
8
|
+
allowed-tools: Read Write Bash Glob Grep
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# /ttm-seo-audit
|
|
12
|
+
|
|
13
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/discipline/seo-audit.md`
|
|
14
|
+
|
|
15
|
+
This command will:
|
|
16
|
+
- Perform technical SEO analysis (meta tags, structure, schema markup)
|
|
17
|
+
- Audit content SEO (keyword usage, headings, internal linking)
|
|
18
|
+
- Check against SEO playbook best practices
|
|
19
|
+
- Generate an actionable audit report with priorities
|
|
20
|
+
- Suggest fixes aligned with positioning and campaign goals
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-ship
|
|
3
|
+
description: >
|
|
4
|
+
Ship phase: generate launch checklist confirming tracking, UTMs, funnel
|
|
5
|
+
testing, and asset finalization. Use when assets are approved and ready.
|
|
6
|
+
argument-hint: "[campaign-slug]"
|
|
7
|
+
disable-model-invocation: true
|
|
8
|
+
allowed-tools: Read Write Bash Glob Grep AskUserQuestion
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# /ttm-ship
|
|
12
|
+
|
|
13
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/lifecycle/ship.md`
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-state
|
|
3
|
+
description: >
|
|
4
|
+
Display current campaign states, decisions in flight, blockers, and
|
|
5
|
+
experiments. Use to get an overview of all active marketing work.
|
|
6
|
+
argument-hint: "[campaign-slug]"
|
|
7
|
+
disable-model-invocation: true
|
|
8
|
+
allowed-tools: Read Bash Glob
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# /ttm-state
|
|
12
|
+
|
|
13
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/utility/state.md`
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ttm-verify
|
|
3
|
+
description: >
|
|
4
|
+
Verify phase: run all applicable quality gates on every asset with pass/fail
|
|
5
|
+
report and line-level feedback. Use after production to validate assets.
|
|
6
|
+
argument-hint: "[campaign-slug]"
|
|
7
|
+
disable-model-invocation: true
|
|
8
|
+
context: fork
|
|
9
|
+
allowed-tools: Read Write Bash Glob Grep Task AskUserQuestion
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# /ttm-verify
|
|
13
|
+
|
|
14
|
+
Read and follow the workflow at `${CLAUDE_PLUGIN_ROOT}/workflows/lifecycle/verify.md`
|