@miniidealab/openlogos 0.5.7 → 0.5.8

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 +62 -0
  2. package/package.json +2 -1
package/README.md ADDED
@@ -0,0 +1,62 @@
1
+ # OpenLogos CLI
2
+
3
+ [`@miniidealab/openlogos`](https://www.npmjs.com/package/@miniidealab/openlogos) 是 **OpenLogos** 方法论的官方命令行工具:在项目中初始化 `logos/` 目录、部署 AI Skills 与规范、执行阶段检测与测试验收(`verify`)等。
4
+
5
+ - **官网**:[openlogos.ai](https://openlogos.ai)
6
+ - **源码与完整文档**:[github.com/miniidealab/openlogos](https://github.com/miniidealab/openlogos)(monorepo,本包位于 `cli/` 目录)
7
+ - **更新日志(版本说明)**:[CHANGELOG.md](https://github.com/miniidealab/openlogos/blob/master/CHANGELOG.md)
8
+
9
+ ---
10
+
11
+ ## 安装
12
+
13
+ 需要 **Node.js ≥ 18**。
14
+
15
+ ```bash
16
+ npm install -g @miniidealab/openlogos
17
+ openlogos --version
18
+ ```
19
+
20
+ ---
21
+
22
+ ## 常用命令
23
+
24
+ | 命令 | 说明 |
25
+ |------|------|
26
+ | `openlogos init [name]` | 初始化项目:`logos.config.json`、`logos-project.yaml`、`AGENTS.md` / `CLAUDE.md`、Skills 与方法论 `spec/` 等 |
27
+ | `openlogos sync` | 按当前配置重新生成 AI 指令文件并同步 Skills |
28
+ | `openlogos status` | 查看方法论阶段进度与下一步建议 |
29
+ | `openlogos next` | 输出下一阶段的引导提示 |
30
+ | `openlogos verify` | 读取测试结果 JSONL 与测试用例文档,生成验收报告 |
31
+ | `openlogos change <slug>` | 创建变更提案(Delta 工作流) |
32
+ | `openlogos merge` / `archive` | 合并与归档变更 |
33
+ | `openlogos launch` | 从首轮开发切换到「活跃迭代」并强化变更管理 |
34
+
35
+ **注意**:请在**项目根目录**(存在 `logos/logos.config.json`)下执行上述命令。
36
+
37
+ ---
38
+
39
+ ## OpenCode 用户
40
+
41
+ 使用 OpenCode 时建议安装 **≥ 0.5.6**,以便获得 `.opencode/commands/` 斜杠命令模板与单包插件部署。说明见仓库内 **[OpenCode 使用指南](https://github.com/miniidealab/openlogos/blob/master/docs/opencode.md)**。
42
+
43
+ ---
44
+
45
+ ## 可运行示例(需克隆仓库)
46
+
47
+ - **FlowTask**(Tauri,Claude Code 演示):`examples/flowtask/`
48
+ - **Money Log**(Electron,OpenCode 演示):`examples/money-log/`
49
+
50
+ 详见仓库 [examples/README.md](https://github.com/miniidealab/openlogos/blob/master/examples/README.md)。
51
+
52
+ ---
53
+
54
+ ## 版本信息
55
+
56
+ npm 页展示的**当前包版本**以本页顶部包名为准;**历史版本与变更说明**请以仓库 **[CHANGELOG.md](https://github.com/miniidealab/openlogos/blob/master/CHANGELOG.md)** 为准。
57
+
58
+ ---
59
+
60
+ ## License
61
+
62
+ Apache-2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miniidealab/openlogos",
3
- "version": "0.5.7",
3
+ "version": "0.5.8",
4
4
  "description": "CLI tool for the OpenLogos software engineering methodology",
5
5
  "type": "module",
6
6
  "bin": {
@@ -41,6 +41,7 @@
41
41
  "node": ">=18.0.0"
42
42
  },
43
43
  "files": [
44
+ "README.md",
44
45
  "dist",
45
46
  "skills",
46
47
  "spec",