@miller-tech/uap 1.148.7 → 1.148.8

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.
@@ -52,7 +52,7 @@ export async function listPolicyChoices() {
52
52
  return builtins
53
53
  .map((b) => {
54
54
  const inst = byName.get(normPolicyKey(b.name));
55
- const level = (inst?.level ?? b.level ?? 'OPTIONAL').toUpperCase();
55
+ const level = (inst?.level ?? b.level ?? 'REQUIRED').toUpperCase();
56
56
  return {
57
57
  name: b.name,
58
58
  category: inst?.category ?? b.category,
@@ -59,7 +59,7 @@ export function parsePolicyMeta(md) {
59
59
  return m ? m[1].trim() : dflt;
60
60
  };
61
61
  return {
62
- level: grab('Level', 'OPTIONAL'),
62
+ level: grab('Level', 'REQUIRED'),
63
63
  category: grab('Category', 'custom'),
64
64
  stage: grab('Enforcement Stage', 'pre-exec'),
65
65
  };
@@ -90,7 +90,7 @@ export function buildPolicyMatrix(builtins, installed) {
90
90
  builtin: existing?.builtin ?? false,
91
91
  installed: true,
92
92
  enabled: p.isActive,
93
- level: p.level ?? existing?.level ?? 'OPTIONAL',
93
+ level: p.level ?? existing?.level ?? 'REQUIRED',
94
94
  stage: p.enforcementStage ?? existing?.stage ?? 'pre-exec',
95
95
  category: p.category ?? existing?.category ?? 'custom',
96
96
  id: p.id,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miller-tech/uap",
3
- "version": "1.148.7",
3
+ "version": "1.148.8",
4
4
  "description": "Autonomous AI agent memory system with CLAUDE.md protocol enforcement",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,7 +1,7 @@
1
1
  # adr-guard
2
2
 
3
3
  **Category**: safety
4
- **Level**: RECOMMENDED
4
+ **Level**: REQUIRED
5
5
  **Enforcement Stage**: pre-exec
6
6
  **Tags**: adr, architecture, invariants, write-gate
7
7
 
@@ -1,7 +1,7 @@
1
1
  # coord-overlap
2
2
 
3
3
  **Category**: workflow
4
- **Level**: RECOMMENDED
4
+ **Level**: REQUIRED
5
5
  **Enforcement Stage**: pre-exec
6
6
  **Tags**: agents, coordination, parallelism
7
7
 
@@ -1,7 +1,7 @@
1
1
  # delivery-enforcement
2
2
 
3
3
  **Category**: safety
4
- **Level**: RECOMMENDED
4
+ **Level**: REQUIRED
5
5
  **Enforcement Stage**: pre-exec
6
6
  **Tags**: uap, delivery, deliver, convergence, enforcement
7
7
 
@@ -1,5 +1,7 @@
1
1
  # Enforcement Self-Protect
2
2
 
3
+ **Level**: REQUIRED
4
+
3
5
  The delivery gate exists to route coding through `uap deliver`. A weak local
4
6
  model that hits the block tends to try to ESCAPE it rather than comply
5
7
  (observed: "set enforcement to advisory", "use UAP_DELIVER_BYPASS=1"). This
@@ -1,7 +1,7 @@
1
1
  # local-build-before-push
2
2
 
3
3
  **Category**: quality
4
- **Level**: RECOMMENDED
4
+ **Level**: REQUIRED
5
5
  **Enforcement Stage**: pre-exec
6
6
  **Tags**: build, push, ci, docker, compile-gate
7
7
 
@@ -1,7 +1,7 @@
1
1
  # mcp-router-first
2
2
 
3
3
  **Category**: custom
4
- **Level**: RECOMMENDED
4
+ **Level**: REQUIRED
5
5
  **Enforcement Stage**: pre-exec
6
6
  **Tags**: mcp, router, tokens, context
7
7
 
@@ -1,7 +1,7 @@
1
1
  # parallel-reads
2
2
 
3
3
  **Category**: custom
4
- **Level**: RECOMMENDED
4
+ **Level**: REQUIRED
5
5
  **Enforcement Stage**: pre-exec
6
6
  **Tags**: performance, parallelism, exploration
7
7
 
@@ -1,7 +1,7 @@
1
1
  # pay2u-architecture-rules
2
2
 
3
3
  **Category**: safety
4
- **Level**: RECOMMENDED
4
+ **Level**: REQUIRED
5
5
  **Enforcement Stage**: pre-exec
6
6
  **Tags**: pay2u, architecture, adr, invariants, example-pack
7
7
 
@@ -1,7 +1,7 @@
1
1
  # pay2u-enforcement-hooks
2
2
 
3
3
  **Category**: workflow
4
- **Level**: RECOMMENDED
4
+ **Level**: REQUIRED
5
5
  **Enforcement Stage**: pre-exec
6
6
  **Tags**: pay2u, hooks, enforcement, example-pack
7
7
 
@@ -1,7 +1,7 @@
1
1
  # pay2u-quick-reference
2
2
 
3
3
  **Category**: custom
4
- **Level**: RECOMMENDED
4
+ **Level**: REQUIRED
5
5
  **Enforcement Stage**: pre-exec
6
6
  **Tags**: pay2u, reference, clusters, example-pack
7
7