@miller-tech/uap 1.37.0 → 1.38.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/README.md +6 -5
- package/dist/.tsbuildinfo +1 -1
- package/dist/mcp-router/server.d.ts +4 -3
- package/dist/mcp-router/server.d.ts.map +1 -1
- package/dist/mcp-router/server.js +9 -6
- package/dist/mcp-router/server.js.map +1 -1
- package/dist/mcp-router/tools/deliver.d.ts +101 -0
- package/dist/mcp-router/tools/deliver.d.ts.map +1 -0
- package/dist/mcp-router/tools/deliver.js +259 -0
- package/dist/mcp-router/tools/deliver.js.map +1 -0
- package/dist/mcp-router/tools/discover.d.ts +1 -1
- package/dist/mcp-router/tools/discover.js +1 -1
- package/dist/mcp-router/tools/execute.d.ts +1 -1
- package/dist/mcp-router/tools/execute.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -89,7 +89,7 @@ uap setup -p all
|
|
|
89
89
|
| Deploy Batching | 1 module | Squash, merge, parallelize deploy actions across agents |
|
|
90
90
|
| Policy Enforcement | 8 modules | Store, evaluate, and enforce operational policies with audit trail |
|
|
91
91
|
| Browser | 1 module | Stealth web automation via CloakBrowser (Playwright drop-in) |
|
|
92
|
-
| MCP Router |
|
|
92
|
+
| MCP Router | 12 modules | 3-tool meta-router (discover/execute/deliver) + expert-consultation registry (98% token savings) |
|
|
93
93
|
| Models | 10 modules | Multi-model routing, planning, execution, validation, 13 model profiles |
|
|
94
94
|
| Delivery Harness | 14 modules | `uap deliver`: convergence loop, best-of-N explorer, critic, practice recall, escalation, ideation seeds, HALO tracing, coordination + deploy queueing |
|
|
95
95
|
| Patterns | 23 patterns | Battle-tested workflows from Terminal-Bench 2.0 |
|
|
@@ -295,18 +295,19 @@ await browser.close();
|
|
|
295
295
|
|
|
296
296
|
## MCP Router
|
|
297
297
|
|
|
298
|
-
Replaces N tool definitions with
|
|
298
|
+
Replaces N tool definitions with 3 meta-tools for 98% token reduction: `discover_tools`, `execute_tool`, and `deliver` (auto-routes a coding task into the `uap deliver` convergence loop, which classifies complexity and drives a model to verified completion against real gates).
|
|
299
299
|
|
|
300
|
-
### Components (
|
|
300
|
+
### Components (11 modules)
|
|
301
301
|
|
|
302
302
|
| Component | File | Purpose |
|
|
303
303
|
| ----------------- | ------------------------------------- | ------------------------------------------- |
|
|
304
|
-
| MCP Server | `src/mcp-router/server.ts` | Exposes `discover_tools
|
|
304
|
+
| MCP Server | `src/mcp-router/server.ts` | Exposes `discover_tools`, `execute_tool`, `deliver` |
|
|
305
305
|
| Config Parser | `src/mcp-router/config/parser.ts` | Loads MCP configs from standard paths |
|
|
306
306
|
| Fuzzy Search | `src/mcp-router/search/fuzzy.ts` | Tool discovery with fuzzy matching |
|
|
307
307
|
| Client Pool | `src/mcp-router/executor/client.ts` | Manages connections to MCP servers |
|
|
308
308
|
| Tool Execute | `src/mcp-router/tools/execute.ts` | Tool execution with policy gate |
|
|
309
309
|
| Tool Discover | `src/mcp-router/tools/discover.ts` | Tool discovery definitions |
|
|
310
|
+
| Tool Deliver | `src/mcp-router/tools/deliver.ts` | Routes a task into `uap deliver` (sandbox-confined subprocess) |
|
|
310
311
|
| Output Compressor | `src/mcp-router/output-compressor.ts` | Compresses tool output |
|
|
311
312
|
| Session Stats | `src/mcp-router/session-stats.ts` | Per-tool token consumption tracking |
|
|
312
313
|
|
|
@@ -322,7 +323,7 @@ Tier 2: ModelRouter -- Assigns optimal model per subtask
|
|
|
322
323
|
Tier 3: TaskExecutor -- Executes with validation, dynamic temperature, rate limiting
|
|
323
324
|
```
|
|
324
325
|
|
|
325
|
-
### Components (
|
|
326
|
+
### Components (11 modules)
|
|
326
327
|
|
|
327
328
|
| Component | File | Purpose |
|
|
328
329
|
| ------------------ | ---------------------------------- | -------------------------------------------- |
|