heyio 0.1.14 → 0.1.15

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.
@@ -308,6 +308,13 @@ export async function initOrchestrator(copilotClient) {
308
308
  catch (err) {
309
309
  console.error("[io] Could not validate models:", err instanceof Error ? err.message : err);
310
310
  }
311
+ // Log built-in tools for diagnostics
312
+ try {
313
+ const toolsList = await copilotClient.rpc.tools.list({});
314
+ const toolNames = toolsList.tools.map((t) => t.name);
315
+ console.error(`[io] Built-in tools: ${toolNames.join(", ")}`);
316
+ }
317
+ catch { /* non-fatal */ }
311
318
  // Start health check timer
312
319
  healthCheckTimer = setInterval(() => {
313
320
  if (!client || client.getState() !== "connected") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "heyio",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "description": "IO — a personal AI assistant built on the GitHub Copilot SDK",
5
5
  "bin": {
6
6
  "io": "dist/index.js"