{"id":51193861,"url":"https://github.com/voidly-ai/x402-pay-action","last_synced_at":"2026-06-27T18:03:09.214Z","repository":{"id":365999175,"uuid":"1222499527","full_name":"voidly-ai/x402-pay-action","owner":"voidly-ai","description":"GitHub Action: pay any HTTP 402 Voidly Pay endpoint from CI. Sign Ed25519 envelopes, settle in USDC-backed credits, retry with X-Payment header.","archived":false,"fork":false,"pushed_at":"2026-06-19T19:15:43.000Z","size":257,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-19T21:13:38.760Z","etag":null,"topics":["agent-payments","ai-agent","autonomous-agents","base-mainnet","cd","ci","github-action","github-actions","payments","stablecoin","usdc","voidly-pay","x402","x402-paywall"],"latest_commit_sha":null,"homepage":"https://voidly.ai/pay/for-builders","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/voidly-ai.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"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},"funding":{"custom":["https://voidly.ai/donate"]}},"created_at":"2026-04-27T12:29:18.000Z","updated_at":"2026-06-19T19:15:46.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/voidly-ai/x402-pay-action","commit_stats":null,"previous_names":["voidly-ai/x402-pay-action"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/voidly-ai/x402-pay-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/voidly-ai%2Fx402-pay-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/voidly-ai%2Fx402-pay-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/voidly-ai%2Fx402-pay-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/voidly-ai%2Fx402-pay-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/voidly-ai","download_url":"https://codeload.github.com/voidly-ai/x402-pay-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/voidly-ai%2Fx402-pay-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34862629,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-27T02:00:06.362Z","response_time":126,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["agent-payments","ai-agent","autonomous-agents","base-mainnet","cd","ci","github-action","github-actions","payments","stablecoin","usdc","voidly-pay","x402","x402-paywall"],"created_at":"2026-06-27T18:03:08.604Z","updated_at":"2026-06-27T18:03:09.210Z","avatar_url":"https://github.com/voidly-ai.png","language":"JavaScript","funding_links":["https://voidly.ai/donate"],"categories":[],"sub_categories":[],"readme":"# Voidly Pay — GitHub Action\n\nPay any HTTP 402 Voidly Pay endpoint from a GitHub Actions workflow.\n\n[Voidly Pay](https://voidly.ai/pay) is a USDC-backed agent-to-agent payment rail. Live on Base mainnet. Source-verified vault. Public proof of reserves.\n\n## Use\n\n```yaml\n- name: Hire Voidly forecast-pro\n  uses: voidly-ai/x402-pay-action@v1\n  id: forecast\n  with:\n    url: https://api.voidly.ai/v1/forecast-pro/IR/30day\n    voidly-pay-secret: ${{ secrets.VOIDLY_PAY_SECRET }}\n    output-path: forecast.json\n\n- name: Inspect\n  run: |\n    echo \"DID:         ${{ steps.forecast.outputs.did }}\"\n    echo \"Transfer:    ${{ steps.forecast.outputs.transfer-id }}\"\n    echo \"Amount:      ${{ steps.forecast.outputs.amount-credits }} credits\"\n    cat forecast.json | jq '.summary'\n```\n\n## Inputs\n\n| Name | Required | Default | Description |\n|---|---|---|---|\n| `url` | yes | — | URL to fetch. 402 quotes are paid + retried automatically. |\n| `method` | no | `GET` | HTTP method. |\n| `body` | no | — | JSON body for POST/PUT. |\n| `max-amount-credits` | no | `0.05` | Cap on a single auto-pay (credits). |\n| `voidly-pay-secret` | no | — | Base64 64-byte Ed25519 secret. Without it, a fresh keypair is minted on the runner each run. |\n| `api-url` | no | `https://api.voidly.ai` | Override for self-hosted. |\n| `output-path` | no | — | Write response body to this path (relative to workspace). |\n| `fail-on-non-2xx` | no | `true` | Fail the step on non-2xx. |\n\n## Outputs\n\n| Name | Description |\n|---|---|\n| `status` | Final HTTP status. |\n| `did` | DID that paid. |\n| `transfer-id` | Settled transfer ID, if a payment was made. |\n| `amount-credits` | Credits paid. |\n| `body` | Response body (truncated to 32KB). |\n| `receipt-json` | Full receipt JSON. |\n\n## Bring your own DID\n\nGenerate locally:\n\n```bash\nnpm install -g @voidly/pay-cli\nvoidly-pay whoami\n# Persists keypair to ~/.voidly-pay/keypair.json\ncat ~/.voidly-pay/keypair.json | jq -r .secretKeyBase64\n# Paste into Repository → Settings → Secrets → VOIDLY_PAY_SECRET\n```\n\nWithout the secret the runner mints a fresh DID each run. Fine for one-off probes; bad for accumulating a balance or earning trust.\n\n## What you can do with this\n\n- **Pay for AI agent intelligence**: forecast-pro, claim-verify-pro, incident-summary-pro, anything in the [marketplace](https://voidly.ai/pay/marketplace).\n- **Hire other agents from CI**: open escrow → wait for delivery → release. (Wrap with [@voidly/pay](https://www.npmjs.com/package/@voidly/pay) for the full surface.)\n- **Test your own paid endpoints**: spin up a paid Hono/FastAPI server in a job, call it with this action.\n- **Buy access to gated dashboards**: any 402-aware service.\n\n## Live now\n\n- **Vault**: [`0xd25d3c6f32886b65356cc5c700382a8a02d84df5`](https://basescan.org/address/0xd25d3c6f32886b65356cc5c700382a8a02d84df5) (Sourcify exact_match)\n- **Public proof of reserves**: \u003chttps://api.voidly.ai/v1/pay/proof\u003e\n- **Marketplace**: \u003chttps://voidly.ai/pay/marketplace\u003e\n- **Stack guides**: \u003chttps://voidly.ai/pay/for-builders\u003e\n\n## License\n\nMIT.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvoidly-ai%2Fx402-pay-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvoidly-ai%2Fx402-pay-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvoidly-ai%2Fx402-pay-action/lists"}