jarvis-agent-factory 3.7.3 → 3.8.0
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/package.json
CHANGED
|
@@ -13,7 +13,7 @@ description: 启动贾维斯编排模式——需求→文档→任务→计划
|
|
|
13
13
|
Gate C1 时加载:`Skill("code-quality-gate")`
|
|
14
14
|
Gate E 时加载:`Skill("shipping-and-launch")` `Skill("git-workflow-and-versioning")` `Skill("finishing-a-development-branch")`
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
**引擎驱动**:引擎运行后,MCP 工具自动可用。每个 Gate 工作完成后调用 `mcp__jarvis-engine__gate_enforce` 验证条件,通过后调用 `mcp__jarvis-engine__advance_gate` 推进硬状态机。
|
|
17
17
|
|
|
18
18
|
2. 判断当前需求是否适合流水线:
|
|
19
19
|
- ❌ **不适合**:用户提问信息量("有多少模块?")、明确要求单 agent 执行、纯文档格式化翻译
|
|
@@ -112,7 +112,7 @@ Batch 3: [TASK-005, TASK-006] ← 依赖 Batch 2 完成
|
|
|
112
112
|
|
|
113
113
|
## 🟠 Gate C1:代码质量门(不可绕过)
|
|
114
114
|
|
|
115
|
-
实现完成后的第一道质量门。**不可绕过。** 加载 `Skill("code-quality-gate")` 执行四项检查(Lint → Type-check → Build → Deps Audit),按技能中的项目类型工具链表选择命令。全部通过后输出质量检查摘要,作为 Gate C2 前置输入。通过后 `
|
|
115
|
+
实现完成后的第一道质量门。**不可绕过。** 加载 `Skill("code-quality-gate")` 执行四项检查(Lint → Type-check → Build → Deps Audit),按技能中的项目类型工具链表选择命令。全部通过后输出质量检查摘要,作为 Gate C2 前置输入。通过后 `mcp__jarvis-engine__advance_gate({ gate: "Gate C2" })`。
|
|
116
116
|
|
|
117
117
|
必须**全部**满足才能进入 Gate C2:
|
|
118
118
|
- [ ] **Lint 零错误**(warning 可接受但需记录)
|
|
@@ -176,7 +176,7 @@ Gate C1(+ Gate C1.5 如适用)通过后方可进入此门。
|
|
|
176
176
|
│ └── spawn e2e-test-worker
|
|
177
177
|
│
|
|
178
178
|
├── 步骤 6:测试结果汇总 → docs/testing/...
|
|
179
|
-
├── Gate C2 通过 → `
|
|
179
|
+
├── Gate C2 通过 → `mcp__jarvis-engine__advance_gate({ gate: "Gate D" })` → 进入 Gate D 评审
|
|
180
180
|
```
|
|
181
181
|
|
|
182
182
|
### test_after 策略规范
|