niahere 0.2.34 → 0.2.35
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/package.json +1 -1
- package/skills/content-strategy/SKILL.md +365 -0
- package/skills/docx/SKILL.md +590 -0
- package/skills/frontend-design/SKILL.md +69 -69
- package/skills/marketing-ideas/SKILL.md +167 -0
- package/skills/marketing-psychology/SKILL.md +455 -0
- package/skills/pptx/SKILL.md +232 -0
- package/skills/pricing-strategy/SKILL.md +231 -0
- package/skills/remotion/SKILL.md +54 -0
- package/skills/yc-office-hours/SKILL.md +204 -0
|
@@ -7,107 +7,112 @@ description: Guide for building frontend UIs and web pages that look intentional
|
|
|
7
7
|
|
|
8
8
|
Build interfaces that feel crafted, not generated. This skill prevents "AI slop" — the generic, soulless, template-looking output that AI tools default to.
|
|
9
9
|
|
|
10
|
-
##
|
|
10
|
+
## Design Thinking (Before Code)
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
Before writing any CSS, commit to a BOLD aesthetic direction:
|
|
13
13
|
|
|
14
|
-
**
|
|
14
|
+
- **Purpose**: What problem does this interface solve? Who uses it?
|
|
15
|
+
- **Tone**: Pick a direction: brutally minimal, maximalist, retro-futuristic, organic/natural, luxury/refined, playful/toy-like, editorial/magazine, brutalist/raw, art deco, soft/pastel, industrial/utilitarian
|
|
16
|
+
- **Differentiation**: What makes this UNFORGETTABLE? What's the one thing someone will remember?
|
|
17
|
+
- **Constraints**: Framework, performance, accessibility requirements
|
|
18
|
+
|
|
19
|
+
**CRITICAL**: Choose a clear conceptual direction and execute it with precision. Bold maximalism and refined minimalism both work — the key is intentionality, not intensity.
|
|
15
20
|
|
|
16
21
|
## Anti-Slop Principles
|
|
17
22
|
|
|
18
|
-
Every design decision should be deliberate.
|
|
23
|
+
Every design decision should be deliberate. If you can't answer these, you're about to produce slop:
|
|
19
24
|
|
|
20
|
-
1. **What's the visual personality?**
|
|
21
|
-
2. **What emotion should users feel?**
|
|
25
|
+
1. **What's the visual personality?**
|
|
26
|
+
2. **What emotion should users feel?**
|
|
22
27
|
3. **What makes this different from a template?**
|
|
23
28
|
|
|
24
|
-
|
|
29
|
+
NEVER use generic AI-generated aesthetics:
|
|
30
|
+
- Overused fonts (Inter, Roboto, Arial, system fonts)
|
|
31
|
+
- Cliched color schemes (purple gradients on white)
|
|
32
|
+
- Predictable card grids with rounded corners
|
|
33
|
+
- Cookie-cutter layouts that lack context-specific character
|
|
34
|
+
|
|
35
|
+
**No design should be the same.** Vary between light and dark themes, different fonts, different aesthetics. NEVER converge on common choices across generations.
|
|
25
36
|
|
|
26
37
|
## Typography
|
|
27
38
|
|
|
28
39
|
Typography is the single biggest differentiator between generic and intentional design.
|
|
29
40
|
|
|
30
41
|
**Do:**
|
|
31
|
-
- Choose
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
42
|
+
- Choose distinctive, characterful fonts — Google Fonts has hundreds beyond the obvious ones
|
|
43
|
+
- Pair a distinctive display/heading font with a refined body font
|
|
44
|
+
- Use type scale with purpose: large headings (2.5rem+), comfortable body (1rem-1.125rem)
|
|
45
|
+
- Vary font weights deliberately: light for elegance, bold for impact
|
|
46
|
+
- Set proper `line-height`: 1.5-1.7 for body, 1.1-1.2 for headings
|
|
35
47
|
- Use `letter-spacing` on headings and uppercase text
|
|
36
|
-
- Mix a display/heading font with a body font for contrast
|
|
37
48
|
|
|
38
49
|
**Don't:**
|
|
39
|
-
- Default to Inter, Roboto, Arial
|
|
50
|
+
- Default to Inter, Roboto, Arial without reason
|
|
40
51
|
- Use the same font weight everywhere
|
|
41
|
-
- Skip setting line-height and letter-spacing
|
|
42
52
|
- Use more than 2-3 typefaces
|
|
43
53
|
|
|
44
|
-
## Color
|
|
54
|
+
## Color & Theme
|
|
45
55
|
|
|
46
56
|
**Do:**
|
|
47
|
-
-
|
|
48
|
-
-
|
|
49
|
-
- Use neutrals that aren't pure white
|
|
50
|
-
- Make accent colors functional —
|
|
51
|
-
- Test contrast ratios
|
|
57
|
+
- Commit to a cohesive aesthetic. Use CSS variables for consistency
|
|
58
|
+
- Dominant colors with sharp accents outperform timid, evenly-distributed palettes
|
|
59
|
+
- Use neutrals that aren't pure white/black — off-whites (`#f8f7f4`), warm grays (`#2d2a27`)
|
|
60
|
+
- Make accent colors functional — guide attention to CTAs, links, interactive elements
|
|
61
|
+
- Test contrast ratios (WCAG AA: 4.5:1 for text)
|
|
52
62
|
|
|
53
63
|
**Don't:**
|
|
54
64
|
- Default to purple-on-white (the most common AI slop palette)
|
|
55
|
-
- Use pure `#000` on pure `#fff`
|
|
65
|
+
- Use pure `#000` on pure `#fff`
|
|
56
66
|
- Pick colors without defining the full palette upfront
|
|
57
|
-
- Bias toward dark mode unless the project calls for it
|
|
58
67
|
|
|
59
|
-
## Layout &
|
|
68
|
+
## Layout & Spatial Composition
|
|
60
69
|
|
|
61
70
|
**Do:**
|
|
62
|
-
-
|
|
63
|
-
-
|
|
64
|
-
-
|
|
65
|
-
-
|
|
66
|
-
-
|
|
67
|
-
-
|
|
71
|
+
- Unexpected layouts. Asymmetry. Overlap. Diagonal flow. Grid-breaking elements
|
|
72
|
+
- Generous negative space OR controlled density — both work with intention
|
|
73
|
+
- CSS Grid for page structure, Flexbox for component-level
|
|
74
|
+
- Spacing scale with CSS variables: `--space-xs` through `--space-3xl`
|
|
75
|
+
- `max-width` on content (65-75ch for text, ~1200px for pages)
|
|
76
|
+
- Mobile-first responsive with container queries where supported
|
|
68
77
|
|
|
69
78
|
**Don't:**
|
|
70
|
-
-
|
|
71
|
-
- Make everything a card grid — vary your layout patterns
|
|
72
|
-
- Forget mobile: test at 375px width minimum
|
|
79
|
+
- Make everything a card grid — vary layout patterns
|
|
73
80
|
- Center everything — left-aligned text is more readable for long content
|
|
81
|
+
- Hardcode pixel values
|
|
82
|
+
- Forget mobile: test at 375px minimum
|
|
74
83
|
|
|
75
|
-
##
|
|
76
|
-
|
|
77
|
-
This is what separates crafted from generic.
|
|
84
|
+
## Motion & Animation
|
|
78
85
|
|
|
79
86
|
**Do:**
|
|
80
|
-
-
|
|
81
|
-
-
|
|
82
|
-
-
|
|
83
|
-
-
|
|
84
|
-
- Consider asymmetric layouts for landing pages — not everything needs to be centered
|
|
87
|
+
- Focus on high-impact moments: one well-orchestrated page load with staggered reveals creates more delight than scattered micro-interactions
|
|
88
|
+
- Use scroll-triggering and hover states that surprise
|
|
89
|
+
- Prioritize CSS-only solutions for HTML, Motion library for React
|
|
90
|
+
- `animation-delay` for staggered reveals
|
|
85
91
|
|
|
86
92
|
**Don't:**
|
|
87
|
-
- Add micro-animations to everything
|
|
93
|
+
- Add micro-animations to everything
|
|
88
94
|
- Use the same border-radius everywhere
|
|
89
|
-
- Make every section look the same — vary the visual rhythm
|
|
90
95
|
- Add decoration without purpose
|
|
91
96
|
|
|
92
|
-
##
|
|
97
|
+
## Backgrounds & Visual Details
|
|
93
98
|
|
|
94
|
-
|
|
95
|
-
-
|
|
96
|
-
-
|
|
97
|
-
-
|
|
98
|
-
-
|
|
99
|
-
- Use `prefers-color-scheme` when implementing dark/light modes
|
|
99
|
+
Create atmosphere and depth rather than defaulting to solid colors:
|
|
100
|
+
- Gradient meshes, noise textures, geometric patterns
|
|
101
|
+
- Layered transparencies, dramatic shadows
|
|
102
|
+
- Decorative borders, custom cursors, grain overlays
|
|
103
|
+
- Subtle patterns or textured backgrounds
|
|
100
104
|
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
-
|
|
104
|
-
-
|
|
105
|
-
-
|
|
105
|
+
## Component Quality
|
|
106
|
+
|
|
107
|
+
- Semantic HTML: `<nav>`, `<main>`, `<section>`, `<article>`, `<button>`
|
|
108
|
+
- Handle ALL states: default, hover, focus, active, disabled, loading, error, empty
|
|
109
|
+
- `focus-visible` for keyboard focus
|
|
110
|
+
- `prefers-reduced-motion` for animation-sensitive users
|
|
111
|
+
- `prefers-color-scheme` for dark/light modes
|
|
106
112
|
|
|
107
113
|
## CSS Architecture
|
|
108
114
|
|
|
109
115
|
```css
|
|
110
|
-
/* Define your design tokens upfront */
|
|
111
116
|
:root {
|
|
112
117
|
/* Colors */
|
|
113
118
|
--color-bg: #f8f7f4;
|
|
@@ -121,7 +126,7 @@ This is what separates crafted from generic.
|
|
|
121
126
|
--font-heading: 'Instrument Serif', serif;
|
|
122
127
|
--font-body: 'DM Sans', sans-serif;
|
|
123
128
|
|
|
124
|
-
/* Spacing
|
|
129
|
+
/* Spacing */
|
|
125
130
|
--space-xs: 0.25rem;
|
|
126
131
|
--space-sm: 0.5rem;
|
|
127
132
|
--space-md: 1rem;
|
|
@@ -141,33 +146,28 @@ This is what separates crafted from generic.
|
|
|
141
146
|
|
|
142
147
|
## Working Within Existing Projects
|
|
143
148
|
|
|
144
|
-
**Exception:** When working inside an existing
|
|
145
|
-
|
|
146
|
-
Read the project's CSS/design tokens before writing new styles. Match what exists.
|
|
149
|
+
**Exception:** When working inside an existing design system, preserve established patterns. Don't introduce conflicting fonts, colors, or spacing. Extend the existing system instead. Read project CSS/design tokens before writing new styles.
|
|
147
150
|
|
|
148
151
|
## Responsive Checklist
|
|
149
152
|
|
|
150
|
-
Before finishing any UI work:
|
|
151
153
|
- [ ] Works at 375px (mobile)
|
|
152
154
|
- [ ] Works at 768px (tablet)
|
|
153
155
|
- [ ] Works at 1440px+ (desktop)
|
|
154
|
-
- [ ] Text
|
|
155
|
-
- [ ] Touch targets
|
|
156
|
+
- [ ] Text readable at all sizes
|
|
157
|
+
- [ ] Touch targets 44x44px+ on mobile
|
|
156
158
|
- [ ] No horizontal scrolling
|
|
157
159
|
- [ ] Images/media scale properly
|
|
158
160
|
|
|
159
161
|
## Accessibility Minimum
|
|
160
162
|
|
|
161
|
-
- Semantic HTML
|
|
163
|
+
- Semantic HTML used correctly
|
|
162
164
|
- All images have `alt` text
|
|
163
|
-
- Color contrast
|
|
164
|
-
- Interactive elements
|
|
165
|
-
- Form inputs have
|
|
166
|
-
- `prefers-reduced-motion` respected
|
|
165
|
+
- Color contrast WCAG AA (4.5:1)
|
|
166
|
+
- Interactive elements keyboard-accessible
|
|
167
|
+
- Form inputs have `<label>` elements
|
|
168
|
+
- `prefers-reduced-motion` respected
|
|
167
169
|
|
|
168
170
|
## References
|
|
169
171
|
|
|
170
172
|
- [NN/g — Generative UI and Outcome-Oriented Design](https://www.nngroup.com/articles/generative-ui/)
|
|
171
173
|
- [Breaking the AI-Generated UI Curse](https://dev.to/a_shokn/how-to-break-the-ai-generated-ui-curse-your-guide-to-authentic-professional-design-2en)
|
|
172
|
-
- [CSS in 2026 — New Features](https://blog.logrocket.com/css-in-2026/)
|
|
173
|
-
- [Web Design Trends 2026 — Figma](https://www.figma.com/resource-library/web-development-trends/)
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: marketing-ideas
|
|
3
|
+
description: "When the user needs marketing ideas, inspiration, or strategies for their SaaS or software product. Also use when the user asks for 'marketing ideas,' 'growth ideas,' 'how to market,' 'marketing strategies,' 'marketing tactics,' 'ways to promote,' 'ideas to grow,' 'what else can I try,' 'I don't know how to market this,' 'brainstorm marketing,' or 'what marketing should I do.' Use this as a starting point whenever someone is stuck or looking for inspiration on how to grow. For specific channel execution, see the relevant skill (paid-ads, social-content, email-sequence, etc.)."
|
|
4
|
+
metadata:
|
|
5
|
+
version: 1.1.0
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Marketing Ideas for SaaS
|
|
9
|
+
|
|
10
|
+
You are a marketing strategist with a library of 139 proven marketing ideas. Your goal is to help users find the right marketing strategies for their specific situation, stage, and resources.
|
|
11
|
+
|
|
12
|
+
## How to Use This Skill
|
|
13
|
+
|
|
14
|
+
**Check for product marketing context first:**
|
|
15
|
+
If `.agents/product-marketing-context.md` exists (or `.claude/product-marketing-context.md` in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
|
|
16
|
+
|
|
17
|
+
When asked for marketing ideas:
|
|
18
|
+
1. Ask about their product, audience, and current stage if not clear
|
|
19
|
+
2. Suggest 3-5 most relevant ideas based on their context
|
|
20
|
+
3. Provide details on implementation for chosen ideas
|
|
21
|
+
4. Consider their resources (time, budget, team size)
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## Ideas by Category (Quick Reference)
|
|
26
|
+
|
|
27
|
+
| Category | Ideas | Examples |
|
|
28
|
+
|----------|-------|----------|
|
|
29
|
+
| Content & SEO | 1-10 | Programmatic SEO, Glossary marketing, Content repurposing |
|
|
30
|
+
| Competitor | 11-13 | Comparison pages, Marketing jiu-jitsu |
|
|
31
|
+
| Free Tools | 14-22 | Calculators, Generators, Chrome extensions |
|
|
32
|
+
| Paid Ads | 23-34 | LinkedIn, Google, Retargeting, Podcast ads |
|
|
33
|
+
| Social & Community | 35-44 | LinkedIn audience, Reddit marketing, Short-form video |
|
|
34
|
+
| Email | 45-53 | Founder emails, Onboarding sequences, Win-back |
|
|
35
|
+
| Partnerships | 54-64 | Affiliate programs, Integration marketing, Newsletter swaps |
|
|
36
|
+
| Events | 65-72 | Webinars, Conference speaking, Virtual summits |
|
|
37
|
+
| PR & Media | 73-76 | Press coverage, Documentaries |
|
|
38
|
+
| Launches | 77-86 | Product Hunt, Lifetime deals, Giveaways |
|
|
39
|
+
| Product-Led | 87-96 | Viral loops, Powered-by marketing, Free migrations |
|
|
40
|
+
| Content Formats | 97-109 | Podcasts, Courses, Annual reports, Year wraps |
|
|
41
|
+
| Unconventional | 110-122 | Awards, Challenges, Guerrilla marketing |
|
|
42
|
+
| Platforms | 123-130 | App marketplaces, Review sites, YouTube |
|
|
43
|
+
| International | 131-132 | Expansion, Price localization |
|
|
44
|
+
| Developer | 133-136 | DevRel, Certifications |
|
|
45
|
+
| Audience-Specific | 137-139 | Referrals, Podcast tours, Customer language |
|
|
46
|
+
|
|
47
|
+
**For the complete list with descriptions**: See [references/ideas-by-category.md](references/ideas-by-category.md)
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## Implementation Tips
|
|
52
|
+
|
|
53
|
+
### By Stage
|
|
54
|
+
|
|
55
|
+
**Pre-launch:**
|
|
56
|
+
- Waitlist referrals (#79)
|
|
57
|
+
- Early access pricing (#81)
|
|
58
|
+
- Product Hunt prep (#78)
|
|
59
|
+
|
|
60
|
+
**Early stage:**
|
|
61
|
+
- Content & SEO (#1-10)
|
|
62
|
+
- Community (#35)
|
|
63
|
+
- Founder-led sales (#47)
|
|
64
|
+
|
|
65
|
+
**Growth stage:**
|
|
66
|
+
- Paid acquisition (#23-34)
|
|
67
|
+
- Partnerships (#54-64)
|
|
68
|
+
- Events (#65-72)
|
|
69
|
+
|
|
70
|
+
**Scale:**
|
|
71
|
+
- Brand campaigns
|
|
72
|
+
- International (#131-132)
|
|
73
|
+
- Media acquisitions (#73)
|
|
74
|
+
|
|
75
|
+
### By Budget
|
|
76
|
+
|
|
77
|
+
**Free:**
|
|
78
|
+
- Content & SEO
|
|
79
|
+
- Community building
|
|
80
|
+
- Social media
|
|
81
|
+
- Comment marketing
|
|
82
|
+
|
|
83
|
+
**Low budget:**
|
|
84
|
+
- Targeted ads
|
|
85
|
+
- Sponsorships
|
|
86
|
+
- Free tools
|
|
87
|
+
|
|
88
|
+
**Medium budget:**
|
|
89
|
+
- Events
|
|
90
|
+
- Partnerships
|
|
91
|
+
- PR
|
|
92
|
+
|
|
93
|
+
**High budget:**
|
|
94
|
+
- Acquisitions
|
|
95
|
+
- Conferences
|
|
96
|
+
- Brand campaigns
|
|
97
|
+
|
|
98
|
+
### By Timeline
|
|
99
|
+
|
|
100
|
+
**Quick wins:**
|
|
101
|
+
- Ads, email, social posts
|
|
102
|
+
|
|
103
|
+
**Medium-term:**
|
|
104
|
+
- Content, SEO, community
|
|
105
|
+
|
|
106
|
+
**Long-term:**
|
|
107
|
+
- Brand, thought leadership, platform effects
|
|
108
|
+
|
|
109
|
+
---
|
|
110
|
+
|
|
111
|
+
## Top Ideas by Use Case
|
|
112
|
+
|
|
113
|
+
### Need Leads Fast
|
|
114
|
+
- Google Ads (#31) - High-intent search
|
|
115
|
+
- LinkedIn Ads (#28) - B2B targeting
|
|
116
|
+
- Engineering as Marketing (#15) - Free tool lead gen
|
|
117
|
+
|
|
118
|
+
### Building Authority
|
|
119
|
+
- Conference Speaking (#70)
|
|
120
|
+
- Book Marketing (#104)
|
|
121
|
+
- Podcasts (#107)
|
|
122
|
+
|
|
123
|
+
### Low Budget Growth
|
|
124
|
+
- Easy Keyword Ranking (#1)
|
|
125
|
+
- Reddit Marketing (#38)
|
|
126
|
+
- Comment Marketing (#44)
|
|
127
|
+
|
|
128
|
+
### Product-Led Growth
|
|
129
|
+
- Viral Loops (#93)
|
|
130
|
+
- Powered By Marketing (#87)
|
|
131
|
+
- In-App Upsells (#91)
|
|
132
|
+
|
|
133
|
+
### Enterprise Sales
|
|
134
|
+
- Investor Marketing (#133)
|
|
135
|
+
- Expert Networks (#57)
|
|
136
|
+
- Conference Sponsorship (#72)
|
|
137
|
+
|
|
138
|
+
---
|
|
139
|
+
|
|
140
|
+
## Output Format
|
|
141
|
+
|
|
142
|
+
When recommending ideas, provide for each:
|
|
143
|
+
|
|
144
|
+
- **Idea name**: One-line description
|
|
145
|
+
- **Why it fits**: Connection to their situation
|
|
146
|
+
- **How to start**: First 2-3 implementation steps
|
|
147
|
+
- **Expected outcome**: What success looks like
|
|
148
|
+
- **Resources needed**: Time, budget, skills required
|
|
149
|
+
|
|
150
|
+
---
|
|
151
|
+
|
|
152
|
+
## Task-Specific Questions
|
|
153
|
+
|
|
154
|
+
1. What's your current stage and main growth goal?
|
|
155
|
+
2. What's your marketing budget and team size?
|
|
156
|
+
3. What have you already tried that worked or didn't?
|
|
157
|
+
4. What competitor tactics do you admire?
|
|
158
|
+
|
|
159
|
+
---
|
|
160
|
+
|
|
161
|
+
## Related Skills
|
|
162
|
+
|
|
163
|
+
- **programmatic-seo**: For scaling SEO content (#4)
|
|
164
|
+
- **competitor-alternatives**: For comparison pages (#11)
|
|
165
|
+
- **email-sequence**: For email marketing tactics
|
|
166
|
+
- **free-tool-strategy**: For engineering as marketing (#15)
|
|
167
|
+
- **referral-program**: For viral growth (#93)
|