Skip to content

Commit 3cb88f0

Browse files
committed
Merge branch 'dev' into feat/keybindable-commands
2 parents 7b23e5d + f822331 commit 3cb88f0

File tree

26 files changed

+475
-211
lines changed

26 files changed

+475
-211
lines changed

.opencode/agent/docs.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ You are an expert technical documentation writer
66

77
You are not verbose
88

9+
Use a relaxed and friendly tone
10+
911
The title of the page should be a word or a 2-3 word phrase
1012

1113
The description should be one short line, should not start with "The", should

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ your debugger via that URL. Other methods can result in breakpoints being mapped
5353

5454
Caveats:
5555

56-
- `*.tsx` files won't have their breakpoints correctly mapped. This seems due to Bun currently not supporting source maps on code transformed
57-
via `BunPlugin`s (currently necessary due to our dependency on `@opentui/solid`). Currently, the best you can do in terms of debugging `*.tsx`
58-
files is writing a `debugger;` statement. Debugging facilities like stepping won't work, but at least you will be informed if a specific code
59-
is triggered.
6056
- If you want to run the OpenCode TUI and have breakpoints triggered in the server code, you might need to run `bun dev spawn` instead of
6157
the usual `bun dev`. This is because `bun dev` runs the server in a worker thread and breakpoints might not work there.
58+
- If `spawn` does not work for you, you can debug the server separately:
59+
- Debug server: `bun run --inspect=ws://localhost:6499/ ./src/index.ts serve --port 4096`,
60+
then attach TUI with `opencode attach http://localhost:4096`
61+
- Debug TUI: `bun run --inspect=ws://localhost:6499/ --conditions=browser ./src/index.ts`
6262

6363
Other tips and tricks:
6464

bun.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencode-ai/app",
3-
"version": "1.0.195",
3+
"version": "1.0.196",
44
"description": "",
55
"type": "module",
66
"exports": {

packages/console/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencode-ai/console-app",
3-
"version": "1.0.195",
3+
"version": "1.0.196",
44
"type": "module",
55
"scripts": {
66
"typecheck": "tsgo --noEmit",

packages/console/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json.schemastore.org/package.json",
33
"name": "@opencode-ai/console-core",
4-
"version": "1.0.195",
4+
"version": "1.0.196",
55
"private": true,
66
"type": "module",
77
"dependencies": {

packages/console/function/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencode-ai/console-function",
3-
"version": "1.0.195",
3+
"version": "1.0.196",
44
"$schema": "https://json.schemastore.org/package.json",
55
"private": true,
66
"type": "module",

packages/console/mail/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencode-ai/console-mail",
3-
"version": "1.0.195",
3+
"version": "1.0.196",
44
"dependencies": {
55
"@jsx-email/all": "2.2.3",
66
"@jsx-email/cli": "1.4.3",

packages/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@opencode-ai/desktop",
33
"private": true,
4-
"version": "1.0.195",
4+
"version": "1.0.196",
55
"type": "module",
66
"scripts": {
77
"typecheck": "tsgo -b",

packages/enterprise/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencode-ai/enterprise",
3-
"version": "1.0.195",
3+
"version": "1.0.196",
44
"private": true,
55
"type": "module",
66
"scripts": {

0 commit comments

Comments
 (0)