docs: fix LOC guideline inconsistency and list formatting in AGENTS.md

Resolve contradictory file length guidance (~700 LOC in Coding Style
vs ~500 LOC in Agent-Specific Notes) by standardizing on ~500 LOC.
Fix stray leading space breaking list formatting in Security section.
This commit is contained in:
Baek, JH 2026-01-26 20:12:42 -08:00
parent 1cca0e5072
commit 6b0a745652

View File

@ -53,7 +53,7 @@
- Formatting/linting via Oxlint and Oxfmt; run `pnpm lint` before commits. - Formatting/linting via Oxlint and Oxfmt; run `pnpm lint` before commits.
- Add brief code comments for tricky or non-obvious logic. - Add brief code comments for tricky or non-obvious logic.
- Keep files concise; extract helpers instead of “V2” copies. Use existing patterns for CLI options and dependency injection via `createDefaultDeps`. - Keep files concise; extract helpers instead of “V2” copies. Use existing patterns for CLI options and dependency injection via `createDefaultDeps`.
- Aim to keep files under ~700 LOC; guideline only (not a hard guardrail). Split/refactor when it improves clarity or testability. - Aim to keep files under ~500 LOC; guideline only (not a hard guardrail). Split/refactor when it improves clarity or testability.
- Naming: use **Clawdbot** for product/app/docs headings; use `clawdbot` for CLI command, package/binary, paths, and config keys. - Naming: use **Clawdbot** for product/app/docs headings; use `clawdbot` for CLI command, package/binary, paths, and config keys.
## Release Channels (Naming) ## Release Channels (Naming)