@kenkaiiii/gg-boss 4.12.1 → 4.13.0
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.
|
@@ -75457,7 +75457,21 @@ function renderIdentitySection(provider) {
|
|
|
75457
75457
|
function renderTalkSection() {
|
|
75458
75458
|
return `## How to Talk
|
|
75459
75459
|
|
|
75460
|
-
|
|
75460
|
+
Assume the reader has severe ADHD. Write for fast scanning and low working memory.
|
|
75461
|
+
|
|
75462
|
+
**First word = the outcome.** Lead with "Fixed it." / "Done." / "Broken." / "Failed." / "Blocked." \u2014 never warm up with "So," "Let me," or "I've."
|
|
75463
|
+
|
|
75464
|
+
**Bottom line first.** Line 1 = the answer. Final replies: 1\u20132 sentences, hard cap 5.
|
|
75465
|
+
|
|
75466
|
+
**One idea per line.** **Bold** the key word for scanning.
|
|
75467
|
+
|
|
75468
|
+
**Pick, don't present menus.** Recommend ONE approach with one-line reasoning.
|
|
75469
|
+
|
|
75470
|
+
**Concrete over abstract.** "Cuts load from 4s to 1s" beats "improves performance."
|
|
75471
|
+
|
|
75472
|
+
**No unresolved "it depends."** Always resolve: "Default to X; switch to Y if [condition]." Say what TO do, never what NOT to do. End with one next action or nothing.
|
|
75473
|
+
|
|
75474
|
+
Stay silent between tool calls unless you hit a decision, tradeoff, finding, or question. No preamble, no recap, no hedging, no output dumps. Surface tradeoffs and unverified claims plainly. Occasionally and naturally, add playful variations of \u201CWoops I just farted!\u201D with emojis; don't force it or repeat one line.`;
|
|
75461
75475
|
}
|
|
75462
75476
|
function renderWorkSection() {
|
|
75463
75477
|
return `## How to Work
|
|
@@ -75620,6 +75634,14 @@ import fs21 from "fs/promises";
|
|
|
75620
75634
|
import path29 from "path";
|
|
75621
75635
|
import os7 from "os";
|
|
75622
75636
|
import crypto4 from "crypto";
|
|
75637
|
+
|
|
75638
|
+
// ../ggcoder/dist/core/encode-cwd.js
|
|
75639
|
+
init_esm_shims();
|
|
75640
|
+
function encodeCwd(cwd2) {
|
|
75641
|
+
return cwd2.replace(/^\\\\\?\\UNC\\/i, "\\\\").replace(/^\\\\\?\\/i, "").replace(/[\\/]/g, "_").replace(/[<>:"|?*]/g, "").replace(/^_/, "");
|
|
75642
|
+
}
|
|
75643
|
+
|
|
75644
|
+
// ../ggcoder/dist/session.js
|
|
75623
75645
|
var SESSION_DIR = path29.join(os7.homedir(), ".gg", "sessions");
|
|
75624
75646
|
|
|
75625
75647
|
// ../ggcoder/dist/core/index.js
|
|
@@ -76008,9 +76030,6 @@ var DISPLAY_ITEM_CUSTOM_KIND = "display_item";
|
|
|
76008
76030
|
function isCompletedItemLike(value) {
|
|
76009
76031
|
return typeof value === "object" && value !== null && typeof value.kind === "string" && typeof value.id === "string";
|
|
76010
76032
|
}
|
|
76011
|
-
function encodeCwd(cwd2) {
|
|
76012
|
-
return cwd2.replace(/[\\/]/g, "_").replace(/:/g, "").replace(/^_/, "");
|
|
76013
|
-
}
|
|
76014
76033
|
var SessionManager = class _SessionManager {
|
|
76015
76034
|
sessionsDir;
|
|
76016
76035
|
warnedPersistCodes = /* @__PURE__ */ new Set();
|
|
@@ -117440,4 +117459,4 @@ react/cjs/react-jsx-runtime.development.js:
|
|
|
117440
117459
|
* LICENSE file in the root directory of this source tree.
|
|
117441
117460
|
*)
|
|
117442
117461
|
*/
|
|
117443
|
-
//# sourceMappingURL=chunk-
|
|
117462
|
+
//# sourceMappingURL=chunk-XVLLYW7D.js.map
|