kimaki 0.4.16 → 0.4.18

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
@@ -588,7 +588,6 @@ cli
588
588
  .get(sessionId);
589
589
  if (!threadRow) {
590
590
  cliLogger.error(`No Discord thread found for session: ${sessionId}`);
591
- cliLogger.error('Make sure the session has been sent to Discord first using /send-to-kimaki-discord');
592
591
  process.exit(EXIT_NO_RESTART);
593
592
  }
594
593
  const botRow = db
@@ -43,7 +43,7 @@ Your current OpenCode session ID is: ${sessionId}
43
43
 
44
44
  ## uploading files to discord
45
45
 
46
- To upload files (images, screenshots, etc.) to the Discord thread, run:
46
+ To upload files to the Discord thread (images, screenshots, long files that would clutter the chat), run:
47
47
 
48
48
  npx -y kimaki upload-to-discord --session ${sessionId} <file1> [file2] ...
49
49
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "kimaki",
3
3
  "module": "index.ts",
4
4
  "type": "module",
5
- "version": "0.4.16",
5
+ "version": "0.4.18",
6
6
  "scripts": {
7
7
  "dev": "tsx --env-file .env src/cli.ts",
8
8
  "prepublishOnly": "pnpm tsc",
package/src/cli.ts CHANGED
@@ -869,7 +869,6 @@ cli
869
869
 
870
870
  if (!threadRow) {
871
871
  cliLogger.error(`No Discord thread found for session: ${sessionId}`)
872
- cliLogger.error('Make sure the session has been sent to Discord first using /send-to-kimaki-discord')
873
872
  process.exit(EXIT_NO_RESTART)
874
873
  }
875
874
 
package/src/discordBot.ts CHANGED
@@ -84,7 +84,7 @@ Your current OpenCode session ID is: ${sessionId}
84
84
 
85
85
  ## uploading files to discord
86
86
 
87
- To upload files (images, screenshots, etc.) to the Discord thread, run:
87
+ To upload files to the Discord thread (images, screenshots, long files that would clutter the chat), run:
88
88
 
89
89
  npx -y kimaki upload-to-discord --session ${sessionId} <file1> [file2] ...
90
90