nextfriday-naming

Installation
SKILL.md

Next Friday Naming Conventions

Rules for naming variables, constants, and files.

Variable Naming

Boolean Prefix

Boolean variables must use prefixes: is, has, should, can, did, will

// Bad:
const loading = true;
const visible: boolean = true;

// Good:
const isLoading = true;
const isVisible: boolean = true;
Installs
2
First Seen
Jan 30, 2026
nextfriday-naming — next-friday/nextfriday-skills