hermes-to-claude 0.1.5 → 0.1.7

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 (2) hide show
  1. package/dist/hbridge.mjs +15 -15
  2. package/package.json +1 -1
package/dist/hbridge.mjs CHANGED
@@ -1582,7 +1582,7 @@ function stopStatusBar(intervalId) {
1582
1582
 
1583
1583
  // src/hbridge/cli.mjs
1584
1584
  import { networkInterfaces } from "os";
1585
- var H2C_VERSION = "v191.0.3655156";
1585
+ var H2C_VERSION = "v197.0.d5f1f06";
1586
1586
  var server = null;
1587
1587
  var statusBarInterval = null;
1588
1588
  function getLocalIPs() {
@@ -1645,17 +1645,17 @@ function showHelp() {
1645
1645
  h2c \u2014 Hermes Bridge
1646
1646
 
1647
1647
  COMMANDS:
1648
- h2c --enable Start bridge with deterministic key
1649
- h2c --disable Stop bridge
1650
- h2c --status Show status + last client connection
1651
- h2c --help Show this help
1648
+ h2c enable Start bridge with deterministic key
1649
+ h2c disable Stop bridge
1650
+ h2c status Show status + last client connection
1651
+ h2c help Show this help
1652
1652
 
1653
1653
  Port is derived from the working directory; key is machine-global from ~/.h2c_key.
1654
1654
  Home mode (H2C_HOME=1) skips auth; remote mode enforces key.
1655
1655
 
1656
1656
  EXAMPLES:
1657
- h2c --enable Enable with dir-derived key
1658
- h2c --status Show connected IP + last active time
1657
+ h2c enable Enable with dir-derived key
1658
+ h2c status Show connected IP + last active time
1659
1659
  `);
1660
1660
  process.exit(0);
1661
1661
  }
@@ -1663,15 +1663,15 @@ var args = process.argv.slice(2);
1663
1663
  var cmd = args[0];
1664
1664
  if (isHome()) {
1665
1665
  cmd_enable();
1666
- } else if (cmd === "--enable") cmd_enable();
1667
- else if (cmd === "--disable") cmd_disable();
1668
- else if (cmd === "--status") cmd_status();
1669
- else if (cmd === "--help" || cmd === "-h") {
1666
+ } else if (cmd === "enable") cmd_enable();
1667
+ else if (cmd === "disable") cmd_disable();
1668
+ else if (cmd === "status") cmd_status();
1669
+ else if (cmd === "help" || cmd === "-h") {
1670
1670
  showHelp();
1671
1671
  } else {
1672
1672
  console.log("h2c \u2014 Hermes Bridge");
1673
- console.log(" h2c --enable Start bridge");
1674
- console.log(" h2c --disable Stop bridge");
1675
- console.log(" h2c --status Show status");
1676
- console.log(" h2c --help Show help");
1673
+ console.log(" h2c enable Start bridge");
1674
+ console.log(" h2c disable Stop bridge");
1675
+ console.log(" h2c status Show status");
1676
+ console.log(" h2c help Show help");
1677
1677
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hermes-to-claude",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "type": "module",
5
5
  "description": "Local HTTP bridge connecting Hermes Agent to Claude Code — no Pro/Max subscription required",
6
6
  "license": "MIT",