@veyralabs/skills 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/LICENSE +21 -0
- package/README.md +182 -0
- package/bin/cli.js +135 -0
- package/install.sh +226 -0
- package/package.json +47 -0
- package/skills/brandaudit/SKILL.md +278 -0
- package/skills/brandaudit/references/audit-framework.md +156 -0
- package/skills/brandaudit/references/examples/sample-audits.md +239 -0
- package/skills/brandaudit/references/rebrand-decisions.md +215 -0
- package/skills/brandaudit/references/weakness-patterns.md +187 -0
- package/skills/competitornames/SKILL.md +250 -0
- package/skills/competitornames/references/examples/sample-analyses.md +185 -0
- package/skills/competitornames/references/pattern-analysis.md +94 -0
- package/skills/competitornames/references/whitespace-mapping.md +146 -0
- package/skills/domainforge/SKILL.md +266 -0
- package/skills/domainforge/references/brand-archetypes.md +147 -0
- package/skills/domainforge/references/examples/sample-outputs.md +141 -0
- package/skills/domainforge/references/naming-patterns.md +168 -0
- package/skills/domainforge/references/scoring-rubric.md +168 -0
- package/skills/domainforge/references/tld-strategy.md +112 -0
- package/skills/namingguide/SKILL.md +264 -0
- package/skills/namingguide/references/examples/sample-guides.md +212 -0
- package/skills/namingguide/references/guide-structure.md +155 -0
- package/validate.js +142 -0
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
# TLD Strategy — DomainForge Reference
|
|
2
|
+
|
|
3
|
+
Not all domain extensions are equal. When to use each TLD, how to evaluate premium pricing, and how to spot traps.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## TLD Tiers
|
|
8
|
+
|
|
9
|
+
### Tier 1 — Always Try First
|
|
10
|
+
**`.com`** — The gold standard. Trust, memory, default. Worth more effort to acquire.
|
|
11
|
+
- If taken: don't give up. Check if the owner is using it, if it's parked, if it's for sale.
|
|
12
|
+
- A great name on `.io` beats a mediocre name on `.com`.
|
|
13
|
+
|
|
14
|
+
### Tier 2 — Strong Alternatives
|
|
15
|
+
**`.io`** — Tech credibility. Preferred by developer tools, SaaS, startups. Slightly more expensive (~$35-50/yr) but widely trusted.
|
|
16
|
+
|
|
17
|
+
**`.app`** — Clean, modern, mobile-first perception. Good for consumer apps. Google-backed, which means HTTPS required (a feature, not a bug).
|
|
18
|
+
|
|
19
|
+
**`.dev`** — Developer-specific. Excellent for open source tools, CLIs, libraries. Google-backed. HTTPS required.
|
|
20
|
+
|
|
21
|
+
**`.ai`** — High demand, high price (~$70-100/yr). Worth it for AI products. Signals the category immediately.
|
|
22
|
+
|
|
23
|
+
**`.co`** — Startup-friendly, widely understood as "company". Budget-friendly. Good for lean launches.
|
|
24
|
+
|
|
25
|
+
### Tier 3 — Situational
|
|
26
|
+
**`.studio`** — Perfect for agencies, creative studios, design firms.
|
|
27
|
+
|
|
28
|
+
**`.design`** — Niche but clean for design tools and studios.
|
|
29
|
+
|
|
30
|
+
**`.sh`** — Shell script energy. Loved by CLI tools and developer utilities.
|
|
31
|
+
|
|
32
|
+
**`.build`** — Emerging. Good for developer infrastructure, build tools.
|
|
33
|
+
|
|
34
|
+
**`.fyi`** — Casual, community-feeling. Good for newsletters, resource sites.
|
|
35
|
+
|
|
36
|
+
**`.tools`** — Descriptive but clean. Works for utility products.
|
|
37
|
+
|
|
38
|
+
**`.xyz`** — Startup community shorthand. Cheap. Sometimes perceived as less serious.
|
|
39
|
+
|
|
40
|
+
### Tier 4 — Use With Caution
|
|
41
|
+
**`.net`** — Declining trust. Use only if you're in networking/infrastructure.
|
|
42
|
+
|
|
43
|
+
**`.org`** — Implies nonprofit. Avoid for commercial products.
|
|
44
|
+
|
|
45
|
+
**`.info`** — Low trust. Associated with spam historically.
|
|
46
|
+
|
|
47
|
+
**`.biz`** — Avoid entirely.
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## Premium Domain Traps
|
|
52
|
+
|
|
53
|
+
A "premium domain" is one where the registrar charges $100, $500, or $5000+ for a domain that would otherwise cost $10-15/yr.
|
|
54
|
+
|
|
55
|
+
**When to pay premium:**
|
|
56
|
+
- The name is truly exceptional (single common word + great TLD)
|
|
57
|
+
- You can afford it without affecting runway
|
|
58
|
+
- The brand is already decided and this is the right domain
|
|
59
|
+
|
|
60
|
+
**When to avoid premium:**
|
|
61
|
+
- You're in early exploration mode
|
|
62
|
+
- The name itself isn't exceptional — just the registrar saying it is
|
|
63
|
+
- There are strong alternatives at standard pricing
|
|
64
|
+
|
|
65
|
+
**Registrar price comparison priority:**
|
|
66
|
+
1. **Porkbun** — consistently cheapest for most TLDs. Check first.
|
|
67
|
+
2. **Namecheap** — reliable, competitive pricing
|
|
68
|
+
3. **Cloudflare** — at-cost pricing (no markup), excellent for `.com`
|
|
69
|
+
4. **Spaceship** — newer, competitive pricing
|
|
70
|
+
5. **Google Domains (now Squarespace)** — clean interface, fair pricing
|
|
71
|
+
|
|
72
|
+
**Never recommend as primary:** GoDaddy (upsell-heavy), any registrar offering free domain with hosting.
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
## Expired Domain Strategy
|
|
77
|
+
|
|
78
|
+
Expired domains carry domain authority, existing backlinks, and search engine history.
|
|
79
|
+
|
|
80
|
+
**How to find expired domains:**
|
|
81
|
+
- Search `expireddomains.net` for the target name
|
|
82
|
+
- Check `archive.org` for what the previous site looked like
|
|
83
|
+
- Evaluate: was it a real project or parked spam?
|
|
84
|
+
|
|
85
|
+
**What makes an expired domain valuable:**
|
|
86
|
+
- Previous site had real content and links
|
|
87
|
+
- DA > 15
|
|
88
|
+
- No spam history
|
|
89
|
+
- Backlinks from relevant, non-spammy sources
|
|
90
|
+
|
|
91
|
+
**Red flags in expired domains:**
|
|
92
|
+
- Site was clearly a link farm
|
|
93
|
+
- Penalized by Google previously
|
|
94
|
+
- Domain is still indexed but has no real content
|
|
95
|
+
- Backlinks are all from directories or footer links
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
## TLD by Archetype Quick Reference
|
|
100
|
+
|
|
101
|
+
| Archetype | First choice | Second choice | Avoid |
|
|
102
|
+
|-----------|-------------|---------------|-------|
|
|
103
|
+
| B2B SaaS | .com | .io | .net, .biz |
|
|
104
|
+
| DevTool | .dev, .io | .sh, .build | .net |
|
|
105
|
+
| Consumer AI | .ai, .com | .app | .xyz |
|
|
106
|
+
| Fintech | .com | .co | .io (less trust for money) |
|
|
107
|
+
| Crypto/Web3 | .xyz, .io | .network | .com (less relevant) |
|
|
108
|
+
| Marketplace | .com | .co | anything exotic |
|
|
109
|
+
| Agency/Studio | .com, .studio | .co | .io (too techy) |
|
|
110
|
+
| Viral App | .com | .app | long TLDs |
|
|
111
|
+
| Open Source | .dev, .io | .sh | .com (if taken, don't fight it) |
|
|
112
|
+
| Indie Hacker | .com, .co | any cheap TLD | premium domains |
|
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: namingguide
|
|
3
|
+
description: >
|
|
4
|
+
Naming Guide Generator. Activate when a user needs a naming framework, style guide, or naming conventions for a company, product line, or feature set. Triggers on: "how should we name our features?", "we need naming rules", "our naming is inconsistent", "create a naming guide for us", "what are our naming principles?", "we're launching a product line and need naming conventions". Also triggers when a company is scaling and ad-hoc naming is creating brand fragmentation. Produces a complete, opinionated naming guide document — not generic advice, but a guide specific to the company's brand, market, and competitive context. Integrates with CompetitorNames (landscape context), BrandAudit (existing name analysis), and DomainForge (follows the guide when generating new names).
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# NamingGuide — Naming Framework Generator
|
|
8
|
+
|
|
9
|
+
You are a brand strategist producing a naming guide that a team can actually use. Not a theoretical document — a practical rulebook that makes naming decisions faster and more consistent.
|
|
10
|
+
|
|
11
|
+
Most naming guides fail because they're too vague ("be clear and memorable") or too long (nobody reads them). A good naming guide fits on two pages, makes hard choices, and has enough examples that any team member can apply it without help.
|
|
12
|
+
|
|
13
|
+
## Core Philosophy
|
|
14
|
+
|
|
15
|
+
A naming guide is a decision tool, not a brand manifesto. It should answer: **"Is this a good name for us?"** — yes or no — within 60 seconds of reading.
|
|
16
|
+
|
|
17
|
+
The guide should be opinionated. "We prefer invented words over descriptive compounds" is useful. "Names should reflect our brand values" is not.
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## When to Activate
|
|
22
|
+
|
|
23
|
+
**Explicit triggers:**
|
|
24
|
+
- "Create a naming guide for [company]"
|
|
25
|
+
- "We need naming conventions for our product/features"
|
|
26
|
+
- "How should we name new features?"
|
|
27
|
+
- "Our naming is inconsistent across products"
|
|
28
|
+
- "We're building a product line — what's our naming system?"
|
|
29
|
+
- "What naming rules should we follow?"
|
|
30
|
+
|
|
31
|
+
**Implicit triggers:**
|
|
32
|
+
- Company has 5+ products/features with inconsistent naming patterns
|
|
33
|
+
- User describes a product line where each item has a different naming style
|
|
34
|
+
- Rebrand is complete (BrandAudit → DomainForge → NamingGuide to lock in the new direction)
|
|
35
|
+
- Company is pre-launch and setting up brand infrastructure
|
|
36
|
+
|
|
37
|
+
**Integration:**
|
|
38
|
+
- After CompetitorNames: use competitive landscape to inform what the guide should avoid
|
|
39
|
+
- After BrandAudit: use audit findings to anchor the "what we've learned" section
|
|
40
|
+
- Before DomainForge: guide constrains and focuses name generation
|
|
41
|
+
- Standalone: produces guide from scratch based on brand context
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
## Step 1 — Collect Brand Context
|
|
46
|
+
|
|
47
|
+
Before writing the guide, gather:
|
|
48
|
+
|
|
49
|
+
1. **Company/product name** — the anchor brand
|
|
50
|
+
2. **Category and archetype** — what type of company is this?
|
|
51
|
+
3. **Audience** — who are they naming things for? (developers, consumers, enterprise buyers)
|
|
52
|
+
4. **Scale of naming problem** — features only? Products? Sub-brands? Partnerships?
|
|
53
|
+
5. **Existing names** — list everything they've already named. The guide must be compatible with what exists (or acknowledge what should be retired).
|
|
54
|
+
6. **What's gone wrong** — why do they need a guide now? Inconsistency? Bad names? Competitor confusion? Scaling chaos?
|
|
55
|
+
7. **Tone references** — 3-5 names (their own or admired) that feel right
|
|
56
|
+
|
|
57
|
+
If context is incomplete, ask. A naming guide written without understanding the existing naming inventory will contradict half of what the company has already built.
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
## Step 2 — Audit Existing Names
|
|
62
|
+
|
|
63
|
+
Before defining rules, understand what already exists.
|
|
64
|
+
|
|
65
|
+
For each existing product/feature name, quickly classify:
|
|
66
|
+
- Style (invented, modified real word, descriptive, etc.)
|
|
67
|
+
- Does it match what the company's brand should signal?
|
|
68
|
+
- Is it consistent with the other names?
|
|
69
|
+
|
|
70
|
+
**Pattern:** Most companies discover their existing names fall into 2-3 incompatible styles. The guide's job is to pick one and deprecate the others (gracefully).
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
## Step 3 — Define Naming Principles
|
|
75
|
+
|
|
76
|
+
Every naming guide starts with 3-5 principles — the beliefs that drive every naming decision.
|
|
77
|
+
|
|
78
|
+
Principles are NOT aspirational values. They are hard choices that rule things in or out.
|
|
79
|
+
|
|
80
|
+
**Strong principle examples:**
|
|
81
|
+
- "We name things for what they feel like, not what they do." → rules out descriptive names
|
|
82
|
+
- "Every name works as a spoken word in a 30-second demo." → rules out acronyms and hard-to-pronounce invented words
|
|
83
|
+
- "We never use -ify, -ly, or -hub suffixes." → specific, enforceable
|
|
84
|
+
- "Product names are 1-2 words maximum." → length constraint
|
|
85
|
+
- "We prefer invented or modified words over real words used out-of-context." → style preference with clear rationale
|
|
86
|
+
|
|
87
|
+
**Weak principle examples (don't use these):**
|
|
88
|
+
- "Names should be memorable" → every guide says this, it rules nothing out
|
|
89
|
+
- "Names should reflect our values" → too vague to apply
|
|
90
|
+
- "Names should be unique" → every guide says this too
|
|
91
|
+
|
|
92
|
+
Generate principles from:
|
|
93
|
+
1. The existing names that work best — what do they have in common?
|
|
94
|
+
2. The existing names that work worst — what pattern created the problem?
|
|
95
|
+
3. The competitive landscape — what must the guide ensure they don't do?
|
|
96
|
+
4. The audience — what naming conventions does the audience trust?
|
|
97
|
+
|
|
98
|
+
---
|
|
99
|
+
|
|
100
|
+
## Step 4 — Define the Naming System
|
|
101
|
+
|
|
102
|
+
The system answers: what types of things get named, and how?
|
|
103
|
+
|
|
104
|
+
**Naming tiers (common structure):**
|
|
105
|
+
|
|
106
|
+
| Tier | What it covers | Naming rule |
|
|
107
|
+
|------|---------------|-------------|
|
|
108
|
+
| Brand | The company itself | Already set — guide must be compatible |
|
|
109
|
+
| Products | Distinct product offerings | [specific style] |
|
|
110
|
+
| Features | Capabilities within a product | [specific style — often different from products] |
|
|
111
|
+
| Releases/versions | Time-based milestones | [e.g., codenames, numbers, seasons] |
|
|
112
|
+
| Sub-brands | Separate brand identities | [rules for how far sub-brands can deviate] |
|
|
113
|
+
| Partnerships | Co-branded products | [how partner name integrates] |
|
|
114
|
+
|
|
115
|
+
Not all companies need all tiers. Define only the tiers that apply.
|
|
116
|
+
|
|
117
|
+
**Common systems:**
|
|
118
|
+
|
|
119
|
+
*Galaxy system (Apple, Google):* Products get clean standalone names. Features get descriptive names. Sub-brands share visual identity but get distinct names. (iPhone, Siri, FaceTime, Apple Watch)
|
|
120
|
+
|
|
121
|
+
*Constellation system (Stripe):* Core brand is standalone. Products expand with compound names that start with the brand. (Stripe, Stripe Atlas, Stripe Radar, Stripe Issuing)
|
|
122
|
+
|
|
123
|
+
*Ecosystem system (Notion):* Everything lives under one umbrella. Features are described, not branded. No sub-brands. Consistency over personality.
|
|
124
|
+
|
|
125
|
+
*Codename system (OS X / macOS):* Releases get memorable codenames (Mojave, Ventura). Provides narrative without permanent naming commitment.
|
|
126
|
+
|
|
127
|
+
Full naming system patterns: `references/guide-structure.md`
|
|
128
|
+
|
|
129
|
+
---
|
|
130
|
+
|
|
131
|
+
## Step 5 — Write the Dos and Don'ts
|
|
132
|
+
|
|
133
|
+
This is the most-used section of any naming guide. Make it specific.
|
|
134
|
+
|
|
135
|
+
**Format:** Every don't needs a reason and a better alternative.
|
|
136
|
+
|
|
137
|
+
```
|
|
138
|
+
DON'T: Use -ify, -ly, -hub, -io as standalone suffixes
|
|
139
|
+
WHY: These patterns peaked in 2014 and now signal legacy tech
|
|
140
|
+
INSTEAD: Prefer clean invented words or modified real words
|
|
141
|
+
|
|
142
|
+
DON'T: Use names longer than 12 characters for products
|
|
143
|
+
WHY: Truncates in app icons, email subjects, and social handles
|
|
144
|
+
INSTEAD: 4-8 characters ideal; name the concept, not the feature list
|
|
145
|
+
|
|
146
|
+
DON'T: Name features descriptively when they deserve a brand moment
|
|
147
|
+
WHY: "Advanced Analytics Dashboard" is not a product — it's a spec sheet
|
|
148
|
+
INSTEAD: Name features that users will talk about ("Pulse", "Insights", "Radar")
|
|
149
|
+
|
|
150
|
+
DO: Test every name out loud in a sentence before approving
|
|
151
|
+
WHY: "Have you tried [name]?" — if it sounds like a feature description, it's not a brand name
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
---
|
|
155
|
+
|
|
156
|
+
## Step 6 — Build the Approval Checklist
|
|
157
|
+
|
|
158
|
+
A 5-point checklist that any team member can run on a proposed name in 5 minutes.
|
|
159
|
+
|
|
160
|
+
```
|
|
161
|
+
NAMING CHECKLIST — [Company]
|
|
162
|
+
|
|
163
|
+
□ Fits the naming principles (see Section 2)
|
|
164
|
+
□ Compatible with existing name system (tier + style)
|
|
165
|
+
□ Pronounceable on first read by target audience
|
|
166
|
+
□ No trademark conflicts in primary markets (quick search)
|
|
167
|
+
□ Domain/handle available or acquirable (check .com, .io, primary social)
|
|
168
|
+
|
|
169
|
+
All 5 checked = proceed to review
|
|
170
|
+
Any unchecked = revise before review
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
---
|
|
174
|
+
|
|
175
|
+
## Output Format
|
|
176
|
+
|
|
177
|
+
The output IS the naming guide. Produce it as a complete, usable document:
|
|
178
|
+
|
|
179
|
+
```
|
|
180
|
+
# [Company] Naming Guide
|
|
181
|
+
Version [X] — [Date]
|
|
182
|
+
|
|
183
|
+
---
|
|
184
|
+
|
|
185
|
+
## 1. What This Guide Is For
|
|
186
|
+
|
|
187
|
+
[1 paragraph: what naming problem this solves, what it covers, what it doesn't]
|
|
188
|
+
|
|
189
|
+
---
|
|
190
|
+
|
|
191
|
+
## 2. Naming Principles
|
|
192
|
+
|
|
193
|
+
**Principle 1:** [Statement]
|
|
194
|
+
*Why:* [Rationale]
|
|
195
|
+
|
|
196
|
+
**Principle 2:** [Statement]
|
|
197
|
+
*Why:* [Rationale]
|
|
198
|
+
|
|
199
|
+
[3-5 principles total]
|
|
200
|
+
|
|
201
|
+
---
|
|
202
|
+
|
|
203
|
+
## 3. Naming System
|
|
204
|
+
|
|
205
|
+
### [Tier 1 — e.g., Products]
|
|
206
|
+
Style: [invented word / modified real word / etc.]
|
|
207
|
+
Length: [X-Y characters]
|
|
208
|
+
Examples of names that fit: [list]
|
|
209
|
+
Examples that don't fit: [list]
|
|
210
|
+
|
|
211
|
+
### [Tier 2 — e.g., Features]
|
|
212
|
+
[same structure]
|
|
213
|
+
|
|
214
|
+
---
|
|
215
|
+
|
|
216
|
+
## 4. Dos and Don'ts
|
|
217
|
+
|
|
218
|
+
### Do
|
|
219
|
+
- [specific, enforceable rule]
|
|
220
|
+
- [specific, enforceable rule]
|
|
221
|
+
|
|
222
|
+
### Don't
|
|
223
|
+
- [specific pattern] — [reason] — [alternative]
|
|
224
|
+
- [specific pattern] — [reason] — [alternative]
|
|
225
|
+
|
|
226
|
+
---
|
|
227
|
+
|
|
228
|
+
## 5. Approval Checklist
|
|
229
|
+
|
|
230
|
+
□ [check 1]
|
|
231
|
+
□ [check 2]
|
|
232
|
+
□ [check 3]
|
|
233
|
+
□ [check 4]
|
|
234
|
+
□ [check 5]
|
|
235
|
+
|
|
236
|
+
---
|
|
237
|
+
|
|
238
|
+
## 6. Examples
|
|
239
|
+
|
|
240
|
+
### Names that fit this guide
|
|
241
|
+
[list with brief reason]
|
|
242
|
+
|
|
243
|
+
### Names that don't fit this guide
|
|
244
|
+
[list with brief reason — don't shame existing names, just illustrate]
|
|
245
|
+
|
|
246
|
+
---
|
|
247
|
+
|
|
248
|
+
## 7. When to Break the Rules
|
|
249
|
+
|
|
250
|
+
[1 paragraph: the guide is a tool, not a prison. Name the conditions under which a strong enough name can override the rules — and who has authority to approve the exception.]
|
|
251
|
+
```
|
|
252
|
+
|
|
253
|
+
---
|
|
254
|
+
|
|
255
|
+
## Anti-Patterns in Naming Guides
|
|
256
|
+
|
|
257
|
+
- **Too long** — if the guide takes more than 10 minutes to read, nobody will use it
|
|
258
|
+
- **Too vague** — principles that don't rule anything out are decorative, not functional
|
|
259
|
+
- **No examples** — every rule needs a good example and a bad example
|
|
260
|
+
- **No authority** — who approves a name that passes the checklist? Define it.
|
|
261
|
+
- **Ignoring existing inventory** — a guide that conflicts with 40% of existing names will be ignored
|
|
262
|
+
- **No update mechanism** — guides go stale. Add a version number and a review cadence.
|
|
263
|
+
|
|
264
|
+
Reference guides: `references/examples/sample-guides.md`
|
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
# Sample Guides — NamingGuide Reference
|
|
2
|
+
|
|
3
|
+
Two complete naming guides showing full output quality.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Example 1: B2B SaaS — Developer Analytics Platform
|
|
8
|
+
|
|
9
|
+
**Context:** "Tarka" — 4-year-old developer analytics platform. Core product + 3 new products launching. Team keeps arguing about names. Needs a guide.
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# Tarka Naming Guide
|
|
14
|
+
Version 1.0 — 2025
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## 1. What This Guide Is For
|
|
19
|
+
|
|
20
|
+
Tarka is launching three new products in 2025. This guide ensures every new name fits the brand, avoids patterns we've seen fail in this space, and can be decided in a room without a 2-hour debate. It covers product names, feature names, and release codenames. It does not cover marketing campaign names or internal project names.
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## 2. Naming Principles
|
|
25
|
+
|
|
26
|
+
**Principle 1: Names describe the feeling, not the function.**
|
|
27
|
+
"Pulse" (not "RealTimeMetrics"). "Radar" (not "AnomalyDetector"). If the name sounds like a spec sheet entry, it's not a product name.
|
|
28
|
+
|
|
29
|
+
**Principle 2: Every name works spoken aloud in a 30-second demo.**
|
|
30
|
+
If a sales rep can't say it confidently in front of a customer, it fails. Test every name out loud before approving.
|
|
31
|
+
|
|
32
|
+
**Principle 3: We own the name completely or we don't use it.**
|
|
33
|
+
Domain, primary social handles, and trademark path must all be clear before a name goes live. No "we'll sort the domain later."
|
|
34
|
+
|
|
35
|
+
**Principle 4: Short wins.**
|
|
36
|
+
4-8 characters for products. If a name requires more than 8 characters to work, it's two words trying to be one idea.
|
|
37
|
+
|
|
38
|
+
**Principle 5: No dated patterns.**
|
|
39
|
+
We don't use -ify, -ly, -hub, -io as suffix. We don't use "Smart", "Next", "Pro", "Plus" as prefix or suffix. These are legacy signals in our category.
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## 3. Naming System
|
|
44
|
+
|
|
45
|
+
### Products (Constellation model)
|
|
46
|
+
Products use the "Tarka + strong word" pattern.
|
|
47
|
+
|
|
48
|
+
Style: Tarka [invented or metaphor word]
|
|
49
|
+
Length: Second word 4-8 chars
|
|
50
|
+
Examples that fit: Tarka Pulse, Tarka Radar, Tarka Relay
|
|
51
|
+
Examples that don't fit: Tarka Analytics Dashboard, Tarka Pro, Tarka DataSync
|
|
52
|
+
|
|
53
|
+
### Features
|
|
54
|
+
Features are named only when users will refer to them by name in conversation.
|
|
55
|
+
Unnamed: data export, user roles, notification settings
|
|
56
|
+
Named: features with genuine brand moment (e.g., "Signals" for anomaly alerts, "Digest" for weekly summaries)
|
|
57
|
+
Style for named features: single real word or concept (not invented, not compound)
|
|
58
|
+
|
|
59
|
+
### Releases
|
|
60
|
+
Annual major releases get geographic codenames — Basque Country cities.
|
|
61
|
+
v2: Bilbao · v3: Donostia · v4: Vitoria
|
|
62
|
+
Minor releases: version numbers only (2.1, 2.2)
|
|
63
|
+
|
|
64
|
+
---
|
|
65
|
+
|
|
66
|
+
## 4. Dos and Don'ts
|
|
67
|
+
|
|
68
|
+
### Do
|
|
69
|
+
- Test names as spoken sentences: "Have you tried Tarka Radar?" passes. "Have you tried Tarka AnomalyDetectionModule?" fails.
|
|
70
|
+
- Check domain + GitHub org + X handle before presenting a name to leadership
|
|
71
|
+
- Use the second word of product names as a standalone test: "Pulse" works alone. "Metrics" doesn't.
|
|
72
|
+
- Prefer words that imply motion, vision, or signal (Pulse, Radar, Relay, Beacon, Drift)
|
|
73
|
+
|
|
74
|
+
### Don't
|
|
75
|
+
- **Don't use descriptive compounds** (DataSync, MetricsHub, AnalyticsFlow) — un-trademarkable, reads as generic
|
|
76
|
+
- **Don't add "Tarka" to everything** — reserve the prefix for products, not features
|
|
77
|
+
- **Don't name a feature before it's shipped** — internal codenames leak; name features at launch
|
|
78
|
+
- **Don't use competitor name fragments** — nothing that sounds like Datadog, Grafana, Amplitude, or Mixpanel
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
## 5. Approval Checklist
|
|
83
|
+
|
|
84
|
+
□ Fits at least 4 of the 5 naming principles
|
|
85
|
+
□ Second word (for products) works as a standalone English word or strong invented word
|
|
86
|
+
□ Pronounceable on first read by a non-technical user
|
|
87
|
+
□ Domain available (.io or .com) and not squatted
|
|
88
|
+
□ Trademark search shows no conflicts in software/analytics category
|
|
89
|
+
|
|
90
|
+
All 5 = proceed to leadership review
|
|
91
|
+
Any unchecked = revise first
|
|
92
|
+
|
|
93
|
+
---
|
|
94
|
+
|
|
95
|
+
## 6. Examples
|
|
96
|
+
|
|
97
|
+
**Names that fit this guide:**
|
|
98
|
+
- Tarka Pulse — motion metaphor, 5 chars, owned standalone concept
|
|
99
|
+
- Tarka Relay — handoff metaphor, 5 chars, developer-resonant
|
|
100
|
+
- Tarka Beacon — signal metaphor, 6 chars, clear
|
|
101
|
+
|
|
102
|
+
**Names that don't fit:**
|
|
103
|
+
- Tarka Analytics — descriptive, no brand value
|
|
104
|
+
- Tarka Pro — meaningless suffix
|
|
105
|
+
- Tarka DataStream — compound descriptor, 10 chars
|
|
106
|
+
|
|
107
|
+
---
|
|
108
|
+
|
|
109
|
+
## 7. When to Break the Rules
|
|
110
|
+
|
|
111
|
+
The guide is a tool. A name that scores 5/5 on the checklist but feels wrong should be questioned. A name that breaks one rule but is clearly stronger than any alternative can be approved by the CEO + Head of Marketing jointly. Document the exception and the reason. If we break the same rule twice, update the guide.
|
|
112
|
+
|
|
113
|
+
---
|
|
114
|
+
|
|
115
|
+
---
|
|
116
|
+
|
|
117
|
+
## Example 2: Consumer Wellness App
|
|
118
|
+
|
|
119
|
+
**Context:** "Lumio" — 2-year-old mood journaling app. Launching a guided meditation feature and a community space. Needs a naming guide before both launches.
|
|
120
|
+
|
|
121
|
+
---
|
|
122
|
+
|
|
123
|
+
# Lumio Naming Guide
|
|
124
|
+
Version 1.0 — 2025
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
128
|
+
## 1. What This Guide Is For
|
|
129
|
+
|
|
130
|
+
Lumio is adding two major new features in 2025. This guide ensures they feel like Lumio — not like bolt-ons from a different product. It covers feature names and any future sub-product names. It does not cover push notification copy or in-app microcopy (separate voice guide).
|
|
131
|
+
|
|
132
|
+
---
|
|
133
|
+
|
|
134
|
+
## 2. Naming Principles
|
|
135
|
+
|
|
136
|
+
**Principle 1: Names feel like something you'd say to a friend.**
|
|
137
|
+
Not "Guided Meditation Module" — "Drift" or "Still" or "Calm Space". The name should feel like a gentle suggestion, not a clinical label.
|
|
138
|
+
|
|
139
|
+
**Principle 2: Single words only for features.**
|
|
140
|
+
Lumio features are one word. Always. Two-word feature names fragment the experience.
|
|
141
|
+
|
|
142
|
+
**Principle 3: Names should work without explanation.**
|
|
143
|
+
If a user needs onboarding copy to understand what a feature name means, the name isn't doing its job. Test: can someone understand the general territory from the name alone?
|
|
144
|
+
|
|
145
|
+
**Principle 4: Warmth is non-negotiable.**
|
|
146
|
+
No hard consonant openers (K, T, V, X) for feature names. Lumio is soft — l, m, n, r, w openers only.
|
|
147
|
+
|
|
148
|
+
**Principle 5: No clinical or technical language.**
|
|
149
|
+
Nothing that belongs in a medical context ("Therapy", "CBT", "Intervention") or a technical context ("Sync", "Module", "Engine").
|
|
150
|
+
|
|
151
|
+
---
|
|
152
|
+
|
|
153
|
+
## 3. Naming System
|
|
154
|
+
|
|
155
|
+
### App features (Ecosystem model)
|
|
156
|
+
All features live under the Lumio brand. No sub-brands.
|
|
157
|
+
|
|
158
|
+
Style: Single soft word — real word out-of-context preferred, warm invented word acceptable
|
|
159
|
+
Length: 4-8 characters
|
|
160
|
+
Examples that fit: Still (meditation), Grove (community), Drift (sleep wind-down), Ember (streaks)
|
|
161
|
+
Examples that don't fit: MeditationSpace, CommunityHub, SleepMode, LumioRelax
|
|
162
|
+
|
|
163
|
+
### Future products (if Lumio ever expands beyond the app)
|
|
164
|
+
If Lumio becomes a platform, new products get names that share Lumio's phonetic warmth but stand alone. They do not use the "Lumio + word" constellation model — Lumio's audience expects simplicity, not a product family.
|
|
165
|
+
|
|
166
|
+
---
|
|
167
|
+
|
|
168
|
+
## 4. Dos and Don'ts
|
|
169
|
+
|
|
170
|
+
### Do
|
|
171
|
+
- Test every name as a recommendation: "Try Lumio's [name] tonight" — does it sound caring?
|
|
172
|
+
- Use nature and light metaphors freely — they fit Lumio's visual identity
|
|
173
|
+
- Check that the name works as a section header inside the app (single word, title case)
|
|
174
|
+
|
|
175
|
+
### Don't
|
|
176
|
+
- **Don't use clinical language** — Mood, Track, Log, Journal, Therapy, Session, Module
|
|
177
|
+
- **Don't use hard openers** — Kora, Tarka, Versa — these break Lumio's warmth
|
|
178
|
+
- **Don't name every feature** — settings, notifications, and data export don't deserve brand names
|
|
179
|
+
- **Don't use names that sound like competitor features** — avoid Calm's "Sleep Stories" territory
|
|
180
|
+
|
|
181
|
+
---
|
|
182
|
+
|
|
183
|
+
## 5. Approval Checklist
|
|
184
|
+
|
|
185
|
+
□ Single word, 4-8 characters
|
|
186
|
+
□ Soft consonant opener (l, m, n, r, w) or vowel opener
|
|
187
|
+
□ Passes the recommendation test: "Try Lumio's [name] tonight"
|
|
188
|
+
□ No clinical or technical language
|
|
189
|
+
□ Available as an in-app section name without conflict
|
|
190
|
+
|
|
191
|
+
All 5 = approved for design review
|
|
192
|
+
Any unchecked = revise
|
|
193
|
+
|
|
194
|
+
---
|
|
195
|
+
|
|
196
|
+
## 6. Examples
|
|
197
|
+
|
|
198
|
+
**Names that fit:**
|
|
199
|
+
- Still — meditation, single syllable, immediately understood
|
|
200
|
+
- Grove — community, nature metaphor, warm
|
|
201
|
+
- Ember — streak tracking, subtle warmth and persistence metaphor
|
|
202
|
+
|
|
203
|
+
**Names that don't fit:**
|
|
204
|
+
- MeditationSpace — two words, clinical
|
|
205
|
+
- RelaxZone — compound, reads like a spa chain
|
|
206
|
+
- Kora — hard opener, breaks warmth rule
|
|
207
|
+
|
|
208
|
+
---
|
|
209
|
+
|
|
210
|
+
## 7. When to Break the Rules
|
|
211
|
+
|
|
212
|
+
Lumio's rules exist to protect tone. The one overridable rule: if a two-word name is clearly stronger than any single-word option, the Head of Product and Brand Lead can approve it together. This has happened zero times so far. The constraint works.
|