@devflow-tools/cli 0.18.26 → 0.18.28
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/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +3 -18
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/setup.js +1 -1
- package/dist/commands/setup.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/lib/plugin-setup.d.ts +0 -6
- package/dist/lib/plugin-setup.d.ts.map +1 -1
- package/dist/lib/plugin-setup.js +1 -29
- package/dist/lib/plugin-setup.js.map +1 -1
- package/dist/plugin-files/.claude-plugin/plugin.json +1 -1
- package/dist/plugin-files/.mcp.json +12 -0
- package/dist/plugin-files/dist/command-registry.json +66 -50
- package/dist/plugin-files/dist/hooks/hook-daemon.js +26 -26
- package/dist/plugin-files/dist/hooks/post-tool-use-failure.js +2 -2
- package/dist/plugin-files/dist/hooks/post-tool-use.js +6 -6
- package/dist/plugin-files/dist/hooks/pre-compact.js +3 -3
- package/dist/plugin-files/dist/hooks/pre-tool-use.js +4 -4
- package/dist/plugin-files/dist/hooks/session-end.js +1 -1
- package/dist/plugin-files/dist/hooks/stop.js +9 -9
- package/dist/plugin-files/dist/hooks/user-prompt-submit.js +8 -8
- package/dist/plugin-files/dist/skills/devflow:animation/SKILL.md +1 -1
- package/dist/plugin-files/dist/skills/devflow:context/SKILL.md +9 -9
- package/dist/plugin-files/dist/skills/devflow:css/SKILL.md +1 -1
- package/dist/plugin-files/dist/skills/devflow:delivery/SKILL.md +25 -25
- package/dist/plugin-files/dist/skills/devflow:docker/SKILL.md +1 -1
- package/dist/plugin-files/dist/skills/devflow:doctor/SKILL.md +43 -0
- package/dist/plugin-files/dist/skills/devflow:electron/SKILL.md +1 -1
- package/dist/plugin-files/dist/skills/devflow:git/SKILL.md +1 -1
- package/dist/plugin-files/dist/skills/devflow:graph/SKILL.md +6 -6
- package/dist/plugin-files/dist/skills/devflow:graphql/SKILL.md +1 -1
- package/dist/plugin-files/dist/skills/devflow:knowledge/SKILL.md +6 -6
- package/dist/plugin-files/dist/skills/devflow:memory/SKILL.md +6 -6
- package/dist/plugin-files/dist/skills/devflow:nest/SKILL.md +2 -2
- package/dist/plugin-files/dist/skills/devflow:nextjs/SKILL.md +2 -2
- package/dist/plugin-files/dist/skills/devflow:performance/SKILL.md +1 -1
- package/dist/plugin-files/dist/skills/devflow:react/SKILL.md +5 -5
- package/dist/plugin-files/dist/skills/devflow:tailwind/SKILL.md +2 -2
- package/dist/plugin-files/dist/skills/devflow:taro/SKILL.md +1 -1
- package/dist/plugin-files/dist/skills/devflow:ui-layout/SKILL.md +1 -1
- package/dist/plugin-files/dist/skills/devflow:vue/SKILL.md +2 -2
- package/dist/plugin-files/dist/skills/devflow:workflow/SKILL.md +6 -6
- package/dist/plugin-files/hooks/session-start +13 -11
- package/dist/plugin-files/package.json +14 -13
- package/dist/plugin-files/skills/context/SKILL.md +7 -7
- package/dist/plugin-files/skills/delivery/SKILL.md +9 -9
- package/dist/plugin-files/skills/devflow/SKILL.md +1 -1
- package/dist/plugin-files/skills/doctor/SKILL.md +4 -1
- package/dist/plugin-files/skills/graph/SKILL.md +5 -5
- package/dist/plugin-files/skills/knowledge/SKILL.md +5 -5
- package/dist/plugin-files/skills/memory/SKILL.md +5 -5
- package/dist/plugin-files/skills/workflow/SKILL.md +5 -5
- package/package.json +28 -28
|
@@ -6,7 +6,7 @@ description: 检索项目上下文 — 自然语言查询相关代码、符号
|
|
|
6
6
|
## 工作流(必须按顺序执行)
|
|
7
7
|
|
|
8
8
|
### Step 1: 获取精确上下文
|
|
9
|
-
调用 `
|
|
9
|
+
调用 `mcp__plugin_devflow_devflow__get_project_context` 获取与用户问题相关的代码、记忆和知识库信息。
|
|
10
10
|
这一步确保你拿到的是项目真实状态,而非凭空猜测。
|
|
11
11
|
|
|
12
12
|
### Step 2: 分析
|
|
@@ -23,12 +23,12 @@ description: 检索项目上下文 — 自然语言查询相关代码、符号
|
|
|
23
23
|
|
|
24
24
|
| 工具 | 何时调用 |
|
|
25
25
|
|------|----------|
|
|
26
|
-
| `
|
|
27
|
-
| `
|
|
28
|
-
| `
|
|
26
|
+
| `mcp__plugin_devflow_devflow__get_project_context` | 每次任务第一步(必须) |
|
|
27
|
+
| `mcp__plugin_devflow_devflow__get_project_context` | 按需调用 |
|
|
28
|
+
| `mcp__plugin_devflow_devflow__search_symbol` | 按需调用 |
|
|
29
29
|
|
|
30
30
|
## 规则
|
|
31
|
-
- 永远从 `
|
|
31
|
+
- 永远从 `mcp__plugin_devflow_devflow__get_project_context` 开始——你不知道项目里有什么
|
|
32
32
|
- 上下文返回后,用 Read 确认关键文件
|
|
33
33
|
- 改完代码后跑类型检查
|
|
34
34
|
|
|
@@ -47,7 +47,7 @@ description: 检索项目上下文 — 自然语言查询相关代码、符号
|
|
|
47
47
|
## 执行
|
|
48
48
|
|
|
49
49
|
1. 如果用户的查询包含中文,先将其中的中文关键词翻译为英文代码术语(空格分隔)
|
|
50
|
-
2. 调用 `
|
|
50
|
+
2. 调用 `mcp__plugin_devflow_devflow__get_project_context` MCP 工具:
|
|
51
51
|
|
|
52
52
|
```
|
|
53
53
|
query = 用户的原始查询内容(包含中文)
|
|
@@ -55,7 +55,7 @@ expandedTerms = 你翻译的英文关键词(如 "code review audit module")
|
|
|
55
55
|
mode = "fast" (首次调用;如需更深入结果,再改用 "deep")
|
|
56
56
|
```
|
|
57
57
|
|
|
58
|
-
也可以使用 `
|
|
58
|
+
也可以使用 `mcp__plugin_devflow_devflow__search_symbol` 按符号名搜索代码。
|
|
59
59
|
|
|
60
60
|
示例:
|
|
61
61
|
- 用户查询 "代码审核模块的流程" → expandedTerms = "code review audit module workflow pipeline process"
|
|
@@ -5,17 +5,17 @@ description: 通过可审计 Delivery Line 将需求推进到验证完成的 int
|
|
|
5
5
|
|
|
6
6
|
# Delivery Line
|
|
7
7
|
|
|
8
|
-
使用 `
|
|
8
|
+
使用 `mcp__plugin_devflow_devflow__delivery_*` 工具推进一个持久化交付案件。案件状态和 `nextActions` 是唯一的流程事实来源。
|
|
9
9
|
|
|
10
10
|
## 开始案件
|
|
11
11
|
|
|
12
|
-
收到新的交付需求时,调用 `
|
|
12
|
+
收到新的交付需求时,调用 `mcp__plugin_devflow_devflow__delivery_create_case`。使用当前项目绝对路径;默认 `baseRef=HEAD`、`targetRef=main`,除非用户明确指定其他值。为 actor、session、execution 和每次写操作生成稳定且可追踪的标识与幂等键。
|
|
13
13
|
- 若上下文检索发现同名组件、同一路由或多个框架实现,将候选路径通过 `existingImplementations` 传入创建案件参数,让案件先进入阻塞澄清;不要自行选择复用或替换。
|
|
14
14
|
|
|
15
15
|
## 推进规则
|
|
16
16
|
|
|
17
|
-
- 调用 `
|
|
18
|
-
- 每次写操作后读取返回状态;状态不明确或发生 stale turn 时调用 `
|
|
17
|
+
- 调用 `mcp__plugin_devflow_devflow__get_project_context` 后必须等待该 MCP 返回,再进行任何 Read/Grep/Glob/Bash/Write/Edit;不要并发发起上下文请求和直接工具调用。
|
|
18
|
+
- 每次写操作后读取返回状态;状态不明确或发生 stale turn 时调用 `mcp__plugin_devflow_devflow__delivery_status`。
|
|
19
19
|
- 读取 `contextQuality.channelAvailability` 时区分三种结果:`available` 表示有可用证据,
|
|
20
20
|
`empty_valid` 表示 producer 正常但项目没有匹配记录,可带降级说明继续;`unavailable`
|
|
21
21
|
表示 producer 失败。Memory/Knowledge 默认是辅助通道,只有案件策略明确将其设为 required
|
|
@@ -39,11 +39,11 @@ description: 通过可审计 Delivery Line 将需求推进到验证完成的 int
|
|
|
39
39
|
- `delivery_advance` 仅允许在 `plan_approved` 阶段使用;其他阶段返回失败时必须按
|
|
40
40
|
`nextActions` 恢复,不得把无推进当作成功。
|
|
41
41
|
- 澄清与设计交互使用当前 turn;后续写操作携带案件当前 context receipt。
|
|
42
|
-
- 只有用户明确同意时才能调用 `
|
|
42
|
+
- 只有用户明确同意时才能调用 `mcp__plugin_devflow_devflow__delivery_approve`;不得代替用户批准。
|
|
43
43
|
- 审批返回后不要结束会话:立即读取同一次返回的 `stage` 和 `nextActions`,按其允许的下一步继续推进;只有 `nextActions` 为空或用户明确暂停时才结束。
|
|
44
|
-
- `
|
|
45
|
-
- 失败任务只通过 `
|
|
46
|
-
- Claude 在当前工作区产生的修改不是 Delivery 输出;只能先调用 `
|
|
44
|
+
- `mcp__plugin_devflow_devflow__delivery_advance` 用于推进已满足的状态,`mcp__plugin_devflow_devflow__delivery_resume` 只恢复已经具备运行条件的 gate 或 task。
|
|
45
|
+
- 失败任务只通过 `mcp__plugin_devflow_devflow__delivery_retry_task` 重试;取消和导出分别使用 `mcp__plugin_devflow_devflow__delivery_cancel` 与 `mcp__plugin_devflow_devflow__delivery_export`。
|
|
46
|
+
- Claude 在当前工作区产生的修改不是 Delivery 输出;只能先调用 `mcp__plugin_devflow_devflow__delivery_import_external_change`,由系统校验 base/candidate、允许文件、context receipt 和验证证据后再进入 integration。
|
|
47
47
|
|
|
48
48
|
## 可用操作
|
|
49
49
|
|
|
@@ -58,7 +58,7 @@ description: 通过可审计 Delivery Line 将需求推进到验证完成的 int
|
|
|
58
58
|
- MCP 返回 `ok: false` 时,该操作已经失败。向用户呈现 `error.code` 和 `error.message`,不得把 transport 成功误报为交付成功。
|
|
59
59
|
- `error.retryable=false` 时不得自动重试;`error.recoveryAction` 是下一步建议,不是已完成的动作。
|
|
60
60
|
- 遇到 `HELD`、`WORKER_UNAVAILABLE`、`REQUIRED_CONTEXT_MISSING` 或 producer/stale 警告时,先刷新 `delivery_status` 并保留阻塞状态;不得通过普通 Write/Edit/Bash/git commit 绕过 Delivery authority。
|
|
61
|
-
- 遇到 `STALE_INTERACTION_TURN`、`MISSING_PREREQUISITE` 或 `INVALID_TRANSITION` 时,先调用 `
|
|
61
|
+
- 遇到 `STALE_INTERACTION_TURN`、`MISSING_PREREQUISITE` 或 `INVALID_TRANSITION` 时,先调用 `mcp__plugin_devflow_devflow__delivery_status` 刷新案件状态;只有新的 `nextActions` 明确允许时才继续。
|
|
62
62
|
- Delivery 工具失败后不得为了绕过写入限制调用 `delivery_cancel`;只有用户明确要求取消时才可取消。取消或拒绝后的同一会话仍禁止直接 Write/Edit/Bash,必须新建 Delivery 案件或开启新会话。
|
|
63
63
|
- 用户拒绝审批,或遇到 `UNAUTHORIZED_ROLE`、权限失败、`PROJECT_ROOT_MISMATCH` 时不得自动重试;保留案件当前状态并请求用户处理。
|
|
64
64
|
- 不通过更换 actor、project root、turn、context receipt 或幂等键来规避失败。
|
|
@@ -16,6 +16,6 @@ required_mcp_tools: []
|
|
|
16
16
|
| /devflow:knowledge | get_knowledge |
|
|
17
17
|
| /devflow:workflow | run_workflow |
|
|
18
18
|
| /devflow:delivery | delivery_create_case / delivery_status / delivery_* |
|
|
19
|
-
| /devflow:doctor |
|
|
19
|
+
| /devflow:doctor | devflow_runtime_status |
|
|
20
20
|
|
|
21
21
|
领域插件(/devflow:react, /devflow:vue, /devflow:nextjs, /devflow:nest, /devflow:tailwind, /devflow:docker, /devflow:electron, /devflow:graphql, /devflow:git, /devflow:performance, /devflow:animation, /devflow:css, /devflow:taro, /devflow:ui-layout)— 每个都有对应的 MCP 工具。
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: devflow:doctor
|
|
3
3
|
description: 项目健康检查 — 索引状态、引擎就绪、插件列表
|
|
4
|
-
required_mcp_tools:
|
|
4
|
+
required_mcp_tools:
|
|
5
|
+
- devflow_runtime_status
|
|
5
6
|
---
|
|
6
7
|
|
|
7
8
|
# 项目健康检查
|
|
8
9
|
|
|
9
10
|
快速了解 DevFlow 在当前项目中的运行状态。任务开始前用一次即可。
|
|
10
11
|
|
|
12
|
+
调用 `mcp__plugin_devflow_devflow__devflow_runtime_status` 检查当前 Claude session、task turn 和语义上下文是否正确绑定。该工具是只读控制面诊断,不依赖已有 context receipt。
|
|
13
|
+
|
|
11
14
|
## 检查项
|
|
12
15
|
|
|
13
16
|
- 文件索引是否最新
|
|
@@ -6,7 +6,7 @@ description: 查看项目模块图谱 — 架构分层、文件分组、依赖
|
|
|
6
6
|
## 工作流(必须按顺序执行)
|
|
7
7
|
|
|
8
8
|
### Step 1: 获取精确上下文
|
|
9
|
-
调用 `
|
|
9
|
+
调用 `mcp__plugin_devflow_devflow__get_project_context` 获取与用户问题相关的代码、记忆和知识库信息。
|
|
10
10
|
这一步确保你拿到的是项目真实状态,而非凭空猜测。
|
|
11
11
|
|
|
12
12
|
### Step 2: 分析
|
|
@@ -23,11 +23,11 @@ description: 查看项目模块图谱 — 架构分层、文件分组、依赖
|
|
|
23
23
|
|
|
24
24
|
| 工具 | 何时调用 |
|
|
25
25
|
|------|----------|
|
|
26
|
-
| `
|
|
27
|
-
| `
|
|
26
|
+
| `mcp__plugin_devflow_devflow__get_project_context` | 每次任务第一步(必须) |
|
|
27
|
+
| `mcp__plugin_devflow_devflow__get_dependency_graph` | 按需调用 |
|
|
28
28
|
|
|
29
29
|
## 规则
|
|
30
|
-
- 永远从 `
|
|
30
|
+
- 永远从 `mcp__plugin_devflow_devflow__get_project_context` 开始——你不知道项目里有什么
|
|
31
31
|
- 上下文返回后,用 Read 确认关键文件
|
|
32
32
|
- 改完代码后跑类型检查
|
|
33
33
|
|
|
@@ -45,7 +45,7 @@ description: 查看项目模块图谱 — 架构分层、文件分组、依赖
|
|
|
45
45
|
|
|
46
46
|
## 执行
|
|
47
47
|
|
|
48
|
-
调用 `
|
|
48
|
+
调用 `mcp__plugin_devflow_devflow__get_dependency_graph` MCP 工具:
|
|
49
49
|
|
|
50
50
|
```
|
|
51
51
|
target = "all" (默认,拉取完整图谱)
|
|
@@ -6,7 +6,7 @@ description: 搜索技术文档知识库 — React、Vue、Nest、TypeScript 等
|
|
|
6
6
|
## 工作流(必须按顺序执行)
|
|
7
7
|
|
|
8
8
|
### Step 1: 获取精确上下文
|
|
9
|
-
调用 `
|
|
9
|
+
调用 `mcp__plugin_devflow_devflow__get_project_context` 获取与用户问题相关的代码、记忆和知识库信息。
|
|
10
10
|
这一步确保你拿到的是项目真实状态,而非凭空猜测。
|
|
11
11
|
|
|
12
12
|
### Step 2: 分析
|
|
@@ -23,11 +23,11 @@ description: 搜索技术文档知识库 — React、Vue、Nest、TypeScript 等
|
|
|
23
23
|
|
|
24
24
|
| 工具 | 何时调用 |
|
|
25
25
|
|------|----------|
|
|
26
|
-
| `
|
|
27
|
-
| `
|
|
26
|
+
| `mcp__plugin_devflow_devflow__get_project_context` | 每次任务第一步(必须) |
|
|
27
|
+
| `mcp__plugin_devflow_devflow__get_knowledge` | 按需调用 |
|
|
28
28
|
|
|
29
29
|
## 规则
|
|
30
|
-
- 永远从 `
|
|
30
|
+
- 永远从 `mcp__plugin_devflow_devflow__get_project_context` 开始——你不知道项目里有什么
|
|
31
31
|
- 上下文返回后,用 Read 确认关键文件
|
|
32
32
|
- 改完代码后跑类型检查
|
|
33
33
|
|
|
@@ -45,7 +45,7 @@ description: 搜索技术文档知识库 — React、Vue、Nest、TypeScript 等
|
|
|
45
45
|
|
|
46
46
|
## 执行
|
|
47
47
|
|
|
48
|
-
调用 `
|
|
48
|
+
调用 `mcp__plugin_devflow_devflow__get_knowledge` MCP 工具:
|
|
49
49
|
|
|
50
50
|
```
|
|
51
51
|
query = 用户的查询内容
|
|
@@ -6,7 +6,7 @@ description: 项目记忆 — 技术栈、编码约定、历史决策、用户
|
|
|
6
6
|
## 工作流(必须按顺序执行)
|
|
7
7
|
|
|
8
8
|
### Step 1: 获取精确上下文
|
|
9
|
-
调用 `
|
|
9
|
+
调用 `mcp__plugin_devflow_devflow__get_project_context` 获取与用户问题相关的代码、记忆和知识库信息。
|
|
10
10
|
这一步确保你拿到的是项目真实状态,而非凭空猜测。
|
|
11
11
|
|
|
12
12
|
### Step 2: 分析
|
|
@@ -23,11 +23,11 @@ description: 项目记忆 — 技术栈、编码约定、历史决策、用户
|
|
|
23
23
|
|
|
24
24
|
| 工具 | 何时调用 |
|
|
25
25
|
|------|----------|
|
|
26
|
-
| `
|
|
27
|
-
| `
|
|
26
|
+
| `mcp__plugin_devflow_devflow__get_project_context` | 每次任务第一步(必须) |
|
|
27
|
+
| `mcp__plugin_devflow_devflow__get_memory` | 按需调用 |
|
|
28
28
|
|
|
29
29
|
## 规则
|
|
30
|
-
- 永远从 `
|
|
30
|
+
- 永远从 `mcp__plugin_devflow_devflow__get_project_context` 开始——你不知道项目里有什么
|
|
31
31
|
- 上下文返回后,用 Read 确认关键文件
|
|
32
32
|
- 改完代码后跑类型检查
|
|
33
33
|
|
|
@@ -45,7 +45,7 @@ description: 项目记忆 — 技术栈、编码约定、历史决策、用户
|
|
|
45
45
|
|
|
46
46
|
## 执行
|
|
47
47
|
|
|
48
|
-
调用 `
|
|
48
|
+
调用 `mcp__plugin_devflow_devflow__get_memory` MCP 工具(无需参数):
|
|
49
49
|
|
|
50
50
|
```
|
|
51
51
|
(无参数 — 返回技术栈、约定、偏好、历史决策)
|
|
@@ -6,7 +6,7 @@ description: 执行标准化开发工作流 — Bug 修复、功能开发、代
|
|
|
6
6
|
## 工作流(必须按顺序执行)
|
|
7
7
|
|
|
8
8
|
### Step 1: 获取精确上下文
|
|
9
|
-
调用 `
|
|
9
|
+
调用 `mcp__plugin_devflow_devflow__get_project_context` 获取与用户问题相关的代码、记忆和知识库信息。
|
|
10
10
|
这一步确保你拿到的是项目真实状态,而非凭空猜测。
|
|
11
11
|
|
|
12
12
|
### Step 2: 分析
|
|
@@ -23,11 +23,11 @@ description: 执行标准化开发工作流 — Bug 修复、功能开发、代
|
|
|
23
23
|
|
|
24
24
|
| 工具 | 何时调用 |
|
|
25
25
|
|------|----------|
|
|
26
|
-
| `
|
|
27
|
-
| `
|
|
26
|
+
| `mcp__plugin_devflow_devflow__get_project_context` | 每次任务第一步(必须) |
|
|
27
|
+
| `mcp__plugin_devflow_devflow__run_workflow` | 按需调用 |
|
|
28
28
|
|
|
29
29
|
## 规则
|
|
30
|
-
- 永远从 `
|
|
30
|
+
- 永远从 `mcp__plugin_devflow_devflow__get_project_context` 开始——你不知道项目里有什么
|
|
31
31
|
- 上下文返回后,用 Read 确认关键文件
|
|
32
32
|
- 改完代码后跑类型检查
|
|
33
33
|
|
|
@@ -45,7 +45,7 @@ description: 执行标准化开发工作流 — Bug 修复、功能开发、代
|
|
|
45
45
|
|
|
46
46
|
## 执行
|
|
47
47
|
|
|
48
|
-
调用 `
|
|
48
|
+
调用 `mcp__plugin_devflow_devflow__run_workflow` MCP 工具:
|
|
49
49
|
|
|
50
50
|
```
|
|
51
51
|
type = "bugfix" | "feature" | "review"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devflow-tools/cli",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.28",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"devflow": "./bin/devflow.cjs"
|
|
@@ -14,38 +14,38 @@
|
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@colbymchenry/codegraph": "^1.1.1",
|
|
17
|
-
"@devflow-tools/adapters": "0.18.
|
|
18
|
-
"@devflow-tools/benchmark": "0.18.
|
|
19
|
-
"@devflow-tools/context-engine": "0.18.
|
|
20
|
-
"@devflow-tools/database": "0.18.
|
|
21
|
-
"@devflow-tools/delivery-line": "0.18.
|
|
22
|
-
"@devflow-tools/knowledge-engine": "0.18.
|
|
23
|
-
"@devflow-tools/mcp-server": "0.18.
|
|
24
|
-
"@devflow-tools/memory-engine": "0.18.
|
|
25
|
-
"@devflow-tools/plugin-animation": "0.18.
|
|
26
|
-
"@devflow-tools/plugin-css": "0.18.
|
|
27
|
-
"@devflow-tools/plugin-docker": "0.18.
|
|
28
|
-
"@devflow-tools/plugin-electron": "0.18.
|
|
29
|
-
"@devflow-tools/plugin-git": "0.18.
|
|
30
|
-
"@devflow-tools/plugin-graphql": "0.18.
|
|
31
|
-
"@devflow-tools/plugin-nest": "0.18.
|
|
32
|
-
"@devflow-tools/plugin-nextjs": "0.18.
|
|
33
|
-
"@devflow-tools/plugin-performance": "0.18.
|
|
34
|
-
"@devflow-tools/plugin-react": "0.18.
|
|
35
|
-
"@devflow-tools/plugin-tailwind": "0.18.
|
|
36
|
-
"@devflow-tools/plugin-taro": "0.18.
|
|
37
|
-
"@devflow-tools/plugin-ui-layout": "0.18.
|
|
38
|
-
"@devflow-tools/plugin-vue": "0.18.
|
|
39
|
-
"@devflow-tools/sdk": "0.18.
|
|
40
|
-
"@devflow-tools/server": "0.18.
|
|
41
|
-
"@devflow-tools/telemetry": "0.18.
|
|
42
|
-
"@devflow-tools/workflow-engine": "0.18.
|
|
17
|
+
"@devflow-tools/adapters": "0.18.28",
|
|
18
|
+
"@devflow-tools/benchmark": "0.18.28",
|
|
19
|
+
"@devflow-tools/context-engine": "0.18.28",
|
|
20
|
+
"@devflow-tools/database": "0.18.28",
|
|
21
|
+
"@devflow-tools/delivery-line": "0.18.28",
|
|
22
|
+
"@devflow-tools/knowledge-engine": "0.18.28",
|
|
23
|
+
"@devflow-tools/mcp-server": "0.18.28",
|
|
24
|
+
"@devflow-tools/memory-engine": "0.18.28",
|
|
25
|
+
"@devflow-tools/plugin-animation": "0.18.28",
|
|
26
|
+
"@devflow-tools/plugin-css": "0.18.28",
|
|
27
|
+
"@devflow-tools/plugin-docker": "0.18.28",
|
|
28
|
+
"@devflow-tools/plugin-electron": "0.18.28",
|
|
29
|
+
"@devflow-tools/plugin-git": "0.18.28",
|
|
30
|
+
"@devflow-tools/plugin-graphql": "0.18.28",
|
|
31
|
+
"@devflow-tools/plugin-nest": "0.18.28",
|
|
32
|
+
"@devflow-tools/plugin-nextjs": "0.18.28",
|
|
33
|
+
"@devflow-tools/plugin-performance": "0.18.28",
|
|
34
|
+
"@devflow-tools/plugin-react": "0.18.28",
|
|
35
|
+
"@devflow-tools/plugin-tailwind": "0.18.28",
|
|
36
|
+
"@devflow-tools/plugin-taro": "0.18.28",
|
|
37
|
+
"@devflow-tools/plugin-ui-layout": "0.18.28",
|
|
38
|
+
"@devflow-tools/plugin-vue": "0.18.28",
|
|
39
|
+
"@devflow-tools/sdk": "0.18.28",
|
|
40
|
+
"@devflow-tools/server": "0.18.28",
|
|
41
|
+
"@devflow-tools/telemetry": "0.18.28",
|
|
42
|
+
"@devflow-tools/workflow-engine": "0.18.28",
|
|
43
43
|
"@inquirer/prompts": "^7.10.1",
|
|
44
44
|
"chalk": "^5.3.0",
|
|
45
45
|
"commander": "^12.0.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@devflow-tools/devflow": "0.18.
|
|
48
|
+
"@devflow-tools/devflow": "0.18.28",
|
|
49
49
|
"typescript": "^5.5.0",
|
|
50
50
|
"vitest": "^2.0.0"
|
|
51
51
|
},
|