@brianli/kimaki 0.4.73-brianli.5 → 0.4.73-brianli.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli.js CHANGED
@@ -891,7 +891,7 @@ async function run({ restartOnboarding, addChannels, useWorktrees, enableVoiceCh
891
891
  return {
892
892
  appId: KIMAKI_SHARED_APP_ID,
893
893
  token: `${KIMAKI_CLIENT_ID}:${KIMAKI_CLIENT_SECRET}`,
894
- isQuickStart: false,
894
+ isQuickStart: !addChannels,
895
895
  isGatewayMode: true,
896
896
  previousAppId: existingBot?.appId,
897
897
  };
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@brianli/kimaki",
3
3
  "module": "index.ts",
4
4
  "type": "module",
5
- "version": "0.4.73-brianli.5",
5
+ "version": "0.4.73-brianli.6",
6
6
  "repository": "https://github.com/remorses/kimaki",
7
7
  "bin": "bin.js",
8
8
  "files": [
@@ -22,9 +22,9 @@
22
22
  "prisma": "7.3.0",
23
23
  "tsx": "^4.20.5",
24
24
  "db": "^0.0.0",
25
- "opencode-deterministic-provider": "^0.0.1",
25
+ "discord-digital-twin": "^0.0.1",
26
26
  "opencode-cached-provider": "^0.0.1",
27
- "discord-digital-twin": "^0.0.1"
27
+ "opencode-deterministic-provider": "^0.0.1"
28
28
  },
29
29
  "dependencies": {
30
30
  "@ai-sdk/google": "^3.0.30",
@@ -57,8 +57,8 @@
57
57
  "xdg-basedir": "^5.1.0",
58
58
  "zod": "^4.3.6",
59
59
  "zustand": "^5.0.11",
60
- "errore": "^0.14.0",
61
- "traforo": "^0.0.9"
60
+ "traforo": "^0.0.9",
61
+ "errore": "^0.14.0"
62
62
  },
63
63
  "optionalDependencies": {
64
64
  "@discordjs/opus": "^0.10.0",
package/src/cli.ts CHANGED
@@ -1291,7 +1291,7 @@ async function run({
1291
1291
  return {
1292
1292
  appId: KIMAKI_SHARED_APP_ID,
1293
1293
  token: `${KIMAKI_CLIENT_ID}:${KIMAKI_CLIENT_SECRET}`,
1294
- isQuickStart: false,
1294
+ isQuickStart: !addChannels,
1295
1295
  isGatewayMode: true,
1296
1296
  previousAppId: existingBot?.appId,
1297
1297
  }