@miller-tech/uap 1.5.6 → 1.5.7

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.
@@ -115,23 +115,23 @@ export declare const AgentRegistryEntrySchema: z.ZodObject<{
115
115
  lastHeartbeat: z.ZodString;
116
116
  capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
117
117
  }, "strip", z.ZodTypeAny, {
118
- status: "active" | "idle" | "completed" | "failed";
119
118
  name: string;
120
119
  id: string;
120
+ status: "failed" | "active" | "idle" | "completed";
121
121
  sessionId: string;
122
122
  startedAt: string;
123
123
  lastHeartbeat: string;
124
- capabilities?: string[] | undefined;
125
124
  currentTask?: string | undefined;
125
+ capabilities?: string[] | undefined;
126
126
  }, {
127
- status: "active" | "idle" | "completed" | "failed";
128
127
  name: string;
129
128
  id: string;
129
+ status: "failed" | "active" | "idle" | "completed";
130
130
  sessionId: string;
131
131
  startedAt: string;
132
132
  lastHeartbeat: string;
133
- capabilities?: string[] | undefined;
134
133
  currentTask?: string | undefined;
134
+ capabilities?: string[] | undefined;
135
135
  }>;
136
136
  export declare const MessagePayloadSchema: z.ZodObject<{
137
137
  action: z.ZodString;
@@ -139,12 +139,12 @@ export declare const MessagePayloadSchema: z.ZodObject<{
139
139
  data: z.ZodOptional<z.ZodUnknown>;
140
140
  }, "strip", z.ZodTypeAny, {
141
141
  action: string;
142
- resource?: string | undefined;
143
142
  data?: unknown;
143
+ resource?: string | undefined;
144
144
  }, {
145
145
  action: string;
146
- resource?: string | undefined;
147
146
  data?: unknown;
147
+ resource?: string | undefined;
148
148
  }>;
149
149
  export declare const AgentMessageSchema: z.ZodObject<{
150
150
  id: z.ZodNumber;
@@ -158,42 +158,42 @@ export declare const AgentMessageSchema: z.ZodObject<{
158
158
  data: z.ZodOptional<z.ZodUnknown>;
159
159
  }, "strip", z.ZodTypeAny, {
160
160
  action: string;
161
- resource?: string | undefined;
162
161
  data?: unknown;
162
+ resource?: string | undefined;
163
163
  }, {
164
164
  action: string;
165
- resource?: string | undefined;
166
165
  data?: unknown;
166
+ resource?: string | undefined;
167
167
  }>;
168
168
  priority: z.ZodDefault<z.ZodNumber>;
169
169
  createdAt: z.ZodString;
170
170
  readAt: z.ZodOptional<z.ZodString>;
171
171
  expiresAt: z.ZodOptional<z.ZodString>;
172
172
  }, "strip", z.ZodTypeAny, {
173
- type: "request" | "response" | "notification" | "claim" | "release";
174
173
  id: number;
174
+ type: "release" | "claim" | "notification" | "request" | "response";
175
+ createdAt: string;
175
176
  priority: number;
176
- channel: "deploy" | "review" | "broadcast" | "direct" | "coordination";
177
+ channel: "deploy" | "coordination" | "broadcast" | "review" | "direct";
177
178
  payload: {
178
179
  action: string;
179
- resource?: string | undefined;
180
180
  data?: unknown;
181
+ resource?: string | undefined;
181
182
  };
182
- createdAt: string;
183
183
  fromAgent?: string | undefined;
184
184
  toAgent?: string | undefined;
185
185
  readAt?: string | undefined;
186
186
  expiresAt?: string | undefined;
187
187
  }, {
188
- type: "request" | "response" | "notification" | "claim" | "release";
189
188
  id: number;
190
- channel: "deploy" | "review" | "broadcast" | "direct" | "coordination";
189
+ type: "release" | "claim" | "notification" | "request" | "response";
190
+ createdAt: string;
191
+ channel: "deploy" | "coordination" | "broadcast" | "review" | "direct";
191
192
  payload: {
192
193
  action: string;
193
- resource?: string | undefined;
194
194
  data?: unknown;
195
+ resource?: string | undefined;
195
196
  };
196
- createdAt: string;
197
197
  priority?: number | undefined;
198
198
  fromAgent?: string | undefined;
199
199
  toAgent?: string | undefined;
@@ -213,28 +213,28 @@ export declare const DeployActionSchema: z.ZodObject<{
213
213
  priority: z.ZodDefault<z.ZodNumber>;
214
214
  dependencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
215
215
  }, "strip", z.ZodTypeAny, {
216
- status: "completed" | "failed" | "pending" | "batched" | "executing";
217
216
  id: number;
217
+ status: "failed" | "completed" | "pending" | "batched" | "executing";
218
218
  priority: number;
219
219
  agentId: string;
220
- actionType: "push" | "commit" | "merge" | "workflow" | "deploy";
220
+ actionType: "deploy" | "push" | "commit" | "merge" | "workflow";
221
221
  target: string;
222
222
  queuedAt: string;
223
223
  payload?: Record<any, any> | undefined;
224
+ dependencies?: string[] | undefined;
224
225
  batchId?: string | undefined;
225
226
  executeAfter?: string | undefined;
226
- dependencies?: string[] | undefined;
227
227
  }, {
228
- status: "completed" | "failed" | "pending" | "batched" | "executing";
229
228
  id: number;
229
+ status: "failed" | "completed" | "pending" | "batched" | "executing";
230
230
  agentId: string;
231
- actionType: "push" | "commit" | "merge" | "workflow" | "deploy";
231
+ actionType: "deploy" | "push" | "commit" | "merge" | "workflow";
232
232
  target: string;
233
233
  queuedAt: string;
234
234
  priority?: number | undefined;
235
235
  payload?: Record<any, any> | undefined;
236
+ dependencies?: string[] | undefined;
236
237
  batchId?: string | undefined;
237
238
  executeAfter?: string | undefined;
238
- dependencies?: string[] | undefined;
239
239
  }>;
240
240
  //# sourceMappingURL=coordination.d.ts.map
@@ -29,12 +29,12 @@ export declare const DROID_SCHEMA: z.ZodObject<{
29
29
  }, {
30
30
  name: string;
31
31
  description: string;
32
- model?: "inherit" | "dedicated" | undefined;
33
32
  coordination?: {
34
33
  channels?: string[] | undefined;
35
34
  claims?: ("exclusive" | "shared")[] | undefined;
36
35
  batches_deploy?: boolean | undefined;
37
36
  } | undefined;
37
+ model?: "inherit" | "dedicated" | undefined;
38
38
  }>;
39
39
  interface DroidMeta {
40
40
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miller-tech/uap",
3
- "version": "1.5.6",
3
+ "version": "1.5.7",
4
4
  "description": "Autonomous AI agent memory system with CLAUDE.md protocol enforcement",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -34,11 +34,9 @@
34
34
  "version:patch": "bash scripts/version-bump.sh patch",
35
35
  "version:minor": "bash scripts/version-bump.sh minor",
36
36
  "version:major": "bash scripts/version-bump.sh major",
37
- "install:hooks": "bash scripts/hooks/install-hooks.sh",
38
- "verify:tests": "bash scripts/verify-test-count.sh",
39
37
  "update-uap": "bash scripts/update-uap-compliance.sh",
40
- "verify-uap": "bash scripts/maintenance/verify-compliance.sh",
41
- "check-claude": "bash scripts/maintenance/verify-compliance.sh"
38
+ "verify-uap": "bash scripts/verify-compliance.sh",
39
+ "check-claude": "bash scripts/verify-compliance.sh"
42
40
  },
43
41
  "keywords": [
44
42
  "claude",