act-build-0.3.3 is not a library.
ACT CLI & Build Tools
Host and build ACT (Agent Component Tools) WebAssembly components.
This repo contains two tools:
act— run, call, inspect, and serve ACT components from local files, HTTP URLs, or OCI registriesact-build— post-process compiled WASM components: embed metadata, skills, and custom sections
Install
# act (CLI host)
# act-build (build tool)
Pre-built binaries available on GitHub Releases and Docker (ghcr.io/actcore/act).
act — Component Host
# Discover tools in a component
# Call a tool
# Serve over HTTP
# Serve over MCP stdio
Components can be referenced as:
- OCI refs:
ghcr.io/actpkg/sqlite:0.1.0 - HTTP URLs:
https://example.com/component.wasm - Local paths:
./component.wasm
Remote components are cached in ~/.cache/act/components/.
Commands
| Command | Description |
|---|---|
run |
Serve a component over ACT-HTTP (-l) or MCP stdio (--mcp) |
call |
Call a tool directly, print result to stdout |
info |
Show component metadata, tools, and schemas (--tools, --format text|json) |
pull |
Download a component from OCI or HTTP to local file |
HTTP Endpoints (run -l)
| Method | Path | Description |
|---|---|---|
GET |
/info |
Component metadata |
POST |
/metadata-schema |
JSON Schema for metadata |
POST/QUERY |
/tools |
List tools |
POST/QUERY |
/tools/{name} |
Call a tool (SSE with Accept: text/event-stream) |
act-build — Component Build Tool
# Embed act:component metadata, act:skill, and WASM custom sections
# Validate without modifying
Metadata is resolved via merge-patch from project manifests:
- Base from
Cargo.toml,pyproject.toml, orpackage.json(name, version, description) - Inline patch from the same manifest (
[package.metadata.act-component],[tool.act-component], oractComponent) act.toml— highest priority, applied last
Platform Support
| Architecture | Linux (GNU) | Linux (musl) | macOS | Windows | Docker |
|---|---|---|---|---|---|
| x86_64 | ✓ | ✓ | ✓ | ✓ | ✓ |
| aarch64 | ✓ | ✓ | ✓ | ✓ | ✓ |
| riscv64 | ✓ | ✓ | — | — | ✓ |
RISC-V (riscv64) is a first-class target. Regressions on RISC-V are release-blocking.
Building
Set RUST_LOG=act=debug for verbose output.
License
MIT OR Apache-2.0