Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Use `.github/prompts/*.prompt.md` for guided workflows:
- Avoid risky renames or moves of core stack paths used by downstream merges
- Keep changes minimal and merge-friendly for downstream projects
- Flag security or mergeability risks explicitly in reviews
- Every new or modified function must have a JSDoc header: one-line description, `@param` for each argument, `@returns` for any non-void return value (always include `@returns` for async functions to document the resolved value)

## Architecture and modularity

Expand All @@ -62,4 +63,4 @@ Use `.github/prompts/*.prompt.md` for guided workflows:

- `npm run lint` passes
- `npm test` passes
- Cross-module impact is documented and justified when present
- Cross-module impact is documented and justified when present
1 change: 1 addition & 0 deletions ERRORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ Use this file as a compact memory of recurring AI mistakes.

## Entries

- [2026-02-22] functions: added functions without JSDoc header -> always add JSDoc (description + @param + @returns)