cogn 2.2.5 → 2.2.7
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 +2 -2
- package/README.md +4 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this package are documented in this file.
|
|
4
4
|
|
|
5
|
-
## 2.2.
|
|
5
|
+
## 2.2.7 - 2026-02-06
|
|
6
6
|
|
|
7
|
-
- Alias package aligned with `cognitive-modules-cli@2.2.
|
|
7
|
+
- Alias package aligned with `cognitive-modules-cli@2.2.7`.
|
|
8
8
|
- Added package-level publish metadata and explicit file whitelist.
|
package/README.md
CHANGED
|
@@ -6,19 +6,19 @@ Cognitive Modules CLI 的短名别名包,安装后提供 `cog` 命令。
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
# 零安装运行
|
|
9
|
-
npx cogn@2.2.
|
|
9
|
+
npx cogn@2.2.7 run code-reviewer --args "def login(u,p): pass"
|
|
10
10
|
|
|
11
11
|
# 列出模块
|
|
12
|
-
npx cogn@2.2.
|
|
12
|
+
npx cogn@2.2.7 list
|
|
13
13
|
|
|
14
14
|
# 查看帮助
|
|
15
|
-
npx cogn@2.2.
|
|
15
|
+
npx cogn@2.2.7 --help
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
## 全局安装
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
npm install -g cogn@2.2.
|
|
21
|
+
npm install -g cogn@2.2.7
|
|
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.
|
|
3
|
+
"version": "2.2.7",
|
|
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.
|
|
43
|
+
"cognitive-modules-cli": "2.2.7"
|
|
44
44
|
}
|
|
45
45
|
}
|