kimaki 0.4.77 → 0.4.79
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/channel-management.js +2 -2
- package/dist/cli.js +201 -125
- package/dist/commands/action-buttons.js +1 -1
- package/dist/commands/diff.js +20 -85
- package/dist/commands/login.js +582 -277
- package/dist/commands/resume.js +2 -2
- package/dist/commands/screenshare.js +295 -0
- package/dist/commands/tasks.js +205 -0
- package/dist/commands/undo-redo.js +28 -12
- package/dist/context-awareness-plugin.js +347 -0
- package/dist/critique-utils.js +95 -0
- package/dist/database.js +66 -7
- package/dist/db.js +39 -1
- package/dist/diff-patch-plugin.js +314 -0
- package/dist/discord-bot.js +37 -17
- package/dist/discord-urls.js +11 -0
- package/dist/discord-ws-proxy.js +350 -0
- package/dist/discord-ws-proxy.test.js +500 -0
- package/dist/errors.js +1 -1
- package/dist/gateway-session.js +163 -0
- package/dist/hrana-server.js +114 -4
- package/dist/interaction-handler.js +40 -7
- package/dist/ipc-tools-plugin.js +186 -0
- package/dist/message-formatting.js +3 -62
- package/dist/message-preprocessing.js +16 -11
- package/dist/onboarding-tutorial-plugin.js +1 -1
- package/dist/onboarding-welcome.js +1 -1
- package/dist/opencode-interrupt-plugin.js +133 -75
- package/dist/opencode-plugin.js +11 -389
- package/dist/opencode.js +58 -5
- package/dist/parse-permission-rules.test.js +117 -0
- package/dist/patch-text-parser.js +97 -0
- package/dist/queue-drain-after-interactive-ui.e2e.test.js +119 -0
- package/dist/session-handler/thread-session-runtime.js +52 -24
- package/dist/startup-time.e2e.test.js +295 -0
- package/dist/store.js +1 -0
- package/dist/system-message.js +2 -1
- package/dist/task-runner.js +7 -3
- package/dist/task-schedule.js +12 -0
- package/dist/thread-message-queue.e2e.test.js +13 -1
- package/dist/undo-redo.e2e.test.js +166 -0
- package/dist/utils.js +4 -1
- package/dist/voice-handler.js +6 -4
- package/dist/websockify.js +69 -0
- package/package.json +11 -9
- package/skills/egaki/SKILL.md +80 -15
- package/skills/errore/SKILL.md +13 -0
- package/skills/event-sourcing-state/SKILL.md +188 -34
- package/skills/npm-package/SKILL.md +2 -2
- package/skills/playwriter/SKILL.md +1 -1
- package/skills/spiceflow/SKILL.md +14 -0
- package/skills/zele/SKILL.md +9 -0
- package/src/channel-management.ts +2 -2
- package/src/cli.ts +222 -128
- package/src/commands/action-buttons.ts +1 -0
- package/src/commands/diff.ts +25 -99
- package/src/commands/login.ts +779 -336
- package/src/commands/resume.ts +6 -1
- package/src/commands/screenshare.ts +354 -0
- package/src/commands/tasks.ts +293 -0
- package/src/commands/undo-redo.ts +30 -14
- package/src/context-awareness-plugin.ts +469 -0
- package/src/critique-utils.ts +139 -0
- package/src/database.ts +79 -7
- package/src/db.ts +40 -1
- package/src/discord-bot.ts +41 -15
- package/src/discord-urls.ts +12 -0
- package/src/errors.ts +1 -1
- package/src/hrana-server.ts +124 -3
- package/src/interaction-handler.ts +56 -9
- package/src/ipc-tools-plugin.ts +228 -0
- package/src/message-formatting.ts +3 -68
- package/src/message-preprocessing.ts +18 -11
- package/src/onboarding-welcome.ts +1 -1
- package/src/opencode-interrupt-plugin.ts +164 -91
- package/src/opencode-plugin.ts +12 -482
- package/src/opencode.ts +59 -5
- package/src/parse-permission-rules.test.ts +127 -0
- package/src/patch-text-parser.ts +107 -0
- package/src/queue-drain-after-interactive-ui.e2e.test.ts +151 -0
- package/src/session-handler/thread-runtime-state.ts +4 -1
- package/src/session-handler/thread-session-runtime.ts +64 -15
- package/src/startup-time.e2e.test.ts +372 -0
- package/src/store.ts +8 -0
- package/src/system-message.ts +9 -1
- package/src/task-runner.ts +9 -22
- package/src/task-schedule.ts +15 -0
- package/src/thread-message-queue.e2e.test.ts +14 -1
- package/src/undo-redo.e2e.test.ts +207 -0
- package/src/utils.ts +7 -0
- package/src/voice-handler.ts +6 -2
- package/src/websockify.ts +101 -0
- package/src/onboarding-tutorial-plugin.ts +0 -93
|
@@ -138,7 +138,7 @@ export async function createDefaultKimakiChannel({ guild, botName, appId, isGate
|
|
|
138
138
|
await guild.channels.fetch();
|
|
139
139
|
}
|
|
140
140
|
catch (error) {
|
|
141
|
-
logger.warn(`Could not fetch guild channels for ${guild.name}: ${error instanceof Error ? error.
|
|
141
|
+
logger.warn(`Could not fetch guild channels for ${guild.name}: ${error instanceof Error ? error.stack : String(error)}`);
|
|
142
142
|
}
|
|
143
143
|
// 1. Check database for existing channel mapped to this directory.
|
|
144
144
|
// Check ALL mappings (not just the first) since the same directory could
|
|
@@ -183,7 +183,7 @@ export async function createDefaultKimakiChannel({ guild, botName, appId, isGate
|
|
|
183
183
|
logger.log(`Initialized git in: ${projectDirectory}`);
|
|
184
184
|
}
|
|
185
185
|
catch (error) {
|
|
186
|
-
logger.warn(`Could not initialize git in ${projectDirectory}: ${error instanceof Error ? error.
|
|
186
|
+
logger.warn(`Could not initialize git in ${projectDirectory}: ${error instanceof Error ? error.stack : String(error)}`);
|
|
187
187
|
}
|
|
188
188
|
}
|
|
189
189
|
// Write .gitignore if it doesn't exist
|