create-byan-agent 2.50.0 → 2.53.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 +93 -0
- package/install/package.json +1 -1
- package/install/templates/.claude/hooks/codex-delegate-guard.js +66 -74
- package/install/templates/.claude/hooks/inject-voice-anchor.js +2 -1
- package/install/templates/.claude/hooks/lib/autodelegate-decision.js +11 -13
- package/install/templates/.claude/hooks/lib/codex-delegate-gate.js +0 -0
- package/install/templates/.claude/hooks/lib/plain-language.js +18 -0
- package/install/templates/.claude/rules/native-workflows.md +17 -7
- package/install/templates/.claude/rules/plain-language.md +18 -0
- package/install/templates/.claude/skills/byan-byan/SKILL.md +44 -10
- package/install/templates/.claude/workflows/byan-auto-dispatch.js +210 -0
- package/install/templates/_byan/agent/byan/byan-tao.md +8 -0
- package/install/templates/_byan/mcp/byan-mcp-server/lib/dispatch-router.js +48 -30
- package/install/templates/_byan/mcp/byan-mcp-server/lib/native-tiers.js +25 -6
- package/install/templates/_byan/mcp/byan-mcp-server/lib/tier-script.js +8 -4
- package/install/templates/_byan/mcp/byan-mcp-server/lib/workflows-lint.js +6 -2
- package/install/templates/_byan/mcp/byan-mcp-server/skill-bundles-manifest.json +1 -1
- package/install/templates/dist/skill-bundles/byan-byan.zip +0 -0
- package/install/templates/docs/codex-auto-delegation.md +51 -25
- package/install/templates/docs/intelligent-dispatch.md +9 -5
- package/install/templates/docs/native-workflows-contract.md +9 -4
- package/package.json +1 -1
|
@@ -95,16 +95,21 @@ tier vocabulary, the leaf classifier, and the model map.
|
|
|
95
95
|
|
|
96
96
|
| Tier | `opts.model` | Used for |
|
|
97
97
|
|------|--------------|----------|
|
|
98
|
+
| `up-tier` | `opus` / `fable` | EXPLICIT authoring choice: raise a genuinely complex leaf above the inherited tier (opus for hard, fable for extreme, last resort) |
|
|
98
99
|
| `deep` | **omitted** (inherit the session model) | implement, verify, analysis — the default |
|
|
99
100
|
| `balanced` | `sonnet` | MECHANICAL verification, opt-in only via the `mech-` label prefix |
|
|
100
101
|
| `cheap` | `haiku` | a pure exploration leaf: read / load / parse / detect |
|
|
101
102
|
|
|
102
103
|
Three hard rules:
|
|
103
104
|
|
|
104
|
-
- **No pin-up
|
|
105
|
-
leaf
|
|
106
|
-
|
|
107
|
-
|
|
105
|
+
- **No AUTO pin-up, but an explicit up-tier is allowed (v3).** Auto-routing does
|
|
106
|
+
not raise a leaf above the inherited tier: `deep` is an omission, letting a leaf
|
|
107
|
+
inherit whatever the session runs (Opus by default, Sonnet if the user chose
|
|
108
|
+
Sonnet). An author MAY still deliberately pin `opus` or `fable` on a genuinely
|
|
109
|
+
complex leaf — the workflow-leaf mirror of the dispatch-router complexity ladder
|
|
110
|
+
(haiku -> sonnet -> opus -> fable). The anti-downgrade floor does not apply
|
|
111
|
+
upward, so the linter allows an up-tier pin; the old blanket "no pin-up / no
|
|
112
|
+
Fable" ban is lifted.
|
|
108
113
|
- **Only exploration and mech- downgrade.** A leaf is pinned to `cheap` only
|
|
109
114
|
when it is unambiguous read/extract work. `classifyLeaf` keys off the LABEL
|
|
110
115
|
(the prompt is too noisy — an exploration leaf often says "report what you
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-byan-agent",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.53.0",
|
|
4
4
|
"description": "BYAN v2.8 - Intelligent AI agent creator with ELO trust system + scientific fact-check + Hermes universal dispatcher + native Claude Code integration (hooks, skills, MCP server). Multi-platform (Claude Code, Codex). Merise Agile + TDD + 71 Mantras. ~54% LLM cost savings.",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|