mirror of
https://github.com/domfelipe/pokebuddy.git
synced 2026-08-07 05:56:50 +00:00
915 B
915 B
Naming Guidelines
Companion names should be short, original and developer-flavored.
Good patterns
Blend a technical concept with a creature, object or vibe:
Zap+bit→ ZapbitDiskette+x→ DiskettexNull+Wisp→ NullWispPrompt+Moth→ PromptMothCache+Goblin→ CacheGoblinMerge+Drake→ MergeDrake
Good names
- LintFox
- CronCrab
- TokenBat
- EnvImp
- JsonGecko
- ApiOtter
- DockerMole
- Shellfin
- ForkSprite
- BugSlug
Avoid
Avoid names that are:
- direct references to third-party characters;
- modified versions of third-party character names;
- too close to protected brands;
- hard to pronounce;
- too generic.
Test
Ask:
- Is this name searchable?
- Does it evoke a dev concept?
- Would it still work without any outside reference?
- Could a contributor draw it without copying anything?
If yes, it probably belongs here.