@devflow-tools/cli 0.17.5 → 0.17.6
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.md +27 -34
- package/package.json +27 -27
package/README.md
CHANGED
|
@@ -1,50 +1,43 @@
|
|
|
1
1
|
# @devflow-tools/cli
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
> 初始化项目、安装插件、连接 Agent 并管理 DevFlow 服务的命令行工具。(v0.17.6)
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
[](https://www.npmjs.com/package/@devflow-tools/cli)
|
|
6
|
+
|
|
7
|
+
## 安装
|
|
6
8
|
|
|
7
9
|
```bash
|
|
8
|
-
npm install
|
|
10
|
+
npm install @devflow-tools/cli
|
|
9
11
|
```
|
|
10
12
|
|
|
11
|
-
##
|
|
13
|
+
## 快速开始
|
|
12
14
|
|
|
13
15
|
```bash
|
|
16
|
+
npm install -g @devflow-tools/cli
|
|
14
17
|
cd your-project
|
|
15
18
|
devflow init
|
|
19
|
+
devflow --help
|
|
16
20
|
```
|
|
17
21
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
##
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
| `devflow workflow list` | 列出可用工作流 |
|
|
38
|
-
| `devflow workflow run <type>` | 运行工作流 |
|
|
39
|
-
| `devflow memory show` | 查看项目记忆(技术栈、约定、历史决策) |
|
|
40
|
-
| `devflow knowledge <query>` | 搜索技术文档知识库 |
|
|
41
|
-
| `devflow doctor` | 运行项目健康检查 |
|
|
42
|
-
| `devflow server start` | 启动 DevFlow REST 服务器 |
|
|
43
|
-
|
|
44
|
-
## Requirements
|
|
45
|
-
|
|
46
|
-
- Node.js >= 18
|
|
47
|
-
- npm >= 9
|
|
22
|
+
## 公共 API / 命令
|
|
23
|
+
|
|
24
|
+
`devflow init`、`connect`、`index`、`graph`、`context`、`workflow`、`memory`、`knowledge`、`doctor` 和 `server start`。
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
## 配置与运行时
|
|
28
|
+
|
|
29
|
+
要求 Node.js >= 18、npm >= 9;`devflow init` 会生成 `.devflow/` 配置并同步 Claude Code/MCP 配置。
|
|
30
|
+
|
|
31
|
+
## 版本与兼容性
|
|
32
|
+
|
|
33
|
+
- 当前包版本:`0.17.6`
|
|
34
|
+
- Node.js:未在 package manifest 声明更高版本时,使用 Node.js 18+;原生 SQLite/Playwright 能力请按对应依赖安装
|
|
35
|
+
- workspace 内部包应使用同一 DevFlow minor/patch 版本,避免类型和数据库 schema 不一致
|
|
36
|
+
|
|
37
|
+
## 相关链接
|
|
38
|
+
|
|
39
|
+
- [DevFlow 仓库](https://github.com/shilongfeicool/dev-flow)
|
|
40
|
+
- [问题反馈](https://github.com/shilongfeicool/dev-flow/issues)
|
|
48
41
|
|
|
49
42
|
## License
|
|
50
43
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devflow-tools/cli",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -12,31 +12,31 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@colbymchenry/codegraph": "^1.1.1",
|
|
15
|
-
"@devflow-tools/adapters": "0.17.
|
|
16
|
-
"@devflow-tools/benchmark": "0.17.
|
|
17
|
-
"@devflow-tools/context-engine": "0.17.
|
|
18
|
-
"@devflow-tools/database": "0.17.
|
|
19
|
-
"@devflow-tools/knowledge-engine": "0.17.
|
|
20
|
-
"@devflow-tools/mcp-server": "0.17.
|
|
21
|
-
"@devflow-tools/memory-engine": "0.17.
|
|
22
|
-
"@devflow-tools/plugin-animation": "0.17.
|
|
23
|
-
"@devflow-tools/plugin-css": "0.17.
|
|
24
|
-
"@devflow-tools/plugin-docker": "0.17.
|
|
25
|
-
"@devflow-tools/plugin-electron": "0.17.
|
|
26
|
-
"@devflow-tools/plugin-git": "0.17.
|
|
27
|
-
"@devflow-tools/plugin-graphql": "0.17.
|
|
28
|
-
"@devflow-tools/plugin-nest": "0.17.
|
|
29
|
-
"@devflow-tools/plugin-nextjs": "0.17.
|
|
30
|
-
"@devflow-tools/plugin-performance": "0.17.
|
|
31
|
-
"@devflow-tools/plugin-react": "0.17.
|
|
32
|
-
"@devflow-tools/plugin-tailwind": "0.17.
|
|
33
|
-
"@devflow-tools/plugin-taro": "0.17.
|
|
34
|
-
"@devflow-tools/plugin-ui-layout": "0.17.
|
|
35
|
-
"@devflow-tools/plugin-vue": "0.17.
|
|
36
|
-
"@devflow-tools/sdk": "0.17.
|
|
37
|
-
"@devflow-tools/server": "0.17.
|
|
38
|
-
"@devflow-tools/telemetry": "0.17.
|
|
39
|
-
"@devflow-tools/workflow-engine": "0.17.
|
|
15
|
+
"@devflow-tools/adapters": "0.17.6",
|
|
16
|
+
"@devflow-tools/benchmark": "0.17.6",
|
|
17
|
+
"@devflow-tools/context-engine": "0.17.6",
|
|
18
|
+
"@devflow-tools/database": "0.17.6",
|
|
19
|
+
"@devflow-tools/knowledge-engine": "0.17.6",
|
|
20
|
+
"@devflow-tools/mcp-server": "0.17.6",
|
|
21
|
+
"@devflow-tools/memory-engine": "0.17.6",
|
|
22
|
+
"@devflow-tools/plugin-animation": "0.17.6",
|
|
23
|
+
"@devflow-tools/plugin-css": "0.17.6",
|
|
24
|
+
"@devflow-tools/plugin-docker": "0.17.6",
|
|
25
|
+
"@devflow-tools/plugin-electron": "0.17.6",
|
|
26
|
+
"@devflow-tools/plugin-git": "0.17.6",
|
|
27
|
+
"@devflow-tools/plugin-graphql": "0.17.6",
|
|
28
|
+
"@devflow-tools/plugin-nest": "0.17.6",
|
|
29
|
+
"@devflow-tools/plugin-nextjs": "0.17.6",
|
|
30
|
+
"@devflow-tools/plugin-performance": "0.17.6",
|
|
31
|
+
"@devflow-tools/plugin-react": "0.17.6",
|
|
32
|
+
"@devflow-tools/plugin-tailwind": "0.17.6",
|
|
33
|
+
"@devflow-tools/plugin-taro": "0.17.6",
|
|
34
|
+
"@devflow-tools/plugin-ui-layout": "0.17.6",
|
|
35
|
+
"@devflow-tools/plugin-vue": "0.17.6",
|
|
36
|
+
"@devflow-tools/sdk": "0.17.6",
|
|
37
|
+
"@devflow-tools/server": "0.17.6",
|
|
38
|
+
"@devflow-tools/telemetry": "0.17.6",
|
|
39
|
+
"@devflow-tools/workflow-engine": "0.17.6",
|
|
40
40
|
"@inquirer/prompts": "^7.10.1",
|
|
41
41
|
"chalk": "^5.3.0",
|
|
42
42
|
"commander": "^12.0.0"
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"dist",
|
|
50
50
|
"bin"
|
|
51
51
|
],
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "669fea3aa72aa3fde14ed50d24c1fec4dfac088f"
|
|
53
53
|
}
|