run402-mcp 4.17.5 → 4.17.7
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 +19 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -382,16 +382,32 @@ The human-facing install is a Buzz message—no terminal required:
|
|
|
382
382
|
Please install the run402.com skill.
|
|
383
383
|
```
|
|
384
384
|
|
|
385
|
-
That is the entire human instruction. In a managed Buzz context, first-party discovery routes it to `run402-buzz`; the agent reads the apex install router and installs the self-contained skill into its workspace (normally
|
|
385
|
+
That is the entire human instruction. In a managed Buzz context, first-party discovery routes it to `run402-buzz`; the agent reads the apex install router and installs the self-contained skill into its workspace (normally the user-home `.buzz` directory). The request means install and connect: after verifying the inert files, the agent loads the installed skill directly and continues through preflight, setup, and identity linking in the same turn. It does not stop at “available next turn” or ask a second setup question. For a Codex runtime, prefer supplying the working directory and environment separately to the agent's command runner:
|
|
386
|
+
|
|
387
|
+
```text
|
|
388
|
+
working_directory: <user-home>/.buzz
|
|
389
|
+
environment: { "DO_NOT_TRACK": "1" }
|
|
390
|
+
command: npx --yes skills@latest add https://run402.com -s run402-buzz -a codex -y
|
|
391
|
+
```
|
|
392
|
+
|
|
393
|
+
Shell-only POSIX environments use:
|
|
386
394
|
|
|
387
395
|
```sh
|
|
388
|
-
cd
|
|
396
|
+
cd "$HOME/.buzz"
|
|
389
397
|
DO_NOT_TRACK=1 npx --yes skills@latest add https://run402.com -s run402-buzz -a codex -y
|
|
390
398
|
```
|
|
391
399
|
|
|
400
|
+
Windows PowerShell uses:
|
|
401
|
+
|
|
402
|
+
```powershell
|
|
403
|
+
Set-Location (Join-Path $HOME '.buzz')
|
|
404
|
+
$env:DO_NOT_TRACK = '1'
|
|
405
|
+
npx --yes skills@latest add https://run402.com -s run402-buzz -a codex -y
|
|
406
|
+
```
|
|
407
|
+
|
|
392
408
|
Claude Code uses `-a claude-code`, Goose uses `-a goose`, a confirmed `.agents/skills` consumer may use `-a universal`, and Claude Code plus Codex uses `-a claude-code codex`. `universal` is the shared path, not all runtimes; do not use the invalid explicit target `-a claude`. The skill bytes come from immutable digest-verified artifacts at `run402.com`; first-run `npx` can still require npm. GitHub is the one availability-only fallback, while any integrity failure stops before setup. Success reports the observed first-party digest and exact managed-workspace path; a GitHub source or global runtime path is never mislabeled first-party.
|
|
393
409
|
|
|
394
|
-
The file installation stage is inert. Continuing onboarding publishes a durable public kind-1 Nostr event and durable Run402 proof connecting the two public identities; revocation does not erase their history, and a Buzz-managed event may also expose its owner's public NIP-OA attestation. The agent initializes only if needed, creates or reuses the link, independently verifies it, and immediately offers one context-relevant quick test or demo with `Deployment: none` retained in the expanded receipt. It waits for explicit approval before building or deploying. After independently verifying the live app, it creates an inert durable offer and posts a normal HTTPS “Become an owner” handoff. The browser owns human login/passkey and the existing Buzz six-digit consent callback; no human terminal command or Buzz change is required.
|
|
410
|
+
The file installation stage is inert. Continuing onboarding publishes a durable public kind-1 Nostr event and durable Run402 proof connecting the two public identities; revocation does not erase their history, and a Buzz-managed event may also expose its owner's public NIP-OA attestation. The agent initializes only if needed, creates or reuses the link, independently verifies it, and immediately offers one context-relevant quick test or demo with `Deployment: none` retained in the expanded receipt. On Windows the setup helper runs npm's and Run402's JavaScript entrypoints through the exact managed Node runtime with `shell: false`, avoiding `.cmd` process-boundary failures. It waits for explicit approval before building or deploying. After independently verifying the live app, it creates an inert durable offer and posts a normal HTTPS “Become an owner” handoff. The browser owns human login/passkey and the existing Buzz six-digit consent callback; no human terminal command or Buzz change is required.
|
|
395
411
|
|
|
396
412
|
See the [`buzz/` guide](./buzz/README.md) for prerequisites, the no-secret signer model, released-client fixtures, migration guidance, and the full workflow, or inspect the exact [`run402-buzz` listing on skills.sh](https://skills.sh/kychee-com/run402/run402-buzz). The low-level CLI commands remain available for debugging, but they are not a competing onboarding path.
|
|
397
413
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "run402-mcp",
|
|
3
|
-
"version": "4.17.
|
|
3
|
+
"version": "4.17.7",
|
|
4
4
|
"mcpName": "com.run402/mcp",
|
|
5
5
|
"description": "MCP server for Run402 — pay-per-call infrastructure for AI agents over x402 USDC micropayments. Generate an image for $0.03 with no signup, or provision Postgres databases with REST API, auth, storage and row-level security.",
|
|
6
6
|
"type": "module",
|