gm-kilo 2.0.890 → 2.0.892
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/bin/plugkit.sha256 +4 -4
- package/bin/rtk.sha256 +2 -2
- package/gm-kilo.mjs +1 -2
- package/package.json +1 -1
package/bin/plugkit.sha256
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
483352de5937fbc6c42a9232a4f76892fcaafb7da6c2e6872cb41c6e2dd6edb4 plugkit-win32-x64.exe
|
|
2
|
+
66185be5e30216b5b408e08f7bdf61a3f2ef26b6e812c76276158e891bd3665a plugkit-win32-arm64.exe
|
|
3
|
+
6118ea726672d7321b26d62bf8c8410f5601a4681dbfe613c2a40c857987cd95 plugkit-darwin-x64
|
|
4
|
+
65ddf8ec29bf974d2af0012573be1776d244ac0f34ce64896c479856f0b6a674 plugkit-darwin-arm64
|
|
5
5
|
be3405bcc5bb816788cd3a1972eae0bda2b811cd3ab6664228045e1c190aa1b0 plugkit-linux-x64
|
|
6
6
|
fa8305003dace0ef97db69502eb2e8943876354ce88c47c7ee713e319c15152d plugkit-linux-arm64
|
package/bin/rtk.sha256
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
532da2c4c4f7c922af9a38bc349744d31c7b1c1a975fa67b47ef7d378f14145d rtk-win32-x64.exe
|
|
2
|
+
ab48a0bef846484bd6c1f3b8acac350fd9ee625eb2eb89379ddc0033b2b03add rtk-win32-arm64.exe
|
|
3
3
|
e89fdf402c28796b510587a8b0fe046438b5b24d49533d1a2339a48aecae35e9 rtk-darwin-x64
|
|
4
4
|
2b203fd380f5782b5489eb016e34e3dbf848272a7fadf36b39bce6cfd9a3005c rtk-darwin-arm64
|
|
5
5
|
0da9950b859c7a2693aaf6c169f05f9b8965508ba1f23f1547e63d5fa988749e rtk-linux-x64
|
package/gm-kilo.mjs
CHANGED
|
@@ -205,8 +205,7 @@ export async function GmPlugin({ directory }) {
|
|
|
205
205
|
if (/^\s*git(?:\s|$)/.test(cmd)) return;
|
|
206
206
|
const m = cmd.match(/^exec(?::(\S+))?\n([\s\S]+)$/);
|
|
207
207
|
if (!m) {
|
|
208
|
-
|
|
209
|
-
return;
|
|
208
|
+
throw new Error('Use exec: prefix for Bash. The command must start with `exec` or `exec:<lang>` on its own line, then the body on the next line. Examples:\n\nexec\nls -la\n\nexec:nodejs\nconsole.log("hello")\n\nexec:bash\ngit status\n\nLanguages: nodejs (default), bash, python, typescript, go, rust, deno, cmd. File I/O via exec:nodejs + require("fs"). Codebase search: exec:codesearch on its own line, then a two-word query.');
|
|
210
209
|
}
|
|
211
210
|
const rawLang = (m[1]||'').toLowerCase();
|
|
212
211
|
if (rawLang === 'bash' || rawLang === 'sh' || rawLang === '') {
|