@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.
Files changed (35) hide show
  1. package/README.md +46 -44
  2. package/docs/INDEX.md +28 -7
  3. package/docs/architecture/OVERVIEW.md +106 -17
  4. package/docs/architecture/PROTOCOL.md +31 -13
  5. package/docs/design/SELF_HARNESS.md +8 -0
  6. package/docs/design/UAP_REACTOR.md +17 -2
  7. package/docs/getting-started/CONFIGURATION.md +16 -7
  8. package/docs/getting-started/INSTALLATION.md +37 -18
  9. package/docs/getting-started/QUICKSTART.md +20 -14
  10. package/docs/guides/AUTOMATIC.md +9 -1
  11. package/docs/guides/AUTOMATIC_FEATURES.md +7 -1
  12. package/docs/guides/COORDINATION.md +5 -2
  13. package/docs/guides/DELIVER.md +3 -1
  14. package/docs/guides/DELIVERY_PIPELINE.md +122 -0
  15. package/docs/guides/DEPLOY_BATCHING.md +13 -4
  16. package/docs/guides/DROIDS_AND_SKILLS.md +13 -3
  17. package/docs/guides/LOCAL_MODELS.md +22 -7
  18. package/docs/guides/MCP_ROUTER.md +3 -1
  19. package/docs/guides/MEMORY.md +9 -4
  20. package/docs/guides/MULTI_MODEL.md +19 -3
  21. package/docs/guides/POLICIES.md +4 -2
  22. package/docs/guides/QWEN36_LLAMACPP.md +12 -3
  23. package/docs/guides/WORKTREE_WORKFLOW.md +6 -2
  24. package/docs/integrations/MCP_ROUTER.md +12 -3
  25. package/docs/integrations/RTK.md +15 -4
  26. package/docs/reference/API.md +9 -2
  27. package/docs/reference/CLI.md +13 -7
  28. package/docs/reference/CONFIGURATION.md +9 -3
  29. package/docs/reference/DATABASE_SCHEMA.md +13 -6
  30. package/docs/reference/FEATURES.md +135 -38
  31. package/docs/reference/PATTERNS.md +28 -12
  32. package/docs/reference/PLATFORMS.md +12 -5
  33. package/package.json +1 -1
  34. package/src/policies/enforcers/__pycache__/_common.cpython-312.pyc +0 -0
  35. 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.40.0
3
+ > Universal Agent Protocol (UAP) v1.93.1
4
4
 
5
- UAP integrates with 9 agent harnesses. The canonical list is `ALL_TARGETS` in
6
- `src/cli/hooks.ts`. Every platform receives the UAP enforcement layer: lifecycle
7
- hooks, the DB-driven policy gate, and (where supported) the hierarchical MCP
8
- router.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miller-tech/uap",
3
- "version": "1.93.0",
3
+ "version": "1.93.1",
4
4
  "description": "Autonomous AI agent memory system with CLAUDE.md protocol enforcement",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",