act-cli 0.2.1__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.
- act_cli-0.2.1/CHANGELOG.md +43 -0
- act_cli-0.2.1/Cargo.lock +3805 -0
- act_cli-0.2.1/Cargo.toml +47 -0
- act_cli-0.2.1/LICENSE-APACHE +190 -0
- act_cli-0.2.1/LICENSE-MIT +21 -0
- act_cli-0.2.1/PKG-INFO +72 -0
- act_cli-0.2.1/README.md +51 -0
- act_cli-0.2.1/pyproject.toml +27 -0
- act_cli-0.2.1/src/bindings/mod.rs +6 -0
- act_cli-0.2.1/src/config.rs +593 -0
- act_cli-0.2.1/src/http.rs +475 -0
- act_cli-0.2.1/src/main.rs +482 -0
- act_cli-0.2.1/src/mcp.rs +335 -0
- act_cli-0.2.1/src/runtime.rs +453 -0
- act_cli-0.2.1/wit/deps/act-core/act-core.wit +134 -0
- act_cli-0.2.1/wit/deps/act-core/act-events.wit +37 -0
- act_cli-0.2.1/wit/deps/act-core/act-resources.wit +35 -0
- act_cli-0.2.1/wit/deps.lock +4 -0
- act_cli-0.2.1/wit/deps.toml +1 -0
- act_cli-0.2.1/wit/world.wit +5 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [0.2.0] - 2026-03-18
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Filesystem capabilities**: grant WASM components filesystem access via `--allow-dir guest:host` (directory mode) or `--allow-fs` (full access). Components declare `wasi:filesystem` capability; host warns if not granted.
|
|
13
|
+
- **Config file support**: load settings from `~/.config/act/config.toml` with named profiles (`--profile`), filesystem policies, and metadata injection. Override config path with `--config`.
|
|
14
|
+
- **`std:fs:mount-root` support**: components declare their preferred guest mount point; host adjusts directory mappings accordingly.
|
|
15
|
+
- **Profile metadata merging**: profile metadata merges with per-request metadata (CLI > profile > defaults).
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- `create_store()` now accepts filesystem configuration for WASI preopened directories.
|
|
20
|
+
- HTTP handlers merge base metadata (from profile/CLI) with per-request metadata.
|
|
21
|
+
- Switched `act-types` to path dependency for development.
|
|
22
|
+
|
|
23
|
+
[0.2.0]: https://github.com/actcore/act-cli/compare/0.1.0..0.2.0
|
|
24
|
+
|
|
25
|
+
## [0.1.0] - 2026-03-15
|
|
26
|
+
|
|
27
|
+
Initial release of the ACT CLI host — loads WebAssembly components and exposes them via HTTP, MCP, and CLI.
|
|
28
|
+
|
|
29
|
+
### Added
|
|
30
|
+
|
|
31
|
+
- `act serve` — serve a component as an ACT-HTTP server
|
|
32
|
+
- `act mcp` — serve a component over MCP stdio
|
|
33
|
+
- `act call` — invoke a tool directly from the command line
|
|
34
|
+
- `act info` — show component metadata (read from `act:component` custom section without instantiation)
|
|
35
|
+
- `act tools` — list tools exposed by a component
|
|
36
|
+
- HTTP transport with SSE streaming support
|
|
37
|
+
- MCP transport with tool annotations mapping
|
|
38
|
+
- Component metadata via `--metadata` / `--metadata-file` CLI flags
|
|
39
|
+
- CI pipeline with multi-platform builds (Linux, macOS, Windows, RISC-V)
|
|
40
|
+
- GitHub Release workflow with artifacts
|
|
41
|
+
- Setup action for component e2e testing (`actcore/act-cli/setup@v0`)
|
|
42
|
+
|
|
43
|
+
[0.1.0]: https://github.com/actcore/act-cli/tree/0.1.0
|