{"id":47281326,"url":"https://github.com/actcore/act-cli","last_synced_at":"2026-04-21T22:07:19.594Z","repository":{"id":344373662,"uuid":"1180273585","full_name":"actcore/act-cli","owner":"actcore","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-14T21:11:46.000Z","size":304,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-14T22:13:22.956Z","etag":null,"topics":["act","agent-component-tools","ai"],"latest_commit_sha":null,"homepage":"https://actcore.dev","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/actcore.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-12T22:00:04.000Z","updated_at":"2026-04-14T21:11:49.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/actcore/act-cli","commit_stats":null,"previous_names":["actcore/act-cli"],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/actcore/act-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actcore%2Fact-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actcore%2Fact-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actcore%2Fact-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actcore%2Fact-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/actcore","download_url":"https://codeload.github.com/actcore/act-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/actcore%2Fact-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32112083,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-21T11:25:29.218Z","status":"ssl_error","status_checked_at":"2026-04-21T11:25:28.499Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["act","agent-component-tools","ai"],"created_at":"2026-03-16T00:50:49.437Z","updated_at":"2026-04-21T22:07:19.589Z","avatar_url":"https://github.com/actcore.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ACT CLI \u0026 Build Tools\n\nHost and build [ACT](https://actcore.dev) (Agent Component Tools) WebAssembly components.\n\nThis repo contains two tools:\n\n- **`act`** — run, call, inspect, and serve ACT components from local files, HTTP URLs, or OCI registries\n- **`act-build`** — post-process compiled WASM components: embed metadata, skills, and custom sections\n\n## Install\n\n```bash\n# act (CLI host)\nnpm i -g @actcore/act\npip install act-cli\ncargo install act-cli\n\n# act-build (build tool)\nnpm i -g @actcore/act-build\npip install act-build\ncargo install act-build\n```\n\nPre-built binaries available on [GitHub Releases](https://github.com/actcore/act-cli/releases) and Docker (`ghcr.io/actcore/act`).\n\n## act — Component Host\n\n```bash\n# Discover tools in a component\nact info --tools ghcr.io/actpkg/sqlite:0.1.0\n\n# Call a tool\nact call ghcr.io/actpkg/sqlite:0.1.0 query \\\n  --args '{\"sql\":\"SELECT sqlite_version()\"}' \\\n  --metadata '{\"database_path\":\"/data/app.db\"}' \\\n  --allow-dir /data:./data\n\n# Serve over HTTP\nact run -l ghcr.io/actpkg/sqlite:0.1.0\n\n# Serve over MCP stdio\nact run --mcp ghcr.io/actpkg/sqlite:0.1.0\n```\n\nComponents can be referenced as:\n- **OCI refs:** `ghcr.io/actpkg/sqlite:0.1.0`\n- **HTTP URLs:** `https://example.com/component.wasm`\n- **Local paths:** `./component.wasm`\n\nRemote components are cached in `~/.cache/act/components/`.\n\n### Commands\n\n| Command | Description |\n|---------|-------------|\n| `run`   | Serve a component over ACT-HTTP (`-l`) or MCP stdio (`--mcp`) |\n| `call`  | Call a tool directly, print result to stdout |\n| `info`  | Show component metadata, tools, and schemas (`--tools`, `--format text\\|json`) |\n| `pull`  | Download a component from OCI or HTTP to local file |\n\n### HTTP Endpoints (`run -l`)\n\n| Method | Path | Description |\n|--------|------|-------------|\n| `GET` | `/info` | Component metadata |\n| `POST` | `/metadata-schema` | JSON Schema for metadata |\n| `POST/QUERY` | `/tools` | List tools |\n| `POST/QUERY` | `/tools/{name}` | Call a tool (SSE with `Accept: text/event-stream`) |\n\n## act-build — Component Build Tool\n\n```bash\n# Embed act:component metadata, act:skill, and WASM custom sections\nact-build pack target/wasm32-wasip2/release/my_component.wasm\n\n# Validate without modifying\nact-build validate target/wasm32-wasip2/release/my_component.wasm\n```\n\nMetadata is resolved via merge-patch from project manifests:\n\n1. **Base** from `Cargo.toml`, `pyproject.toml`, or `package.json` (name, version, description)\n2. **Inline patch** from the same manifest (`[package.metadata.act-component]`, `[tool.act-component]`, or `actComponent`)\n3. **`act.toml`** — highest priority, applied last\n\n## Platform Support\n\n| Architecture | Linux (GNU) | Linux (musl) | macOS | Windows | Docker |\n|-------------|:-----------:|:------------:|:-----:|:-------:|:------:|\n| x86_64      | ✓           | ✓            | ✓     | ✓       | ✓      |\n| aarch64     | ✓           | ✓            | ✓     | ✓       | ✓      |\n| riscv64     | ✓           | ✓            | —     | —       | ✓      |\n\nRISC-V (`riscv64`) is a first-class target. Regressions on RISC-V are release-blocking.\n\n## Building\n\n```bash\ncargo build --release        # both tools\ncargo build -p act-cli       # act only\ncargo build -p act-build     # act-build only\n```\n\nSet `RUST_LOG=act=debug` for verbose output.\n\n## License\n\nMIT OR Apache-2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Factcore%2Fact-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Factcore%2Fact-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Factcore%2Fact-cli/lists"}