demiurge-peitho 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.
@@ -0,0 +1,77 @@
1
+ 'use strict';
2
+ // pipeline.js, Law 2 made mechanical: positioning before copy.
3
+ // A model asked to "write a landing page" will happily write one. This refuses
4
+ // to let the assets stage run until the wedge exists and every angle carries a test.
5
+
6
+ // Dunford positioning components. All five, or you do not have positioning,
7
+ // you have adjectives.
8
+ const POSITIONING_FIELDS = ['alternatives', 'uniqueAttributes', 'value', 'customerSegment', 'marketCategory'];
9
+
10
+ function validatePositioning(p) {
11
+ const missing = [];
12
+ for (const f of POSITIONING_FIELDS) {
13
+ const v = p ? p[f] : undefined;
14
+ const empty = v == null || (typeof v === 'string' && !v.trim()) || (Array.isArray(v) && v.length === 0);
15
+ if (empty) missing.push(f);
16
+ }
17
+ return { ok: missing.length === 0, missing };
18
+ }
19
+
20
+ // Law 3: an angle without a cheapest test is a guess wearing a suit.
21
+ function validateAngles(angles) {
22
+ const list = Array.isArray(angles) ? angles : [];
23
+ const untested = list.filter((a) => !a || !a.test || !String(a.test).trim() || !a.metric || !String(a.metric).trim());
24
+ return {
25
+ ok: list.length > 0 && untested.length === 0,
26
+ count: list.length,
27
+ untested: untested.map((a) => (a && a.angle) || '(unnamed angle)'),
28
+ };
29
+ }
30
+
31
+ // The offer must carry a price and the objections that would kill it.
32
+ function validateOffer(o) {
33
+ const missing = [];
34
+ if (!o || o.price == null || String(o.price).trim() === '') missing.push('price');
35
+ if (!o || !Array.isArray(o.objections) || o.objections.length === 0) missing.push('objections');
36
+ return { ok: missing.length === 0, missing };
37
+ }
38
+
39
+ // Mode 0, what to sell (harvested from prompt #22). An idea without a named
40
+ // buyer, a first-ten-customers plan, unit economics and a cheap risk test is a
41
+ // daydream. Every field here is something the prompt demands and a founder skips.
42
+ const IDEA_FIELDS = ['pitch', 'buyer', 'firstTen', 'cost', 'unitEconomics', 'risk', 'riskTest'];
43
+
44
+ function validateIdea(idea) {
45
+ const missing = [];
46
+ for (const f of IDEA_FIELDS) {
47
+ const v = idea ? idea[f] : undefined;
48
+ const empty = v == null || (typeof v === 'string' && !v.trim()) || (Array.isArray(v) && v.length === 0);
49
+ if (empty) missing.push(f);
50
+ }
51
+ return { ok: missing.length === 0, missing, name: (idea && idea.name) || '(unnamed idea)' };
52
+ }
53
+
54
+ // Screen a list of ideas: the ones that survive are the only ones worth positioning.
55
+ function screenIdeas(ideas) {
56
+ const list = Array.isArray(ideas) ? ideas : [];
57
+ const results = list.map(validateIdea);
58
+ return {
59
+ ok: list.length > 0 && results.every((r) => r.ok),
60
+ count: list.length,
61
+ incomplete: results.filter((r) => !r.ok).map((r) => ({ name: r.name, missing: r.missing })),
62
+ };
63
+ }
64
+
65
+ // The gate on producing any asset.
66
+ function canProduceAssets(state = {}) {
67
+ const pos = validatePositioning(state.positioning);
68
+ const angles = validateAngles(state.angles);
69
+ const offer = validateOffer(state.offer);
70
+ const blockers = [];
71
+ if (!pos.ok) blockers.push(`positioning incomplete: missing ${pos.missing.join(', ')}`);
72
+ if (!angles.ok) blockers.push(angles.count === 0 ? 'no angles named' : `angles without a cheapest test: ${angles.untested.join(', ')}`);
73
+ if (!offer.ok) blockers.push(`offer incomplete: missing ${offer.missing.join(', ')}`);
74
+ return { allowed: blockers.length === 0, blockers, positioning: pos, angles, offer };
75
+ }
76
+
77
+ module.exports = { validatePositioning, validateAngles, validateOffer, canProduceAssets, validateIdea, screenIdeas, POSITIONING_FIELDS, IDEA_FIELDS };
@@ -0,0 +1,74 @@
1
+ 'use strict';
2
+ // siblings.js: Demiurge sibling detection (PEI-10).
3
+ // PEITHO writes the words and never grades its own pitch. The ship-gate needs
4
+ // ZOILUS; the prose needs VERITAS; a visual surface needs CALLIOPE; any numeric
5
+ // claim needs PYRRHO. Those four are the pairs worth recommending.
6
+ const fs = require('fs');
7
+ const path = require('path');
8
+ const os = require('os');
9
+
10
+ const SIBLINGS = {
11
+ zoilus: 'judges the copy as an artifact (PEITHO never grades its own pitch)',
12
+ veritas: 'anti-slop pass on the prose',
13
+ calliope: 'designs the frame (PEITHO writes the words, in that order)',
14
+ pyrrho: 'owns what the numbers say (no conversion claim ships without it)',
15
+ athena: 'decides whether to enter the market at all (PEITHO executes, it does not decide)',
16
+ chiron: 'turns a repeated rejection into a permanent rule',
17
+ horkos: 'proves the campaign actually shipped',
18
+ moneta: 'budgets the loop',
19
+ hypnos: 'memory consolidation',
20
+ maat: 'the dashboard',
21
+ };
22
+
23
+ // The ship-gate depends on these. Missing any one degrades the gate honestly.
24
+ const NATURAL_PAIRS = ['zoilus', 'veritas', 'calliope', 'pyrrho'];
25
+
26
+ // Which sibling owns a stage of the ship-gate, when installed.
27
+ const GATE_ROUTE = {
28
+ 'copy-critique': 'zoilus',
29
+ 'anti-slop': 'veritas',
30
+ visual: 'calliope',
31
+ 'numeric-claim': 'pyrrho',
32
+ };
33
+
34
+ function defaultSearchPaths() {
35
+ return [
36
+ path.join(os.homedir(), '.claude', 'skills'),
37
+ path.join(__dirname, '..', '..'),
38
+ ];
39
+ }
40
+
41
+ function detect(searchPaths) {
42
+ const paths = searchPaths || defaultSearchPaths();
43
+ const found = new Set();
44
+ for (const base of paths) {
45
+ if (!base || !fs.existsSync(base)) continue;
46
+ let entries = [];
47
+ try { entries = fs.readdirSync(base); } catch { continue; }
48
+ for (const name of entries) {
49
+ const key = name.toLowerCase();
50
+ if (SIBLINGS[key] && key !== 'peitho') {
51
+ try { if (fs.statSync(path.join(base, name)).isDirectory()) found.add(key); } catch { /* skip */ }
52
+ }
53
+ }
54
+ }
55
+ const installed = Object.keys(SIBLINGS).filter((k) => found.has(k));
56
+ const missing = Object.keys(SIBLINGS).filter((k) => !found.has(k));
57
+ return { installed, missing };
58
+ }
59
+
60
+ function recommend(installed) {
61
+ const have = new Set(installed || detect().installed);
62
+ return NATURAL_PAIRS.filter((k) => !have.has(k)).map((k) => ({ name: k, why: SIBLINGS[k] }));
63
+ }
64
+
65
+ // Route a ship-gate stage to its owner. Missing sibling degrades honestly: the
66
+ // stage is skipped and named, never silently passed.
67
+ function routeGate(stage, installed) {
68
+ const have = new Set(installed || detect().installed);
69
+ const god = GATE_ROUTE[stage];
70
+ if (!god) return 'peitho-native';
71
+ return have.has(god) ? god : `SKIPPED (${god} not installed)`;
72
+ }
73
+
74
+ module.exports = { detect, recommend, routeGate, SIBLINGS, NATURAL_PAIRS, GATE_ROUTE };
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "demiurge-peitho",
3
+ "version": "0.1.0",
4
+ "description": "Your marketing copy sounds like everyone else's. PEITHO won't let it.",
5
+ "bin": { "peitho": "bin/peitho.js" },
6
+ "scripts": { "test": "node benchmarks/run.js" },
7
+ "keywords": ["marketing", "positioning", "copywriting", "go-to-market", "launch", "claude", "agent-skill", "demiurge"],
8
+ "author": "Eragon Lee",
9
+ "license": "MIT",
10
+ "repository": { "type": "git", "url": "https://github.com/eragonlonelyboy-lab/peitho" },
11
+ "files": ["bin", "lib", "references", "docs", "SKILL.md", "CLAUDE.md", "LICENSE", "README.md"]
12
+ }
@@ -0,0 +1,71 @@
1
+ # Ads (Ad Copy Variations to Test)
2
+
3
+ ## Role framing
4
+ A performance marketer and direct-response copywriter who has spent real budget and knows that the winning ad usually comes from testing angles, not tweaking words. Writes native, scroll-native copy for each platform and designs tests that isolate the angle.
5
+
6
+ ## Intake
7
+
8
+ CONTEXT inputs required:
9
+ - Product or offer: [PRODUCT OR OFFER]
10
+ - Audience: [WHO IT TARGETS]
11
+ - Platform: [PLATFORM, e.g. Meta feed, Google Search, TikTok, LinkedIn]
12
+ - Offer and CTA: [WHAT THEY GET AND THE ACTION]
13
+ - Proof I have: [RESULTS, NUMBERS, TESTIMONIALS, or 'none']
14
+
15
+ Clarifying-question rule (verbatim in substance):
16
+ "BEFORE writing, ask me up to 3 clarifying questions only if these are missing: the single most desired outcome my customer wants, the main objection that stops the click, and the offer or CTA (free trial, purchase, lead form). Otherwise proceed."
17
+
18
+ The three permitted questions, only when missing:
19
+ 1. The single most desired outcome the customer wants.
20
+ 2. The main objection that stops the click.
21
+ 3. The offer or CTA (free trial, purchase, lead form).
22
+
23
+ ## Output structure
24
+
25
+ Write 8 ad variations, each using a DIFFERENT angle. Numbered 1-8. For EACH variation, provide these four labeled parts:
26
+
27
+ - The angle label.
28
+ - Primary text (body copy sized to the platform).
29
+ - A punchy headline.
30
+ - The one CTA button or line.
31
+
32
+ Then a "Test first" section containing:
33
+ - The 2 variations recommended to test first.
34
+ - Why those angles are the highest-signal bets.
35
+ - The exact metric that would prove an angle is working.
36
+
37
+ ## Named angles
38
+
39
+ All eight, one per variation:
40
+
41
+ 1. Pain-point callout
42
+ 2. Desired-outcome
43
+ 3. Curiosity gap
44
+ 4. Social proof
45
+ 5. Urgency or scarcity (only if genuinely true)
46
+ 6. Pattern interrupt
47
+ 7. Us-vs-the-old-way
48
+ 8. A direct question that names the audience
49
+
50
+ ## Constraints
51
+
52
+ - Lead with the hook in the first line. Tight, human, no fluff.
53
+ - Match the length and native style of the given [PLATFORM].
54
+ - Only use urgency or claims that are actually true. No fabricated scarcity, no fake testimonials.
55
+ - No hype words like unleash or game-changer.
56
+ - No em dashes.
57
+ - Output format: numbered 1-8 with the four parts labeled, then the "Test first" section with the two picks, the reasoning, and the metric.
58
+
59
+ ## Quality bar
60
+
61
+ The 8 angles must be genuinely distinct, not the same message reworded. If two feel similar, replace one.
62
+
63
+ ## Tail deliverables
64
+
65
+ A "Test first" section that names which two variations to test first, explains why those angles are the highest-signal bets, and names the exact metric that would prove an angle is working. Metric-mapping examples given in the source:
66
+ - Click-through rate for hook strength.
67
+ - Cost per lead for offer strength.
68
+ - Hook-hold rate for video.
69
+
70
+ ## Source
71
+ Harvested from prompt #76 ("Ad Copy Variations to Test", Business & Marketing, Any LLM) of the 145-library.
@@ -0,0 +1,52 @@
1
+ # Business Ideas Built for Me
2
+
3
+ Persona: a startup advisor and angel investor who has evaluated thousands of businesses and personally launched several from zero. Blunt, numbers-driven, allergic to generic advice.
4
+
5
+ ## Intake
6
+
7
+ Required inputs (context about me):
8
+ - Skills and experience: [YOUR SKILLS]
9
+ - Interests and topics I care about: [YOUR INTERESTS]
10
+ - Time available per week: [HOURS PER WEEK]
11
+ - Money I can invest to start: [STARTUP BUDGET]
12
+ - Income goal and timeline: [TARGET INCOME AND BY WHEN]
13
+ - Location or market I can serve: [LOCATION OR MARKET]
14
+
15
+ Clarifying-question rule: BEFORE answering, if any of the above is blank or vague, ask up to 3 sharp clarifying questions first, then wait for my reply. If it is all clear, proceed.
16
+
17
+ ## Output structure
18
+
19
+ Generate 7 business ideas I could realistically start given my exact situation.
20
+
21
+ For each idea, use this exact format:
22
+ 1. Name and one-line pitch
23
+ 2. Who pays and why (the specific buyer and the pain it solves)
24
+ 3. First 10 customers: exactly where I would find them and what I would say
25
+ 4. Realistic startup cost and time to first dollar
26
+ 5. Business model and rough unit economics (price, cost, margin)
27
+ 6. The single biggest honest risk, and one way to test it cheaply this month
28
+
29
+ Then: rank the top 3 by fit with my skills, budget, and goal, and explain in 2 to 3 sentences each why they win for ME specifically.
30
+
31
+ ## Named taxonomies
32
+
33
+ None named. The six-part per-idea format above is the fixed structure.
34
+
35
+ ## Constraints
36
+
37
+ - Each idea must be specific to me, not a template. No "start a blog," "become a coach," or "open a store" without a concrete angle.
38
+ - Fit the ideas to my real time and budget. Do not suggest something that needs 40 hours a week if I have 8.
39
+ - Favor ideas with a fast path to first revenue over ideas that need a year of buildout.
40
+ - Be direct. If an idea is a bad fit for me, say so.
41
+
42
+ ## Quality bar
43
+
44
+ Be direct. If an idea is a bad fit for me, say so. Every idea must be specific to my situation rather than a template.
45
+
46
+ ## Tail deliverables
47
+
48
+ - Rank the top 3 by fit with my skills, budget, and goal, with 2 to 3 sentences each on why they win for me specifically.
49
+
50
+ ## Source
51
+
52
+ Harvested from prompt #22 of the 145-library, "Business Ideas Built for Me" (Creativity & Ideas, Any LLM).
@@ -0,0 +1,52 @@
1
+ # Cold Outreach Message
2
+
3
+ Persona: an outbound strategist who has booked thousands of meetings with cold messages that read like they were written by hand to one person. Relevance beats flattery. The fastest path to a reply is making the ask small and the value obviously about them.
4
+
5
+ ## Intake
6
+
7
+ Required inputs:
8
+ - Recipient: [PERSON OR ROLE] at [COMPANY]
9
+ - What I know about them: [SPECIFIC OBSERVATION, RECENT POST, LAUNCH, OR ROLE DETAIL]
10
+ - My goal: [WHAT I WANT, e.g. a 15-minute call, a reply, a referral]
11
+ - The value I create for people like them: [CONCRETE OUTCOME OR PROOF]
12
+ - Channel: [EMAIL / LINKEDIN / X DM]
13
+
14
+ Clarifying-question rule: BEFORE writing, if there is not enough to personalize, ask 1 to 3 quick questions: something specific and recent about the recipient or their company, the one concrete result I can help them get, and the channel (email, LinkedIn DM, X DM). Otherwise proceed.
15
+
16
+ ## Output structure
17
+
18
+ 1. Version 1, with the opening angle in parentheses. Under it, a one-line note on the type of recipient it fits best.
19
+ 2. Version 2, same format.
20
+ 3. Version 3, same format.
21
+ 4. Follow-up: one short message to send if they do not reply within 4 days.
22
+
23
+ Each of the three versions opens with a different, genuine angle:
24
+ - A specific observation about their work.
25
+ - A relevant result I helped someone similar get.
26
+ - A sharp question tied to their situation.
27
+
28
+ ## Named taxonomies
29
+
30
+ The three opener angles: specific observation about their work, relevant result for someone similar, sharp question tied to their situation.
31
+
32
+ ## Constraints
33
+
34
+ - Under 90 words each.
35
+ - The first line must prove I actually looked at them, not a mail merge.
36
+ - Make the value about THEM, not my background. Cut every sentence that starts with 'I' where possible.
37
+ - End with one low-friction ask (a yes/no question or a tiny next step), never 'let me know if you'd like to hop on a call'.
38
+ - No fake flattery, no 'I hope this finds you well', no hype, no em dashes.
39
+ - The follow-up must add a new angle or proof point, not just 'bumping this up'.
40
+
41
+ ## Quality bar
42
+
43
+ If a message could be sent to 500 people unchanged, it fails. Make the opener impossible to copy-paste to anyone else.
44
+
45
+ ## Tail deliverables
46
+
47
+ - A one-line fit note under each version naming the type of recipient it suits best.
48
+ - The 4-day follow-up carrying a new angle or proof point.
49
+
50
+ ## Source
51
+
52
+ Harvested from prompt #11 of the 145-library, "Cold Message That Gets Replies" (Business & Marketing, Any LLM).
@@ -0,0 +1,54 @@
1
+ # 30-Day Content Calendar
2
+
3
+ Persona: a content strategist who has grown accounts from zero to large and profitable. Calendars are built around a deliberate audience journey (awareness, trust, conversion), not random posting. Knows which formats drive reach versus which drive sales.
4
+
5
+ ## Intake
6
+
7
+ Required inputs:
8
+ - Platform: [PLATFORM]
9
+ - Niche: [NICHE]
10
+ - Audience: [WHO IT IS FOR]
11
+ - My offer or goal: [WHAT I SELL OR THE ACTION I WANT]
12
+ - My content pillars, if I have them: [3-5 THEMES, or write 'suggest some']
13
+
14
+ Clarifying-question rule: BEFORE building, ask up to 3 clarifying questions only if these are missing: the one action the content should ultimately drive (follow, email signup, purchase), the audience's biggest pain and biggest desire, and any offer or launch happening this month. Otherwise proceed.
15
+
16
+ ## Output structure
17
+
18
+ 1. Pillar proposal: propose 3 to 5 content pillars that map to what the audience cares about and where the offer fits. Wait one line for the user to react, or if they said proceed, use them.
19
+ 2. Build a 30-day calendar structured across the journey, woven so it never feels salesy.
20
+ 3. Keep it 80 percent pure value and 20 percent promotional.
21
+ 4. For each of the 30 days provide: Day number, Journey stage, Content format, Hook or working title, Core idea in one line, and Call to action.
22
+ 5. Render as a clean markdown table with columns: Day, Stage, Format, Hook, Core Idea, CTA.
23
+ 6. Below the table, list the 5 posts most likely to drive the biggest results and why.
24
+
25
+ ## Named taxonomies
26
+
27
+ Journey stages across the month:
28
+ - Week 1, awareness: reach and relatability.
29
+ - Week 2, trust: authority and proof.
30
+ - Week 3, desire: transformation and stories.
31
+ - Week 4, conversion: offer, objections, urgency.
32
+
33
+ Content formats to vary across: how-to, story, hot take, list, behind-the-scenes, proof, myth-buster, question, carousel, short video, and similar.
34
+
35
+ Value ratio: 80 percent pure value, 20 percent promotional.
36
+
37
+ ## Constraints
38
+
39
+ - Vary formats so no two adjacent days feel the same.
40
+ - Hooks must be specific and scroll-stopping, not topic labels.
41
+ - Match the tone and native format of [PLATFORM].
42
+ - No hype words, no em dashes.
43
+
44
+ ## Quality bar
45
+
46
+ Every hook must make the user want to open the post. If one reads like a placeholder, replace it.
47
+
48
+ ## Tail deliverables
49
+
50
+ - The 5 posts most likely to drive the biggest results, each with the reason why, listed below the table.
51
+
52
+ ## Source
53
+
54
+ Harvested from prompt #13 of the 145-library, "30 Days of Content in One Shot" (Business & Marketing, Any LLM).
@@ -0,0 +1,49 @@
1
+ # Turn Audio Into a Content Kit
2
+
3
+ Persona: a content repurposing specialist who turns one long recording into a week of assets. Finds the most quotable, clippable, and shareable moments in a transcript and packages them for each format without inventing anything.
4
+
5
+ ## Intake
6
+
7
+ Required inputs:
8
+ - Source type: [PODCAST / VIDEO / TALK / INTERVIEW]
9
+ - Audience: [WHO LISTENS OR WATCHES]
10
+ - My goal for the repurposed content: [e.g. grow the show, drive newsletter signups, sell an offer]
11
+ - My voice or brand tone: [e.g. warm and plain-spoken, sharp and contrarian]
12
+ - TRANSCRIPT: [PASTE TRANSCRIPT]
13
+
14
+ Clarifying-question rule: the source prompt sets no clarifying-question step. Instead it sets a thinness rule: if a section is thin, say so rather than filling it.
15
+
16
+ ## Output structure
17
+
18
+ Six labeled sections, in order:
19
+
20
+ 1. Title options: 3 compelling episode titles, plus a 3-sentence description that makes someone want to press play.
21
+ 2. Timestamped show notes: the key moments and topic shifts in order, each with its timestamp (use the transcript's timestamps if present, otherwise label 'approx') and a one-line summary.
22
+ 3. Quotable lines: the 5 most shareable, punchy lines pulled verbatim from the transcript, with the timestamp for each.
23
+ 4. Short-form clips: 3 clip ideas that would perform on Reels, Shorts, or TikTok. For each give the start and end reference, why it works, and the exact hook line to open the clip.
24
+ 5. Newsletter blurb: one short, warm paragraph summarizing the episode and pointing readers to it.
25
+ 6. Social captions: 2 platform-ready captions (one for X, one for LinkedIn or Instagram) drawn from the episode's best idea.
26
+
27
+ ## Named taxonomies
28
+
29
+ The six sections: title options plus description, timestamped show notes, 5 verbatim quotable lines with timestamps, 3 clip ideas with start and end references plus hook line, newsletter blurb, 2 platform captions.
30
+
31
+ Timestamp convention: use the transcript's timestamps if present, otherwise label 'approx'.
32
+
33
+ ## Constraints
34
+
35
+ - Use only what is actually in the transcript. Never invent quotes, stats, or claims. If a section is thin, say so rather than filling it.
36
+ - Preserve the speaker's voice and meaning. Light cleanup of filler words is fine; do not change the substance.
37
+ - No hype words, no em dashes.
38
+
39
+ ## Quality bar
40
+
41
+ Every quote must be findable in the transcript word for word. Every clip hook must be strong enough to stop a scroll on its own.
42
+
43
+ ## Tail deliverables
44
+
45
+ None beyond the six labeled sections. Thin sections are flagged as thin rather than padded.
46
+
47
+ ## Source
48
+
49
+ Harvested from prompt #51 of the 145-library, "Turn Audio Into a Content Kit" (Business & Marketing, Any LLM).
@@ -0,0 +1,63 @@
1
+ # Hooks (10 Scroll-Stopping Hooks)
2
+
3
+ ## Role framing
4
+ A world-class direct-response copywriter and short-form content strategist who has written hooks that stopped millions of thumbs. Understands curiosity gaps, pattern interrupts, specificity, and the exact difference between a hook that earns the next three seconds and one that gets scrolled past.
5
+
6
+ ## Intake
7
+
8
+ CONTEXT inputs required:
9
+ - Topic: [YOUR TOPIC]
10
+ - Audience: [WHO IT IS FOR]
11
+ - Platform: [WHERE IT WILL BE POSTED, e.g. Instagram Reel, X post, cold email, YouTube intro]
12
+ - Desired outcome after the hook: [KEEP WATCHING / KEEP READING / CLICK]
13
+
14
+ Clarifying-question rule (verbatim in substance):
15
+ "BEFORE writing, if any of the following is unclear, ask me up to 3 quick clarifying questions (platform, the single transformation or payoff the content delivers, and my audience's most painful frustration). If I gave you enough, skip the questions and proceed."
16
+
17
+ So: at most 3 questions, and only when unclear. The three permitted question topics are exactly:
18
+ 1. Platform.
19
+ 2. The single transformation or payoff the content delivers.
20
+ 3. The audience's most painful frustration.
21
+
22
+ ## Output structure
23
+
24
+ 1. Ten hooks, numbered, each labeled with its angle in parentheses. One different psychological angle per hook, drawn from the named set below.
25
+ 2. After the list: rank the top 3 from strongest to weakest, explaining in one sentence each why it works and who it will grab.
26
+ 3. Flag any hook that risks overpromising, so the user can tighten it.
27
+
28
+ ## Named angles
29
+
30
+ All ten, one per hook:
31
+
32
+ 1. Bold specific claim
33
+ 2. Surprising statistic
34
+ 3. Contrarian take
35
+ 4. Callout of a costly mistake
36
+ 5. Curiosity gap that withholds the payoff
37
+ 6. Before-and-after transformation
38
+ 7. Us-vs-them tribal line
39
+ 8. A confession
40
+ 9. A direct question that names their exact pain
41
+ 10. A "if you do X, this is for you" callout
42
+
43
+ ## Constraints
44
+
45
+ - One or two short lines each, written the way a real person talks out loud.
46
+ - Front-load the most interesting word. No wind-up, no "In this video".
47
+ - Be specific: use numbers, timeframes, and concrete nouns instead of vague adjectives.
48
+ - No clickbait that the content cannot deliver.
49
+ - No hype words like unleash, game-changer, or revolutionary.
50
+ - No em dashes.
51
+ - Each hook must use a different psychological angle (no repeats across the ten).
52
+
53
+ ## Quality bar
54
+
55
+ Every hook must be usable as-is with zero editing. If a hook feels generic, replace it before showing it to the user.
56
+
57
+ ## Tail deliverables
58
+
59
+ - Top-3 ranking, strongest to weakest, each with a one-sentence why it works and who it will grab.
60
+ - An explicit flag on any hook that risks overpromising, so it can be tightened.
61
+
62
+ ## Source
63
+ Harvested from prompt #4 ("10 Scroll-Stopping Hooks", Business & Marketing, Any LLM) of the 145-library.
@@ -0,0 +1,60 @@
1
+ # Landing Page (High-Converting Landing Page)
2
+
3
+ ## Role framing
4
+ A senior conversion copywriter who has written landing pages responsible for millions in revenue. Writes in the voice of the customer, leads with outcomes, and removes friction and doubt at every scroll depth.
5
+
6
+ ## Intake
7
+
8
+ CONTEXT inputs required:
9
+ - Product or offer: [PRODUCT OR OFFER]
10
+ - Target customer: [WHO IT IS FOR, be specific]
11
+ - Primary desired action: [e.g. start free trial, book a call, buy now]
12
+ - Price or model: [PRICE OR PRICING MODEL]
13
+ - Proof I have: [TESTIMONIALS, RESULTS, NUMBERS, CREDENTIALS, or write 'none yet']
14
+
15
+ Clarifying-question rule (verbatim in substance):
16
+ "BEFORE writing, ask me up to 3 clarifying questions only if these are missing: the single most desired outcome my customer wants, the main objection or fear that stops them from buying, and the specific mechanism that makes my offer work. If I already gave you enough, proceed."
17
+
18
+ The three permitted questions, only when missing:
19
+ 1. The single most desired outcome the customer wants.
20
+ 2. The main objection or fear that stops them from buying.
21
+ 3. The specific mechanism that makes the offer work.
22
+
23
+ ## Output structure
24
+
25
+ Write the full landing page copy, clearly labeling each section. All eleven sections, in order:
26
+
27
+ 1. Hero headline: names the specific outcome the customer wants, in their words.
28
+ 2. Subheadline: adds the mechanism (how it works) and removes the biggest doubt.
29
+ 3. Primary call-to-action button text plus one line of supporting microcopy.
30
+ 4. The problem section: agitate the current painful reality in 2-3 short lines that make them feel understood.
31
+ 5. The solution section: introduce the offer as the bridge from pain to outcome.
32
+ 6. Benefits: 5 bullets framed as results the customer gets, not features the builder made.
33
+ 7. How it works: 3 simple steps that make the path feel easy and obvious.
34
+ 8. Objections: the 3 biggest objections with a one-line answer to each.
35
+ 9. Social proof block: placeholders labeled for the exact proof to drop in.
36
+ 10. Risk reversal: a guarantee or safety line that lowers the perceived risk.
37
+ 11. Closing CTA: restate the outcome and repeat the primary action.
38
+
39
+ Output format: the labeled copy above, ready to paste into a page builder, then the tail deliverable below.
40
+
41
+ ## Constraints
42
+
43
+ - Confident, warm, human. Short sentences. Grade 6 reading level.
44
+ - Speak to one person as "you".
45
+ - No corporate jargon.
46
+ - No hype words like revolutionary, game-changing, or unleash.
47
+ - No em dashes.
48
+ - Every claim ties to a benefit the customer can feel.
49
+ - Section-level counts are binding: 2-3 short lines in the problem section, exactly 5 benefit bullets, exactly 3 how-it-works steps, exactly 3 objections each answered in one line, one line of CTA microcopy.
50
+
51
+ ## Quality bar
52
+
53
+ If any line could appear on a competitor's page unchanged, rewrite it to be specific to this offer.
54
+
55
+ ## Tail deliverables
56
+
57
+ After the copy, list the 3 sections most likely to make or break conversion, and give one specific way to strengthen each.
58
+
59
+ ## Source
60
+ Harvested from prompt #10 ("High-Converting Landing Page", Business & Marketing, Any LLM) of the 145-library.
@@ -0,0 +1,58 @@
1
+ # Long-Form Script Built for Retention
2
+
3
+ Persona: a YouTube scriptwriter and retention strategist who has written scripts with high average-view-duration for creators in the education and how-to space. Understands open loops, the 30-second re-hook cadence, pattern interrupts, and writing for the ear so it sounds like a real person talking, not a narrator reading.
4
+
5
+ ## Intake
6
+
7
+ Required inputs:
8
+ - Topic: [TOPIC]
9
+ - Audience: [WHO THE CHANNEL HELPS]
10
+ - The payoff the viewer earns by watching to the end: [BIG PROMISE]
11
+ - Target length: [MINUTES]
12
+ - Tone: [e.g. energetic and plain-spoken, calm and authoritative]
13
+ - Call to action at the end: [e.g. subscribe, watch next video, grab a free resource]
14
+
15
+ Clarifying-question rule: BEFORE writing, ask up to 3 clarifying questions only if these are missing: the exact promise or transformation the viewer gets by the end, the target length (minutes), and the audience's current belief or frustration about the topic. Otherwise proceed.
16
+
17
+ ## Output structure
18
+
19
+ Write the full script, structured for retention, in labeled sections:
20
+
21
+ 1. HOOK (first 5 seconds): open a loop or make a bold, specific promise that creates a question the viewer needs answered.
22
+ 2. RE-HOOK (next 10 to 15 seconds): quickly stack the reasons to keep watching and tease the payoff, without a long intro.
23
+ 3. SEGMENT 1..N (body): 3 to 5 clear segments. Each segment delivers one idea and ends with a small open loop or forward-reference that pulls the viewer into the next.
24
+ 4. PATTERN INTERRUPT near the midpoint: a story, a surprising example, a change of pace, or a direct callout to reset attention.
25
+ 5. PAYOFF: deliver on the opening promise fully and satisfyingly.
26
+ 6. CTA: natural and earned, tied to the value just delivered.
27
+
28
+ Spoken script sits under each label, with visual cues in brackets.
29
+
30
+ ## Named taxonomies
31
+
32
+ Retention technique set:
33
+ - The 5-second hook.
34
+ - The re-hook in the next 10 to 15 seconds.
35
+ - 3 to 5 body segments, each closing on an open loop.
36
+ - The pattern interrupt near the midpoint.
37
+ - The payoff that fully delivers the opening promise.
38
+ - The earned CTA, tied to the value just delivered.
39
+
40
+ Cue convention: mark [B-ROLL / VISUAL] and [ON-SCREEN TEXT] in brackets where they help, but keep the spoken words as the spine.
41
+
42
+ ## Constraints
43
+
44
+ - Write spoken dialogue only, the way a real person talks. Short sentences. Contractions. No stiff narration.
45
+ - Mark [B-ROLL / VISUAL] and [ON-SCREEN TEXT] cues in brackets where they help, but keep the spoken words as the spine.
46
+ - No filler, no 'welcome back to the channel', no throat-clearing, no em dashes, no hype words.
47
+
48
+ ## Quality bar
49
+
50
+ Read every line as if spoken aloud. If a sentence sounds written rather than said, rewrite it. No segment may end at a natural stopping point without a reason to keep watching.
51
+
52
+ ## Tail deliverables
53
+
54
+ None beyond the labeled script itself: HOOK, RE-HOOK, SEGMENT 1..N, PATTERN INTERRUPT, PAYOFF, CTA, with bracketed visual cues in place.
55
+
56
+ ## Source
57
+
58
+ Harvested from prompt #38 of the 145-library, "YouTube Script Built for Retention" (Business & Marketing, Any LLM).