summaryrefslogtreecommitdiffhomepage
path: root/AGENTS.md
diff options
context:
space:
mode:
authorDax <[email protected]>2026-03-10 12:53:47 -0400
committerGitHub <[email protected]>2026-03-10 12:53:47 -0400
commit613562f5047aa0bad934da401146a04ed8adce84 (patch)
tree5f45b1f33ab6231c2eb9921c384a42de09e10077 /AGENTS.md
parent9c4325bcf8070d84a6911ae78b898c116ebad2ac (diff)
downloadopencode-613562f5047aa0bad934da401146a04ed8adce84.tar.gz
opencode-613562f5047aa0bad934da401146a04ed8adce84.zip
core: make account login upgrades safe while adding multi-account workspace auth (#15487)
Co-authored-by: Kit Langton <[email protected]> Co-authored-by: Claude Opus 4.6 <[email protected]>
Diffstat (limited to 'AGENTS.md')
-rw-r--r--AGENTS.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/AGENTS.md b/AGENTS.md
index 2158d73af..0b080ac4e 100644
--- a/AGENTS.md
+++ b/AGENTS.md
@@ -122,3 +122,7 @@ const table = sqliteTable("session", {
- Avoid mocks as much as possible
- Test actual implementation, do not duplicate logic into tests
- Tests cannot run from repo root (guard: `do-not-run-tests-from-root`); run from package dirs like `packages/opencode`.
+
+## Type Checking
+
+- Always run `bun typecheck` from package directories (e.g., `packages/opencode`), never `tsc` directly.