cogn 2.2.8 → 2.2.9

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
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to this package are documented in this file.
4
4
 
5
+ ## 2.2.9 - 2026-02-07
6
+
7
+ - Alias package aligned with `cognitive-modules-cli@2.2.9`.
8
+
5
9
  ## 2.2.8 - 2026-02-07
6
10
 
7
11
  - Fix: make `npx cogn` work with Node 24+ by spawning the CLI entry (avoids "exports" subpath and CJS/ESM issues).
package/README.md CHANGED
@@ -6,19 +6,19 @@ Cognitive Modules CLI 的短名别名包,安装后提供 `cog` 命令。
6
6
 
7
7
  ```bash
8
8
  # 零安装运行
9
- npx cogn@2.2.8 run code-reviewer --args "def login(u,p): pass"
9
+ npx cogn@2.2.9 run code-reviewer --args "def login(u,p): pass"
10
10
 
11
11
  # 列出模块
12
- npx cogn@2.2.8 list
12
+ npx cogn@2.2.9 list
13
13
 
14
14
  # 查看帮助
15
- npx cogn@2.2.8 --help
15
+ npx cogn@2.2.9 --help
16
16
  ```
17
17
 
18
18
  ## 全局安装
19
19
 
20
20
  ```bash
21
- npm install -g cogn@2.2.8
21
+ npm install -g cogn@2.2.9
22
22
 
23
23
  # 然后直接使用
24
24
  cog run code-reviewer --args "..."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cogn",
3
- "version": "2.2.8",
3
+ "version": "2.2.9",
4
4
  "description": "Cognitive Modules CLI - Structured AI Task Execution (alias for cognitive-modules-cli)",
5
5
  "bin": {
6
6
  "cogn": "bin.js",
@@ -40,6 +40,6 @@
40
40
  "node": ">=18.0.0"
41
41
  },
42
42
  "dependencies": {
43
- "cognitive-modules-cli": "2.2.8"
43
+ "cognitive-modules-cli": "2.2.9"
44
44
  }
45
45
  }