@acpfx/node-sdk 0.2.0 → 0.3.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @acpfx/node-sdk
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 0e6838e: Add local on-device STT and TTS nodes (no API keys required). Introduces --acpfx-\* flag convention with setup phase for first-time model downloads, dynamic release pipeline with dual CPU/CUDA builds, MLX acceleration on Mac, and TUI improvements for speech event display.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [0e6838e]
12
+ - @acpfx/core@0.4.0
13
+
14
+ ## 0.2.1
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [79c6694]
19
+ - Updated dependencies [a0320a1]
20
+ - @acpfx/core@0.3.0
21
+
3
22
  ## 0.2.0
4
23
 
5
24
  ### Minor Changes
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@acpfx/node-sdk",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "type": "module",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
7
7
  "dependencies": {
8
- "@acpfx/core": "0.2.0"
8
+ "@acpfx/core": "0.4.0"
9
9
  }
10
10
  }
package/src/index.ts CHANGED
@@ -1,16 +1,16 @@
1
1
  /**
2
2
  * Node SDK — shared helpers for acpfx TS nodes.
3
3
  *
4
- * Provides emit(), log(), onEvent(), and handleManifestFlag().
4
+ * Provides emit(), log(), onEvent(), and handleAcpfxFlags().
5
5
  * log() emits structured log events on stdout (not stderr).
6
6
  */
7
7
 
8
8
  import { createInterface, type Interface } from "node:readline";
9
9
  /**
10
- * Re-export handleManifestFlag from core — handles the --manifest flag.
11
- * If --manifest is in process.argv, prints the manifest as JSON and exits.
10
+ * Re-export handleAcpfxFlags from core — handles all --acpfx-* convention flags.
11
+ * Call at the top of your node's entry point before any async work.
12
12
  */
13
- export { handleManifestFlag } from "@acpfx/core";
13
+ export { handleAcpfxFlags, handleManifestFlag } from "@acpfx/core";
14
14
 
15
15
  const NODE_NAME = process.env.ACPFX_NODE_NAME ?? "unknown";
16
16