heyio 0.1.22 → 0.1.23
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.
|
@@ -169,7 +169,7 @@ async function ensureOrchestratorSession() {
|
|
|
169
169
|
const { tools, skillDirectories } = getSessionConfig();
|
|
170
170
|
const currentToolsHash = toolFingerprint(tools);
|
|
171
171
|
if (savedSessionId) {
|
|
172
|
-
if (savedToolsHash
|
|
172
|
+
if (!savedToolsHash || savedToolsHash !== currentToolsHash) {
|
|
173
173
|
console.error("[io] Tool set changed since last session — starting fresh");
|
|
174
174
|
deleteState(SESSION_ID_KEY);
|
|
175
175
|
deleteState(SESSION_TOOLS_KEY);
|