@rex0220/llm-task-router 0.1.0 → 0.1.1

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/README.ja.md CHANGED
@@ -4,6 +4,10 @@
4
4
 
5
5
  複数ステップの記事作成ワークフロー(Qiita / Zenn / ブログ / note …)を駆動する、薄い ModelRouter の TypeScript 製 CLI です。
6
6
 
7
+ ## 必要環境
8
+
9
+ - **Node.js >= 20**(CLI と依存パッケージが `node:` インポートや新しめの API を使うため、Node 14/16 などの古い版では読み込みに失敗します)。
10
+
7
11
  ## インストール
8
12
 
9
13
  グローバルインストールすると、単一バンドルの CLI(`dist/llm-task-router.js`)が `llm-task-router` コマンドとして使えます。
package/README.md CHANGED
@@ -4,6 +4,10 @@
4
4
 
5
5
  TypeScript CLI for a thin ModelRouter that drives a multi-step article workflow (Qiita, Zenn, blog, …).
6
6
 
7
+ ## Requirements
8
+
9
+ - **Node.js >= 20** (the CLI and its dependencies use the `node:` import scheme and modern APIs; older Node such as 14/16 will fail to load).
10
+
7
11
  ## Install
8
12
 
9
13
  Global install builds a single bundled CLI (`dist/llm-task-router.js`) exposed as the `llm-task-router` command:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rex0220/llm-task-router",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Thin, file-based CLI that routes a multi-step article workflow (brief → outline → draft → review → final) across OpenAI and Anthropic with fallback, schema validation, judge-model evaluation, and platform profiles (Qiita/Zenn/blog/note).",
5
5
  "keywords": [
6
6
  "cli",
@@ -30,7 +30,7 @@
30
30
  },
31
31
  "type": "module",
32
32
  "engines": {
33
- "node": ">=18"
33
+ "node": ">=20"
34
34
  },
35
35
  "bin": {
36
36
  "llm-task-router": "dist/llm-task-router.js"