opencode/AGENTS.md

16 lines
428 B
Markdown
Raw Normal View History

2025-06-27 01:28:22 +08:00
# TUI Agent Guidelines
2025-07-14 23:18:08 +08:00
## Style
2025-06-27 01:28:22 +08:00
2025-07-15 08:18:29 +08:00
- prefer single word variable/function names
2025-07-14 23:18:08 +08:00
- avoid try catch where possible - prefer to let exceptions bubble up
- avoid else statements where possible
2025-07-15 08:18:29 +08:00
- do not make useless helper functions - inline functionality unless the
function is reusable or composable
2025-07-14 23:18:08 +08:00
- prefer Bun apis
2025-06-27 01:28:22 +08:00
2025-07-14 23:18:08 +08:00
## Workflow
2025-06-27 01:28:22 +08:00
2025-07-14 23:18:08 +08:00
- you can regenerate the golang sdk by calling ./scripts/stainless.ts
- we use bun for everything