act-cli 0.8.3__tar.gz → 0.9.0__tar.gz

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 (43) hide show
  1. {act_cli-0.8.3 → act_cli-0.9.0}/Cargo.lock +40 -182
  2. {act_cli-0.8.3 → act_cli-0.9.0}/Cargo.toml +2 -2
  3. {act_cli-0.8.3 → act_cli-0.9.0}/PKG-INFO +3 -3
  4. {act_cli-0.8.3/act-cli → act_cli-0.9.0}/README.md +2 -2
  5. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/Cargo.toml +6 -2
  6. {act_cli-0.8.3/crates/act-store → act_cli-0.9.0/act-cli}/README.md +2 -2
  7. act_cli-0.9.0/act-cli/src/config.rs +769 -0
  8. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/src/format.rs +181 -31
  9. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/src/main.rs +334 -100
  10. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/src/rmcp_bridge.rs +15 -1
  11. act_cli-0.9.0/act-cli/src/runtime/consent.rs +206 -0
  12. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/src/runtime/effective.rs +155 -60
  13. act_cli-0.9.0/act-cli/src/runtime/elicit.rs +164 -0
  14. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/src/runtime/fs_matcher.rs +124 -1
  15. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/src/runtime/fs_policy.rs +364 -105
  16. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/src/runtime/http_client.rs +5 -0
  17. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/src/runtime/http_policy.rs +133 -6
  18. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/src/runtime/mod.rs +22 -2
  19. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/src/runtime/network.rs +44 -13
  20. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/src/runtime/sockets_policy.rs +137 -28
  21. {act_cli-0.8.3 → act_cli-0.9.0}/crates/act-store/Cargo.toml +1 -1
  22. {act_cli-0.8.3 → act_cli-0.9.0/crates/act-store}/README.md +2 -2
  23. act_cli-0.8.3/act-cli/src/config.rs +0 -692
  24. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/build.rs +0 -0
  25. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/src/http.rs +0 -0
  26. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/src/resolve.rs +0 -0
  27. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/src/runtime/bindings/mod.rs +0 -0
  28. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/src/runtime/sessions.rs +0 -0
  29. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/wit/deps/act-core/act-core.wit +0 -0
  30. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/wit/deps/act-tools/act-tools.wit +0 -0
  31. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/wit/deps.lock +0 -0
  32. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/wit/deps.toml +0 -0
  33. {act_cli-0.8.3 → act_cli-0.9.0}/act-cli/wit/world.wit +0 -0
  34. {act_cli-0.8.3 → act_cli-0.9.0}/crates/act-store/src/fetch.rs +0 -0
  35. {act_cli-0.8.3 → act_cli-0.9.0}/crates/act-store/src/index.rs +0 -0
  36. {act_cli-0.8.3 → act_cli-0.9.0}/crates/act-store/src/layout.rs +0 -0
  37. {act_cli-0.8.3 → act_cli-0.9.0}/crates/act-store/src/lib.rs +0 -0
  38. {act_cli-0.8.3 → act_cli-0.9.0}/crates/act-store/src/lock.rs +0 -0
  39. {act_cli-0.8.3 → act_cli-0.9.0}/crates/act-store/src/provenance.rs +0 -0
  40. {act_cli-0.8.3 → act_cli-0.9.0}/crates/act-store/src/reference.rs +0 -0
  41. {act_cli-0.8.3 → act_cli-0.9.0}/crates/act-store/src/referrer.rs +0 -0
  42. {act_cli-0.8.3 → act_cli-0.9.0}/crates/act-store/src/store.rs +0 -0
  43. {act_cli-0.8.3 → act_cli-0.9.0}/pyproject.toml +0 -0
@@ -4,7 +4,7 @@ version = 4
4
4
 
5
5
  [[package]]
6
6
  name = "act-build"
7
- version = "0.8.3"
7
+ version = "0.9.0"
8
8
  dependencies = [
9
9
  "act-types",
10
10
  "anyhow",
@@ -37,7 +37,7 @@ dependencies = [
37
37
 
38
38
  [[package]]
39
39
  name = "act-cli"
40
- version = "0.8.3"
40
+ version = "0.9.0"
41
41
  dependencies = [
42
42
  "act-store",
43
43
  "act-types",
@@ -63,6 +63,7 @@ dependencies = [
63
63
  "regex",
64
64
  "reqwest 0.13.4",
65
65
  "rmcp",
66
+ "schemars 1.2.1",
66
67
  "serde",
67
68
  "serde_json",
68
69
  "serde_with",
@@ -73,6 +74,7 @@ dependencies = [
73
74
  "tokio",
74
75
  "tokio-stream",
75
76
  "toml 1.1.2+spec-1.1.0",
77
+ "toon-format",
76
78
  "tracing",
77
79
  "tracing-subscriber",
78
80
  "url",
@@ -84,7 +86,7 @@ dependencies = [
84
86
 
85
87
  [[package]]
86
88
  name = "act-store"
87
- version = "0.1.1"
89
+ version = "0.9.0"
88
90
  dependencies = [
89
91
  "chrono",
90
92
  "dirs",
@@ -105,9 +107,9 @@ dependencies = [
105
107
 
106
108
  [[package]]
107
109
  name = "act-types"
108
- version = "0.9.0"
110
+ version = "0.11.0"
109
111
  source = "registry+https://github.com/rust-lang/crates.io-index"
110
- checksum = "1c511017d90234b0d3680e0bfa55592337502a1d5e6c3e9d10021b0e7c3d35a2"
112
+ checksum = "c9a69bc6b081f638fec734f145699a58e00e3fb5df54ec5d6ea015d58f3440b0"
111
113
  dependencies = [
112
114
  "base64",
113
115
  "ciborium",
@@ -381,9 +383,9 @@ dependencies = [
381
383
 
382
384
  [[package]]
383
385
  name = "bytes"
384
- version = "1.11.1"
386
+ version = "1.12.0"
385
387
  source = "registry+https://github.com/rust-lang/crates.io-index"
386
- checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
388
+ checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
387
389
 
388
390
  [[package]]
389
391
  name = "bytesize"
@@ -1201,12 +1203,6 @@ version = "1.0.7"
1201
1203
  source = "registry+https://github.com/rust-lang/crates.io-index"
1202
1204
  checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1203
1205
 
1204
- [[package]]
1205
- name = "foldhash"
1206
- version = "0.1.5"
1207
- source = "registry+https://github.com/rust-lang/crates.io-index"
1208
- checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1209
-
1210
1206
  [[package]]
1211
1207
  name = "foldhash"
1212
1208
  version = "0.2.0"
@@ -1390,16 +1386,14 @@ dependencies = [
1390
1386
 
1391
1387
  [[package]]
1392
1388
  name = "getrandom"
1393
- version = "0.4.2"
1389
+ version = "0.4.3"
1394
1390
  source = "registry+https://github.com/rust-lang/crates.io-index"
1395
- checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
1391
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
1396
1392
  dependencies = [
1397
1393
  "cfg-if",
1398
1394
  "libc",
1399
1395
  "r-efi 6.0.0",
1400
1396
  "rand_core 0.10.1",
1401
- "wasip2",
1402
- "wasip3",
1403
1397
  ]
1404
1398
 
1405
1399
  [[package]]
@@ -1474,15 +1468,6 @@ version = "0.12.3"
1474
1468
  source = "registry+https://github.com/rust-lang/crates.io-index"
1475
1469
  checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1476
1470
 
1477
- [[package]]
1478
- name = "hashbrown"
1479
- version = "0.15.5"
1480
- source = "registry+https://github.com/rust-lang/crates.io-index"
1481
- checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1482
- dependencies = [
1483
- "foldhash 0.1.5",
1484
- ]
1485
-
1486
1471
  [[package]]
1487
1472
  name = "hashbrown"
1488
1473
  version = "0.16.1"
@@ -1495,7 +1480,7 @@ version = "0.17.1"
1495
1480
  source = "registry+https://github.com/rust-lang/crates.io-index"
1496
1481
  checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1497
1482
  dependencies = [
1498
- "foldhash 0.2.0",
1483
+ "foldhash",
1499
1484
  "serde",
1500
1485
  "serde_core",
1501
1486
  ]
@@ -2164,9 +2149,9 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2164
2149
 
2165
2150
  [[package]]
2166
2151
  name = "minijinja"
2167
- version = "2.20.0"
2152
+ version = "2.21.0"
2168
2153
  source = "registry+https://github.com/rust-lang/crates.io-index"
2169
- checksum = "2929e494b2280e1e18959bb2e121da03347ae896896fdfaceaab43c88a02803f"
2154
+ checksum = "cb3d648e68cea56d9858d535ee28f9538404e2dd8cb08ed0bd05dca379477f39"
2170
2155
  dependencies = [
2171
2156
  "memo-map",
2172
2157
  "serde",
@@ -2435,16 +2420,6 @@ dependencies = [
2435
2420
  "zerocopy",
2436
2421
  ]
2437
2422
 
2438
- [[package]]
2439
- name = "prettyplease"
2440
- version = "0.2.37"
2441
- source = "registry+https://github.com/rust-lang/crates.io-index"
2442
- checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2443
- dependencies = [
2444
- "proc-macro2",
2445
- "syn",
2446
- ]
2447
-
2448
2423
  [[package]]
2449
2424
  name = "proc-macro2"
2450
2425
  version = "1.0.106"
@@ -2585,7 +2560,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2585
2560
  checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
2586
2561
  dependencies = [
2587
2562
  "chacha20",
2588
- "getrandom 0.4.2",
2563
+ "getrandom 0.4.3",
2589
2564
  "rand_core 0.10.1",
2590
2565
  ]
2591
2566
 
@@ -2860,6 +2835,7 @@ dependencies = [
2860
2835
  "tokio-util",
2861
2836
  "tower-service",
2862
2837
  "tracing",
2838
+ "url",
2863
2839
  "uuid",
2864
2840
  ]
2865
2841
 
@@ -3150,6 +3126,7 @@ version = "1.0.150"
3150
3126
  source = "registry+https://github.com/rust-lang/crates.io-index"
3151
3127
  checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
3152
3128
  dependencies = [
3129
+ "indexmap 2.14.0",
3153
3130
  "itoa",
3154
3131
  "memchr",
3155
3132
  "serde",
@@ -3403,9 +3380,9 @@ dependencies = [
3403
3380
 
3404
3381
  [[package]]
3405
3382
  name = "syn"
3406
- version = "2.0.117"
3383
+ version = "2.0.118"
3407
3384
  source = "registry+https://github.com/rust-lang/crates.io-index"
3408
- checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
3385
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
3409
3386
  dependencies = [
3410
3387
  "proc-macro2",
3411
3388
  "quote",
@@ -3456,7 +3433,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3456
3433
  checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
3457
3434
  dependencies = [
3458
3435
  "fastrand",
3459
- "getrandom 0.4.2",
3436
+ "getrandom 0.4.3",
3460
3437
  "once_cell",
3461
3438
  "rustix",
3462
3439
  "windows-sys 0.61.2",
@@ -3700,6 +3677,18 @@ version = "1.1.1+spec-1.1.0"
3700
3677
  source = "registry+https://github.com/rust-lang/crates.io-index"
3701
3678
  checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
3702
3679
 
3680
+ [[package]]
3681
+ name = "toon-format"
3682
+ version = "0.5.0"
3683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3684
+ checksum = "8f89570c1a68d73941f728cca32a4345b2ffca36667ad921af336c60309a3e7e"
3685
+ dependencies = [
3686
+ "indexmap 2.14.0",
3687
+ "serde",
3688
+ "serde_json",
3689
+ "thiserror 2.0.18",
3690
+ ]
3691
+
3703
3692
  [[package]]
3704
3693
  name = "tower"
3705
3694
  version = "0.5.3"
@@ -3901,7 +3890,7 @@ version = "1.23.3"
3901
3890
  source = "registry+https://github.com/rust-lang/crates.io-index"
3902
3891
  checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
3903
3892
  dependencies = [
3904
- "getrandom 0.4.2",
3893
+ "getrandom 0.4.3",
3905
3894
  "js-sys",
3906
3895
  "wasm-bindgen",
3907
3896
  ]
@@ -3949,16 +3938,7 @@ version = "1.0.4+wasi-0.2.12"
3949
3938
  source = "registry+https://github.com/rust-lang/crates.io-index"
3950
3939
  checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
3951
3940
  dependencies = [
3952
- "wit-bindgen 0.57.1",
3953
- ]
3954
-
3955
- [[package]]
3956
- name = "wasip3"
3957
- version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3958
- source = "registry+https://github.com/rust-lang/crates.io-index"
3959
- checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3960
- dependencies = [
3961
- "wit-bindgen 0.51.0",
3941
+ "wit-bindgen",
3962
3942
  ]
3963
3943
 
3964
3944
  [[package]]
@@ -4033,16 +4013,6 @@ dependencies = [
4033
4013
  "wat",
4034
4014
  ]
4035
4015
 
4036
- [[package]]
4037
- name = "wasm-encoder"
4038
- version = "0.244.0"
4039
- source = "registry+https://github.com/rust-lang/crates.io-index"
4040
- checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
4041
- dependencies = [
4042
- "leb128fmt",
4043
- "wasmparser 0.244.0",
4044
- ]
4045
-
4046
4016
  [[package]]
4047
4017
  name = "wasm-encoder"
4048
4018
  version = "0.248.0"
@@ -4073,18 +4043,6 @@ dependencies = [
4073
4043
  "wasmparser 0.252.0",
4074
4044
  ]
4075
4045
 
4076
- [[package]]
4077
- name = "wasm-metadata"
4078
- version = "0.244.0"
4079
- source = "registry+https://github.com/rust-lang/crates.io-index"
4080
- checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
4081
- dependencies = [
4082
- "anyhow",
4083
- "indexmap 2.14.0",
4084
- "wasm-encoder 0.244.0",
4085
- "wasmparser 0.244.0",
4086
- ]
4087
-
4088
4046
  [[package]]
4089
4047
  name = "wasm-streams"
4090
4048
  version = "0.5.0"
@@ -4098,18 +4056,6 @@ dependencies = [
4098
4056
  "web-sys",
4099
4057
  ]
4100
4058
 
4101
- [[package]]
4102
- name = "wasmparser"
4103
- version = "0.244.0"
4104
- source = "registry+https://github.com/rust-lang/crates.io-index"
4105
- checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
4106
- dependencies = [
4107
- "bitflags",
4108
- "hashbrown 0.15.5",
4109
- "indexmap 2.14.0",
4110
- "semver",
4111
- ]
4112
-
4113
4059
  [[package]]
4114
4060
  name = "wasmparser"
4115
4061
  version = "0.248.0"
@@ -4275,7 +4221,7 @@ dependencies = [
4275
4221
  "syn",
4276
4222
  "wasmtime-internal-component-util",
4277
4223
  "wasmtime-internal-wit-bindgen",
4278
- "wit-parser 0.248.0",
4224
+ "wit-parser",
4279
4225
  ]
4280
4226
 
4281
4227
  [[package]]
@@ -4413,7 +4359,7 @@ dependencies = [
4413
4359
  "bitflags",
4414
4360
  "heck",
4415
4361
  "indexmap 2.14.0",
4416
- "wit-parser 0.248.0",
4362
+ "wit-parser",
4417
4363
  ]
4418
4364
 
4419
4365
  [[package]]
@@ -4523,18 +4469,18 @@ dependencies = [
4523
4469
 
4524
4470
  [[package]]
4525
4471
  name = "webpki-root-certs"
4526
- version = "1.0.7"
4472
+ version = "1.0.8"
4527
4473
  source = "registry+https://github.com/rust-lang/crates.io-index"
4528
- checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
4474
+ checksum = "0d46a5a140e6f7afeccd8eae97eff335163939eac8b929834875168b29b3d267"
4529
4475
  dependencies = [
4530
4476
  "rustls-pki-types",
4531
4477
  ]
4532
4478
 
4533
4479
  [[package]]
4534
4480
  name = "webpki-roots"
4535
- version = "1.0.7"
4481
+ version = "1.0.8"
4536
4482
  source = "registry+https://github.com/rust-lang/crates.io-index"
4537
- checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
4483
+ checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
4538
4484
  dependencies = [
4539
4485
  "rustls-pki-types",
4540
4486
  ]
@@ -4886,100 +4832,12 @@ dependencies = [
4886
4832
  "windows-sys 0.59.0",
4887
4833
  ]
4888
4834
 
4889
- [[package]]
4890
- name = "wit-bindgen"
4891
- version = "0.51.0"
4892
- source = "registry+https://github.com/rust-lang/crates.io-index"
4893
- checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
4894
- dependencies = [
4895
- "wit-bindgen-rust-macro",
4896
- ]
4897
-
4898
4835
  [[package]]
4899
4836
  name = "wit-bindgen"
4900
4837
  version = "0.57.1"
4901
4838
  source = "registry+https://github.com/rust-lang/crates.io-index"
4902
4839
  checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
4903
4840
 
4904
- [[package]]
4905
- name = "wit-bindgen-core"
4906
- version = "0.51.0"
4907
- source = "registry+https://github.com/rust-lang/crates.io-index"
4908
- checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
4909
- dependencies = [
4910
- "anyhow",
4911
- "heck",
4912
- "wit-parser 0.244.0",
4913
- ]
4914
-
4915
- [[package]]
4916
- name = "wit-bindgen-rust"
4917
- version = "0.51.0"
4918
- source = "registry+https://github.com/rust-lang/crates.io-index"
4919
- checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
4920
- dependencies = [
4921
- "anyhow",
4922
- "heck",
4923
- "indexmap 2.14.0",
4924
- "prettyplease",
4925
- "syn",
4926
- "wasm-metadata",
4927
- "wit-bindgen-core",
4928
- "wit-component",
4929
- ]
4930
-
4931
- [[package]]
4932
- name = "wit-bindgen-rust-macro"
4933
- version = "0.51.0"
4934
- source = "registry+https://github.com/rust-lang/crates.io-index"
4935
- checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
4936
- dependencies = [
4937
- "anyhow",
4938
- "prettyplease",
4939
- "proc-macro2",
4940
- "quote",
4941
- "syn",
4942
- "wit-bindgen-core",
4943
- "wit-bindgen-rust",
4944
- ]
4945
-
4946
- [[package]]
4947
- name = "wit-component"
4948
- version = "0.244.0"
4949
- source = "registry+https://github.com/rust-lang/crates.io-index"
4950
- checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
4951
- dependencies = [
4952
- "anyhow",
4953
- "bitflags",
4954
- "indexmap 2.14.0",
4955
- "log",
4956
- "serde",
4957
- "serde_derive",
4958
- "serde_json",
4959
- "wasm-encoder 0.244.0",
4960
- "wasm-metadata",
4961
- "wasmparser 0.244.0",
4962
- "wit-parser 0.244.0",
4963
- ]
4964
-
4965
- [[package]]
4966
- name = "wit-parser"
4967
- version = "0.244.0"
4968
- source = "registry+https://github.com/rust-lang/crates.io-index"
4969
- checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
4970
- dependencies = [
4971
- "anyhow",
4972
- "id-arena",
4973
- "indexmap 2.14.0",
4974
- "log",
4975
- "semver",
4976
- "serde",
4977
- "serde_derive",
4978
- "serde_json",
4979
- "unicode-xid",
4980
- "wasmparser 0.244.0",
4981
- ]
4982
-
4983
4841
  [[package]]
4984
4842
  name = "wit-parser"
4985
4843
  version = "0.248.0"
@@ -3,7 +3,7 @@ members = ["act-cli", "crates/act-store"]
3
3
  resolver = "3"
4
4
 
5
5
  [workspace.package]
6
- version = "0.8.3"
6
+ version = "0.9.0"
7
7
  edition = "2024"
8
8
  license = "MIT OR Apache-2.0"
9
9
  repository = "https://github.com/actcore/act-cli"
@@ -11,7 +11,7 @@ homepage = "https://actcore.dev"
11
11
  readme = "README.md"
12
12
 
13
13
  [workspace.dependencies]
14
- act-types = "0.9"
14
+ act-types = "0.11"
15
15
  wasmparser = "0.250.0"
16
16
 
17
17
  [profile.release]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: act-cli
3
- Version: 0.8.3
3
+ Version: 0.9.0
4
4
  Classifier: Development Status :: 4 - Beta
5
5
  Classifier: Environment :: Console
6
6
  Classifier: Intended Audience :: Developers
@@ -49,7 +49,7 @@ act info --tools ghcr.io/actpkg/sqlite:0.1.0
49
49
  # Call a tool
50
50
  act call ghcr.io/actpkg/sqlite:0.1.0 query \
51
51
  --args '{"sql":"SELECT sqlite_version()"}' \
52
- --metadata '{"database_path":"/data/app.db"}' \
52
+ -m database_path=/data/app.db \
53
53
  --allow-dir /data:./data
54
54
 
55
55
  # Serve over HTTP
@@ -72,7 +72,7 @@ Remote components are cached in `~/.cache/act/components/`.
72
72
  |---------|-------------|
73
73
  | `run` | Serve a component over ACT-HTTP (`-l`) or MCP stdio (`--mcp`) |
74
74
  | `call` | Call a tool directly, print result to stdout |
75
- | `info` | Show component metadata, tools, and schemas (`--tools`, `--format text\|json`) |
75
+ | `info` | Show component metadata, tools, and schemas (`--tools`, `--format text\|json\|toon`) |
76
76
  | `pull` | Download a component from OCI or HTTP to local file |
77
77
 
78
78
  ### HTTP Endpoints (`run -l`)
@@ -32,7 +32,7 @@ act info --tools ghcr.io/actpkg/sqlite:0.1.0
32
32
  # Call a tool
33
33
  act call ghcr.io/actpkg/sqlite:0.1.0 query \
34
34
  --args '{"sql":"SELECT sqlite_version()"}' \
35
- --metadata '{"database_path":"/data/app.db"}' \
35
+ -m database_path=/data/app.db \
36
36
  --allow-dir /data:./data
37
37
 
38
38
  # Serve over HTTP
@@ -55,7 +55,7 @@ Remote components are cached in `~/.cache/act/components/`.
55
55
  |---------|-------------|
56
56
  | `run` | Serve a component over ACT-HTTP (`-l`) or MCP stdio (`--mcp`) |
57
57
  | `call` | Call a tool directly, print result to stdout |
58
- | `info` | Show component metadata, tools, and schemas (`--tools`, `--format text\|json`) |
58
+ | `info` | Show component metadata, tools, and schemas (`--tools`, `--format text\|json\|toon`) |
59
59
  | `pull` | Download a component from OCI or HTTP to local file |
60
60
 
61
61
  ### HTTP Endpoints (`run -l`)
@@ -33,6 +33,9 @@ tokio-stream = "0.1.18"
33
33
  tracing = "0.1.44"
34
34
  tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
35
35
  toml = "1.1.2"
36
+ # Library only — the crate's default `cli` feature pulls in a full TUI stack
37
+ # (ratatui, crossterm, syntect, arboard, tiktoken-rs) we don't need.
38
+ toon-format = { version = "0.5", default-features = false }
36
39
  dirs = "6"
37
40
  futures-util = "0.3"
38
41
  indicatif = "0.18.4"
@@ -50,13 +53,14 @@ wasmtime-wasi-http = { version = "45", default-features = false, features = ["p2
50
53
  http = "1"
51
54
  http-body-util = "0.1"
52
55
  hyper = "1"
53
- rmcp = { version = "1.7", features = ["server", "transport-io", "transport-streamable-http-server"] }
56
+ rmcp = { version = "1.7", features = ["server", "transport-io", "transport-streamable-http-server", "elicitation", "schemars"] }
57
+ schemars = "1.0"
54
58
  bytes = "1"
55
59
  cidr = "0.3"
56
60
  globset = "0.4"
57
61
  path-clean = "1"
58
62
  owo-colors = { version = "4.3.0", features = ["supports-colors"] }
59
- act-store = { version = "0.1.0", path = "../crates/act-store" }
63
+ act-store = { version = "0.9.0", path = "../crates/act-store" }
60
64
  bytesize = "2.3.1"
61
65
 
62
66
  [dev-dependencies]
@@ -32,7 +32,7 @@ act info --tools ghcr.io/actpkg/sqlite:0.1.0
32
32
  # Call a tool
33
33
  act call ghcr.io/actpkg/sqlite:0.1.0 query \
34
34
  --args '{"sql":"SELECT sqlite_version()"}' \
35
- --metadata '{"database_path":"/data/app.db"}' \
35
+ -m database_path=/data/app.db \
36
36
  --allow-dir /data:./data
37
37
 
38
38
  # Serve over HTTP
@@ -55,7 +55,7 @@ Remote components are cached in `~/.cache/act/components/`.
55
55
  |---------|-------------|
56
56
  | `run` | Serve a component over ACT-HTTP (`-l`) or MCP stdio (`--mcp`) |
57
57
  | `call` | Call a tool directly, print result to stdout |
58
- | `info` | Show component metadata, tools, and schemas (`--tools`, `--format text\|json`) |
58
+ | `info` | Show component metadata, tools, and schemas (`--tools`, `--format text\|json\|toon`) |
59
59
  | `pull` | Download a component from OCI or HTTP to local file |
60
60
 
61
61
  ### HTTP Endpoints (`run -l`)