murk-cli 0.10.2

Encrypted secrets manager for developers — one file, age encryption, git-friendly
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635

use builtin;
use str;

set edit:completion:arg-completer[murk] = {|@words|
    fn spaces {|n|
        builtin:repeat $n ' ' | str:join ''
    }
    fn cand {|text desc|
        edit:complex-candidate $text &display=$text' '(spaces (- 14 (wcswidth $text)))$desc
    }
    var command = 'murk'
    for word $words[1..-1] {
        if (str:has-prefix $word '-') {
            break
        }
        set command = $command';'$word
    }
    var completions = [
        &'murk'= {
            cand -h 'Print help'
            cand --help 'Print help'
            cand init 'Initialize a new vault and generate a keypair'
            cand env 'Write a .envrc for direnv integration'
            cand restore 'Restore MURK_KEY from a BIP39 recovery phrase'
            cand recover 'Re-derive recovery phrase from current MURK_KEY'
            cand add 'Add or update a secret'
            cand generate 'Generate a random secret and store it'
            cand rotate 'Rotate secrets with new values'
            cand rm 'Remove a secret'
            cand get 'Get a single decrypted value'
            cand edit 'Edit secrets in $EDITOR'
            cand ls 'List all key names'
            cand export 'Export all secrets as shell export statements'
            cand import 'Import secrets from a .env file'
            cand describe 'Add or update a key description'
            cand info 'Show public schema and key info'
            cand skeleton 'Export schema-only vault with no secrets or recipients'
            cand exec 'Run a command with secrets injected as environment variables'
            cand agent 'Agent-oriented commands (schema-only output for AI agent prompts)'
            cand mcp 'Run an MCP (Model Context Protocol) stdio server for AI agents'
            cand policy 'Manage the agent access policy'
            cand circle 'Manage recipients'
            cand authorize 'Add a recipient to the vault'
            cand revoke 'Remove a recipient from the vault'
            cand group 'Manage recipient groups'
            cand verify 'Verify vault integrity without exporting secrets'
            cand doctor 'Check the surrounding repo for hygiene issues'
            cand scan 'Scan files for leaked secret values'
            cand diff 'Show secret changes vs a git ref'
            cand setup-merge-driver 'Configure git to use murk''s merge driver for .murk files'
            cand merge-driver 'Git merge driver for .murk vault files (called by git)'
            cand completion 'Generate or install shell completions'
            cand help 'Print this message or the help of the given subcommand(s)'
        }
        &'murk;init'= {
            cand --vault 'Vault filename'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;env'= {
            cand --vault 'Vault filename'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;restore'= {
            cand --vault 'Vault filename, for the restored-identity recipient check'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;recover'= {
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;add'= {
            cand --desc 'Description for this key'
            cand --group 'Who can read it: a group name, `everyone` (default), or `me`'
            cand --tag 'Tag for grouping (repeatable)'
            cand --vault 'Vault filename'
            cand --scoped 'Deprecated alias for `--group me`'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;generate'= {
            cand --length 'Length in bytes (default 32)'
            cand --desc 'Description for this key'
            cand --group 'Who can read it: a group name, `everyone` (default), or `me`'
            cand --tag 'Tag for grouping (repeatable)'
            cand --vault 'Vault filename'
            cand --hex 'Output as hex instead of base64'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;rotate'= {
            cand --length 'Length in bytes for generated values (default 32)'
            cand --vault 'Vault filename'
            cand --all 'Rotate all secrets in the vault'
            cand --generate 'Generate random values instead of prompting'
            cand --hex 'Output generated values as hex instead of base64'
            cand --list 'List keys needing rotation instead of rotating (exits 1 if any)'
            cand --json 'Output the listing as JSON (with --list; always exits 0)'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;rm'= {
            cand --vault 'Vault filename'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;get'= {
            cand --vault 'Vault filename'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;edit'= {
            cand --group 'Edit values for this group instead of shared secrets'
            cand --vault 'Vault filename'
            cand --scoped 'Edit scoped overrides instead of shared secrets'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;ls'= {
            cand --tag 'Filter by tag (repeatable)'
            cand --vault 'Vault filename'
            cand --json 'Output as JSON'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;export'= {
            cand --tag 'Filter by tag (repeatable)'
            cand --vault 'Vault filename'
            cand --json 'Output as JSON'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;import'= {
            cand --group 'Assign imported secrets to this group (default: everyone)'
            cand --vault 'Vault filename'
            cand --force 'Overwrite existing secrets without prompting'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;describe'= {
            cand --example 'Example value'
            cand --tag 'Tag for grouping (repeatable, replaces existing tags)'
            cand --rotate-every 'Rotation interval, e.g. `90d` or `90` (days); `never` clears it'
            cand --expires 'Hard expiry date, e.g. `2026-09-01`; `never` clears it'
            cand --vault 'Vault filename'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;info'= {
            cand --tag 'Filter by tag (repeatable)'
            cand --vault 'Vault filename'
            cand --json 'Output as JSON'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;skeleton'= {
            cand -o 'Output file (prints to stdout if omitted)'
            cand --output 'Output file (prints to stdout if omitted)'
            cand --vault 'Vault filename'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;exec'= {
            cand --only 'Only inject these specific keys (repeatable)'
            cand --tag 'Filter by tag (repeatable)'
            cand --vault 'Vault filename'
            cand --clean-env 'Strip inherited environment (only murk secrets + PATH)'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;agent'= {
            cand -h 'Print help'
            cand --help 'Print help'
            cand plan 'Emit schema-only context safe to paste into an AI agent prompt'
            cand exec 'Run a command with strict agent-safe defaults (clears the inherited environment, strips MURK_KEY, requires --only)'
            cand grant 'Mint a short-lived ephemeral key that can read only the named secrets'
            cand init 'One-shot onboarding: optionally set the agent allow-list, mint a scoped grant, and print how to run the agent safely'
            cand ls 'List active agent grants and their TTLs'
            cand revoke 'Revoke an agent grant and rotate the keys it could read'
            cand connect 'Wire `murk mcp` into an AI editor''s MCP config, minting a scoped grant. No CLIENT auto-detects installed editors; give one (claude, cursor, vscode, zed, gemini, omp, codex) to target it'
            cand disconnect 'Remove murk''s entry from an AI editor''s MCP config. No CLIENT clears every configured editor; `--rotate` also revokes the grant and rotates its keys'
            cand help 'Print this message or the help of the given subcommand(s)'
        }
        &'murk;agent;plan'= {
            cand --tag 'Filter by tag (repeatable)'
            cand -o 'Output file (prints to stdout if omitted)'
            cand --output 'Output file (prints to stdout if omitted)'
            cand --vault 'Vault filename'
            cand --json 'Output as JSON'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;agent;exec'= {
            cand --only 'Inject these specific keys (required — agent mode fails closed)'
            cand --vault 'Vault filename'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;agent;grant'= {
            cand --name 'Grant name (used to revoke it later)'
            cand --only 'Keys this grant can read (required — fails closed)'
            cand --ttl 'Time to live, e.g. 30m, 2h, 7d (advisory — see `agent revoke`)'
            cand --out 'Where to write the agent key: a path, or `-` for stdout'
            cand --vault 'Vault filename'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;agent;init'= {
            cand --name 'Grant name (used to revoke it later)'
            cand --only 'Keys the agent can read (required — fails closed)'
            cand --allow-tag 'Set the agent allow-list to these tags before granting (repeatable)'
            cand --ttl 'Time to live, e.g. 30m, 2h, 7d (advisory — see `agent revoke`)'
            cand --out 'Where to write the agent key: a path, or `-` for stdout'
            cand --vault 'Vault filename'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;agent;ls'= {
            cand --vault 'Vault filename'
            cand --json 'Output as JSON'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;agent;revoke'= {
            cand --vault 'Vault filename'
            cand --rotate 'Rotate the keys it could read in the same session'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;agent;connect'= {
            cand --only 'Keys the agent may read (required — fails closed)'
            cand --allow-tag 'Set the agent allow-list to these tags before granting (repeatable)'
            cand --ttl 'Grant time to live, e.g. 30m, 2h, 7d (advisory — see `agent revoke`)'
            cand --name 'Grant name (used to disconnect/revoke it later)'
            cand --vault 'Vault filename'
            cand --allow-exec 'Also expose `murk agent exec` to the agent (adds --allow-exec)'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;agent;disconnect'= {
            cand --name 'Grant name to revoke with --rotate'
            cand --vault 'Vault filename'
            cand --rotate 'Revoke the grant and rotate the keys it could read'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;agent;help'= {
            cand plan 'Emit schema-only context safe to paste into an AI agent prompt'
            cand exec 'Run a command with strict agent-safe defaults (clears the inherited environment, strips MURK_KEY, requires --only)'
            cand grant 'Mint a short-lived ephemeral key that can read only the named secrets'
            cand init 'One-shot onboarding: optionally set the agent allow-list, mint a scoped grant, and print how to run the agent safely'
            cand ls 'List active agent grants and their TTLs'
            cand revoke 'Revoke an agent grant and rotate the keys it could read'
            cand connect 'Wire `murk mcp` into an AI editor''s MCP config, minting a scoped grant. No CLIENT auto-detects installed editors; give one (claude, cursor, vscode, zed, gemini, omp, codex) to target it'
            cand disconnect 'Remove murk''s entry from an AI editor''s MCP config. No CLIENT clears every configured editor; `--rotate` also revokes the grant and rotates its keys'
            cand help 'Print this message or the help of the given subcommand(s)'
        }
        &'murk;agent;help;plan'= {
        }
        &'murk;agent;help;exec'= {
        }
        &'murk;agent;help;grant'= {
        }
        &'murk;agent;help;init'= {
        }
        &'murk;agent;help;ls'= {
        }
        &'murk;agent;help;revoke'= {
        }
        &'murk;agent;help;connect'= {
        }
        &'murk;agent;help;disconnect'= {
        }
        &'murk;agent;help;help'= {
        }
        &'murk;mcp'= {
            cand --vault 'Vault filename'
            cand --allow-exec 'Enable the murk_exec tool (run commands with scoped secrets injected). Off by default: it runs arbitrary commands as this user — the injected secrets are grant-scoped, but the command itself is not sandboxed'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;policy'= {
            cand -h 'Print help'
            cand --help 'Print help'
            cand show 'Show the agent access policy (works without a key)'
            cand set 'Set the agent allow-list: agents may only receive secrets carrying one of these tags'
            cand clear 'Remove the policy — agent mode becomes unrestricted again'
            cand help 'Print this message or the help of the given subcommand(s)'
        }
        &'murk;policy;show'= {
            cand --vault 'Vault filename'
            cand --json 'Output as JSON'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;policy;set'= {
            cand --allow-tag 'Tag agents are allowed to receive (repeatable, required)'
            cand --vault 'Vault filename'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;policy;clear'= {
            cand --vault 'Vault filename'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;policy;help'= {
            cand show 'Show the agent access policy (works without a key)'
            cand set 'Set the agent allow-list: agents may only receive secrets carrying one of these tags'
            cand clear 'Remove the policy — agent mode becomes unrestricted again'
            cand help 'Print this message or the help of the given subcommand(s)'
        }
        &'murk;policy;help;show'= {
        }
        &'murk;policy;help;set'= {
        }
        &'murk;policy;help;clear'= {
        }
        &'murk;policy;help;help'= {
        }
        &'murk;circle'= {
            cand --vault 'Vault filename'
            cand --json 'Output as JSON'
            cand -h 'Print help'
            cand --help 'Print help'
            cand authorize 'Add a recipient to the vault'
            cand revoke 'Remove a recipient from the vault'
            cand help 'Print this message or the help of the given subcommand(s)'
        }
        &'murk;circle;authorize'= {
            cand --name 'Display name for this recipient'
            cand --group 'Also add the new recipient to this group'
            cand --vault 'Vault filename'
            cand --force 'Accept changed GitHub keys without confirmation'
            cand --allow-ssh-rsa 'Allow ssh-rsa recipients (rejected by default — use ed25519)'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;circle;revoke'= {
            cand --vault 'Vault filename'
            cand --rotate 'Rotate the secrets they had access to in the same session'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;circle;help'= {
            cand authorize 'Add a recipient to the vault'
            cand revoke 'Remove a recipient from the vault'
            cand help 'Print this message or the help of the given subcommand(s)'
        }
        &'murk;circle;help;authorize'= {
        }
        &'murk;circle;help;revoke'= {
        }
        &'murk;circle;help;help'= {
        }
        &'murk;authorize'= {
            cand --name 'Display name for this recipient'
            cand --vault 'Vault filename'
            cand --force 'Accept changed GitHub keys without confirmation'
            cand --allow-ssh-rsa 'Allow ssh-rsa recipients (rejected by default — use ed25519)'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;revoke'= {
            cand --vault 'Vault filename'
            cand --rotate 'Rotate the secrets they had access to in the same session'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;group'= {
            cand -h 'Print help'
            cand --help 'Print help'
            cand create 'Create a new recipient group (you become its first member)'
            cand ls 'List groups and their members'
            cand add 'Add a member to a group'
            cand rm 'Remove a member from a group, or delete the group entirely'
            cand help 'Print this message or the help of the given subcommand(s)'
        }
        &'murk;group;create'= {
            cand --vault 'Vault filename'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;group;ls'= {
            cand --vault 'Vault filename'
            cand --json 'Output as JSON'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;group;add'= {
            cand --member 'Recipient pubkey or display name to add'
            cand --vault 'Vault filename'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;group;rm'= {
            cand --member 'Recipient pubkey or display name to remove (omit to delete the group)'
            cand --vault 'Vault filename'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;group;help'= {
            cand create 'Create a new recipient group (you become its first member)'
            cand ls 'List groups and their members'
            cand add 'Add a member to a group'
            cand rm 'Remove a member from a group, or delete the group entirely'
            cand help 'Print this message or the help of the given subcommand(s)'
        }
        &'murk;group;help;create'= {
        }
        &'murk;group;help;ls'= {
        }
        &'murk;group;help;add'= {
        }
        &'murk;group;help;rm'= {
        }
        &'murk;group;help;help'= {
        }
        &'murk;verify'= {
            cand --vault 'Vault filename'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;doctor'= {
            cand --vault 'Vault filename'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;scan'= {
            cand --vault 'Vault filename'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;diff'= {
            cand --vault 'Vault filename'
            cand --show-values 'Show actual values (not just key names)'
            cand --json 'Output as JSON'
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;setup-merge-driver'= {
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;merge-driver'= {
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;completion'= {
            cand -h 'Print help'
            cand --help 'Print help'
            cand generate 'Print completions to stdout'
            cand install 'Install completions to the standard path'
            cand help 'Print this message or the help of the given subcommand(s)'
        }
        &'murk;completion;generate'= {
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;completion;install'= {
            cand -h 'Print help'
            cand --help 'Print help'
        }
        &'murk;completion;help'= {
            cand generate 'Print completions to stdout'
            cand install 'Install completions to the standard path'
            cand help 'Print this message or the help of the given subcommand(s)'
        }
        &'murk;completion;help;generate'= {
        }
        &'murk;completion;help;install'= {
        }
        &'murk;completion;help;help'= {
        }
        &'murk;help'= {
            cand init 'Initialize a new vault and generate a keypair'
            cand env 'Write a .envrc for direnv integration'
            cand restore 'Restore MURK_KEY from a BIP39 recovery phrase'
            cand recover 'Re-derive recovery phrase from current MURK_KEY'
            cand add 'Add or update a secret'
            cand generate 'Generate a random secret and store it'
            cand rotate 'Rotate secrets with new values'
            cand rm 'Remove a secret'
            cand get 'Get a single decrypted value'
            cand edit 'Edit secrets in $EDITOR'
            cand ls 'List all key names'
            cand export 'Export all secrets as shell export statements'
            cand import 'Import secrets from a .env file'
            cand describe 'Add or update a key description'
            cand info 'Show public schema and key info'
            cand skeleton 'Export schema-only vault with no secrets or recipients'
            cand exec 'Run a command with secrets injected as environment variables'
            cand agent 'Agent-oriented commands (schema-only output for AI agent prompts)'
            cand mcp 'Run an MCP (Model Context Protocol) stdio server for AI agents'
            cand policy 'Manage the agent access policy'
            cand circle 'Manage recipients'
            cand authorize 'Add a recipient to the vault'
            cand revoke 'Remove a recipient from the vault'
            cand group 'Manage recipient groups'
            cand verify 'Verify vault integrity without exporting secrets'
            cand doctor 'Check the surrounding repo for hygiene issues'
            cand scan 'Scan files for leaked secret values'
            cand diff 'Show secret changes vs a git ref'
            cand setup-merge-driver 'Configure git to use murk''s merge driver for .murk files'
            cand merge-driver 'Git merge driver for .murk vault files (called by git)'
            cand completion 'Generate or install shell completions'
            cand help 'Print this message or the help of the given subcommand(s)'
        }
        &'murk;help;init'= {
        }
        &'murk;help;env'= {
        }
        &'murk;help;restore'= {
        }
        &'murk;help;recover'= {
        }
        &'murk;help;add'= {
        }
        &'murk;help;generate'= {
        }
        &'murk;help;rotate'= {
        }
        &'murk;help;rm'= {
        }
        &'murk;help;get'= {
        }
        &'murk;help;edit'= {
        }
        &'murk;help;ls'= {
        }
        &'murk;help;export'= {
        }
        &'murk;help;import'= {
        }
        &'murk;help;describe'= {
        }
        &'murk;help;info'= {
        }
        &'murk;help;skeleton'= {
        }
        &'murk;help;exec'= {
        }
        &'murk;help;agent'= {
            cand plan 'Emit schema-only context safe to paste into an AI agent prompt'
            cand exec 'Run a command with strict agent-safe defaults (clears the inherited environment, strips MURK_KEY, requires --only)'
            cand grant 'Mint a short-lived ephemeral key that can read only the named secrets'
            cand init 'One-shot onboarding: optionally set the agent allow-list, mint a scoped grant, and print how to run the agent safely'
            cand ls 'List active agent grants and their TTLs'
            cand revoke 'Revoke an agent grant and rotate the keys it could read'
            cand connect 'Wire `murk mcp` into an AI editor''s MCP config, minting a scoped grant. No CLIENT auto-detects installed editors; give one (claude, cursor, vscode, zed, gemini, omp, codex) to target it'
            cand disconnect 'Remove murk''s entry from an AI editor''s MCP config. No CLIENT clears every configured editor; `--rotate` also revokes the grant and rotates its keys'
        }
        &'murk;help;agent;plan'= {
        }
        &'murk;help;agent;exec'= {
        }
        &'murk;help;agent;grant'= {
        }
        &'murk;help;agent;init'= {
        }
        &'murk;help;agent;ls'= {
        }
        &'murk;help;agent;revoke'= {
        }
        &'murk;help;agent;connect'= {
        }
        &'murk;help;agent;disconnect'= {
        }
        &'murk;help;mcp'= {
        }
        &'murk;help;policy'= {
            cand show 'Show the agent access policy (works without a key)'
            cand set 'Set the agent allow-list: agents may only receive secrets carrying one of these tags'
            cand clear 'Remove the policy — agent mode becomes unrestricted again'
        }
        &'murk;help;policy;show'= {
        }
        &'murk;help;policy;set'= {
        }
        &'murk;help;policy;clear'= {
        }
        &'murk;help;circle'= {
            cand authorize 'Add a recipient to the vault'
            cand revoke 'Remove a recipient from the vault'
        }
        &'murk;help;circle;authorize'= {
        }
        &'murk;help;circle;revoke'= {
        }
        &'murk;help;authorize'= {
        }
        &'murk;help;revoke'= {
        }
        &'murk;help;group'= {
            cand create 'Create a new recipient group (you become its first member)'
            cand ls 'List groups and their members'
            cand add 'Add a member to a group'
            cand rm 'Remove a member from a group, or delete the group entirely'
        }
        &'murk;help;group;create'= {
        }
        &'murk;help;group;ls'= {
        }
        &'murk;help;group;add'= {
        }
        &'murk;help;group;rm'= {
        }
        &'murk;help;verify'= {
        }
        &'murk;help;doctor'= {
        }
        &'murk;help;scan'= {
        }
        &'murk;help;diff'= {
        }
        &'murk;help;setup-merge-driver'= {
        }
        &'murk;help;merge-driver'= {
        }
        &'murk;help;completion'= {
            cand generate 'Print completions to stdout'
            cand install 'Install completions to the standard path'
        }
        &'murk;help;completion;generate'= {
        }
        &'murk;help;completion;install'= {
        }
        &'murk;help;help'= {
        }
    ]
    $completions[$command]
}