Skip to content

Commit 0b20154

Browse files
authored
Merge branch 'dev' into feat/agent-order-field
2 parents 9fdf467 + 999d865 commit 0b20154

167 files changed

Lines changed: 6700 additions & 4591 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.opencode/agent/translator.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,6 @@ OPENCODE_DISABLE_CLAUDE_CODE
594594
OPENCODE_DISABLE_CLAUDE_CODE_PROMPT
595595
OPENCODE_DISABLE_CLAUDE_CODE_SKILLS
596596
OPENCODE_DISABLE_DEFAULT_PLUGINS
597-
OPENCODE_DISABLE_FILETIME_CHECK
598597
OPENCODE_DISABLE_LSP_DOWNLOAD
599598
OPENCODE_DISABLE_MODELS_FETCH
600599
OPENCODE_DISABLE_PRUNE

.opencode/opencode.jsonc

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
11
{
22
"$schema": "https://opencode.ai/config.json",
3-
"provider": {
4-
"opencode": {
5-
"options": {},
6-
},
7-
},
3+
"provider": {},
84
"permission": {
95
"edit": {
106
"packages/opencode/migration/*": "deny",
117
},
128
},
13-
"plugin": ["../daytona.ts"],
149
"mcp": {},
1510
"tools": {
1611
"github-triage": false,

bun.lock

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

daytona.ts

Lines changed: 0 additions & 197 deletions
This file was deleted.

nix/hashes.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"nodeModules": {
3-
"x86_64-linux": "sha256-OPbZUo/fQv2Xsf+NEZV08GLBMN/DXovhRvn2JkesFtY=",
4-
"aarch64-linux": "sha256-WK7xlVLuirKDN5LaqjBn7qpv5bYVtYHZw0qRNKX4xXg=",
5-
"aarch64-darwin": "sha256-BAoAdeLQ+lXDD7Klxoxij683OVVug8KXEMRUqIQAjc8=",
6-
"x86_64-darwin": "sha256-ZOBwNR2gZgc5f+y3VIBBT4qZpeZfg7Of6AaGDOfqsG8="
3+
"x86_64-linux": "sha256-GjpBQhvGLTM6NWX29b/mS+KjrQPl0w9VjQHH5jaK9SM=",
4+
"aarch64-linux": "sha256-F5h9p+iZ8CASdUYaYR7O22NwBRa/iT+ZinUxO8lbPTc=",
5+
"aarch64-darwin": "sha256-jWo5yvCtjVKRf9i5XUcTTaLtj2+G6+T1Td2llO/cT5I=",
6+
"x86_64-darwin": "sha256-LzV+5/8P2mkiFHmt+a8zDeJjRbU8z9nssSA4tzv1HxA="
77
}
88
}

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
"@types/cross-spawn": "6.0.6",
3535
"@octokit/rest": "22.0.0",
3636
"@hono/zod-validator": "0.4.2",
37+
"@opentui/core": "0.1.99",
38+
"@opentui/solid": "0.1.99",
3739
"ulid": "3.0.1",
3840
"@kobalte/core": "0.13.11",
3941
"@types/luxon": "3.7.1",
@@ -51,7 +53,7 @@
5153
"drizzle-kit": "1.0.0-beta.19-d95b7a4",
5254
"drizzle-orm": "1.0.0-beta.19-d95b7a4",
5355
"effect": "4.0.0-beta.48",
54-
"ai": "6.0.158",
56+
"ai": "6.0.168",
5557
"cross-spawn": "7.0.6",
5658
"hono": "4.10.7",
5759
"hono-openapi": "1.1.2",
@@ -95,7 +97,6 @@
9597
},
9698
"dependencies": {
9799
"@aws-sdk/client-s3": "3.933.0",
98-
"@daytona/sdk": "0.167.0",
99100
"@opencode-ai/plugin": "workspace:*",
100101
"@opencode-ai/script": "workspace:*",
101102
"@opencode-ai/sdk": "workspace:*",

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.4.7",
3+
"version": "1.4.10",
44
"description": "",
55
"type": "module",
66
"exports": {

packages/app/src/context/global-sync.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,6 @@ function createGlobalSync() {
264264
children.pin(directory)
265265
const promise = Promise.resolve().then(async () => {
266266
const child = children.ensureChild(directory)
267-
child[1]("bootstrapPromise", promise!)
268267
const cache = children.vcsCache.get(directory)
269268
if (!cache) return
270269
const sdk = sdkFor(directory)

packages/app/src/context/global-sync/child-store.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,6 @@ export function createChildStoreManager(input: {
182182
limit: 5,
183183
message: {},
184184
part: {},
185-
bootstrapPromise: Promise.resolve(),
186185
})
187186
children[directory] = child
188187
disposers.set(directory, dispose)

packages/app/src/context/global-sync/types.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ export type State = {
7272
part: {
7373
[messageID: string]: Part[]
7474
}
75-
bootstrapPromise: Promise<void>
7675
}
7776

7877
export type VcsCache = {

0 commit comments

Comments
 (0)