assets

assets is a skill for Claude Code from rylsherdamz-rgb/stellar-forge. It costs 70 tokens per session (410 once invoked), scanned A, original, MIT.

A guide to Stellar classic assets, which are tokens issued on the Stellar network, and their bridge to Soroban smart contracts through Stellar Asset Contracts. It covers trustlines, issuance controls, and SEP-41 token interoperability.

In plain words
What is it for?
Use it to issue tokens or stablecoins, configure authorization and clawback, manage trustlines and balances, tokenize real-world assets, and connect classic assets to Soroban.
Why use it?
It explains the ledger settings and trustline steps needed to issue, distribute, restrict, or connect these assets to smart contracts.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the stellar-forge plugin — 31 skills, 4 commands, 6 agents, 4 MCP servers shipped together

Good fit Use it to issue tokens or stablecoins, configure authorization and clawback, manage trustlines and balances, tokenize real-world assets, and connect classic assets to Soroban.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rylsherdamz-rgb/stellar-forge/assets
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add rylsherdamz-rgb/stellar-forge --skill assets
Clone the repo
git clone --depth 1 https://github.com/rylsherdamz-rgb/stellar-forge

Made for: Claude Code.

Or install stellar-forge, the plugin that ships this one along with the rest of its 31 skills, 4 commands, 6 agents, 4 MCP servers.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for assets

README.md
[![agentmods](https://agentmods.dev/badge/skills/rylsherdamz-rgb/stellar-forge/assets/github.svg)](https://agentmods.dev/skills/rylsherdamz-rgb/stellar-forge/assets)
Your own site
<a href="https://agentmods.dev/skills/rylsherdamz-rgb/stellar-forge/assets"><img src="https://agentmods.dev/badge/skills/rylsherdamz-rgb/stellar-forge/assets/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for assets

Your own site · 80×15
<a href="https://agentmods.dev/skills/rylsherdamz-rgb/stellar-forge/assets"><img src="https://agentmods.dev/badge/skills/rylsherdamz-rgb/stellar-forge/assets.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 70 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 410 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00070 $0.00410
Opus 5 $0.00035 $0.00205
Sonnet 5 $0.00014 $0.00082
Haiku 4.5 $0.00007 $0.00041

Measured 10d ago against content hash 067ec27a422f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

assets scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/assets/SKILL.md · 50 lines

What it actually says

Assets (Classic + SAC)

When to Use

  • Issuing a Stellar classic asset (token)
  • Setting up trustlines for distribution
  • Configuring authorization flags (revocable, clawback-enabled)
  • Bridging a classic asset to Soroban via SAC
  • Reading trustline balances from the ledger

Key Concepts

Classic Assets

Issued on Stellar network with ChangeTrust + Payment operations. Controlled by asset issuer flags.

Flag Description
AUTHORIZATION_REQUIRED Trustlines must be approved by issuer
AUTHORIZATION_REVOCABLE Issuer can freeze/revoke trustlines
AUTHORIZATION_CLAWBACK_ENABLED Issuer can clawback sent assets

SAC (Stellar Asset Contract)

Bridges classic assets to Soroban smart contracts as SEP-41 tokens. Each classic asset has a corresponding SAC contract ID.

Trustlines

Required for users to hold non-native assets. Managed via ChangeTrustOp in classic or SAC deposit/withdraw methods.

Strict Rules

  1. Classic asset flags must be set at issuance — cannot be added later
  2. SAC contract IDs are deterministic from the asset and network passphrase
  3. Use useStellarData().getBalances() to read trustline balances — no raw RPC
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 50 lines · 70 tokens per session scan A 067ec27a422f

Subscribe to this mod's changes

assets is a skill published in the GitHub repository rylsherdamz-rgb/stellar-forge (17 stars, last pushed yesterday), licensed MIT. It adds 70 tokens to every session and 410 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

nirium-agentic-payments

Scaffold and run an x402 paid API server on Stellar with open-source client libraries: charge AI agents per API call with x402Serve(), a function from the nirium SDK that runs entirely on your own server, scaffold that server with nirium-cli in one command, and separately read live protocol data through the nirium-mcp…

nirium-protocol/nirium-sdk · 128 tokens

ethereum-development

Production-grade Ethereum/EVM development workflow for smart contracts, dApps, transactions, clients, gas optimization, testing, security review, deployment, verification, monitoring, and incident response across Foundry, Hardhat, Solidity, TypeScript, viem, ethers, wagmi, and common EVM networks.

dirtybits/agent-skills · 64 tokens

rail402-cli

Discover and pay for x402 APIs on Stellar from the command line. Use when an agent needs to find a paid API in the x402 Bazaar, pay for an API call with USDC on Stellar testnet, fund a testnet wallet, or look up an x402 settlement on the explorer — via the rail402 CLI.

tolgayayci/rail402 · 72 tokens

x402-stellar-payments

Use when asked to "pay for" a URL, add a "paid endpoint", handle HTTP 402, or work with x402 payments on Stellar.

CodeStrux/x402-stellar-kit · 38 tokens

mcp

Use when an AI agent or MCP client needs to discover, rank, inspect evidence limits, and inspect self-declared service endpoint candidates for Stellar 8004 agents at runtime. Documents how to register the read-only, keyless stellar-agent-search server and use its tools, resources, and prompts; reputation values remain…

berkingurcan/stellar-agent-search · 81 tokens

averray-poster

Use Averray's MCP workflow to draft and fund a job from your own wallet, select an honest verifier path, and understand settlement, receipts, cancellation, and disputes.

averray-agent/agent · 40 tokens