cogn 1.0.0 → 1.0.2

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Cognitive Modules CLI - 结构化 AI 任务执行工具。
4
4
 
5
- 这是 `cognitive-modules-cli` 的短名别名包。
5
+ 这是 `cognitive-modules-cli` 的短名别名包,安装后提供 `cog` 命令。
6
6
 
7
7
  ## 一行代码使用
8
8
 
@@ -23,7 +23,7 @@ npx cogn --help
23
23
  npm install -g cogn
24
24
 
25
25
  # 然后直接使用
26
- cogn run code-reviewer --args "..."
26
+ cog run code-reviewer --args "..."
27
27
  ```
28
28
 
29
29
  ## 更多信息
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "cogn",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Cognitive Modules CLI - Structured AI Task Execution (alias for cognitive-modules-cli)",
5
5
  "bin": {
6
- "cogn": "./bin.js"
6
+ "cog": "./bin.js"
7
7
  },
8
8
  "scripts": {},
9
9
  "keywords": [
@@ -22,6 +22,6 @@
22
22
  },
23
23
  "homepage": "https://ziel-io.github.io/cognitive-modules/",
24
24
  "dependencies": {
25
- "cognitive-modules-cli": "^1.1.0"
25
+ "cognitive-modules-cli": "^1.2.0"
26
26
  }
27
27
  }