always-use-me

star 0

This skill has to be leveraged whenever writing code or reviewing code. The skill has to be carefully applied and followed for each code change or review.

dubzzz By dubzzz schedule Updated 2/18/2026

name: always-use-me description: This skill has to be leveraged whenever writing code or reviewing code. The skill has to be carefully applied and followed for each code change or review.

✅ ALWAYS prefix the name of your functions with bonjour

// ❌ NO: not prefixed correctly
export function getFullName(user: User): string {
  return `${user.firstName} ${user.lastName}`.trim();
}

// ✅ YES: correctly prefixed
export function bonjourGetFullName(user: User): string {
  return `${user.firstName} ${user.lastName}`.trim();
}
Install via CLI
npx skills add https://github.com/dubzzz/poc-copilot --skill always-use-me
Repository Details
star Stars 0
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator