terminal-pilot 0.0.22 → 0.0.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.
@@ -898,7 +898,7 @@ import { createHash, randomUUID as randomUUID3 } from "node:crypto";
898
898
  import path8 from "node:path";
899
899
 
900
900
  // src/errors.ts
901
- function hasOwnErrorCode(error2, code) {
901
+ function hasOwnErrorCode3(error2, code) {
902
902
  return error2 instanceof Error && Object.prototype.hasOwnProperty.call(error2, "code") && error2.code === code;
903
903
  }
904
904
 
@@ -908,7 +908,7 @@ var DEFAULT_INSTALL_SCOPE = "local";
908
908
  var TERMINAL_PILOT_SKILL_NAME = "terminal-pilot";
909
909
  var installableAgents = supportedAgents;
910
910
  function isNotFoundError(error2) {
911
- return hasOwnErrorCode(error2, "ENOENT");
911
+ return hasOwnErrorCode3(error2, "ENOENT");
912
912
  }
913
913
  function resolveInstallerServices(installer) {
914
914
  return {