Skip to content

Commit 1190fe3

Browse files
committed
Merge branch 'dev' into opentui
2 parents dc93d3f + 991f85c commit 1190fe3

File tree

91 files changed

+6961
-1234
lines changed

Some content is hidden

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

91 files changed

+6961
-1234
lines changed

.opencode/command/commit.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ ci:
88
ignore:
99
wip:
1010

11-
the message should prefer to explain WHY something was changed rather than WHAT was changed
11+
prefer to explain WHY something was done from an end user perspective instead of
12+
WHAT was done.

STATS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,3 +95,4 @@
9595
| 2025-09-28 | 414,910 (+3,292) | 322,522 (+4,759) | 737,432 (+8,051) |
9696
| 2025-09-29 | 419,919 (+5,009) | 328,033 (+5,511) | 747,952 (+10,520) |
9797
| 2025-09-30 | 427,991 (+8,072) | 336,472 (+8,439) | 764,463 (+16,511) |
98+
| 2025-10-01 | 433,591 (+5,600) | 341,742 (+5,270) | 775,333 (+10,870) |

bun.lock

Lines changed: 727 additions & 141 deletions
Large diffs are not rendered by default.

infra/console.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,9 @@ const STRIPE_WEBHOOK_SECRET = new sst.Linkable("STRIPE_WEBHOOK_SECRET", {
110110
// CONSOLE
111111
////////////////
112112

113+
const AWS_SES_ACCESS_KEY_ID = new sst.Secret("AWS_SES_ACCESS_KEY_ID")
114+
const AWS_SES_SECRET_ACCESS_KEY = new sst.Secret("AWS_SES_SECRET_ACCESS_KEY")
115+
113116
let logProcessor
114117
if ($app.stage === "production" || $app.stage === "frank") {
115118
const HONEYCOMB_API_KEY = new sst.Secret("HONEYCOMB_API_KEY")
@@ -122,7 +125,16 @@ if ($app.stage === "production" || $app.stage === "frank") {
122125
new sst.cloudflare.x.SolidStart("Console", {
123126
domain,
124127
path: "packages/console/app",
125-
link: [database, AUTH_API_URL, STRIPE_WEBHOOK_SECRET, STRIPE_SECRET_KEY, ZEN_MODELS, EMAILOCTOPUS_API_KEY],
128+
link: [
129+
database,
130+
AUTH_API_URL,
131+
STRIPE_WEBHOOK_SECRET,
132+
STRIPE_SECRET_KEY,
133+
ZEN_MODELS,
134+
EMAILOCTOPUS_API_KEY,
135+
AWS_SES_ACCESS_KEY_ID,
136+
AWS_SES_SECRET_ACCESS_KEY,
137+
],
126138
environment: {
127139
//VITE_DOCS_URL: web.url.apply((url) => url!),
128140
//VITE_API_URL: gateway.url.apply((url) => url!),

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"@hono/zod-validator": "0.4.2",
2323
"ulid": "3.0.1",
2424
"@openauthjs/openauth": "0.0.0-20250322224806",
25+
"@kobalte/core": "0.13.11",
2526
"@types/node": "22.13.9",
2627
"@tsconfig/node22": "22.0.2",
2728
"ai": "5.0.8",

packages/app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencode/app",
3-
"version": "0.13.5",
3+
"version": "0.13.7",
44
"description": "",
55
"type": "module",
66
"scripts": {
@@ -21,7 +21,7 @@
2121
"vite-plugin-solid": "^2.11.6"
2222
},
2323
"dependencies": {
24-
"@kobalte/core": "0.13.11",
24+
"@kobalte/core": "catalog:",
2525
"@opencode-ai/sdk": "workspace:*",
2626
"@shikijs/transformers": "3.9.2",
2727
"@solid-primitives/event-bus": "1.1.2",

packages/console/app/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,15 @@
77
"dev:remote": "VITE_AUTH_URL=https://auth.dev.opencode.ai bun sst shell --stage=dev bun dev",
88
"build": "vinxi build && ../../opencode/script/schema.ts ./.output/public/config.json",
99
"start": "vinxi start",
10-
"version": "0.13.5"
10+
"version": "0.13.7"
1111
},
1212
"dependencies": {
1313
"@ibm/plex": "6.4.1",
1414
"@opencode/console-core": "workspace:*",
1515
"@openauthjs/openauth": "catalog:",
16+
"@kobalte/core": "catalog:",
17+
"@jsx-email/render": "1.1.1",
18+
"@opencode/console-mail": "workspace:*",
1619
"@solidjs/meta": "^0.29.4",
1720
"@solidjs/router": "^0.15.0",
1821
"@solidjs/start": "^1.1.0",

packages/console/app/public/email

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../mail/emails/templates/static
Lines changed: 23 additions & 0 deletions
Loading
Lines changed: 4 additions & 4 deletions
Loading

0 commit comments

Comments
 (0)