@miller-tech/uap 1.40.0 → 1.41.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.
Files changed (150) hide show
  1. package/README.md +109 -642
  2. package/dist/.tsbuildinfo +1 -1
  3. package/dist/cli/deliver-defaults.d.ts +23 -0
  4. package/dist/cli/deliver-defaults.d.ts.map +1 -0
  5. package/dist/cli/deliver-defaults.js +121 -0
  6. package/dist/cli/deliver-defaults.js.map +1 -0
  7. package/dist/cli/init.d.ts.map +1 -1
  8. package/dist/cli/init.js +29 -0
  9. package/dist/cli/init.js.map +1 -1
  10. package/dist/cli/setup.d.ts.map +1 -1
  11. package/dist/cli/setup.js +19 -0
  12. package/dist/cli/setup.js.map +1 -1
  13. package/dist/policies/policy-tools.d.ts +7 -0
  14. package/dist/policies/policy-tools.d.ts.map +1 -1
  15. package/dist/policies/policy-tools.js +24 -2
  16. package/dist/policies/policy-tools.js.map +1 -1
  17. package/docs/INDEX.md +48 -286
  18. package/docs/architecture/OVERVIEW.md +328 -0
  19. package/docs/architecture/PROTOCOL.md +204 -0
  20. package/docs/benchmarks/README.md +17 -192
  21. package/docs/getting-started/CONFIGURATION.md +237 -0
  22. package/docs/getting-started/INSTALLATION.md +125 -0
  23. package/docs/getting-started/QUICKSTART.md +115 -0
  24. package/docs/guides/COORDINATION.md +162 -0
  25. package/docs/guides/DELIVER.md +115 -0
  26. package/docs/guides/DEPLOY_BATCHING.md +212 -0
  27. package/docs/guides/DROIDS_AND_SKILLS.md +202 -0
  28. package/docs/guides/LOCAL_MODELS.md +148 -0
  29. package/docs/guides/MCP_ROUTER.md +195 -0
  30. package/docs/guides/MEMORY.md +235 -0
  31. package/docs/guides/MULTI_MODEL.md +223 -0
  32. package/docs/guides/POLICIES.md +190 -0
  33. package/docs/guides/WORKTREE_WORKFLOW.md +185 -0
  34. package/docs/integrations/MCP_ROUTER.md +147 -0
  35. package/docs/integrations/RTK.md +102 -0
  36. package/docs/reference/API.md +485 -0
  37. package/docs/reference/CLI.md +719 -0
  38. package/docs/reference/CONFIGURATION.md +90 -193
  39. package/docs/reference/DATABASE_SCHEMA.md +110 -344
  40. package/docs/reference/FEATURES.md +176 -472
  41. package/docs/reference/PATTERNS.md +102 -0
  42. package/docs/reference/PLATFORMS.md +83 -0
  43. package/package.json +3 -1
  44. package/src/policies/enforcers/7ebbc721-7540-4e9f-879a-770e0213a09b_architecture_review.py +101 -0
  45. package/src/policies/enforcers/__pycache__/_common.cpython-312.pyc +0 -0
  46. package/src/policies/enforcers/_common.py +100 -0
  47. package/src/policies/enforcers/artifact_hygiene.py +52 -0
  48. package/src/policies/enforcers/cluster_routing.py +63 -0
  49. package/src/policies/enforcers/codebase_read_before_plan.py +52 -0
  50. package/src/policies/enforcers/coord_overlap.py +81 -0
  51. package/src/policies/enforcers/delivery_enforcement.py +97 -0
  52. package/src/policies/enforcers/doc_live_over_report.py +50 -0
  53. package/src/policies/enforcers/expert_review_required.py +135 -0
  54. package/src/policies/enforcers/iac_parity.py +53 -0
  55. package/src/policies/enforcers/mcp_router_first.py +37 -0
  56. package/src/policies/enforcers/memory_before_plan.py +61 -0
  57. package/src/policies/enforcers/parallel_reads.py +50 -0
  58. package/src/policies/enforcers/rtk_wrap.py +44 -0
  59. package/src/policies/enforcers/schema_diff_gate.py +80 -0
  60. package/src/policies/enforcers/session_memory_write.py +52 -0
  61. package/src/policies/enforcers/task_required.py +131 -0
  62. package/src/policies/enforcers/test_gate.py +58 -0
  63. package/src/policies/enforcers/validate_plan_before_build.py +75 -0
  64. package/src/policies/enforcers/worktree_required.py +57 -0
  65. package/src/policies/schemas/policies/architecture-review.md +51 -0
  66. package/src/policies/schemas/policies/artifact-hygiene.md +29 -0
  67. package/src/policies/schemas/policies/cluster-routing.md +31 -0
  68. package/src/policies/schemas/policies/codebase-read-before-plan.md +30 -0
  69. package/src/policies/schemas/policies/coord-overlap.md +24 -0
  70. package/src/policies/schemas/policies/delivery-enforcement.md +45 -0
  71. package/src/policies/schemas/policies/doc-live-over-report.md +32 -0
  72. package/src/policies/schemas/policies/expert-review-required.md +60 -0
  73. package/src/policies/schemas/policies/iac-parity.md +31 -0
  74. package/src/policies/schemas/policies/mandatory-testing-deployment.md +147 -0
  75. package/src/policies/schemas/policies/mcp-router-first.md +24 -0
  76. package/src/policies/schemas/policies/memory-before-plan.md +24 -0
  77. package/src/policies/schemas/policies/merge-deploy-monitor-verify.md +145 -0
  78. package/src/policies/schemas/policies/parallel-reads.md +24 -0
  79. package/src/policies/schemas/policies/rtk-wrap.md +26 -0
  80. package/src/policies/schemas/policies/schema-diff-gate.md +30 -0
  81. package/src/policies/schemas/policies/session-memory-write.md +24 -0
  82. package/src/policies/schemas/policies/task-required.md +49 -0
  83. package/src/policies/schemas/policies/test-gate.md +24 -0
  84. package/src/policies/schemas/policies/validate-plan-before-build.md +28 -0
  85. package/src/policies/schemas/policies/worktree-required.md +28 -0
  86. package/templates/hooks/uap-policy-gate.sh +5 -0
  87. package/docs/AGENTS.md +0 -423
  88. package/docs/DOCUMENTATION_AUDIT_REPORT.md +0 -131
  89. package/docs/GETTING_STARTED.md +0 -288
  90. package/docs/PROJECT_ANALYSIS_REPORT.md +0 -510
  91. package/docs/architecture/COMPLETE_ARCHITECTURE.md +0 -748
  92. package/docs/architecture/EXPERT_STACK.md +0 -137
  93. package/docs/architecture/MULTI_MODEL.md +0 -224
  94. package/docs/architecture/PLATFORM_GATING.md +0 -68
  95. package/docs/architecture/SYSTEM_ANALYSIS.md +0 -334
  96. package/docs/architecture/UAP_COMPLIANCE.md +0 -217
  97. package/docs/architecture/UAP_PROTOCOL.md +0 -339
  98. package/docs/architecture/UAP_STRICT_DROIDS.md +0 -172
  99. package/docs/archive/BALLS_MODE_SELF_ANALYSIS.md +0 -260
  100. package/docs/archive/BENCHMARK_GAPS_AND_PLAN.md +0 -146
  101. package/docs/archive/FAILING_TASKS_SOLUTION_PLAN.md +0 -668
  102. package/docs/archive/JINJA2-SYSTEM-MESSAGE-FIX.md +0 -209
  103. package/docs/archive/MODEL_ROUTING_IMPLEMENTATION_SUMMARY.md +0 -281
  104. package/docs/archive/MODEL_ROUTING_OPTIMIZATION_PLAN.md +0 -320
  105. package/docs/archive/NPM-PUBLISH-V0.9.1.md +0 -240
  106. package/docs/archive/OPTIMIZATION_OPTIONS.md +0 -334
  107. package/docs/archive/PARALLELISM_GAPS_AND_OPTIONS.md +0 -422
  108. package/docs/archive/POLICY_GATE_IMPLEMENTATION.md +0 -245
  109. package/docs/archive/SETUP_IMPROVEMENTS.md +0 -213
  110. package/docs/archive/UAP_GENERIC_OPTIMIZATION_PLAN.md +0 -270
  111. package/docs/archive/UAP_OPTIMIZATION_PLAN.md +0 -701
  112. package/docs/archive/UAP_V103_PATTERN_DESIGN.md +0 -315
  113. package/docs/archive/UAP_V104_COMPLIANCE_DESIGN.md +0 -223
  114. package/docs/archive/changelog/2026-03-10_uap-100-compliance.md +0 -77
  115. package/docs/archive/changelog/2026-03-10_uap-full-system-verification.md +0 -109
  116. package/docs/archive/opencode-integration-guide.md +0 -740
  117. package/docs/archive/opencode-integration-quickref.md +0 -180
  118. package/docs/benchmarks/OVERNIGHT_RUNNER.md +0 -341
  119. package/docs/benchmarks/SPECULATIVE_DECODING_JOURNEY_2026-03.md +0 -221
  120. package/docs/benchmarks/VALIDATION_PLAN.md +0 -568
  121. package/docs/blog/SPECULATIVE_DECODING_PRODUCTION_PLAYBOOK.md +0 -139
  122. package/docs/blog/local-coding-agents.md +0 -266
  123. package/docs/blog/x-thread.md +0 -254
  124. package/docs/deployment/DEPLOYMENT.md +0 -895
  125. package/docs/deployment/DEPLOYMENT_STRATEGIES.md +0 -518
  126. package/docs/deployment/DEPLOY_BATCHER_ANALYSIS.md +0 -224
  127. package/docs/deployment/DEPLOY_BATCHING.md +0 -273
  128. package/docs/deployment/DEPLOY_BUCKETING_ANALYSIS.md +0 -420
  129. package/docs/deployment/QWEN35_LLAMA_CPP.md +0 -426
  130. package/docs/deployment/UAP_LLAMA_ANTHROPIC_PROXY_BOOTSTRAP.md +0 -279
  131. package/docs/getting-started/INTEGRATION.md +0 -628
  132. package/docs/getting-started/OVERVIEW.md +0 -324
  133. package/docs/getting-started/SETUP.md +0 -377
  134. package/docs/integrations/MCP_ROUTER_SETUP.md +0 -445
  135. package/docs/integrations/RTK_INTEGRATION.md +0 -468
  136. package/docs/operations/TROUBLESHOOTING.md +0 -660
  137. package/docs/pr/PR_SPECULATIVE_DOCS_TEMPLATE.md +0 -146
  138. package/docs/pr/UPSTREAM_PRS.md +0 -424
  139. package/docs/reference/API_REFERENCE.md +0 -903
  140. package/docs/reference/EXPERT_DROIDS.md +0 -219
  141. package/docs/reference/HARNESS-MATRIX.md +0 -318
  142. package/docs/reference/PATTERN_LIBRARY.md +0 -636
  143. package/docs/reference/UAP_CLI_REFERENCE.md +0 -620
  144. package/docs/research/BEHAVIORAL_PATTERNS.md +0 -228
  145. package/docs/research/DOMAIN_STRATEGIES.md +0 -316
  146. package/docs/research/MEMORY_SYSTEMS_COMPARISON.md +0 -812
  147. package/docs/research/PATTERN_ANALYSIS_2026-01-18.md +0 -436
  148. package/docs/research/PERFORMANCE_ANALYSIS_2026-01-18.md +0 -209
  149. package/docs/research/PERFORMANCE_TEST_PLAN.md +0 -383
  150. package/docs/research/TERMINAL_BENCH_LEARNINGS.md +0 -217
@@ -1,420 +0,0 @@
1
- # Deploy Bucketing & Feature Analysis Report
2
-
3
- ## Executive Summary
4
-
5
- This report documents the analysis of the UAP deploy bucketing capability, identifies forgotten/unlinked functionality, and outlines the fixes implemented.
6
-
7
- ## 1. Deploy Bucketing Capability
8
-
9
- ### Status: ✅ ENABLED & CONFIGURABLE
10
-
11
- The deploy bucketing system is fully implemented with the following features:
12
-
13
- #### 1.1 Dynamic Batch Windows
14
-
15
- **Location:** `src/coordination/deploy-batcher.ts`
16
-
17
- The system uses type-specific batch windows that control how long actions wait before being batched:
18
-
19
- | Action Type | Default Window | Purpose |
20
- | ----------- | -------------- | --------------------------------- |
21
- | `commit` | 30,000ms (30s) | Allows squashing multiple commits |
22
- | `push` | 5,000ms (5s) | Fast for PR creation |
23
- | `merge` | 10,000ms (10s) | Moderate safety buffer |
24
- | `workflow` | 5,000ms (5s) | Fast workflow triggers |
25
- | `deploy` | 60,000ms (60s) | Safety buffer for deployments |
26
-
27
- **Configuration Schema:** `src/types/config.ts`
28
-
29
- ```typescript
30
- batchWindows: z.object({
31
- commit: z.number().default(30000),
32
- push: z.number().default(5000),
33
- merge: z.number().default(10000),
34
- workflow: z.number().default(5000),
35
- deploy: z.number().default(60000),
36
- }).optional();
37
- ```
38
-
39
- #### 1.2 Smart Deduplication
40
-
41
- The system automatically detects and merges similar actions:
42
-
43
- - Multiple commits to the same branch → squashed into one
44
- - Multiple pushes to the same branch → merged
45
- - Duplicate workflow triggers → deduplicated
46
-
47
- #### 1.3 Parallel Execution
48
-
49
- **Location:** `src/coordination/deploy-batcher.ts:507-569`
50
-
51
- Independent actions can execute in parallel while maintaining order for dependent actions:
52
-
53
- - **Parallel-safe:** workflow triggers
54
- - **Sequential:** commit → push → merge → deploy
55
-
56
- #### 1.4 Urgent Mode
57
-
58
- **Location:** `src/coordination/deploy-batcher.ts:82-96`
59
-
60
- Reduces all batch windows to minimum values for time-critical operations:
61
-
62
- - commit: 2,000ms (was 30,000ms)
63
- - push: 1,000ms (was 5,000ms)
64
- - merge: 2,000ms (was 10,000ms)
65
- - workflow: 1,000ms (was 5,000ms)
66
- - deploy: 5,000ms (was 60,000ms)
67
-
68
- ## 2. CLI Command Status
69
-
70
- ### 2.1 Deploy Commands - ✅ FIXED
71
-
72
- **Before:** Only basic commands were available (queue, batch, execute, status, flush)
73
-
74
- **After:** Added configuration commands:
75
-
76
- ```bash
77
- # Show current batch window configuration
78
- uap deploy config
79
-
80
- # Set custom batch windows
81
- uap deploy set-config --message '{"commit":60000,"push":3000}'
82
-
83
- # Enable/disable urgent mode
84
- uap deploy urgent --on
85
- uap deploy urgent --off
86
- ```
87
-
88
- **Files Modified:**
89
-
90
- - `src/cli/deploy.ts` - Added `showDeployConfig()`, `setDeployConfig()`, `setUrgentMode()` functions
91
- - `src/bin/cli.ts` - Registered new commands
92
-
93
- ### 2.2 RTK Command - ✅ FIXED
94
-
95
- **Before:** RTK functions existed but weren't registered in CLI
96
-
97
- **After:** Added full RTK command:
98
-
99
- ```bash
100
- # Install RTK for 60-90% token savings
101
- uap rtk install
102
-
103
- # Check installation status
104
- uap rtk status
105
-
106
- # Show help
107
- uap rtk help
108
- ```
109
-
110
- **Files Modified:**
111
-
112
- - `src/bin/cli.ts` - Added RTK command registration
113
-
114
- ### 2.3 Visualize Module - ℹ️ UTILITY ONLY
115
-
116
- The `src/cli/visualize.ts` module contains rendering utilities (progress bars, charts, tables) used by other commands, not a standalone CLI command.
117
-
118
- ## 3. Forgotten/Unlinked Functionality
119
-
120
- ### 3.1 Identified Issues
121
-
122
- | Feature | Status | Location | Fix Applied |
123
- | ---------------------- | ------------- | ------------------------ | --------------- |
124
- | Deploy config commands | ❌ Missing | `src/cli/deploy.ts` | ✅ Added |
125
- | Deploy urgent mode | ❌ Missing | `src/cli/deploy.ts` | ✅ Added |
126
- | RTK CLI command | ❌ Missing | `src/cli/rtk.ts` | ✅ Added |
127
- | Visualize CLI | N/A | `src/cli/visualize.ts` | ℹ️ Utility only |
128
- | Schema diff | ✅ Registered | `src/cli/schema-diff.ts` | Already working |
129
- | Model commands | ✅ Registered | `src/cli/model.ts` | Already working |
130
-
131
- ### 3.2 Additional Findings
132
-
133
- 1. **Model Commands:** Registered via `registerModelCommands()` function
134
- 2. **Schema Diff:** Registered via `registerSchemaDiffCommand()` function
135
- 3. **Tool Calls:** Registered inline in `cli.ts`
136
-
137
- ## 4. Fixes Applied
138
-
139
- ### 4.1 Deploy Configuration Commands
140
-
141
- **File:** `src/cli/deploy.ts`
142
-
143
- Added three new functions:
144
-
145
- 1. **`showDeployConfig(batcher: DeployBatcher)`**
146
- - Displays current batch window configuration
147
- - Shows usage examples
148
- - Colorful output with chalk
149
-
150
- 2. **`setDeployConfig(batcher: DeployBatcher, options: DeployOptions)`**
151
- - Accepts JSON configuration via `--message` flag
152
- - Validates all values are positive numbers
153
- - Shows diff between old and new values
154
-
155
- 3. **`setUrgentMode(batcher: DeployBatcher, options: DeployOptions)`**
156
- - Enables/disables urgent mode
157
- - Shows current configuration after change
158
-
159
- **File:** `src/bin/cli.ts`
160
-
161
- Registered three new subcommands:
162
-
163
- ```typescript
164
- .addCommand(
165
- new Command('config')
166
- .description('Show deploy batch configuration (window settings)')
167
- .action((options) => deployCommand('config', options))
168
- )
169
- .addCommand(
170
- new Command('set-config')
171
- .description('Set deploy batch configuration (window settings)')
172
- .option('--message <json>', 'JSON object with window settings')
173
- .action((options) => deployCommand('set-config', options))
174
- )
175
- .addCommand(
176
- new Command('urgent')
177
- .description('Enable or disable urgent mode')
178
- .option('--on', 'Enable urgent mode')
179
- .option('--off', 'Disable urgent mode')
180
- .action((options) => deployCommand('urgent', { force: options.on, remote: options.off }))
181
- );
182
- ```
183
-
184
- ### 4.2 RTK Command Registration
185
-
186
- **File:** `src/bin/cli.ts`
187
-
188
- Added complete RTK command with three subcommands:
189
-
190
- ```typescript
191
- const rtkCmd = new Command('rtk');
192
- rtkCmd.description('Manage RTK (Rust Token Killer) integration');
193
- rtkCmd.addCommand(
194
- new Command('install')
195
- .description('Install RTK CLI proxy for 60-90% token savings')
196
- .option('--force', 'Force reinstall')
197
- .option('--method <method>', 'Installation method')
198
- .action(async (options) => {
199
- await installRTK({ force: !!options.force, method: options.method });
200
- })
201
- );
202
- rtkCmd.addCommand(
203
- new Command('status').description('Check RTK installation and token savings').action(async () => {
204
- await checkRTKStatus();
205
- })
206
- );
207
- rtkCmd.addCommand(
208
- new Command('help').description('Show RTK usage information').action(() => {
209
- showRTKHelp();
210
- })
211
- );
212
- program.addCommand(rtkCmd);
213
- ```
214
-
215
- ## 5. Documentation Created
216
-
217
- ### 5.1 Deploy Batching Documentation
218
-
219
- **File:** `docs/DEPLOY_BATCHING.md`
220
-
221
- Comprehensive documentation covering:
222
-
223
- - Overview of batch window system
224
- - CLI command reference
225
- - Configuration schema
226
- - Usage examples
227
- - Best practices
228
- - Troubleshooting guide
229
- - API reference
230
-
231
- ### 5.2 Documentation Structure
232
-
233
- ```
234
- docs/
235
- ├── DEPLOY_BATCHING.md # NEW: Deploy batching guide
236
- ├── CLI_DEPLOY.md # Existing: Deploy commands
237
- ├── COORDINATION.md # Existing: Coordination system
238
- ├── BATCH_EXECUTION.md # Existing: Batch execution
239
- └── [other existing docs]
240
- ```
241
-
242
- ## 6. Testing Results
243
-
244
- ### 6.1 Deploy Config Command
245
-
246
- ```bash
247
- $ uap deploy config
248
-
249
- 📋 Deploy Batch Configuration
250
-
251
- Current batch window settings (ms):
252
-
253
- commit: 30000ms (30s)
254
- push: 5000ms (5s)
255
- merge: 10000ms (10s)
256
- workflow: 5000ms (5s)
257
- deploy: 60000ms (60s)
258
-
259
- These windows control how long actions wait before being batched together.
260
- Shorter windows = faster execution, longer windows = more batching.
261
- ```
262
-
263
- ### 6.2 Deploy Set-Config Command
264
-
265
- ```bash
266
- $ uap deploy set-config --message '{"commit":60000,"push":3000}'
267
-
268
- ✓ Deploy configuration updated:
269
-
270
- commit: 30000ms → 60000ms (60s)
271
- push: 5000ms → 3000ms (3s)
272
- merge: 10000ms (10s) (unchanged)
273
- workflow: 5000ms (5s) (unchanged)
274
- deploy: 60000ms (60s) (unchanged)
275
-
276
- Note: Changes apply to current batcher instance only.
277
- ```
278
-
279
- ### 6.3 Deploy Urgent Command
280
-
281
- ```bash
282
- $ uap deploy urgent --on
283
-
284
- ✓ Urgent mode enabled (fast batch windows):
285
- commit: 2000ms, push: 1000ms, merge: 2000ms
286
- workflow: 1000ms, deploy: 5000ms
287
- ```
288
-
289
- ### 6.4 RTK Command
290
-
291
- ```bash
292
- $ uap rtk --help
293
-
294
- Usage: uap rtk [options] [command]
295
-
296
- Manage RTK (Rust Token Killer) integration for token optimization
297
-
298
- Options:
299
- -h, --help display help for command
300
-
301
- Commands:
302
- install [options] Install RTK CLI proxy for 60-90% token savings
303
- status Check RTK installation and token savings
304
- help Show RTK usage information
305
- ```
306
-
307
- ## 7. Recommendations
308
-
309
- ### 7.1 Immediate Actions
310
-
311
- ✅ **Completed:**
312
-
313
- - Deploy configuration commands
314
- - RTK command registration
315
- - Documentation
316
-
317
- ### 7.2 Future Enhancements
318
-
319
- 1. **Persistent Configuration:**
320
- - Save batch window settings to `.uap.json`
321
- - Load settings on startup
322
- - Example:
323
- ```json
324
- {
325
- "deploy": {
326
- "batchWindows": {
327
- "commit": 60000,
328
- "push": 3000,
329
- "merge": 15000,
330
- "workflow": 5000,
331
- "deploy": 120000
332
- }
333
- }
334
- }
335
- ```
336
-
337
- 2. **Environment Variables:**
338
- - Support `UAP_DEPLOY_COMMIT_WINDOW=60000`
339
- - Support `UAP_DEPLOY_PUSH_WINDOW=3000`
340
- - Allow runtime configuration override
341
-
342
- 3. **Configuration Profiles:**
343
- - `--profile fast` - Short windows for rapid iteration
344
- - `--profile safe` - Long windows for safety
345
- - `--profile custom` - Use custom configuration
346
-
347
- 4. **Validation:**
348
- - Warn if windows are too short (< 1000ms)
349
- - Warn if windows are too long (> 300000ms)
350
- - Suggest optimal values based on project size
351
-
352
- ## 8. Conclusion
353
-
354
- ### 8.1 Summary
355
-
356
- The deploy bucketing system is **fully functional** and now **properly documented** with accessible CLI commands. All previously forgotten functionality has been identified and either fixed or documented.
357
-
358
- ### 8.2 Key Achievements
359
-
360
- 1. ✅ Deploy batch configuration is now configurable via CLI
361
- 2. ✅ Urgent mode is accessible via CLI
362
- 3. ✅ RTK command is properly registered
363
- 4. ✅ Comprehensive documentation created
364
- 5. ✅ All changes tested and verified
365
-
366
- ### 8.3 Files Modified
367
-
368
- 1. `src/cli/deploy.ts` - Added config, set-config, urgent commands
369
- 2. `src/bin/cli.ts` - Registered new commands
370
- 3. `docs/DEPLOY_BATCHING.md` - Created comprehensive documentation
371
-
372
- ### 8.4 Build Status
373
-
374
- ```bash
375
- $ npm run build
376
- > universal-agent-protocol@4.3.6 build
377
- > tsc
378
-
379
- ✅ Build successful
380
- ```
381
-
382
- ## Appendix: Command Reference
383
-
384
- ### Deploy Commands
385
-
386
- ```bash
387
- # Queue actions
388
- uap deploy queue --agent-id <id> --action-type <type> --target <target>
389
-
390
- # Create batch
391
- uap deploy batch
392
-
393
- # Execute batch
394
- uap deploy execute --batch-id <id>
395
-
396
- # Show status
397
- uap deploy status
398
-
399
- # Flush all
400
- uap deploy flush
401
-
402
- # Configuration (NEW)
403
- uap deploy config
404
- uap deploy set-config --message '{"commit":60000}'
405
- uap deploy urgent --on
406
- uap deploy urgent --off
407
- ```
408
-
409
- ### RTK Commands
410
-
411
- ```bash
412
- # Install RTK
413
- uap rtk install
414
-
415
- # Check status
416
- uap rtk status
417
-
418
- # Show help
419
- uap rtk help
420
- ```