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 && savedToolsHash !== currentToolsHash) {
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "heyio",
3
- "version": "0.1.22",
3
+ "version": "0.1.23",
4
4
  "description": "IO — a personal AI assistant built on the GitHub Copilot SDK",
5
5
  "bin": {
6
6
  "io": "dist/index.js"