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.
npx claudepluginhub nathanvale/side-quest-plugins --plugin enterpriseThis skill uses the workspace's default tool permissions.
This knowledge skill provides context about project coding standards and conventions. Injected into Builder (Scotty) and Validator (McCoy) agents during engage.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Retrieves current documentation, API references, and code examples for libraries, frameworks, SDKs, CLIs, and services via Context7 CLI. Ideal for API syntax, configs, migrations, and setup queries.
Uses ctx7 CLI to fetch current library docs, manage AI coding skills (install/search/generate), and configure Context7 MCP for AI editors.
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 colocated