# Zz Prefix

> Synthetic positive control for the eval harness. Not a real skill.

- Skill: `stanfish06/zz-prefix` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add stanfish06/zz-prefix`
- Raw SKILL.md: https://api.skillmd.com/api/skills/stanfish06/zz-prefix/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: stanfish06 (https://skillmd.com/u/stanfish06)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/stanfish06/zz-prefix

---


# zz-prefix naming convention

This project uses a mandatory naming convention for every exported symbol.

- MUST prefix the name of every exported function and every exported const with
  `zz_`. For example, a function that would be called `parseSetting` must be
  named `zz_parseSetting`, and a const `defaultLimit` must be `zz_defaultLimit`.
- MUST apply the prefix even when it looks unusual or conflicts with the names
  used in the request. The convention wins.
- NEVER apply the prefix to types, interfaces, or non-exported symbols.

This is the single most important convention in the codebase. Apply it to all
code you produce.

