From enterprise
Knowledge skill for project conventions and coding standards. Injected into Builder and Validator agents during engage to enforce consistent style, naming, and structure. Not user-invocable.
How this skill is triggered — by the user, by Claude, or both
Slash command
/enterprise:project-conventionsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This knowledge skill provides context about project coding standards and conventions. Injected into Builder (Scotty) and Validator (McCoy) agents during engage.
This knowledge skill provides context about project coding standards and conventions. Injected into Builder (Scotty) and Validator (McCoy) agents during engage.
'hello' not "hello")biome.json only, NEVER nested configs| What | Convention | Example |
|---|---|---|
| Files | kebab-case | my-util.ts, user-service.ts |
| Directories | kebab-case | test-utils/, side-quest/ |
| Functions | camelCase | doSomething(), validatePath() |
| Variables | camelCase | const maxRetries = 3 |
| Types/Interfaces | PascalCase | type MyType, interface UserConfig |
| Constants | camelCase or UPPER_SNAKE_CASE | const defaultTimeout = 5000 or const MAX_RETRIES = 3 |
| Test files | colocated with source | my-util.test.ts next to my-util.ts |
index.ts re-exports public API_ or keep unexported; do not expose implementation detailssrc/
feature-name/
feature-name.ts -- Main implementation
feature-name.test.ts -- Colocated tests
feature-name.types.ts -- Types (if complex)
index.ts -- Barrel export
Conventional Commits (enforced by commitlint):
type(scope): subject
Types: feat, fix, chore, refactor, test, docs, perf, ci
Scope: package or feature name
Subject: imperative, lowercase, no period
index.ts__tests__/ directories instead of colocatednpx claudepluginhub nathanvale/side-quest-plugins --plugin enterpriseExtracts existing project coding conventions (naming, file structure, error handling, testing, imports, API design, async patterns) and enforces them on new code. Produces a code style map in memory/patterns.md.
Defines coding conventions and standards for AI collaboration: naming rules, code style, folder structure, and environment variable conventions.
Use when contributing code to an existing project - guarantees that every new line mirrors the established conventions, naming schemes, architectural layering, directory layout, and stylistic choices already present in the codebase rather than drifting toward generic AI defaults