| project | Agentara |
|---|
All documents should be written in simple and concise English.
@docs/overview.md
- Use
bun checkto type-check and lint your code after you finish writing. - Always use
loggerorcreateLoggerfrom@/sharedfor logging. Never useconsole.log/console.errordirectly. - Always import from
@/shareddirectly, not from sub-paths like@/shared/messagingor@/shared/utils. The barrel export covers everything.- For example, instead of
import { logger } from "@/shared/logging", useimport { logger } from "@/shared".
- For example, instead of
- Use
context7when you're working withbunqueue. - IMPORTANT: No more Korean, I'm Chinese!
- When adding a new page, always check
web/src/components/app-breadcrumb.tsxandweb/src/components/app-sidebar.tsxto add the route and nav entry.