@aibyzero/byz 0.1.3 → 0.1.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.
Files changed (33) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/README.md +9 -3
  3. package/dist/cli.js +27 -20
  4. package/dist/fast.js +5 -2
  5. package/dist/runtime/bundle/chunks/{chunk-QY7DJQRI.js → chunk-QLXFMGH6.js} +7 -7
  6. package/dist/runtime/bundle/cli.js +1 -1
  7. package/dist/runtime/bundle/index.js +1 -1
  8. package/dist/runtime/bundle/rpc-entry.js +1 -1
  9. package/dist/runtime/core/agent-session.d.ts +4 -1
  10. package/dist/runtime/core/agent-session.d.ts.map +1 -1
  11. package/dist/runtime/core/agent-session.js +38 -11
  12. package/dist/runtime/core/agent-session.js.map +1 -1
  13. package/dist/runtime/core/extensions/runner.d.ts +11 -1
  14. package/dist/runtime/core/extensions/runner.d.ts.map +1 -1
  15. package/dist/runtime/core/extensions/runner.js +40 -9
  16. package/dist/runtime/core/extensions/runner.js.map +1 -1
  17. package/dist/runtime/core/extensions/types.d.ts +7 -0
  18. package/dist/runtime/core/extensions/types.d.ts.map +1 -1
  19. package/dist/runtime/core/extensions/types.js.map +1 -1
  20. package/dist/runtime/core/resource-loader.d.ts +16 -1
  21. package/dist/runtime/core/resource-loader.d.ts.map +1 -1
  22. package/dist/runtime/core/resource-loader.js +216 -2
  23. package/dist/runtime/core/resource-loader.js.map +1 -1
  24. package/dist/runtime/main.d.ts +2 -1
  25. package/dist/runtime/main.d.ts.map +1 -1
  26. package/dist/runtime/main.js +1 -0
  27. package/dist/runtime/main.js.map +1 -1
  28. package/dist/runtime/modes/interactive/interactive-mode.d.ts.map +1 -1
  29. package/dist/runtime/modes/interactive/interactive-mode.js +5 -0
  30. package/dist/runtime/modes/interactive/interactive-mode.js.map +1 -1
  31. package/dist/workflow-switch.js +95 -0
  32. package/dist/workflows.js +23 -14
  33. package/package.json +1 -1
@@ -2588,6 +2588,11 @@ export class InteractiveMode {
2588
2588
  this.updatePendingMessagesDisplay();
2589
2589
  this.ui.requestRender();
2590
2590
  break;
2591
+ case "resources_changed":
2592
+ this.setupAutocompleteProvider();
2593
+ this.showLoadedResources({ force: false, showDiagnosticsWhenQuiet: true });
2594
+ this.ui.requestRender();
2595
+ break;
2591
2596
  case "entry_appended":
2592
2597
  if (event.entry.type === "custom") {
2593
2598
  this.addCustomEntryToChat(event.entry);