@miller-tech/uap 1.93.0 → 1.93.1
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 +46 -44
- package/docs/INDEX.md +28 -7
- package/docs/architecture/OVERVIEW.md +106 -17
- package/docs/architecture/PROTOCOL.md +31 -13
- package/docs/design/SELF_HARNESS.md +8 -0
- package/docs/design/UAP_REACTOR.md +17 -2
- package/docs/getting-started/CONFIGURATION.md +16 -7
- package/docs/getting-started/INSTALLATION.md +37 -18
- package/docs/getting-started/QUICKSTART.md +20 -14
- package/docs/guides/AUTOMATIC.md +9 -1
- package/docs/guides/AUTOMATIC_FEATURES.md +7 -1
- package/docs/guides/COORDINATION.md +5 -2
- package/docs/guides/DELIVER.md +3 -1
- package/docs/guides/DELIVERY_PIPELINE.md +122 -0
- package/docs/guides/DEPLOY_BATCHING.md +13 -4
- package/docs/guides/DROIDS_AND_SKILLS.md +13 -3
- package/docs/guides/LOCAL_MODELS.md +22 -7
- package/docs/guides/MCP_ROUTER.md +3 -1
- package/docs/guides/MEMORY.md +9 -4
- package/docs/guides/MULTI_MODEL.md +19 -3
- package/docs/guides/POLICIES.md +4 -2
- package/docs/guides/QWEN36_LLAMACPP.md +12 -3
- package/docs/guides/WORKTREE_WORKFLOW.md +6 -2
- package/docs/integrations/MCP_ROUTER.md +12 -3
- package/docs/integrations/RTK.md +15 -4
- package/docs/reference/API.md +9 -2
- package/docs/reference/CLI.md +13 -7
- package/docs/reference/CONFIGURATION.md +9 -3
- package/docs/reference/DATABASE_SCHEMA.md +13 -6
- package/docs/reference/FEATURES.md +135 -38
- package/docs/reference/PATTERNS.md +28 -12
- package/docs/reference/PLATFORMS.md +12 -5
- package/package.json +1 -1
- package/src/policies/enforcers/__pycache__/_common.cpython-312.pyc +0 -0
- package/tools/agents/scripts/__pycache__/toolcall_path_normalizer.cpython-312.pyc +0 -0
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
# Platform & Harness Reference
|
|
2
2
|
|
|
3
|
-
> Universal Agent Protocol (UAP) v1.
|
|
3
|
+
> Universal Agent Protocol (UAP) v1.93.1
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
> **🏭 Where this fits:** Cross-cutting — the same line, whichever floor you work
|
|
6
|
+
> on. **What it delivers:** every station of your [delivery pipeline](../guides/DELIVERY_PIPELINE.md)
|
|
7
|
+
> — the guards, the policy gate, the lean-context router — shows up in whichever
|
|
8
|
+
> agent harness you already use, so your rules travel with you instead of living
|
|
9
|
+
> in one tool.
|
|
10
|
+
|
|
11
|
+
You shouldn't have to rebuild the factory just because you switched agents. UAP
|
|
12
|
+
integrates with 9 agent harnesses so the same enforcement layer follows you
|
|
13
|
+
across all of them. The canonical list is `ALL_TARGETS` in `src/cli/hooks.ts`.
|
|
14
|
+
Every platform receives the UAP enforcement layer: lifecycle hooks, the
|
|
15
|
+
DB-driven policy gate, and (where supported) the hierarchical MCP router.
|
|
9
16
|
|
|
10
17
|
## Supported platforms
|
|
11
18
|
|
package/package.json
CHANGED
|
Binary file
|