gm-kilo 2.0.914 → 2.0.915
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/gm-kilo.mjs +1 -1
- package/package.json +1 -1
package/gm-kilo.mjs
CHANGED
|
@@ -126,7 +126,7 @@ export async function GmPlugin({ directory }) {
|
|
|
126
126
|
const textPart = msg.parts && msg.parts.find(p => p.type === 'text' && p.text && p.text.trim());
|
|
127
127
|
const prompt = textPart ? textPart.text.trim() : '';
|
|
128
128
|
const parts = [];
|
|
129
|
-
parts.push('Invoke the `gm` skill to begin. DO NOT use EnterPlanMode.');
|
|
129
|
+
parts.push('Invoke the `gm` skill to begin. DO NOT use EnterPlanMode. Treat the `exec:` preamble as authoritative; host auto-detection is fallback only, and raw JIT code should go to `.gm/exec-spool/in/<task>.json` when you need execution without encapsulation.');
|
|
130
130
|
const insight = runPlugkit(['codeinsight', directory]);
|
|
131
131
|
if (insight && !insight.startsWith('Error')) parts.push('=== codeinsight ===\n'+insight);
|
|
132
132
|
if (prompt) {
|