@allthingsclaude/blueprints 0.3.4 → 0.4.1
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/README.md +16 -6
- package/content/agents/brand.md +556 -0
- package/content/agents/copy.md +298 -0
- package/content/agents/email.md +526 -0
- package/content/agents/og.md +487 -0
- package/content/agents/pitch.md +433 -0
- package/content/commands/brand.md +134 -0
- package/content/commands/copy.md +131 -0
- package/content/commands/email.md +115 -0
- package/content/commands/og.md +81 -0
- package/content/commands/pitch.md +108 -0
- package/dist/installer.d.ts.map +1 -1
- package/dist/installer.js +1 -0
- package/dist/installer.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Write on-brand marketing copy for social media, ads, emails, and landing pages
|
|
3
|
+
argument-hint: [copy brief] or leave empty for guided questionnaire
|
|
4
|
+
author: "@markoradak"
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Copy — On-Brand Marketing Copywriting
|
|
8
|
+
|
|
9
|
+
I'll write on-brand marketing copy — social captions, ad copy, email subject lines, landing page headlines, product descriptions, and more — all grounded in your product's actual voice.
|
|
10
|
+
|
|
11
|
+
## Current Context
|
|
12
|
+
|
|
13
|
+
**Working Directory**: !`pwd`
|
|
14
|
+
|
|
15
|
+
**Existing Brand Brief**:
|
|
16
|
+
!`cat design/brand-brief.md 2>/dev/null | head -40 || echo "No brand brief yet"`
|
|
17
|
+
|
|
18
|
+
**Project Identity**:
|
|
19
|
+
!`cat README.md 2>/dev/null | head -30 || echo "No README found"`
|
|
20
|
+
|
|
21
|
+
**Package Description**:
|
|
22
|
+
!`node -e 'var p=require("./package.json");console.log("Name:",p.name||"n/a");console.log("Description:",p.description||"n/a");console.log("Homepage:",p.homepage||"n/a")' 2>/dev/null || echo "No package.json found"`
|
|
23
|
+
|
|
24
|
+
**Existing Copy & Messaging**:
|
|
25
|
+
!`grep -rh "content=\|<title>\|<meta name=\"description" src/app/layout.tsx src/app/page.tsx index.html 2>/dev/null | head -10 || echo "No meta/title tags detected"`
|
|
26
|
+
|
|
27
|
+
**Landing Page Copy**:
|
|
28
|
+
!`grep -rh "<h1\|<h2\|<p class.*hero\|<p class.*subtitle\|<p class.*tagline" src/app/page.tsx src/components/Hero.tsx src/components/Landing.tsx index.html 2>/dev/null | head -15 || echo "No landing page copy detected"`
|
|
29
|
+
|
|
30
|
+
**Design Directory**:
|
|
31
|
+
!`ls design/ 2>/dev/null && echo "---existing campaigns---" && ls -d design/*/ 2>/dev/null || echo "No existing design directory"`
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## Copy Brief
|
|
36
|
+
|
|
37
|
+
$ARGUMENTS
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## Instructions
|
|
42
|
+
|
|
43
|
+
### If the user provided a detailed brief above:
|
|
44
|
+
|
|
45
|
+
Parse the brief for: content type, platform(s), campaign goal, tone/voice direction, and variant count. Infer reasonable defaults for anything missing based on the project context. Summarize your understanding in 2-3 sentences, then launch the copy agent.
|
|
46
|
+
|
|
47
|
+
### If the brief is empty or vague:
|
|
48
|
+
|
|
49
|
+
Conduct a focused discovery questionnaire. Ask questions **one at a time**, adapting based on previous answers. Don't dump all questions at once — this should feel like a conversation.
|
|
50
|
+
|
|
51
|
+
#### First, determine the repo context:
|
|
52
|
+
|
|
53
|
+
Check the "Existing Brand Brief", "Project Identity", "Existing Copy & Messaging", and "Landing Page Copy" sections above. If meaningful product copy was detected (README with clear positioning, meta descriptions, hero text, taglines, or an existing `design/brand-brief.md` with a "Voice & Tone" section), this is a **brand-rich repo** — the codebase contains enough to derive voice, tone, and messaging automatically.
|
|
54
|
+
|
|
55
|
+
#### Always ask (every context):
|
|
56
|
+
|
|
57
|
+
**Q1: What are we writing?**
|
|
58
|
+
- Social media captions (Instagram, Twitter/X, LinkedIn, etc.)
|
|
59
|
+
- Ad copy (display, retargeting, search)
|
|
60
|
+
- Email subject lines + preview text
|
|
61
|
+
- Landing page headlines + subheads
|
|
62
|
+
- Product descriptions
|
|
63
|
+
- Tweet thread
|
|
64
|
+
- LinkedIn post / article intro
|
|
65
|
+
- Blog intro / hook paragraph
|
|
66
|
+
- Custom (describe)
|
|
67
|
+
|
|
68
|
+
**Q2: For which platform(s)?**
|
|
69
|
+
Offer platform-specific character limits — these will be auto-applied:
|
|
70
|
+
| Platform | Format | Character Limit |
|
|
71
|
+
|----------|--------|-----------------|
|
|
72
|
+
| Twitter/X | Post | 280 |
|
|
73
|
+
| Twitter/X | Thread (per tweet) | 280 |
|
|
74
|
+
| Instagram | Caption | 2,200 |
|
|
75
|
+
| Instagram | Bio | 150 |
|
|
76
|
+
| LinkedIn | Post | 3,000 |
|
|
77
|
+
| LinkedIn | Headline | 120 |
|
|
78
|
+
| Facebook | Post | 63,206 |
|
|
79
|
+
| Email | Subject line | 60 |
|
|
80
|
+
| Email | Preview text | 90 |
|
|
81
|
+
| Meta description | SEO | 160 |
|
|
82
|
+
| Google Ads | Headline | 30 |
|
|
83
|
+
| Google Ads | Description | 90 |
|
|
84
|
+
| App Store | Subtitle | 30 |
|
|
85
|
+
| App Store | Description | 4,000 |
|
|
86
|
+
|
|
87
|
+
**Q3: What's the campaign goal?**
|
|
88
|
+
- Product launch / announcement
|
|
89
|
+
- Feature spotlight
|
|
90
|
+
- Brand awareness
|
|
91
|
+
- Event promotion
|
|
92
|
+
- Testimonial / social proof
|
|
93
|
+
- Tutorial / how-to
|
|
94
|
+
- Hiring / team culture
|
|
95
|
+
|
|
96
|
+
**Q4: How many variants?** (default: 5)
|
|
97
|
+
|
|
98
|
+
#### Only ask in bare repos (no brand copy detected):
|
|
99
|
+
|
|
100
|
+
If no README positioning, meta descriptions, hero text, or brand brief was found, the agent has nothing to derive voice from — so you need to ask:
|
|
101
|
+
|
|
102
|
+
**Q5: What tone should the copy have?**
|
|
103
|
+
- Professional / authoritative
|
|
104
|
+
- Casual / conversational
|
|
105
|
+
- Technical / precise
|
|
106
|
+
- Witty / clever
|
|
107
|
+
- Inspirational / aspirational
|
|
108
|
+
- Bold / provocative
|
|
109
|
+
- Warm / empathetic
|
|
110
|
+
|
|
111
|
+
**Q6: Who's the target audience?**
|
|
112
|
+
(Free text — describe the reader/customer in 1-2 sentences)
|
|
113
|
+
|
|
114
|
+
**Q7: What's the key message or value proposition?**
|
|
115
|
+
(Free text — the core thing we want the reader to know or feel)
|
|
116
|
+
|
|
117
|
+
#### In brand-rich repos, skip Q5-Q7:
|
|
118
|
+
|
|
119
|
+
The agent will automatically analyze the codebase for voice characteristics, tone markers, vocabulary patterns, and messaging hierarchy. Tone, audience, and value proposition will be derived from the existing copy and content. The user can still override any of these when confirming the brief.
|
|
120
|
+
|
|
121
|
+
After gathering answers, **summarize the complete brief and ask for confirmation** before launching the agent. Include what will be auto-derived from the codebase so the user can correct anything.
|
|
122
|
+
|
|
123
|
+
### Launching the Agent
|
|
124
|
+
|
|
125
|
+
Use the Task tool to launch the copy agent (subagent_type="copy") with the complete brief including:
|
|
126
|
+
- Content type and platform(s) with exact character limits
|
|
127
|
+
- Campaign goal and key messaging direction
|
|
128
|
+
- Voice/tone source (and existing brand-brief.md content if available)
|
|
129
|
+
- Number of variants to create
|
|
130
|
+
- Working directory path
|
|
131
|
+
- Any specific instructions or constraints from the user
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Create on-brand HTML email templates (newsletters, announcements, transactional)
|
|
3
|
+
argument-hint: [email brief] or leave empty for guided questionnaire
|
|
4
|
+
author: "@markoradak"
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Email — HTML Email Template Creation
|
|
8
|
+
|
|
9
|
+
I'll create on-brand, email-client-compatible HTML templates — newsletters, product announcements, welcome sequences, transactional emails, and more. Every template is built with table-based layouts and inline CSS for maximum compatibility across Gmail, Outlook, Apple Mail, and every other email client.
|
|
10
|
+
|
|
11
|
+
## Current Context
|
|
12
|
+
|
|
13
|
+
**Working Directory**: !`pwd`
|
|
14
|
+
|
|
15
|
+
**Existing Brand Assets**:
|
|
16
|
+
!`ls tailwind.config.* src/app/globals.css src/styles/*.css public/images/*.svg 2>/dev/null | head -15 || echo "No brand files detected"`
|
|
17
|
+
|
|
18
|
+
**Design Directory**:
|
|
19
|
+
!`ls design/ 2>/dev/null && echo "---existing campaigns---" && ls -d design/*/ 2>/dev/null || echo "No existing design directory"`
|
|
20
|
+
|
|
21
|
+
**Previous Brand Brief**:
|
|
22
|
+
!`cat design/brand-brief.md 2>/dev/null | head -30 || echo "No brand brief yet"`
|
|
23
|
+
|
|
24
|
+
**Existing Email Templates**:
|
|
25
|
+
!`find . -maxdepth 4 -name "*.html" -path "*email*" -o -name "*.html" -path "*newsletter*" -o -name "*.html" -path "*template*" -path "*mail*" 2>/dev/null | head -10 || echo "No existing email templates found"`
|
|
26
|
+
|
|
27
|
+
**Mail-Related Dependencies**:
|
|
28
|
+
!`grep -E "nodemailer|sendgrid|mailgun|postmark|resend|ses|mailchimp|mjml|react-email" package.json 2>/dev/null | head -10 || echo "No mail dependencies detected"`
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## Email Brief
|
|
33
|
+
|
|
34
|
+
$ARGUMENTS
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## Instructions
|
|
39
|
+
|
|
40
|
+
### If the user provided a detailed brief above:
|
|
41
|
+
|
|
42
|
+
Parse the brief for: email type, audience, key message/subject line direction, tone, and variant count. Infer reasonable defaults for anything missing based on the project context. Summarize your understanding in 2-3 sentences, then launch the email agent.
|
|
43
|
+
|
|
44
|
+
### If the brief is empty or vague:
|
|
45
|
+
|
|
46
|
+
Conduct a focused discovery questionnaire. Ask questions **one at a time**, adapting based on previous answers. Don't dump all questions at once — this should feel like a conversation.
|
|
47
|
+
|
|
48
|
+
#### First, determine the repo context:
|
|
49
|
+
|
|
50
|
+
Check the "Existing Brand Assets" and "Previous Brand Brief" sections above. If brand files were detected (CSS, Tailwind config, SVGs, design tokens, or an existing `design/brand-brief.md`), this is a **brand-rich repo** — the codebase contains enough to derive brand identity, visual style, and messaging automatically.
|
|
51
|
+
|
|
52
|
+
#### Always ask (every context):
|
|
53
|
+
|
|
54
|
+
**Q1: What type of email?**
|
|
55
|
+
- Newsletter (recurring content digest)
|
|
56
|
+
- Product announcement (new feature, major update)
|
|
57
|
+
- Feature update (smaller improvements, tips)
|
|
58
|
+
- Welcome / onboarding (new user sequence)
|
|
59
|
+
- Transactional (receipts, confirmations, password reset)
|
|
60
|
+
- Event invitation (webinar, launch event, meetup)
|
|
61
|
+
- Re-engagement (win-back, activity nudge)
|
|
62
|
+
|
|
63
|
+
**Q2: Who's the audience?**
|
|
64
|
+
- Users (active product users)
|
|
65
|
+
- Prospects (potential customers, leads)
|
|
66
|
+
- Developers (technical audience)
|
|
67
|
+
- Team (internal communications)
|
|
68
|
+
- Investors (updates, reports)
|
|
69
|
+
|
|
70
|
+
**Q3: What's the key message or subject line direction?**
|
|
71
|
+
(Free text — the core topic, announcement, or call to action)
|
|
72
|
+
|
|
73
|
+
**Q4: How many template variants?** (default: 3)
|
|
74
|
+
|
|
75
|
+
#### Only ask in bare repos (no brand files detected):
|
|
76
|
+
|
|
77
|
+
If no CSS, Tailwind config, design tokens, or brand assets were found, the agent has nothing to analyze — so you need to ask:
|
|
78
|
+
|
|
79
|
+
**Q5: Where should brand identity come from?**
|
|
80
|
+
- **I'll describe it** — you'll provide colors, fonts, tone
|
|
81
|
+
- **Start from scratch** — design freely, establish a new visual identity
|
|
82
|
+
|
|
83
|
+
**Q6: What visual style?**
|
|
84
|
+
- Clean / modern (whitespace, structured, professional)
|
|
85
|
+
- Bold / branded (strong colors, oversized headlines, high-impact)
|
|
86
|
+
- Minimal / text-first (content-focused, almost plain-text feel)
|
|
87
|
+
- Dark / premium (dark backgrounds, refined, sleek)
|
|
88
|
+
- Playful / colorful (gradients, rounded shapes, vibrant)
|
|
89
|
+
- Editorial / newspaper (columns, serif fonts, classic)
|
|
90
|
+
|
|
91
|
+
**Q7: What tone of voice?**
|
|
92
|
+
- Professional / formal
|
|
93
|
+
- Friendly / conversational
|
|
94
|
+
- Technical / developer-oriented
|
|
95
|
+
- Playful / casual
|
|
96
|
+
- Premium / exclusive
|
|
97
|
+
|
|
98
|
+
#### In brand-rich repos, skip Q5-Q7:
|
|
99
|
+
|
|
100
|
+
The agent will automatically analyze the codebase for colors, typography, design patterns, logos, and product copy. Brand identity, visual style, and tone will be derived from the existing design system and content. The user can still override any of these when confirming the brief.
|
|
101
|
+
|
|
102
|
+
After gathering answers, **summarize the complete brief and ask for confirmation** before launching the agent. Include what will be auto-derived from the codebase so the user can correct anything.
|
|
103
|
+
|
|
104
|
+
### Launching the Agent
|
|
105
|
+
|
|
106
|
+
Use the Task tool to launch the email agent (subagent_type="email") with the complete email brief including:
|
|
107
|
+
- Email type and purpose
|
|
108
|
+
- Target audience
|
|
109
|
+
- Key message / subject line direction
|
|
110
|
+
- Brand source preference (and existing brand-brief.md content if available)
|
|
111
|
+
- Visual style and tone direction
|
|
112
|
+
- Number of template variants to create
|
|
113
|
+
- Working directory path
|
|
114
|
+
- Any existing email templates or mail dependencies detected
|
|
115
|
+
- Any specific instructions or constraints from the user
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Auto-generate Open Graph images for all pages in your project
|
|
3
|
+
argument-hint: [specific page or route] or leave empty for all pages
|
|
4
|
+
author: "@markoradak"
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# OG — Open Graph Image Generation
|
|
8
|
+
|
|
9
|
+
I'll generate on-brand Open Graph images for your pages — each a self-contained 1200x630 HTML file with per-page content, ready to screenshot to PNG.
|
|
10
|
+
|
|
11
|
+
## Current Context
|
|
12
|
+
|
|
13
|
+
**Working Directory**: !`pwd`
|
|
14
|
+
|
|
15
|
+
**Framework Detection**:
|
|
16
|
+
!`ls next.config.* nuxt.config.* astro.config.* remix.config.* svelte.config.* vite.config.* angular.json 2>/dev/null || echo "No framework config detected"`
|
|
17
|
+
|
|
18
|
+
**App Router Pages** (Next.js):
|
|
19
|
+
!`find src/app -name "page.tsx" -o -name "page.jsx" -o -name "page.ts" -o -name "page.js" 2>/dev/null | head -20 || echo "No App Router pages"`
|
|
20
|
+
|
|
21
|
+
**Pages Router** (Next.js/Nuxt):
|
|
22
|
+
!`ls src/pages/*.tsx src/pages/**/*.tsx pages/*.tsx pages/**/*.tsx src/pages/*.vue pages/*.vue 2>/dev/null | head -20 || echo "No Pages Router files"`
|
|
23
|
+
|
|
24
|
+
**Astro Pages**:
|
|
25
|
+
!`find src/pages -name "*.astro" -o -name "*.md" -o -name "*.mdx" 2>/dev/null | head -20 || echo "No Astro pages"`
|
|
26
|
+
|
|
27
|
+
**Static HTML**:
|
|
28
|
+
!`find . -maxdepth 3 -name "*.html" ! -path "./node_modules/*" ! -path "./design/*" ! -path "./public/og/*" ! -path "./.next/*" ! -path "./dist/*" 2>/dev/null | head -20 || echo "No static HTML files"`
|
|
29
|
+
|
|
30
|
+
**Existing OG Images**:
|
|
31
|
+
!`ls public/og/ design/og-* 2>/dev/null | head -10 || echo "No existing OG images"`
|
|
32
|
+
|
|
33
|
+
**Brand Assets**:
|
|
34
|
+
!`cat design/brand-brief.md 2>/dev/null | head -30 || echo "No brand brief yet"`
|
|
35
|
+
|
|
36
|
+
**Metadata / SEO**:
|
|
37
|
+
!`grep -rn "openGraph\|og:image\|og:title\|og:description\|meta.*property.*og:" src/ pages/ app/ 2>/dev/null | head -15 || echo "No existing OG meta tags found"`
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## Target
|
|
42
|
+
|
|
43
|
+
$ARGUMENTS
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## Instructions
|
|
48
|
+
|
|
49
|
+
### If the user specified a page or route above:
|
|
50
|
+
|
|
51
|
+
Parse the target to identify the specific page file(s). Confirm the framework and the file path, then launch the og agent to generate an OG image for that page only.
|
|
52
|
+
|
|
53
|
+
### If the target is empty:
|
|
54
|
+
|
|
55
|
+
Summarize what was detected:
|
|
56
|
+
|
|
57
|
+
```
|
|
58
|
+
Based on your project, I found:
|
|
59
|
+
- Framework: {detected framework}
|
|
60
|
+
- Pages: {count} routes detected
|
|
61
|
+
- Brand: {brand brief exists / will analyze codebase / none detected}
|
|
62
|
+
- Existing OG: {existing OG images or none}
|
|
63
|
+
|
|
64
|
+
I'll scan all routes, extract titles and descriptions, and generate
|
|
65
|
+
a branded OG image (1200×630) for each page.
|
|
66
|
+
|
|
67
|
+
Ready to proceed? (yes / or tell me which pages to skip)
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
After confirmation, launch the og agent.
|
|
71
|
+
|
|
72
|
+
### Launching the Agent
|
|
73
|
+
|
|
74
|
+
Use the Task tool to launch the og agent (subagent_type="og") with the complete context including:
|
|
75
|
+
- Framework type (Next.js App Router, Pages Router, Astro, static, etc.)
|
|
76
|
+
- List of detected page files with paths
|
|
77
|
+
- Target scope (specific page or all pages)
|
|
78
|
+
- Existing brand brief content (if available)
|
|
79
|
+
- Whether existing OG images were found
|
|
80
|
+
- Working directory path
|
|
81
|
+
- Any specific instructions or constraints from the user
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Create an on-brand HTML presentation deck with speaker notes
|
|
3
|
+
argument-hint: [pitch topic/audience] or leave empty for guided questionnaire
|
|
4
|
+
author: "@markoradak"
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Pitch — Presentation Deck Creation
|
|
8
|
+
|
|
9
|
+
I'll create an on-brand, self-contained HTML presentation deck with keyboard navigation, slide transitions, and speaker notes — ready to present from any browser.
|
|
10
|
+
|
|
11
|
+
## Current Context
|
|
12
|
+
|
|
13
|
+
**Working Directory**: !`pwd`
|
|
14
|
+
|
|
15
|
+
**Existing Brand Brief**:
|
|
16
|
+
!`cat design/brand-brief.md 2>/dev/null | head -40 || echo "No brand brief yet"`
|
|
17
|
+
|
|
18
|
+
**Project Identity**:
|
|
19
|
+
!`cat README.md 2>/dev/null | head -30 || echo "No README found"`
|
|
20
|
+
|
|
21
|
+
**Package Description**:
|
|
22
|
+
!`node -e 'var p=require("./package.json");console.log("Name:",p.name||"n/a");console.log("Description:",p.description||"n/a");console.log("Homepage:",p.homepage||"n/a")' 2>/dev/null || echo "No package.json found"`
|
|
23
|
+
|
|
24
|
+
**Product Features & Stats**:
|
|
25
|
+
!`grep -rh "<h2\|<h3\|<strong\|features\|pricing\|stats\|metric" src/app/page.tsx src/components/*.tsx README.md 2>/dev/null | head -20 || echo "No product features detected"`
|
|
26
|
+
|
|
27
|
+
**Design Directory**:
|
|
28
|
+
!`ls design/ 2>/dev/null && echo "---existing campaigns---" && ls -d design/*/ 2>/dev/null || echo "No existing design directory"`
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## Pitch Brief
|
|
33
|
+
|
|
34
|
+
$ARGUMENTS
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## Instructions
|
|
39
|
+
|
|
40
|
+
### If the user provided a detailed brief above:
|
|
41
|
+
|
|
42
|
+
Parse the brief for: presentation type, audience, slide count, key points, and style direction. Infer reasonable defaults for anything missing based on the project context. Summarize your understanding in 2-3 sentences, then launch the pitch agent.
|
|
43
|
+
|
|
44
|
+
### If the brief is empty or vague:
|
|
45
|
+
|
|
46
|
+
Conduct a focused discovery questionnaire. Ask questions **one at a time**, adapting based on previous answers. Don't dump all questions at once — this should feel like a conversation.
|
|
47
|
+
|
|
48
|
+
#### First, determine the repo context:
|
|
49
|
+
|
|
50
|
+
Check the "Existing Brand Brief", "Project Identity", "Package Description", and "Product Features & Stats" sections above. If meaningful product information was detected (README with clear positioning, product features, stats, metrics, or an existing `design/brand-brief.md`), this is a **brand-rich repo** — the codebase contains enough to derive brand identity, product messaging, and content automatically.
|
|
51
|
+
|
|
52
|
+
#### Always ask (every context):
|
|
53
|
+
|
|
54
|
+
**Q1: What's the presentation for?**
|
|
55
|
+
- Product launch
|
|
56
|
+
- Investor pitch
|
|
57
|
+
- Conference talk
|
|
58
|
+
- Team update
|
|
59
|
+
- Sales demo
|
|
60
|
+
- Workshop
|
|
61
|
+
- Custom (describe)
|
|
62
|
+
|
|
63
|
+
**Q2: Who's the audience?**
|
|
64
|
+
- Investors
|
|
65
|
+
- Developers
|
|
66
|
+
- Customers
|
|
67
|
+
- Team / internal
|
|
68
|
+
- Executives
|
|
69
|
+
- Conference attendees
|
|
70
|
+
- Custom (describe)
|
|
71
|
+
|
|
72
|
+
**Q3: How many slides?** (default: 10-12)
|
|
73
|
+
|
|
74
|
+
**Q4: Key points to cover?**
|
|
75
|
+
- List specific topics, features, stats, or talking points
|
|
76
|
+
- Or say "derive from codebase" to auto-extract from README, features, and product info
|
|
77
|
+
|
|
78
|
+
#### Only ask in bare repos (no brand or product info detected):
|
|
79
|
+
|
|
80
|
+
If no README positioning, brand brief, features, or product info was found, the agent has nothing to derive from — so you need to ask:
|
|
81
|
+
|
|
82
|
+
**Q5: What's the brand/style direction?**
|
|
83
|
+
- Minimal / editorial (whitespace, typography-driven)
|
|
84
|
+
- Bold / high-contrast (oversized type, strong colors)
|
|
85
|
+
- Dark / premium (dark backgrounds, glow effects, sleek)
|
|
86
|
+
- Technical / developer (terminal aesthetics, monospace)
|
|
87
|
+
- Corporate / clean (structured, professional)
|
|
88
|
+
- Playful / colorful (gradients, rounded shapes, vibrant)
|
|
89
|
+
|
|
90
|
+
**Q6: What content should the deck cover?**
|
|
91
|
+
(Free text — outline the narrative arc, key arguments, data points, or story beats)
|
|
92
|
+
|
|
93
|
+
#### In brand-rich repos, skip Q5-Q6:
|
|
94
|
+
|
|
95
|
+
The agent will automatically analyze the codebase for brand identity, product features, stats, and messaging. Visual style and content direction will be derived from the existing design system and product information. The user can still override any of these when confirming the brief.
|
|
96
|
+
|
|
97
|
+
After gathering answers, **summarize the complete brief and ask for confirmation** before launching the agent. Include what will be auto-derived from the codebase so the user can correct anything.
|
|
98
|
+
|
|
99
|
+
### Launching the Agent
|
|
100
|
+
|
|
101
|
+
Use the Task tool to launch the pitch agent (subagent_type="pitch") with the complete brief including:
|
|
102
|
+
- Presentation type and audience
|
|
103
|
+
- Slide count
|
|
104
|
+
- Key points and narrative direction
|
|
105
|
+
- Brand source preference (and existing brand-brief.md content if available)
|
|
106
|
+
- Visual style direction
|
|
107
|
+
- Working directory path
|
|
108
|
+
- Any specific instructions or constraints from the user
|
package/dist/installer.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"installer.d.ts","sourceRoot":"","sources":["../src/installer.ts"],"names":[],"mappings":"AAQA,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,WAAW;IAC1B,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,aAAa;IAC5B,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,YAAY,CAAC;IACpB,UAAU,EAAE,eAAe,CAAC;CAC7B;AAED,MAAM,MAAM,eAAe,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;AAEhD,eAAO,MAAM,kBAAkB,EAAE,MAAM,CAAC,eAAe,EAAE,MAAM,CAM9D,CAAC;AAEF,eAAO,MAAM,eAAe,UAI3B,CAAC;AAEF,eAAO,MAAM,kBAAkB,
|
|
1
|
+
{"version":3,"file":"installer.d.ts","sourceRoot":"","sources":["../src/installer.ts"],"names":[],"mappings":"AAQA,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,WAAW;IAC1B,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,aAAa;IAC5B,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,YAAY,CAAC;IACpB,UAAU,EAAE,eAAe,CAAC;CAC7B;AAED,MAAM,MAAM,eAAe,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;AAEhD,eAAO,MAAM,kBAAkB,EAAE,MAAM,CAAC,eAAe,EAAE,MAAM,CAM9D,CAAC;AAEF,eAAO,MAAM,eAAe,UAI3B,CAAC;AAEF,eAAO,MAAM,kBAAkB,UAO9B,CAAC;AAEF,eAAO,MAAM,kBAAkB,UAI9B,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG,aAAa,GAAG,UAAU,GAAG,UAAU,GAAG,aAAa,CAAC;AAEhF,eAAO,MAAM,iBAAiB,UAAU,CAAC;AAEzC,wBAAgB,iBAAiB,CAAC,QAAQ,GAAE,MAA0B,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAO9F;AAED,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAuB,CAAC;AAEzE,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CAO9E;AAGD,MAAM,WAAW,oBAAoB;IACnC,WAAW,EAAE,OAAO,CAAC;IACrB,SAAS,EAAE,OAAO,CAAC;IACnB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED;;GAEG;AACH,wBAAgB,mBAAmB,IAAI,MAAM,CAa5C;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,QAAQ,EAAE,MAAM,GAAG,YAAY,CAqB9D;AAED;;GAEG;AACH,wBAAgB,cAAc,IAAI,WAAW,CAO5C;AAED;;GAEG;AACH,wBAAgB,SAAS,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAI/C;AAED;;GAEG;AACH,wBAAgB,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CA2BxF;AAED;;GAEG;AACH,wBAAgB,YAAY,CAAC,QAAQ,EAAE,MAAM,GAAG,SAAS,CAKxD;AAED;;;;;;;;GAQG;AACH,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,MAAM,EAAE,UAAU,EAAE,eAAe,GAAG,OAAO,GAAG,QAAQ,GAAG,MAAM,CAY3G;AAED;;GAEG;AACH,wBAAgB,wBAAwB,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,eAAe,EAAE,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CA2BhI;AAED;;GAEG;AACH,wBAAgB,iBAAiB,IAAI,MAAM,CAS1C;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAyBvE;AAED;;GAEG;AACH,wBAAsB,iBAAiB,CAAC,UAAU,EAAE,MAAM,EAAE,UAAU,GAAE,eAAmB,EAAE,QAAQ,GAAE,MAA0B,GAAG,OAAO,CAAC,aAAa,CAAC,CAuCzJ;AAED;;GAEG;AACH,wBAAgB,yBAAyB,CAAC,UAAU,EAAE,MAAM,GAAG,oBAAoB,CASlF"}
|
package/dist/installer.js
CHANGED
package/dist/installer.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"installer.js","sourceRoot":"","sources":["../src/installer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,IAAI,CAAC;AACpB,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,EAAE,MAAM,IAAI,CAAC;AACpB,OAAO,EAAE,aAAa,EAAE,MAAM,KAAK,CAAC;AAEpC,MAAM,UAAU,GAAG,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAClD,MAAM,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;AAsB3C,MAAM,CAAC,MAAM,kBAAkB,GAAoC;IACjE,CAAC,EAAE,SAAS;IACZ,CAAC,EAAE,UAAU;IACb,CAAC,EAAE,UAAU;IACb,CAAC,EAAE,UAAU;IACb,CAAC,EAAE,SAAS;CACb,CAAC;AAEF,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B,sBAAsB;IACtB,kBAAkB;IAClB,iBAAiB;CAClB,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAChC,WAAW;IACX,cAAc;IACd,YAAY;IACZ,YAAY;IACZ,YAAY;
|
|
1
|
+
{"version":3,"file":"installer.js","sourceRoot":"","sources":["../src/installer.ts"],"names":[],"mappings":"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"}
|