Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <subcmd>`** (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 <subcmd>`** (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 <subcmd>`** (direct) | Same SDK surface as `bb <subcmd>`, 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 <subcmd>`** (deprecated alias) | Same as `bb <subcmd>`. 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 <subcmd>`. |

Expand Down
2 changes: 1 addition & 1 deletion agents/bitbadges-builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
2 changes: 1 addition & 1 deletion skills/build/SKILL.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 1 addition & 2 deletions skills/query/SKILL.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
Loading