@actions-json/bridge 0.1.121 → 0.1.124
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 +1 -1
- package/bin/cli.js +1 -1
- package/dictionary/overlay.actions.json +1240 -80
- package/lib/storage.js +6 -6
- package/package.json +4 -4
- package/{scaffold → template}/README.md +17 -19
- /package/{scaffold → template}/scopes/private/scope.json +0 -0
- /package/{scaffold → template}/scopes/private/sites/.gitkeep +0 -0
- /package/{scaffold → template}/scopes/public/scope.json +0 -0
- /package/{scaffold → template}/scopes/public/sites/.gitkeep +0 -0
- /package/{scaffold → template}/scopes/shared/.gitkeep +0 -0
- /package/{scaffold → template}/storage.json +0 -0
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Run the [actions.json](https://yaniv256.github.io/actions.json/) MCP bridge with
|
|
4
4
|
`npx` — no Rust toolchain, no setup. On first run it downloads the prebuilt
|
|
5
5
|
`actions-json-mcp` binary for your platform, bundles the primitive dictionary
|
|
6
|
-
(so you don't pass `--actions`), and
|
|
6
|
+
(so you don't pass `--actions`), and creates a storage workspace at
|
|
7
7
|
`~/.actions-json/storage` (so you don't pass `--storage-root`).
|
|
8
8
|
|
|
9
9
|
## Usage
|
package/bin/cli.js
CHANGED
|
@@ -24,7 +24,7 @@ function isRunSubcommand(args) {
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
// Inject defaults the user shouldn't have to specify: the bundled primitive
|
|
27
|
-
// dictionary (--actions) and a
|
|
27
|
+
// dictionary (--actions) and a default storage root (--storage-root). Both
|
|
28
28
|
// are skipped if the user passed their own.
|
|
29
29
|
function withDefaults(args) {
|
|
30
30
|
if (!isRunSubcommand(args)) return args;
|