aethershell 11.0.0

The world's first multi-agent shell with typed functional pipelines and multi-modal AI
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
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
ForEach-Object	Pure
Get-Content	Pure
Get-Files	Pure
Group-Object	Pure
Measure-Object	Pure
None	Pure
Select-Object	Pure
Some	Pure
Sort-Object	Pure
Where-Object	Pure
a2a_agents	Pure
a2a_broadcast	Pure
a2a_discover	Pure
a2a_receive	Pure
a2a_register	Pure
a2a_send	Pure
a2a_status	Pure
a2a_unregister	Pure
a2ui_agent_completed	Pure
a2ui_agent_started	Pure
a2ui_agent_thinking	Pure
a2ui_clear	Pure
a2ui_confirm	Pure
a2ui_notify	Pure
a2ui_progress	Pure
a2ui_progress_complete	Pure
a2ui_prompt	Pure
a2ui_render	Pure
a2ui_render_code	Pure
a2ui_render_table	Pure
a2ui_select	Pure
a2ui_status	Pure
a2ui_toast	Pure
ab_decode	Pure
ab_encode	Pure
abs	Pure
acl_get	Pure
acl_set	Pure
act	Exec
act_run	Exec
activation	Pure
add_entity	Pure
add_node	Pure
add_relation	Pure
aecon	Pure
aecon_decode	Pure
age_decrypt	WriteLocal
age_encrypt	WriteLocal
age_keygen	WriteLocal
agent	Pure
agent_completed	Pure
agent_started	Pure
agent_thinking	Pure
agent_with_mcp	Pure
aggregate	Pure
aggregate_results	Pure
ai	Pure
ai-add-route	Pure
ai-backends	Pure
ai-complete	Pure
ai-convert-model	Exec
ai-cost	Pure
ai-detect	Pure
ai-detect-format	Pure
ai-explain	Pure
ai-fix	Pure
ai-gateway	Network
ai-gpu-memory	Pure
ai-load-balancing	Pure
ai-local-backends	Pure
ai-local-embed	Pure
ai-local-generate	Pure
ai-local-load	Pure
ai-local-unload	Pure
ai-model-fits	Pure
ai-providers	Pure
ai-registry-stats	Pure
ai-reset-usage	Pure
ai-routes	Pure
ai-set-default	Pure
ai-set-load-balancing	Pure
ai-suggest	Pure
ai-supported-conversions	Pure
ai-usage	Pure
ai_add_route	Pure
ai_backends	Pure
ai_convert_model	Exec
ai_cost	Pure
ai_detect	Pure
ai_detect_format	Pure
ai_gateway	Network
ai_gpu_memory	Pure
ai_load_balancing	Pure
ai_local_backends	Pure
ai_local_embed	Pure
ai_local_generate	Pure
ai_local_load	Pure
ai_local_unload	Pure
ai_model_fits	Pure
ai_providers	Pure
ai_registry_stats	Pure
ai_reset_usage	Pure
ai_routes	Pure
ai_set_default	Pure
ai_set_load_balancing	Pure
ai_supported_conversions	Pure
ai_usage	Pure
all	Pure
ansible_galaxy	Exec
ansible_inventory	Exec
ansible_playbook	Exec
ansible_vault	Exec
any	Pure
append_file	WriteLocal
apply	Exec
approve	Pure
apt	Exec
archive_info	ReadLocal
archive_test	ReadLocal
asdf	ReadLocal
asdf_install	Exec
asdf_list	ReadLocal
assert	Pure
assert_type	Pure
at_list	ReadLocal
at_remove	Pure
at_schedule	Pure
audit_export	Pure
audit_log	ReadLocal
audit_query	Pure
audit_statistics	Pure
audit_stats	Pure
audit_tail	Pure
audit_verify	Pure
avg	Pure
awk	Pure
awk_process	Pure
backup_file	WriteLocal
base64_decode	ReadLocal
base64_encode	ReadLocal
bat	ReadLocal
bat_view	ReadLocal
best_individual	Pure
black	WriteLocal
black_format	WriteLocal
blkid	ReadLocal
brew	Exec
budget	Pure
buildah_build	Exec
buildah_images	ReadLocal
bun_install	Exec
bun_run	Exec
bzip2_compress	WriteLocal
bzip2_decompress	WriteLocal
cache_ai	Pure
cache_clear_ai	Pure
cache_get	Pure
call	Pure
cancel_finetune	Pure
canonical	Pure
capabilities	ReadLocal
cargo_build_cmd	Exec
cargo_run	Exec
cargo_test_cmd	Exec
cat	ReadLocal
cd	WriteLocal
ceil	Pure
check_compliance	Pure
check_permission	Pure
chgrp	WriteLocal
chmod	WriteLocal
clear	Pure
clipboard	ReadLocal
clipboard_clear	WriteLocal
clipboard_get	ReadLocal
clipboard_get_image	Pure
clipboard_has_text	ReadLocal
clipboard_history	ReadLocal
clipboard_set	WriteLocal
clipboard_set_image	Pure
clipboard_types	ReadLocal
cloud_config	Pure
cloud_deploy	Pure
cloud_instance_connect	Pure
cloud_instance_create	Pure
cloud_instance_destroy	Destructive
cloud_instance_status	Pure
cloud_instances	Pure
cloud_regions	Pure
cluster	Pure
cluster_add_node	Pure
cluster_create	Pure
cluster_nodes	Pure
cluster_remove_node	Pure
cluster_status	Pure
cmake_build	Exec
cmake_configure	WriteLocal
code_callees	Pure
code_callers	Pure
code_comments	ReadLocal
code_completions	Pure
code_definition	Pure
code_dependencies	Pure
code_exports	ReadLocal
code_format	WriteLocal
code_hover	Pure
code_imports	ReadLocal
code_language	Pure
code_outline	Pure
code_parse	ReadLocal
code_references	Pure
code_signature	Pure
code_symbols	ReadLocal
code_todos	ReadLocal
coevolve	Pure
columns	Pure
complete	Pure
compliance_check	Pure
compliance_report	Pure
compress	WriteLocal
concat	Pure
config	Pure
config_get	Pure
config_init	WriteLocal
config_path	Pure
config_reload	Pure
config_set	Pure
confirm_user	Pure
consensus_net	Pure
consensus_vote	Pure
contains	Pure
copy_file	WriteLocal
cp	WriteLocal
create_role	Pure
cron_add	Pure
cron_disable	Pure
cron_enable	Pure
cron_list	ReadLocal
cron_remove	Pure
crossover_strategy	Pure
crypto_base64_decode	ReadLocal
crypto_base64_encode	ReadLocal
crypto_cert_info	ReadLocal
crypto_cert_verify	ReadLocal
crypto_checksum	ReadLocal
crypto_decrypt	WriteLocal
crypto_encrypt	WriteLocal
crypto_generate_key	WriteLocal
crypto_hash	ReadLocal
crypto_hash_file	ReadLocal
crypto_hex_decode	Pure
crypto_hex_encode	Pure
crypto_hmac	ReadLocal
crypto_jwt_decode	ReadLocal
crypto_password_hash	ReadLocal
crypto_password_verify	ReadLocal
crypto_random_bytes	ReadLocal
crypto_random_string	ReadLocal
crypto_sign	Pure
crypto_uuid	ReadLocal
crypto_verify_signature	Pure
curl	Network
cut	Pure
cut_columns	Pure
db_csv_query	ReadLocal
db_csv_to_json	ReadLocal
db_csv_to_sqlite	WriteLocal
db_json_query	ReadLocal
db_json_to_csv	ReadLocal
db_json_to_sqlite	WriteLocal
db_kv_delete	Destructive
db_kv_get	ReadLocal
db_kv_keys	ReadLocal
db_kv_set	WriteLocal
db_kv_store	WriteLocal
db_sqlite_backup	WriteLocal
db_sqlite_count	ReadLocal
db_sqlite_create_table	WriteLocal
db_sqlite_delete	Destructive
db_sqlite_drop_table	Destructive
db_sqlite_dump	ReadLocal
db_sqlite_exec	Exec
db_sqlite_import	WriteLocal
db_sqlite_insert	WriteLocal
db_sqlite_open	WriteLocal
db_sqlite_query	Exec
db_sqlite_schema	ReadLocal
db_sqlite_tables	ReadLocal
db_sqlite_to_csv	WriteLocal
db_sqlite_to_json	ReadLocal
db_sqlite_update	WriteLocal
db_sqlite_vacuum	WriteLocal
dbg	Pure
dd_copy	Destructive
debug	Pure
decompress	WriteLocal
delete_lines	Destructive
delete_role	Destructive
delta	ReadLocal
delta_diff	ReadLocal
deno_run	Exec
deno_task	Exec
describe	Pure
df	ReadLocal
diag_all	Exec
diag_check	Exec
diag_config	ReadLocal
diag_errors	Exec
diag_explain	ReadLocal
diag_fix	WriteLocal
diag_lint	Exec
diag_suppress	Pure
diag_warnings	Exec
diagnose	Pure
diff_files	ReadLocal
digest	Pure
direnv	ReadLocal
direnv_allow	WriteLocal
direnv_status	ReadLocal
docker_build	Exec
docker_compose_down	Destructive
docker_compose_ps	Exec
docker_compose_up	Exec
docker_cp	Exec
docker_exec	Exec
docker_images	ReadLocal
docker_inspect	Exec
docker_logs	Exec
docker_networks	ReadLocal
docker_ps	ReadLocal
docker_pull	Exec
docker_push	Exec
docker_rm	Destructive
docker_run	Exec
docker_stats	ReadLocal
docker_stop	Exec
docker_tag	Exec
docker_top	Exec
docker_volumes	ReadLocal
docs_api	Pure
docs_changelog	ReadLocal
docs_examples	ReadLocal
docs_generate	WriteLocal
docs_readme	Pure
docs_search	ReadLocal
docs_signatures	Pure
docs_types	Pure
du	ReadLocal
each	Pure
echo	Pure
edit_file	WriteLocal
ends_with	Pure
entities	Pure
entr	Pure
entr_watch	Pure
env	ReadLocal
env_activate	Pure
env_container	ReadLocal
env_detect	Pure
env_docker	ReadLocal
env_dotnet	ReadLocal
env_go	ReadLocal
env_java	ReadLocal
env_node	ReadLocal
env_path	ReadLocal
env_python	ReadLocal
env_ruby	ReadLocal
env_rust	ReadLocal
env_set	Pure
env_shell	ReadLocal
env_unset	Pure
env_var	ReadLocal
env_vars	ReadLocal
env_venv	ReadLocal
eslint	Exec
eslint_check	Exec
evolution_config	Pure
evolution_stats	Pure
evolve	Pure
evolve_step	Pure
exec_remote	Pure
exists	ReadLocal
exit	Pure
explain	Pure
export_audit	Pure
eza	ReadLocal
eza_list	ReadLocal
fd	ReadLocal
fd_find	ReadLocal
feature_disable	Pure
feature_enable	Pure
feature_enabled	Pure
feature_list	Pure
feature_set	Pure
features	Pure
fetch	Network
file_append	WriteLocal
file_backup	WriteLocal
file_copy	WriteLocal
file_delete_lines	Destructive
file_diff	ReadLocal
file_edit	WriteLocal
file_exists	ReadLocal
file_insert	WriteLocal
file_mkdir	WriteLocal
file_move	Destructive
file_patch	WriteLocal
file_rename	Destructive
file_replace	ReadLocal
file_type	ReadLocal
file_write	WriteLocal
find	Pure
finetune_cancel	Pure
finetune_list	Pure
finetune_progress	Pure
finetune_start	Pure
finetune_status	Pure
first	Pure
fitness	Pure
fix	Pure
flatten	Pure
floor	Pure
foreach	Pure
foreach-object	Pure
from-csv	Pure
from-json	Pure
from-yaml	Pure
from_csv	Pure
from_json	Pure
from_yaml	Pure
fs_chmod	WriteLocal
fs_chown	WriteLocal
fs_df	ReadLocal
fs_du	ReadLocal
fs_glob	ReadLocal
fs_link	WriteLocal
fs_lstat	ReadLocal
fs_mount	WriteLocal
fs_mounts	ReadLocal
fs_readlink	ReadLocal
fs_realpath	ReadLocal
fs_stat	ReadLocal
fs_symlink	WriteLocal
fs_tempdir	WriteLocal
fs_tempfile	WriteLocal
fs_tree	ReadLocal
fs_unmount	Pure
fs_unwatch	Pure
fs_walk	ReadLocal
fs_watch	Pure
fzf	Exec
fzf_select	Exec
gdb	Exec
gdb_bt	Exec
gdb_run	Exec
generate_compliance	Pure
get-content	Pure
get-files	Pure
get_roles	Pure
gh_issue	Network
gh_pr	Network
gh_repo	Network
gh_repo_cmd	Network
git_add	Exec
git_blame	ReadLocal
git_branch	ReadLocal
git_branches	ReadLocal
git_checkout	Exec
git_cherry_pick	Exec
git_clean	Destructive
git_commit	Exec
git_diff	ReadLocal
git_diff_staged	ReadLocal
git_fetch	Network
git_ignore	WriteLocal
git_log	ReadLocal
git_merge	Exec
git_pull	Network
git_push	Network
git_rebase	Exec
git_remote	ReadLocal
git_reset	Destructive
git_rev_parse	ReadLocal
git_root	ReadLocal
git_show	ReadLocal
git_stash	Exec
git_stash_list	ReadLocal
git_stash_pop	Exec
git_status	ReadLocal
git_tags	ReadLocal
glab_issue	Network
glab_mr	Network
glob	ReadLocal
go_build	Exec
go_run	Exec
go_test	Exec
governor_reset	Pure
governor_status	Pure
gpg_decrypt	WriteLocal
gpg_encrypt	WriteLocal
gpg_list_keys	ReadLocal
grant_permission	Pure
grep	ReadLocal
group	Pure
group-object	Pure
group_add	Pure
group_by	Pure
group_del	Pure
group_list	ReadLocal
group_members	ReadLocal
group_mod	Pure
gui_close_window	Process
gui_color_picker	ReadLocal
gui_dialog_file_open	Exec
gui_dialog_file_save	WriteLocal
gui_dialog_folder	Exec
gui_dialog_input	Exec
gui_dialog_message	Exec
gui_find_image	Pure
gui_focus_window	Process
gui_get_active_window	ReadLocal
gui_key_combo	Exec
gui_key_press	Exec
gui_list_windows	ReadLocal
gui_maximize_window	Process
gui_minimize_window	Process
gui_mouse_click	Exec
gui_mouse_double_click	Exec
gui_mouse_drag	Exec
gui_mouse_move	Exec
gui_mouse_position	ReadLocal
gui_mouse_scroll	Exec
gui_move_window	Process
gui_notify	Exec
gui_ocr	ReadLocal
gui_resize_window	Process
gui_screen_size	ReadLocal
gui_screenshot	WriteLocal
gui_screenshot_window	WriteLocal
gui_type_text	Exec
gui_wait	Pure
gzip_compress	WriteLocal
gzip_decompress	WriteLocal
hadolint	ReadLocal
hadolint_check	ReadLocal
handle	Pure
handle_drop	Pure
handles	Pure
has_feature	Pure
has_permission	Pure
hash	ReadLocal
head	ReadLocal
helm_install	Exec
helm_list	Network
helm_repos	Network
helm_search	Network
helm_status	Network
helm_uninstall	Destructive
helm_upgrade	Network
help	Pure
host	Network
host_lookup	Network
hostname	ReadLocal
http_get	Network
hw_audio	ReadLocal
hw_battery	ReadLocal
hw_cpu	ReadLocal
hw_disk	ReadLocal
hw_gpu	ReadLocal
hw_memory	ReadLocal
hw_network	ReadLocal
hw_pci	ReadLocal
hw_sensors	ReadLocal
hw_usb	ReadLocal
hyperfine	Exec
hyperfine_bench	Exec
ifconfig	Network
in	Pure
index_docs	Pure
init_sso	Pure
input_autocomplete	Pure
input_confirm	Pure
input_date	Pure
input_editor	Exec
input_form	Pure
input_multiselect	Pure
input_number	Pure
input_progress	Pure
input_read_char	Pure
input_read_line	Pure
input_read_password	Exec
input_select	Pure
input_spinner	Pure
input_table	Pure
input_timeout	Pure
insert_lines	WriteLocal
inspect	Pure
iperf3	Network
iperf3_client	Network
iperf3_server	Pure
irongate	Network
is_bsd	Pure
is_error	Pure
is_linux	Pure
is_macos	Pure
is_type	Pure
is_unix	Pure
is_windows	Pure
job_cancel	Pure
job_list	Pure
job_results	Pure
job_status	Pure
job_submit	Pure
jobs	Pure
join	Pure
journal	Pure
journal_clear	Pure
journalctl	ReadLocal
jq	Pure
jq_filter	Exec
jq_query	Pure
json_parse	Pure
json_stringify	Pure
just	Exec
just_list	ReadLocal
just_run	Exec
k8s_apply	Network
k8s_cluster_info	Network
k8s_configmaps	Network
k8s_context	Network
k8s_contexts	Network
k8s_delete	Destructive
k8s_deployments	Network
k8s_describe	Network
k8s_events	Network
k8s_exec	Exec
k8s_get	Network
k8s_ingresses	Network
k8s_logs	Network
k8s_namespaces	Network
k8s_nodes	Network
k8s_pods	Network
k8s_rollout_restart	Process
k8s_rollout_status	Network
k8s_scale	Network
k8s_secrets	Network
k8s_services	Network
k8s_top_nodes	Network
k8s_top_pods	Network
keys	Pure
kg_add	Pure
kg_entities	Pure
kg_query	Pure
kg_relate	Pure
kg_relations	Pure
kill	Process
kubectl_apply	Network
kubectl_delete	Destructive
kubectl_describe	Network
kubectl_exec	Exec
kubectl_get	Network
kubectl_logs	Network
last	Pure
lazygit	Pure
lazygit_open	Pure
len	Pure
length	Pure
less	ReadLocal
list	ReadLocal
list_finetunes	Pure
list_roles	Pure
lldb	Exec
lldb_run	Exec
lnav	Exec
lnav_open	Exec
log_audit	ReadLocal
logout_sso	Pure
logrotate	Exec
logrotate_run	Exec
lower	Pure
ls	ReadLocal
lsblk	Pure
lscpu	ReadLocal
lsof	ReadLocal
lspci	ReadLocal
lsusb	ReadLocal
ltrace	Exec
ltrace_cmd	Exec
mage	Exec
mage_run	Exec
make_run	Exec
make_targets	ReadLocal
map	Pure
marketplace_info	Pure
marketplace_install	Exec
marketplace_list	Pure
marketplace_publish	Network
marketplace_rate	Pure
marketplace_search	Pure
marketplace_uninstall	Destructive
marketplace_update	Pure
max	Pure
mcp-cache-clear	Pure
mcp-cache-status	Pure
mcp-detect	Pure
mcp-servers	Pure
mcp_cache_clear	Pure
mcp_cache_status	Pure
mcp_call	Pure
mcp_call_tool	Pure
mcp_client	Pure
mcp_connect	Pure
mcp_detect	Pure
mcp_list_prompts	Pure
mcp_list_resources	Pure
mcp_list_tools	Pure
mcp_prompts	Pure
mcp_resources	Pure
mcp_server	Pure
mcp_server_start	Pure
mcp_servers	Pure
mcp_tools	Pure
md5	ReadLocal
mean	Pure
measure	Pure
measure-object	Pure
min	Pure
mise	ReadLocal
mise_list	ReadLocal
mise_use	WriteLocal
mkdir	WriteLocal
mkdirp	WriteLocal
monitor_alert_create	Pure
monitor_alert_history	Pure
monitor_alert_list	Pure
monitor_alert_remove	Pure
monitor_dstat	Pure
monitor_ethtool	Pure
monitor_glances	Pure
monitor_health_check	Pure
monitor_htop	Pure
monitor_iftop	Pure
monitor_iotop	Pure
monitor_ip_addr	Pure
monitor_ip_link	Pure
monitor_ip_route	Pure
monitor_logins	Pure
monitor_memory	Pure
monitor_nethogs	Pure
monitor_nmon	Pure
monitor_perf_record	Pure
monitor_perf_stat	Pure
monitor_sockets	Pure
monitor_syslog	Pure
monitor_tcpdump	Pure
monitor_uptime	Pure
monitor_users	Pure
monitor_watch_cpu	Pure
monitor_watch_disk	Pure
monitor_watch_memory	Pure
mount_info	Pure
move_file	Destructive
mtr	Network
mtr_trace	Network
multitail	Exec
multitail_open	Exec
mv	Destructive
mypy	WriteLocal
mypy_check	WriteLocal
nanda_abort	Pure
nanda_commit	Pure
nanda_consensus	Pure
nanda_propose	Pure
nanda_quorum	Pure
nanda_status	Pure
nanda_vote	Pure
nc	Network
nc_connect	Network
nc_listen	Network
net_arp	Network
net_bandwidth	Network
net_close	Network
net_connect	Network
net_connections	Network
net_dns_lookup	Network
net_dns_reverse	Network
net_interfaces	Network
net_ip	Network
net_latency	Network
net_listen	Network
net_ping	Network
net_ports	Network
net_recv	Network
net_route	Network
net_scan	Network
net_send	Network
net_stats	Network
net_traceroute	Network
net_whois	Network
netcat	Network
netstat	ReadLocal
netstat_info	ReadLocal
ninja_build	Exec
nm	ReadLocal
nm_symbols	ReadLocal
nmap_quick	Network
nmap_scan	Network
nn_create	Pure
nn_crossover	Pure
nn_forward	Pure
nn_info	Pure
nn_layers	Pure
nn_mutate	Pure
nn_params	Pure
nn_set_params	Pure
node_run	Exec
nodemon	Pure
nodemon_run	Pure
nodes	Pure
notify_user	Pure
now	Pure
npm_install	Exec
npm_run	Exec
objdump	ReadLocal
objdump_disasm	ReadLocal
objdump_headers	ReadLocal
ontology_describe	Pure
ontology_json	Pure
ontology_jsonld	Pure
ontology_manifest	Pure
ontology_owl	Pure
ontology_shacl	Pure
openssl_cert_info	ReadLocal
openssl_genrsa	WriteLocal
os_tools	Pure
pager	ReadLocal
patch_file	WriteLocal
path_exists	ReadLocal
perm_check	ReadLocal
perm_get	ReadLocal
perm_set	WriteLocal
pgrep	ReadLocal
pick	Pure
ping	Network
pipx	ReadLocal
pipx_install	Exec
pipx_list	ReadLocal
pkg_add_source	Pure
pkg_autoremove	Pure
pkg_changelog	Network
pkg_clean	Pure
pkg_deps	ReadLocal
pkg_files	ReadLocal
pkg_history	ReadLocal
pkg_hold	Pure
pkg_info	ReadLocal
pkg_install	Exec
pkg_list	ReadLocal
pkg_owner	ReadLocal
pkg_rdeps	ReadLocal
pkg_remove	Pure
pkg_search	ReadLocal
pkg_sources	ReadLocal
pkg_unhold	Pure
pkg_update	Pure
pkg_upgrade	Pure
pkg_verify	ReadLocal
pkill	Process
plan	Pure
plan_diff	ReadLocal
platform	Pure
platform_arch	Pure
platform_build	ReadLocal
platform_build_systems	ReadLocal
platform_capabilities	ReadLocal
platform_check_reqs	Pure
platform_cloud_clis	ReadLocal
platform_compatible	Pure
platform_compilers	ReadLocal
platform_containers	ReadLocal
platform_cpu	ReadLocal
platform_cpu_count	Pure
platform_cpu_freq	ReadLocal
platform_cuda_version	ReadLocal
platform_databases	ReadLocal
platform_db_compare	Pure
platform_db_delete	Destructive
platform_db_export	WriteLocal
platform_db_import	WriteLocal
platform_db_init	WriteLocal
platform_db_list	ReadLocal
platform_db_load	ReadLocal
platform_db_store	WriteLocal
platform_detect_tools	Pure
platform_diff	Pure
platform_disk_usage	ReadLocal
platform_disks	ReadLocal
platform_fingerprint	ReadLocal
platform_gpu_memory	ReadLocal
platform_gpus	ReadLocal
platform_hardware_summary	ReadLocal
platform_has_admin	ReadLocal
platform_has_container	Pure
platform_has_gui	ReadLocal
platform_has_network	ReadLocal
platform_has_sudo	Pure
platform_has_tool	Pure
platform_hash	Pure
platform_hostname	ReadLocal
platform_iac_tools	ReadLocal
platform_kernel	ReadLocal
platform_lib_version	ReadLocal
platform_libc	ReadLocal
platform_libcpp	ReadLocal
platform_libs	ReadLocal
platform_line_ending	Pure
platform_linters	ReadLocal
platform_machine_id	ReadLocal
platform_memory	ReadLocal
platform_memory_free	ReadLocal
platform_memory_total	ReadLocal
platform_module	Pure
platform_network_interfaces	ReadLocal
platform_normalize_output	Pure
platform_normalize_path	Pure
platform_os_version	ReadLocal
platform_path_sep	Pure
platform_pkg_lang	ReadLocal
platform_pkg_managers	Pure
platform_require	Pure
platform_runtimes	ReadLocal
platform_satisfies	Pure
platform_sdk_version	ReadLocal
platform_shell_type	ReadLocal
platform_snapshot	ReadLocal
platform_ssl_version	ReadLocal
platform_system_libs	ReadLocal
platform_tool_version	ReadLocal
platform_tool_versions	ReadLocal
platform_vcs	ReadLocal
plugin_categories	Pure
plugin_disable	Pure
plugin_enable	Pure
plugin_info	Pure
plugin_list	Pure
plugin_load	Pure
plugin_unload	Pure
plugins	Pure
pnpm_install	Exec
pnpm_run	Exec
podman_build	Exec
podman_exec	Exec
podman_images	Exec
podman_logs	Exec
podman_ps	Exec
podman_pull	Exec
podman_rm	Exec
podman_run	Exec
podman_stop	Exec
poetry_install	Exec
poetry_run	Exec
population	Pure
pow	Pure
pre_commit_install	Exec
pre_commit_run	Exec
prettier	WriteLocal
prettier_format	WriteLocal
print	Pure
proc_children	ReadLocal
proc_cmdline	ReadLocal
proc_cpu_usage	ReadLocal
proc_cwd	ReadLocal
proc_env	ReadLocal
proc_exe	ReadLocal
proc_exists	ReadLocal
proc_info	ReadLocal
proc_kill	Process
proc_list	ReadLocal
proc_mem_usage	ReadLocal
proc_parent	ReadLocal
proc_priority	ReadLocal
proc_resume	ReadLocal
proc_set_priority	ReadLocal
proc_spawn	Exec
proc_start_time	ReadLocal
proc_suspend	ReadLocal
proc_threads	ReadLocal
proc_wait	ReadLocal
product	Pure
progress_done	Pure
progress_update	Pure
project_config_files	Pure
project_dependencies	ReadLocal
project_dev_dependencies	ReadLocal
project_entry_points	Pure
project_gitignore	ReadLocal
project_languages	ReadLocal
project_license	ReadLocal
project_loc	ReadLocal
project_name	ReadLocal
project_readme	ReadLocal
project_root	ReadLocal
project_scripts	Pure
project_size	ReadLocal
project_structure	ReadLocal
project_test_files	ReadLocal
project_type	Pure
project_version	ReadLocal
prompt	Pure
prompt_user	Pure
ps	ReadLocal
push	Pure
pwd	Pure
pytest	Exec
pytest_run	Exec
query_audit	Pure
query_kg	Pure
rag	Pure
rag_clear	Pure
rag_index	Pure
rag_query	Pure
rag_search	Pure
range	Pure
rbac_can	ReadLocal
rbac_grant	Privileged
rbac_login	Privileged
rbac_logout	WriteLocal
rbac_principal	Privileged
rbac_register	Privileged
rbac_session	ReadLocal
read_line	Pure
read_text	ReadLocal
readelf	ReadLocal
readelf_headers	ReadLocal
readelf_sections	ReadLocal
recursive_agent	Pure
reduce	Pure
refactor_add_parameter	Pure
refactor_change_signature	Pure
refactor_extract_constant	Pure
refactor_extract_function	Pure
refactor_extract_variable	Pure
refactor_inline	Pure
refactor_move_to_file	Pure
refactor_organize_imports	ReadLocal
refactor_remove_parameter	Pure
refactor_remove_unused	WriteLocal
refactor_rename	Pure
refactor_rename_file	WriteLocal
relations	Pure
remote_exec	Pure
remove_lines	Destructive
remove_node	Pure
render_code	Pure
render_content	Pure
render_table	Pure
repl_broadcast	Pure
repl_connect	Pure
repl_disconnect	Pure
repl_serve	Pure
repl_sessions	Pure
replace	Pure
results	Pure
reverse	Pure
revoke_permission	Pure
rewind	Pure
rg	ReadLocal
rg_search	ReadLocal
rga	ReadLocal
rga_search	ReadLocal
ripgrep	ReadLocal
rl_ac_agent	Pure
rl_ac_update	Pure
rl_action	Pure
rl_agent	Pure
rl_dqn_agent	Pure
rl_dqn_step	Pure
rl_env_step	Pure
rl_gridworld	Pure
rl_pg_agent	Pure
rl_pg_episode_end	Pure
rl_pg_step	Pure
rl_replay_buffer	Pure
rl_sarsa_agent	Pure
rl_sarsa_update	Pure
rl_update	Pure
rlm_agent	Pure
rlm_config	Pure
rlm_spawn	Exec
rlm_stats	Pure
rm	Destructive
rmdir	Destructive
role_create	Pure
role_delete	Destructive
role_grant	Pure
role_revoke	Pure
roles_list	Pure
round	Pure
rsync	Network
rsync_sync	Network
ruff_check	WriteLocal
ruff_format	WriteLocal
rustup_show	ReadLocal
rustup_update	Network
safety_status	Pure
save_json	WriteLocal
scp_download	Network
scp_upload	Network
scrape	Network
screen_attach	Process
screen_list	ReadLocal
screen_new	Process
screenshot	WriteLocal
sd	WriteLocal
sd_replace	WriteLocal
search_by_size	ReadLocal
search_by_type	ReadLocal
search_code	ReadLocal
search_docs	Pure
search_duplicates	Pure
search_files	ReadLocal
search_fixmes	ReadLocal
search_grep	ReadLocal
search_modified	ReadLocal
search_recent	ReadLocal
search_regex	ReadLocal
search_semantic	Pure
search_similar	Pure
search_symbols	ReadLocal
search_todos	ReadLocal
sed	WriteLocal
sed_replace	WriteLocal
select	Pure
select-object	Pure
select_user	Pure
selection_strategy	Pure
semantic_cache	Pure
semantic_cache_clear	Pure
semantic_cache_get	Pure
service	ReadLocal
sess_close	Pure
sess_eval	Pure
sess_open	Pure
sess_usage	Pure
session_changes	ReadLocal
session_checkpoint	WriteLocal
session_checkpoints	ReadLocal
session_diff_since	ReadLocal
session_end	Pure
session_export	WriteLocal
session_history	Pure
session_id	Pure
session_redo	Pure
session_restore	WriteLocal
session_rollback	Destructive
session_start	Pure
session_undo	Pure
set_env	Pure
sh	Exec
sha256	ReadLocal
shell	Exec
shellcheck	ReadLocal
shellcheck_check	ReadLocal
shfmt	WriteLocal
shfmt_format	WriteLocal
skopeo_copy	Network
skopeo_inspect	Network
sleep	Pure
slice	Pure
socat	Network
socat_relay	Network
sort	Pure
sort-object	Pure
sort_by	Pure
spawn_agent	Exec
split	Pure
sql	Exec
sqlite_exec	Exec
sqlite_query	Exec
sqrt	Pure
ssh_config	ReadLocal
ssh_copy_id	Network
ssh_exec	Exec
ssh_keygen	WriteLocal
ssh_tunnel	Network
sso_auth	Pure
sso_authenticate	Pure
sso_info	Pure
sso_init	Pure
sso_logout	Pure
sso_status	Pure
sso_validate	Pure
start_finetune	Pure
starts_with	Pure
startup_list	ReadLocal
stat	ReadLocal
status_bar	Pure
str	Pure
str_replace_in_file	ReadLocal
strace	Exec
strace_cmd	Exec
strings	ReadLocal
strings_extract	ReadLocal
submit	Pure
sudo_check	Process
sudo_exec	Pure
suggest	Pure
sum	Pure
svc_create	Pure
svc_delete	Destructive
svc_disable	Process
svc_enable	Process
svc_info	ReadLocal
svc_list	ReadLocal
svc_logs	ReadLocal
svc_restart	Process
svc_start	Process
svc_status	ReadLocal
svc_stop	Process
swarm	Pure
syntax_add	WriteLocal
syntax_categories	WriteLocal
syntax_get	WriteLocal
syntax_list	WriteLocal
syntax_search	WriteLocal
sys_arch	ReadLocal
sys_boot_time	ReadLocal
sys_cpu_count	ReadLocal
sys_cpu_freq	ReadLocal
sys_cpu_info	ReadLocal
sys_disk_info	ReadLocal
sys_env_all	ReadLocal
sys_groups	ReadLocal
sys_hostname	ReadLocal
sys_info	ReadLocal
sys_kernel	ReadLocal
sys_load_avg	ReadLocal
sys_locale	ReadLocal
sys_mem_info	ReadLocal
sys_os	ReadLocal
sys_swap_info	ReadLocal
sys_timezone	ReadLocal
sys_uptime	ReadLocal
sys_user_info	ReadLocal
sys_users	ReadLocal
systemctl	ReadLocal
tail	ReadLocal
take	Pure
tar_create	WriteLocal
tar_extract	WriteLocal
tar_list	ReadLocal
task_list	ReadLocal
task_run	Exec
tee	WriteLocal
tee_output	WriteLocal
telemetry_disable	Pure
telemetry_enable	Pure
telemetry_events	Pure
telemetry_report	Pure
telemetry_reset	Pure
telemetry_status	Pure
terraform_apply	Exec
terraform_destroy	Destructive
terraform_init	Exec
terraform_output	Exec
terraform_plan	Exec
terraform_state	Exec
terraform_validate	Exec
terraform_workspace	Exec
test_bench	Exec
test_coverage	Pure
test_failing	Pure
test_generate	Pure
test_list	Exec
test_passing	Pure
test_run	Exec
test_run_file	Exec
test_run_function	Exec
test_skipped	Pure
test_snapshot	Pure
test_watch	Pure
text_edit	WriteLocal
text_replace	ReadLocal
text_write	WriteLocal
themes	Pure
time	Pure
timeout	Exec
timeout_cmd	Exec
timestamp	Pure
tmux_attach	Process
tmux_list	ReadLocal
tmux_new	Exec
tmux_send	Exec
to-csv	Pure
to-json	Pure
to-yaml	Pure
to_csv	Pure
to_json	Pure
to_string	Pure
to_yaml	Pure
toast	Pure
tokei	ReadLocal
tokei_count	ReadLocal
tokens	Pure
tool_exec	Exec
tool_execute	Exec
tool_info	Pure
tool_list	Pure
tool_schema	Pure
tool_schemas	Pure
tool_search	Pure
tools	Pure
top_snapshot	Pure
touch	WriteLocal
trace	Pure
tree	ReadLocal
trim	Pure
trivy_image	Network
trivy_scan	Network
try_repair	Pure
tx_begin	Pure
tx_commit	Pure
tx_rollback	Pure
tx_rollback_to	Pure
tx_savepoint	Pure
tx_status	Pure
type_assert	Pure
type_fields	Pure
type_name	Pure
type_of	Pure
type_schema	Pure
typeof	Pure
ui_clear	Pure
undo	Pure
uniq	Pure
unique	Pure
unzip	WriteLocal
upper	Pure
uptime	ReadLocal
user_add	Pure
user_del	Pure
user_list	ReadLocal
user_lock	Pure
user_mod	Pure
user_passwd	Pure
user_roles	Pure
user_unlock	Pure
useradd	Pure
userdel	Pure
uuid	ReadLocal
uv_pip	Network
uv_run	Exec
uv_venv	WriteLocal
valgrind	Exec
valgrind_memcheck	Exec
valgrind_run	Exec
validate_sso	Pure
values	Pure
vault-conversions	Exec
vault-convert	Exec
vault-models	Exec
vault_conversions	Exec
vault_convert	Exec
vault_models	Exec
watchexec	Pure
watchexec_run	Pure
wc	ReadLocal
web_browser_open	Network
web_build_query	Network
web_check_url	Network
web_cookies	Network
web_decode_url	Network
web_download	Network
web_encode_url	Network
web_extract_emails	Network
web_extract_phones	Network
web_fetch	Network
web_form_submit	Network
web_get	Network
web_graphql	Network
web_headers	Network
web_html_to_markdown	Network
web_html_to_text	Network
web_json_get	Network
web_json_path	Network
web_json_post	Network
web_open_url	Network
web_parse_query	Network
web_parse_url	Network
web_post	Network
web_rest_api	Network
web_robots_txt	Network
web_scrape	Network
web_sitemap	Network
web_upload_file	Network
web_websocket	Network
web_xpath	Network
wget	Network
wget_download	Network
where	Pure
where-object	Pure
whoami	ReadLocal
windows	ReadLocal
workspace_agents	Pure
workspace_create	Pure
workspace_join	Pure
workspace_leave	Pure
workspace_list	Pure
workspace_members	Pure
workspace_share_agent	Pure
workspace_sync	Pure
write_file	WriteLocal
write_json	WriteLocal
xargs	Exec
xargs_exec	Exec
xz_compress	WriteLocal
xz_decompress	WriteLocal
yamllint	ReadLocal
yamllint_check	ReadLocal
yarn_install	Exec
yarn_run	Exec
yq	Exec
yq_query	Exec
zip	Pure
zip_add	WriteLocal
zip_create	WriteLocal
zip_extract	WriteLocal
zip_list	ReadLocal
zoxide	ReadLocal
zoxide_add	WriteLocal
zoxide_query	ReadLocal
zstd_compress	WriteLocal
zstd_decompress	WriteLocal