@agentworkforce/workload-router 0.2.0 → 0.4.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/CHANGELOG.md +8 -0
- package/dist/generated/personas.d.ts +244 -0
- package/dist/generated/personas.d.ts.map +1 -1
- package/dist/generated/personas.js +193 -0
- package/dist/generated/personas.js.map +1 -1
- package/dist/index.d.ts +128 -7
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +441 -47
- package/dist/index.js.map +1 -1
- package/dist/index.test.js +297 -2
- package/dist/index.test.js.map +1 -1
- package/package.json +4 -2
- package/routing-profiles/default.json +24 -0
|
@@ -58,6 +58,30 @@
|
|
|
58
58
|
"cloud-sandbox-infra": {
|
|
59
59
|
"tier": "best",
|
|
60
60
|
"rationale": "Cloud infrastructure changes (sandbox provisioning, credential handling, session durability) have high blast radius; prioritize deeper reasoning and thorough verification."
|
|
61
|
+
},
|
|
62
|
+
"sage-slack-egress-migration": {
|
|
63
|
+
"tier": "best-value",
|
|
64
|
+
"rationale": "Slack egress migration work is mostly mechanical integration plumbing, so best-value is the default tradeoff."
|
|
65
|
+
},
|
|
66
|
+
"sage-proactive-rewire": {
|
|
67
|
+
"tier": "best-value",
|
|
68
|
+
"rationale": "Proactive rewiring is configuration-heavy coordination work that usually does not need the highest-cost tier by default."
|
|
69
|
+
},
|
|
70
|
+
"cloud-slack-proxy-guard": {
|
|
71
|
+
"tier": "best-value",
|
|
72
|
+
"rationale": "Proxy guard updates are typically policy and wiring checks, so best-value is a sensible default tier."
|
|
73
|
+
},
|
|
74
|
+
"sage-cloud-e2e-conduction": {
|
|
75
|
+
"tier": "best-value",
|
|
76
|
+
"rationale": "End-to-end conduction is orchestration-heavy work where strong reasoning is useful without requiring the top tier by default."
|
|
77
|
+
},
|
|
78
|
+
"capability-discovery": {
|
|
79
|
+
"tier": "best-value",
|
|
80
|
+
"rationale": "Searching skill.sh and prpm.dev for existing skills, agents, and hooks is lightweight research; the balanced default is sufficient when guided by the skill.sh/find-skills and @prpm/self-improving skills."
|
|
81
|
+
},
|
|
82
|
+
"posthog": {
|
|
83
|
+
"tier": "best-value",
|
|
84
|
+
"rationale": "PostHog queries are interactive analytics lookups; best-value is sufficient and keeps latency low when chatting with the MCP server."
|
|
61
85
|
}
|
|
62
86
|
}
|
|
63
87
|
}
|