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 +0 -1
- package/dist/discordBot.js +1 -1
- package/package.json +1 -1
- package/src/cli.ts +0 -1
- package/src/discordBot.ts +1 -1
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
|
package/dist/discordBot.js
CHANGED
|
@@ -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,
|
|
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
package/src/cli.ts
CHANGED
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,
|
|
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
|
|