chore(skills): cover standards CLI + deploy --with-keyring / --wait-for-indexer#4
Merged
Merged
Conversation
…-indexer
The CLI surface that landed in bitbadgesjs #225–#228 + #220–#222 isn't
documented in the agent skills yet. Two skill updates so Claude reaches
for the right tool when a user asks about a standard by name or wants a
headless CLI broadcast:
`query/SKILL.md`
- Description: list the standards surface (auctions / crowdfunds /
payment-requests / intents / smart-tokens / ...) so the skill is
surfaced for standard-named questions, not just raw API ones.
- New section "Standards shortcuts (preferred over raw API)": example
commands per standard. The standards CLI is friendlier than
grepping the indexer route registry — agents should default to it.
- Bump API route count 104+ → 106+ (SDK #223 routes.yaml drift fix +
#228 gamm chain-query client added 27+ routes).
`broadcast/SKILL.md`
- Add a fifth signing path: `deploy --with-keyring --from <key>`
(SDK #226). Best for headless CLI flows where the user already has
a chain-binary key but doesn't want to context-switch out of
bitbadges-cli to run bitbadgeschaind tx ... themselves.
- Top-level note on `--wait-for-indexer [timeout-ms]` (SDK #227).
Lets agent scripts immediately query the new entity instead of
racing the indexer.
CHANGELOG.md updated with both changes.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Skills mix `bitbadges-cli`, `bb cli`, and `bitbadgeschaind` in examples
without telling Claude when to use each. Adds a short rule-of-thumb
table to the README:
- `bb cli <subcmd>` — preferred for everything in the JS SDK CLI
surface (`build`, `deploy`, `api`, standards verbs, `auth`, etc).
`bb cli` is `bitbadgeschaind cli` is `bitbadges-cli` — same code,
friendlier alias.
- `bitbadgeschaind tx | query | keys` — Cosmos chain-binary surface
only. NOT forwarded through `bitbadges-cli`. Use when the broadcast
skill needs the chain-binary signing path or the address skill needs
keyring lookups.
- `bitbadges-cli <subcmd>` — fallback for when the chain binary isn't
on PATH; examples in skills standardize on `bb cli` for terseness.
Also flips the post-install setup example from `bitbadges-cli config set`
to `bb cli config set` so the README matches its own guidance.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Two skill updates so Claude reaches for the right tool when a user asks about a BitBadges standard by name or wants a headless CLI broadcast.
`query/SKILL.md`
`broadcast/SKILL.md`
`CHANGELOG.md`
Both entries added under [Unreleased] > Changed.
Test plan