From af51567e3ad34b3c7b4ea1d0759d8c1ce21887d1 Mon Sep 17 00:00:00 2001 From: Trevor Miller Date: Fri, 15 May 2026 20:45:44 -0400 Subject: [PATCH] chore: drop crowdfund from plugin skill/agent descriptions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Crowdfund standard is being removed everywhere (broken on-chain withdraw/refund; chain-frozen, no clean workaround — autopilot #0439, bitbadgesjs #248, frontend #248). Trim the now-defunct `crowdfund` token from the build/query skill descriptions, the builder agent example, and the README CLI surface list. CHANGELOG history retained. Co-Authored-By: Claude Opus 4.7 (1M context) --- README.md | 2 +- agents/bitbadges-builder.md | 2 +- skills/build/SKILL.md | 2 +- skills/query/SKILL.md | 3 +-- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3571ff9..68ca1e2 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ After install, `bb` is the single user-facing name. Every SDK command lives at t | Form | What it covers | When skills use it | |---|---|---| -| **`bb `** (preferred) | Everything. The full SDK surface — `build`, `deploy`, `api`, `auctions`, `crowdfunds`, `intents`, `auth`, `account`, `pools`, `pairs`, `dev`, `settings`, etc. — plus every Cosmos-native surface (`tx`, `query`, `keys`) on the same binary. | Every skill. | +| **`bb `** (preferred) | Everything. The full SDK surface — `build`, `deploy`, `api`, `auctions`, `intents`, `auth`, `account`, `pools`, `pairs`, `dev`, `settings`, etc. — plus every Cosmos-native surface (`tx`, `query`, `keys`) on the same binary. | Every skill. | | **`bitbadges-cli `** (direct) | Same SDK surface as `bb `, just the underlying JS binary. Use only when the chain binary isn't on PATH or a script pins the JS-only entry. | Fallback only. | | **`bb cli `** (deprecated alias) | Same as `bb `. Kept for one release so existing scripts and demos keep working — emits a one-line deprecation banner to stderr. Set `BB_QUIET=1` to suppress. | Never — examples have all moved to `bb `. | diff --git a/agents/bitbadges-builder.md b/agents/bitbadges-builder.md index ff4cc97..69f1c8f 100644 --- a/agents/bitbadges-builder.md +++ b/agents/bitbadges-builder.md @@ -15,7 +15,7 @@ You are a BitBadges builder subagent. Your job is to take a token-creation or tr ## Workflow on a creation task -1. Identify the token type or skill the user wants. Call `get_skill_instructions` with the matching skill id (e.g. `smart-token`, `subscription`, `crowdfund`) to load the canonical instructions. +1. Identify the token type or skill the user wants. Call `get_skill_instructions` with the matching skill id (e.g. `smart-token`, `subscription`) to load the canonical instructions. 2. Use the per-field session tools (`set_standards`, `set_invariants`, `add_alias_path`, `add_approval`, `set_permissions`, etc.) to construct the transaction step by step. Each call updates the session state. 3. `validate_transaction` after the full structure is built. Address every error, surface every warning to the user. 4. `review_collection` for an opinionated audit (foot-guns, reserved-symbol clashes, ordering issues). diff --git a/skills/build/SKILL.md b/skills/build/SKILL.md index e12c2d3..4d8a2fe 100644 --- a/skills/build/SKILL.md +++ b/skills/build/SKILL.md @@ -1,5 +1,5 @@ --- -description: Build any kind of BitBadges token (smart-token, fungible, NFT, subscription, vault, claim, quest, auction, payment, crowdfund, prediction-market, ...). Discover the right type via the CLI, load canonical instructions from the SDK, construct via per-field MCP tools. +description: Build any kind of BitBadges token (smart-token, fungible, NFT, subscription, vault, claim, quest, auction, payment, prediction-market, ...). Discover the right type via the CLI, load canonical instructions from the SDK, construct via per-field MCP tools. --- # Build a BitBadges token diff --git a/skills/query/SKILL.md b/skills/query/SKILL.md index fbc64bc..e03121e 100644 --- a/skills/query/SKILL.md +++ b/skills/query/SKILL.md @@ -1,5 +1,5 @@ --- -description: Query BitBadges collections, balances, accounts, claims, addresses, standards (auctions / crowdfunds / payment-requests / intents / smart-tokens / ...), and any of the 106+ API routes. Discovers routes via --help-json instead of guessing. +description: Query BitBadges collections, balances, accounts, claims, addresses, standards (auctions / payment-requests / intents / smart-tokens / ...), and any of the 106+ API routes. Discovers routes via --help-json instead of guessing. --- # Query @@ -38,7 +38,6 @@ bb auctions list # browse active auctions bb auctions show 42 # one auction bb auctions status 42 # bidding | accepting | sold | expired -bb crowdfunds list # crowdfund campaigns bb pay-requests list --mine bb1... # payment requests TO me bb intents list --pay-denom uusdc # intent-exchange offers bb prediction-markets list --open # active prediction markets