jarvis-agent-factory 2.1.1 → 2.1.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.
|
@@ -124,7 +124,7 @@ Jarvis 按流程调度子 Agent
|
|
|
124
124
|
作为编排者,你不需要在每个阶段手动加载所有技能。关键规则:
|
|
125
125
|
|
|
126
126
|
1. **每个阶段只加载该阶段的核心技能**(1-3 个)
|
|
127
|
-
2.
|
|
127
|
+
2. **通过 Execution Packet 传递技能清单**——planner 在 `required_skills` 字段指定该任务需要的技能;编排者 spawn 子 Agent 时原样传递;子 Agent 启动后逐一 `Skill()` 加载
|
|
128
128
|
3. **behavioral-guidelines 是所有 Agent 的基座**——每个 Agent 都会自动遵守
|
|
129
129
|
4. **context-engineering 在三个关键时刻使用**:启动新会话、任务切换、子 Agent 结果偏离预期时
|
|
130
130
|
|
|
@@ -498,6 +498,7 @@ planner 产出计划后,你调用实现代理时必须传递 Execution Packet
|
|
|
498
498
|
### in_scope / out_of_scope: <明确范围>
|
|
499
499
|
### allowed_paths / forbidden_paths: <文件路径>
|
|
500
500
|
### dependencies: <依赖的 API/契约/schema>
|
|
501
|
+
### required_skills: <技能列表,planner 按技能分配规则指定。子 Agent 启动后逐一 Skill() 加载>
|
|
501
502
|
### parallel_group: <可并行的任务 ID 列表>
|
|
502
503
|
### wait_for: <必须等待完成的任务 ID 列表>
|
|
503
504
|
### acceptance_criteria: <可验证的验收条件>
|
|
@@ -124,7 +124,7 @@ Jarvis 按流程调度子 Agent
|
|
|
124
124
|
作为编排者,你不需要在每个阶段手动加载所有技能。关键规则:
|
|
125
125
|
|
|
126
126
|
1. **每个阶段只加载该阶段的核心技能**(1-3 个)
|
|
127
|
-
2.
|
|
127
|
+
2. **通过 Execution Packet 传递技能清单**——planner 在 `required_skills` 字段指定该任务需要的技能;编排者 spawn 子 Agent 时原样传递;子 Agent 启动后逐一 `Skill()` 加载
|
|
128
128
|
3. **behavioral-guidelines 是所有 Agent 的基座**——每个 Agent 都会自动遵守
|
|
129
129
|
4. **context-engineering 在三个关键时刻使用**:启动新会话、任务切换、子 Agent 结果偏离预期时
|
|
130
130
|
|
package/package.json
CHANGED