@agentworkforce/workload-router 3.0.0 → 3.0.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.
- package/CHANGELOG.md +3 -7
- package/package.json +2 -2
- package/routing-profiles/default.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,15 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
-
## [3.0.
|
|
10
|
+
## [3.0.2] - 2026-05-13
|
|
11
11
|
|
|
12
|
-
###
|
|
13
|
-
|
|
14
|
-
- Address CI failure + persona-maker AGENTS.md drift
|
|
15
|
-
|
|
16
|
-
### Changed
|
|
12
|
+
### Added
|
|
17
13
|
|
|
18
|
-
-
|
|
14
|
+
- **Add proactive-agent-builder persona + fix optional-input regression** (#87)
|
|
19
15
|
|
|
20
16
|
## [2.1.2] - 2026-05-11
|
|
21
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentworkforce/workload-router",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"url": "https://github.com/AgentWorkforce/workforce"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@agentworkforce/persona-kit": "3.0.
|
|
26
|
+
"@agentworkforce/persona-kit": "3.0.2"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
"e2e-validation": {"rationale": "End-to-end validation is the last line of defense before merge; missing a hop-level divergence ships broken behavior, so depth over speed is the right default."},
|
|
33
33
|
"write-integration-tests": {"rationale": "Integration test authoring follows a fixed template (real substitute, wire-shape assertions, failure modes); best-value reasoning is sufficient when guided by the template."},
|
|
34
34
|
"agent-relay-workflow": {"rationale": "new agent-relay-workflow capability requiring balanced reasoning and tooling"},
|
|
35
|
-
"relay-orchestrator": {"rationale": "Relay orchestrator coordinates agent spawning with balanced reasoning and fast path for first-turn orchestration."}
|
|
35
|
+
"relay-orchestrator": {"rationale": "Relay orchestrator coordinates agent spawning with balanced reasoning and fast path for first-turn orchestration."},
|
|
36
|
+
"scaffold-proactive-agent": {"rationale": "Scaffolding a runnable proactive agent has to get the runtime contract, env-injection shim, idempotency guards, and bootstrap wiring right on the first try; a misshaped agent ships either a dead handler or a duplicate-firing one, so depth over speed is the right default."}
|
|
36
37
|
}
|
|
37
38
|
}
|