mirror of
https://fastgit.cc/https://github.com/anomalyco/opencode
synced 2026-04-21 21:31:53 +08:00
16 lines
428 B
Markdown
16 lines
428 B
Markdown
# TUI Agent Guidelines
|
|
|
|
## Style
|
|
|
|
- prefer single word variable/function names
|
|
- avoid try catch where possible - prefer to let exceptions bubble up
|
|
- avoid else statements where possible
|
|
- do not make useless helper functions - inline functionality unless the
|
|
function is reusable or composable
|
|
- prefer Bun apis
|
|
|
|
## Workflow
|
|
|
|
- you can regenerate the golang sdk by calling ./scripts/stainless.ts
|
|
- we use bun for everything
|