@actcore/act 0.8.2 → 0.9.0
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.
- package/README.md +2 -2
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -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
|
-
|
|
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`)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@actcore/act",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "CLI host for ACT (Agent Component Tools) WebAssembly components",
|
|
5
5
|
"license": "MIT OR Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
},
|
|
15
15
|
"files": ["bin"],
|
|
16
16
|
"optionalDependencies": {
|
|
17
|
-
"@actcore/act-cli-linux-x64": "0.
|
|
18
|
-
"@actcore/act-cli-linux-arm64": "0.
|
|
19
|
-
"@actcore/act-cli-linux-riscv64": "0.
|
|
20
|
-
"@actcore/act-cli-darwin-x64": "0.
|
|
21
|
-
"@actcore/act-cli-darwin-arm64": "0.
|
|
22
|
-
"@actcore/act-cli-win32-x64": "0.
|
|
23
|
-
"@actcore/act-cli-win32-arm64": "0.
|
|
17
|
+
"@actcore/act-cli-linux-x64": "0.9.0",
|
|
18
|
+
"@actcore/act-cli-linux-arm64": "0.9.0",
|
|
19
|
+
"@actcore/act-cli-linux-riscv64": "0.9.0",
|
|
20
|
+
"@actcore/act-cli-darwin-x64": "0.9.0",
|
|
21
|
+
"@actcore/act-cli-darwin-arm64": "0.9.0",
|
|
22
|
+
"@actcore/act-cli-win32-x64": "0.9.0",
|
|
23
|
+
"@actcore/act-cli-win32-arm64": "0.9.0"
|
|
24
24
|
},
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public",
|