morse-launch-b20

morse-launch-b20 is a skill for Claude Code, Codex from Capminal/agent-skills. It costs 52 tokens per session (4,442 once invoked), scanned C, original, MIT.

A procedure for launching a B20 token on Base through the B20 Factory precompile. It creates, mints, and verifies the token using Capminal and a configured wallet.

In plain words
What is it for?
It is for creating and minting B20 tokens on Base, then checking that the result is correct.
Why use it?
It packages the required blockchain contract calls into one documented create-to-verification flow.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It is for creating and minting B20 tokens on Base, then checking that the result is correct.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/capminal/agent-skills/morse-launch-b20
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 Capminal/agent-skills --skill morse-launch-b20
Clone the repo
git clone --depth 1 https://github.com/Capminal/agent-skills

Made for: Claude Code, Codex.

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 morse-launch-b20

README.md
[![agentmods](https://agentmods.dev/badge/skills/capminal/agent-skills/morse-launch-b20/github.svg)](https://agentmods.dev/skills/capminal/agent-skills/morse-launch-b20)
Your own site
<a href="https://agentmods.dev/skills/capminal/agent-skills/morse-launch-b20"><img src="https://agentmods.dev/badge/skills/capminal/agent-skills/morse-launch-b20/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 morse-launch-b20

Your own site · 80×15
<a href="https://agentmods.dev/skills/capminal/agent-skills/morse-launch-b20"><img src="https://agentmods.dev/badge/skills/capminal/agent-skills/morse-launch-b20.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,442 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 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.00052 $0.04442
Opus 5 $0.00026 $0.02221
Sonnet 5 $0.00010 $0.00888
Haiku 4.5 $0.00005 $0.00444

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

Security

Grade C, and why

morse-launch-b20 scanned grade C with 2 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.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

The factory rejects non-canonical calldata with `AbiDecodeFailed`, so encode with `cast` (Foundry) — these are **pure local computations**: no RPC, no precompile simulation, no base-foundry required. If `cast` is unavail

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s -X GET "${BASE_URL}/api/wallet/balance" \
morse-launch-b20/SKILL.md · 317 lines

How it starts

The opening of the file, as written. The whole thing — 317 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Morse — Launch B20 Token

Launch a B20 token on Base by calling the singleton B20 Factory precompile at 0xB20f000000000000000000000000000000000000. B20 is an ERC-20 superset that runs natively on Base; a single createB20 call deploys a fully-configured token (admin, minter, supply cap) without writing or auditing a contract.

This is a Morse skill built on Capminal's contract-interaction infrastructure — it drives the same Capminal endpoints as contract-interaction:

  • Read (/api/contract/read) — free view calls (activation check, predict address, balance).
  • Write (/api/contract/write) — sign + send createB20 / mint from your EOA wallet.

It runs the full Create → Mint → Verify flow.

Prerequisite — install the capminal skill first

This skill signs from the same Cap Wallet and uses the same credential as capminal. Install and configure that skill before this one:

  1. Install capminal and follow its Required Environment Variables section.
  2. Set CAP_API_KEY in the agent host's environment. It is the only variable this skill needs, and it is shared with capminal — do not create a second key.
  3. Confirm the wallet is reachable by calling capminal's Get Wallet Balance endpoint. If that fails, every action here fails the same way.

Without capminal installed and configured there is no wallet for this skill to sign with.

Base URL

BASE_URL = https://api.capminal.ai

Authentication & Security

  • CAP_API_KEY must be sent via header x-cap-api-key, NEVER in URL or logs.
  • NEVER print, log, echo, or display the actual CAP_API_KEY value — not in analysis, reasoning/thinking, debug output, error messages, code snippets, or the final reply. Refer to it only as $CAP_API_KEY / CAP_API_KEY. If confirming it was loaded, say only "CAP_API_KEY loaded" without showing any characters of the value.
  • Only send requests to https://api.capminal.ai.

Read the full file on GitHub · 317 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 317 lines · 52 tokens per session scan C 51d6dd5fde7a

Subscribe to this mod's changes

morse-launch-b20 is a skill published in the GitHub repository Capminal/agent-skills (34 stars, last pushed 1mo ago), licensed MIT. It adds 52 tokens to every session and 4,442 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). 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

clanker-plugin

Deploy and manage Clanker ERC-20 tokens on Base and Arbitrum. Trigger phrases: deploy token, launch token on Clanker, create token on Base, search Clanker tokens, list latest tokens, claim LP rewards, claim Clanker fees.

okx/plugin-store · 55 tokens

starkzap-sdk

Reference for integrating or maintaining applications built with keep-starknet-strange/starkzap, including StarkSDK setup, onboarding, wallet lifecycle, sponsored transactions, ERC20 flows, staking, and transaction builder usage.

keep-starknet-strange/starknet-agentic · 47 tokens

starknet-tongo

Confidential ERC20 payments on Starknet using Tongo protocol. Fund, transfer, withdraw, and rollover encrypted token balances with zero-knowledge proofs. Use when the user needs privacy-preserving transactions, confidential payments, encrypted balances, or auditable private transfers on Starknet.

keep-starknet-strange/starknet-agentic · 61 tokens

CTRL

Build on-chain automation on Base via CTRL - DCA, price-gated swaps, launchpad sniping, or whale-follow that run autonomously after one EIP-5792 wallet signature, bounded by preset caps.

aaronjmars/aeon-agent · 46 tokens

bankr-shopify

Shopify Admin & Storefront GraphQL APIs via curl, with Bankr-native bridges. Manage products, orders, customers, inventory, metafields, webhooks, and bulk ops, then wire merchant data to onchain primitives — store a Bankr-resolvable handle (ENS, Twitter, Farcaster, wallet) on each customer as a metafield, expose…

BankrBot/skills · 163 tokens

pantheon-staking

Stake creator coins into Pantheon vaults on Base and Robinhood Chain, view staking positions, and claim monthly rewards. Use when the user mentions Pantheon, pantheonvaults, staking a creator coin for yield, or checking/claiming Pantheon vault rewards.

BankrBot/skills · 59 tokens