docs(omo-codex): batch 92 (13 files)

This commit is contained in:
YeonGyu-Kim
2026-05-30 19:12:17 +09:00
parent d921e54e3b
commit 0f88a130b4
13 changed files with 410 additions and 0 deletions
@@ -0,0 +1,25 @@
# Repository Conventions
Conventions for humans and agents working on this repository.
## Style
- TypeScript strict mode. No `any`, `@ts-ignore`, `@ts-expect-error`, or enums.
- ESM modules with `.js` suffix in import paths.
- Tabs for indentation. Double quotes for strings.
- Runtime is Node only.
- Tests use vitest and should exercise Codex hook/MCP behavior before implementation changes.
## Commands
- `npm install` installs dependencies.
- `npm test` runs the test suite once.
- `npm run typecheck` runs strict TypeScript checking.
- `npm run check` runs typecheck, Biome, and build.
## LSP Constraints
- LSP server processes are owned by `LspManager`.
- Tool execution acquires clients through `withLspClient(...)` unless it only reports static status.
- `lsp.rename` mutates files by applying workspace edits; keep it sequential at the MCP caller level.
- Do not add pi-coding-agent or omo source dependencies. This package is standalone.