@metaphi-ai/hum 0.1.2

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.
package/bin/hum.js ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env node
2
+ // `hum` from npm: the Ink front-end, which starts Hum's engine (Python, installed by postinstall
3
+ // via uv) and talks to it over localhost. Everything the person sees is here; everything the
4
+ // session records is in the engine.
5
+ import { fileURLToPath } from 'node:url';
6
+ import path from 'node:path';
7
+ const here = path.dirname(fileURLToPath(import.meta.url));
8
+ await import(path.join(here, '..', 'dist', 'cli.mjs'));