crosscheckapi 0.1.0 → 0.2.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 CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  An independent second opinion on a draft before your human sees it.
4
4
 
5
- Your agent sends the text it wrote: an email, report, message, PR description, or summary. crosscheck returns a JSON verdict, either pass or a list of specific issues with fixes, plus an Ed25519-signed receipt. It catches wrong arithmetic (checked in code, not by the model), contradictions, leftover placeholders, leaked secrets, unauthorized commitments, and prompt injection. Each check costs $0.02 in USDC for up to 12,000 characters, paid per request over [x402](https://x402.org). There is no account and no API key.
5
+ Your agent sends the text it wrote: an email, report, message, PR description, or summary. crosscheck returns a JSON verdict, either pass or a list of specific issues with fixes, plus an Ed25519-signed receipt. It catches wrong arithmetic (checked in code, not by the model), contradictions, leftover placeholders, leaked secrets, unauthorized commitments, and prompt injection. Each check costs $0.02 in USDC on Base for up to 12,000 units (one per English character), paid per request over [x402](https://x402.org). There is no account and no API key.
6
6
 
7
- > Pilot: payments run on Base Sepolia (testnet). Get test USDC at https://faucet.circle.com.
7
+ > To try it without real money, pay with test USDC on Base Sepolia (free at https://faucet.circle.com) and set `CROSSCHECK_NETWORKS=eip155:84532`.
8
8
 
9
9
  ## MCP server
10
10
 
@@ -43,7 +43,7 @@ The draft is read from the file, or from stdin if no file is given. Output is JS
43
43
  | `CROSSCHECK_WALLET_KEY` | Private key of the wallet that pays. Use a dedicated wallet holding a few dollars, never your main wallet. Only needed for paid orders. |
44
44
  | `CROSSCHECK_MAX_USD` | Refuse to pay more than this per check. Default `0.10`. |
45
45
  | `CROSSCHECK_URL` | Service URL. Default `https://crosscheckapi.com`. |
46
- | `CROSSCHECK_ALLOW_MAINNET` | Set to `1` to allow payment on networks other than Base Sepolia. |
46
+ | `CROSSCHECK_NETWORKS` | Networks the client may pay on, in order of preference. Default `eip155:8453,eip155:84532` (Base, then Base Sepolia). Set `eip155:84532` to use test USDC only. |
47
47
 
48
48
  ## Receipts
49
49