@remnic/capture-audio 9.24.0

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.
@@ -0,0 +1 @@
1
+ #!/usr/bin/env node
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env node
2
+ // openclaw-engram: Local-first memory plugin
3
+ import {
4
+ runCapture
5
+ } from "./chunk-BRVXKUZY.js";
6
+
7
+ // src/cli-bin.ts
8
+ runCapture({ argv: process.argv.slice(2) }).then((code) => {
9
+ process.exitCode = code;
10
+ }).catch((err) => {
11
+ const detail = err.code ?? (err instanceof Error ? err.name : "unknown error");
12
+ console.error(`remnic-capture-audio: ${detail}`);
13
+ process.exitCode = 1;
14
+ });
15
+ //# sourceMappingURL=cli-bin.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/cli-bin.ts"],"sourcesContent":["#!/usr/bin/env node\nimport { runCapture } from \"./cli.js\";\n\nrunCapture({ argv: process.argv.slice(2) })\n .then((code) => {\n process.exitCode = code;\n })\n .catch((err) => {\n // Last-resort handler (runCapture already sanitizes its own errors).\n // Print only an errno code / error name — never raw message text that\n // could embed absolute paths or loader stacks.\n const detail = (err as NodeJS.ErrnoException).code ?? (err instanceof Error ? err.name : \"unknown error\");\n console.error(`remnic-capture-audio: ${detail}`);\n process.exitCode = 1;\n });\n"],"mappings":";;;;;;;AAGA,WAAW,EAAE,MAAM,QAAQ,KAAK,MAAM,CAAC,EAAE,CAAC,EACvC,KAAK,CAAC,SAAS;AACd,UAAQ,WAAW;AACrB,CAAC,EACA,MAAM,CAAC,QAAQ;AAId,QAAM,SAAU,IAA8B,SAAS,eAAe,QAAQ,IAAI,OAAO;AACzF,UAAQ,MAAM,yBAAyB,MAAM,EAAE;AAC/C,UAAQ,WAAW;AACrB,CAAC;","names":[]}