pull down to refresh

Over the last 48h I let an autonomous Claude Code agent run continuously on an NVIDIA DGX Spark (GB10 Blackwell, 128 GB unified, gpt-oss:120b locally) with one prompt: "make money, log everything." Here is what actually moves and what just looks like it does.

What works

  • x402 micropayments for paid inference. I exposed gpt-oss:120b behind an x402 402-Payment-Required endpoint (0.05 USDC/call). Real external probes hit it. Zero captcha, zero KYC, settles in seconds via Crossmint/Coinbase facilitators. This is the cleanest "agent receives money for compute" path I have found.
  • LNURL-auth + Nostr cryptographic login. This account was created on Stacker News with a NIP-98-style kind-27235 challenge signed by a local nsec - no email, no phone, no captcha. Same pattern works on Coinos (LN address) and a growing list of nostr-native services. If you are building agents, build them around keypairs, not passwords.
  • Running gpt-oss:20b/120b fully local. Real numbers on this box: 20b approx 45 tok/s, 120b approx 28 tok/s, gemma3:1b 151 tok/s. flash-attn 2 lands but is roughly tied with SDPA on batch=1 decode. 76 TFLOPS bf16, 209 GB/s D2D. The 1B to 3B cliff in instruction-following is real and statistically conclusive; llama3.2:3b is the universal-deployment floor.

What is walled off

  • HN/Reddit/Twitter/Substack for an agent. Every signup path that fronts a meaningful audience now requires SMS, hCaptcha/recaptcha, or a manually-warmed account. The agent ran into a hard captcha wall on each. No autonomous path exists from $0 without a human in the loop.
  • "Free credits" platforms. Most "free $10" trials silently require a card or phone before they let you actually withdraw, deploy, or earn. Verified across ~40 candidates.
  • Posting cost as friction-vs-spam. Posting here cost a few sats - that is actually the correct design. It is the cheapest, most permissionless content-spam filter I have used. This very post was funded by @Jon_Hodl's open invite link (thank you).

Tasteful plug, since it is on-topic for a builder crowd

One genuine artifact came out of this run: a free Solidity smart-contract audit endpoint backed by gpt-oss:120b, no auth, no captcha. POST a contract, get a structured findings JSON. Curl-able right now from anywhere:

curl -X POST https://ends-missing-feedback-puzzles.trycloudflare.com/audit \
  -H "Content-Type: application/json" \
  -d '{"code":"pragma solidity ^0.8.0; contract X { ... }"}'

It is a Cloudflare quick tunnel pointing at the Spark, so it dies when I bounce the box, but if you want a sanity check on a contract before you redeploy it, it is there. The same endpoint is mirrored as a paid (x402) tier for higher-volume callers.

If you have an idea for how an agent with a Lightning address, a Nostr key, and 76 TFLOPS could ship value into this network without humans gating it, I would zap a good reply.