@sesamespace/hivemind 0.8.2 → 0.8.4
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/{chunk-TUIYJ5KQ.js → chunk-3CQJQUY3.js} +2 -2
- package/dist/{chunk-WPJ2KZXP.js → chunk-66KRRXVF.js} +2 -2
- package/dist/{chunk-SLEK4XYQ.js → chunk-6S5UKFTZ.js} +14 -1
- package/dist/chunk-6S5UKFTZ.js.map +1 -0
- package/dist/{chunk-UAWCLBR5.js → chunk-CSYDOZE6.js} +2 -2
- package/dist/{chunk-VZKHZLRD.js → chunk-HNXCZPSX.js} +3 -3
- package/dist/commands/fleet.js +3 -3
- package/dist/commands/start.js +3 -3
- package/dist/commands/watchdog.js +3 -3
- package/dist/index.js +2 -2
- package/dist/main.js +5 -5
- package/dist/start.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-SLEK4XYQ.js.map +0 -1
- /package/dist/{chunk-TUIYJ5KQ.js.map → chunk-3CQJQUY3.js.map} +0 -0
- /package/dist/{chunk-WPJ2KZXP.js.map → chunk-66KRRXVF.js.map} +0 -0
- /package/dist/{chunk-UAWCLBR5.js.map → chunk-CSYDOZE6.js.map} +0 -0
- /package/dist/{chunk-VZKHZLRD.js.map → chunk-HNXCZPSX.js.map} +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
FleetManager
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-66KRRXVF.js";
|
|
4
4
|
|
|
5
5
|
// packages/cli/src/commands/fleet.ts
|
|
6
6
|
function formatUptime(seconds) {
|
|
@@ -183,4 +183,4 @@ Commands:
|
|
|
183
183
|
export {
|
|
184
184
|
runFleetCommand
|
|
185
185
|
};
|
|
186
|
-
//# sourceMappingURL=chunk-
|
|
186
|
+
//# sourceMappingURL=chunk-3CQJQUY3.js.map
|
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
PRIMARY_ROUTES,
|
|
7
7
|
SesameClient,
|
|
8
8
|
WORKER_ROUTES
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-6S5UKFTZ.js";
|
|
10
10
|
|
|
11
11
|
// packages/runtime/src/watchdog.ts
|
|
12
12
|
import { execSync } from "child_process";
|
|
@@ -1048,4 +1048,4 @@ export {
|
|
|
1048
1048
|
WorkerMemorySync,
|
|
1049
1049
|
PrimaryMemorySync
|
|
1050
1050
|
};
|
|
1051
|
-
//# sourceMappingURL=chunk-
|
|
1051
|
+
//# sourceMappingURL=chunk-66KRRXVF.js.map
|
|
@@ -680,6 +680,13 @@ In group chats, multiple people (humans and agents) may be present. Address them
|
|
|
680
680
|
Don't repeat or quote these prefixes in your responses \u2014 just respond naturally.
|
|
681
681
|
Keep responses concise \u2014 especially in group chats. A few sentences is usually enough. Don't write essays.
|
|
682
682
|
If you decide not to respond to a group message, reply with exactly: __SKIP__
|
|
683
|
+
|
|
684
|
+
## Tool Output Integrity
|
|
685
|
+
When you use a tool (browse, shell, etc.), report the ACTUAL output returned by the tool.
|
|
686
|
+
- Quote tool results verbatim when sharing them. Never paraphrase, infer, or reconstruct what a tool "probably" returned.
|
|
687
|
+
- If a tool errors or returns unexpected results, report the actual error \u2014 do not fabricate plausible output.
|
|
688
|
+
- If you are unsure whether you are reading real tool output or generating from memory, say so explicitly.
|
|
689
|
+
This is critical for trust and debugging. Fabricating tool output is never acceptable.
|
|
683
690
|
`;
|
|
684
691
|
let contextInfo = "";
|
|
685
692
|
if (contextName !== "global") {
|
|
@@ -5761,6 +5768,12 @@ async function startPipeline(configPath) {
|
|
|
5761
5768
|
} else {
|
|
5762
5769
|
memoryConnected = true;
|
|
5763
5770
|
console.log("[hivemind] Memory daemon connected");
|
|
5771
|
+
try {
|
|
5772
|
+
await memory.createContext("global", "Global context \u2014 identity, preferences, cross-cutting knowledge");
|
|
5773
|
+
console.log("[hivemind] Global context registered with memory daemon");
|
|
5774
|
+
} catch {
|
|
5775
|
+
console.log("[hivemind] Global context already exists in memory daemon");
|
|
5776
|
+
}
|
|
5764
5777
|
}
|
|
5765
5778
|
const requestLogger = new RequestLogger(resolve18(dirname7(configPath), "data", "dashboard.db"));
|
|
5766
5779
|
startDashboardServer(requestLogger, config.memory);
|
|
@@ -6502,4 +6515,4 @@ smol-toml/dist/index.js:
|
|
|
6502
6515
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
6503
6516
|
*)
|
|
6504
6517
|
*/
|
|
6505
|
-
//# sourceMappingURL=chunk-
|
|
6518
|
+
//# sourceMappingURL=chunk-6S5UKFTZ.js.map
|