docs: add Nirium to community skills - #96
Conversation
Nirium is a toolkit for x402 agentic payments on Stellar: an SDK, a scaffolding CLI (nirium-cli), and an MCP server (nirium-mcp). The skill itself lives in the project's own repo, linked here per the community-skills convention documented in site/README.md. Verified: tsc --noEmit and next lint both pass on this change. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Adds a new ecosystem card entry to highlight “Nirium Agentic Payments” in the skills/ecosystem data list.
Changes:
- Added a new
ECOSYSTEM_CARDSentry for Nirium Agentic Payments - Included a long descriptive blurb and a link to the corresponding SKILL document
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
| { | ||
| title: "Nirium Agentic Payments", | ||
| description: | ||
| "Charge AI agents per API call on Stellar with the Nirium toolkit: scaffold a working x402 seller with nirium-cli in one command, charge per route with x402Serve() from the nirium SDK, and read live protocol data, market state, autonomous loop status, execution nodes, through the nirium-mcp server. Live on mainnet since April 2, 2026, the day the x402 Foundation launched.", |
| { | ||
| title: "Nirium Agentic Payments", | ||
| description: | ||
| "Charge AI agents per API call on Stellar with the Nirium toolkit: scaffold a working x402 seller with nirium-cli in one command, charge per route with x402Serve() from the nirium SDK, and read live protocol data, market state, autonomous loop status, execution nodes, through the nirium-mcp server. Live on mainnet since April 2, 2026, the day the x402 Foundation launched.", |
|
🤖 Automated message from Kaan's Automated Triage Bot. 👀 Picked this up — a review will follow shortly. |
|
🤖 Automated message from Kaan's Automated Triage Bot. Thanks for this — the honesty in the skill really stood out while I was checking it. It says plainly that the paid tools are testnet-only and that the mainnet box holds no signing key, and I confirmed Most of it checks out end to end: One thing I can't reconcile, and it's in the card description itself, so it would go straight onto the catalog: The "April 2, 2026" date. The card and SKILL.md both say the endpoint has been billing on mainnet since 2 April 2026, "the day the x402 Foundation launched." But:
April 2 doesn't match either event, and the chain says billing started in July. Could you correct the date in both places? If there's an earlier mainnet deployment under a different Two smaller things while you're in there:
On Copilot's review: the stray comma before "through the nirium-mcp server" is worth tidying in the same edit. I'd skip its suggestion to shorten the description generally, since the neighbouring catalog entries run about this long. Happy to take another look as soon as the date is sorted. |
…match Per Kaan Kaçar's review on stellar/stellar-dev-skill#96: the "2 April 2026, the same day the x402 Foundation launched" claim doesn't match anything verifiable. Checked against Horizon: the cited settlement tx (3134a51c...7558bc) confirmed 2026-07-09T20:24:34Z, and the receiving account has no on-chain history before 2026-07-09T19:20:51Z. The x402 Foundation's operational launch was 14 July 2026; x402 on Stellar went live 10 March 2026. April 2 matches neither. Corrected to the date the transaction actually settled, without attaching it to any third-party launch date. Also: the .env table only pointed to the mainnet facilitator key URL, but the CLI scaffold defaults STELLAR_NETWORK to testnet and keys are per-network (a mainnet key 401s against testnet, per the scaffold's own generated comment) — added the testnet URL alongside it. And aligned the root LICENSE (was MIT) with the Apache-2.0 already declared in every package.json and the SKILL.md frontmatter. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Per Kaan's review: "April 2, 2026, the day the x402 Foundation
launched" doesn't check out. The linked settlement tx
(3134a51c...7558bc) confirmed 2026-07-09T20:24:34Z on Horizon, and the
receiving account has no history before 2026-07-09T19:20:51Z. The x402
Foundation's operational launch was 14 July 2026; x402 on Stellar went
live 10 March 2026 — April 2 lines up with neither. Corrected to the
date the transaction actually settled, not tied to any third-party
launch date.
Also fixes Copilot's comma-splice catch ("execution nodes, through the
nirium-mcp server" -> "...and execution nodes through the nirium-mcp
server"). Left the description length alone per Kaan's note that it
matches the neighboring catalog entries.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
|
Fixed, thanks for the thorough check.
One thing that came up while re-checking the date against Horizon, separate from what you flagged: there's an earlier transaction to the same account, skills.ts also has the comma fix from Copilot's review applied, description length left alone. |
|
🤖 Automated message from Kaan's Automated Triage Bot. Thanks for turning this around so carefully — and for aligning the LICENSE too, which I'd only mentioned in passing. All three points are resolved. The corrected date holds up against the chain: the One tiny thing for whenever you're next in the file, not worth a commit on its own: the transaction you cite as "First settlement" is actually the fifth 0.02 USDC transfer that evening — the first is Merging now — welcome to the catalog. |
kaankacar
left a comment
There was a problem hiding this comment.
🤖 Automated message from Kaan's Automated Triage Bot.
Verified end to end — the corrected mainnet date matches the chain, the facilitator key row matches the official x402 guidance, and the live endpoints behave as documented.
|
Thanks Kaan — appreciate the thorough review, especially catching the date and license issues before this went live. Glad it's in 🙏 |
Summary
Adds Nirium to
ECOSYSTEM_CARDSinsite/src/data/skills.ts, per thecommunity-skills convention in
site/README.md.Nirium is an open-source toolkit for x402 agentic payments on Stellar:
a TypeScript/Python SDK, a scaffolding CLI (
nirium-cli), and an MCPserver (
nirium-mcp). Live on mainnet since April 2, 2026, the day thex402 Foundation launched. The skill teaches an agent to:
nirium-cliin one commandx402Serve()from theniriumSDKexecution nodes) through
nirium-mcpThe skill itself lives in the project's own repo (not this one, per the
ECOSYSTEM_CARDSconvention for community skills):https://github.com/nirium-protocol/nirium-sdk/blob/main/skills/nirium-agentic-payments/SKILL.md
Test plan
pnpm lint:ts(tsc --noEmit) passespnpm lint(next lint) passespnpm dev/ the PR preview build🤖 Generated with Claude Code