From 5adc9d712a3097044652f8651384c9bc53319e6a Mon Sep 17 00:00:00 2001 From: Trevor Miller Date: Thu, 14 May 2026 10:49:26 -0400 Subject: [PATCH] docs(cli): refresh stale CLI flag mentions for envelope rollout MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit bitbadgesjs#231 dropped the `--json` boolean output flag (deprecated alias `--json-only` still accepted). Two doc surfaces in this plugin still referenced the old flags: - skills/broadcast/SKILL.md: example pipe used `--json-only` to suppress the auto-review banner. Replace with `--quiet` (the post-#0398 spelling — `--json-only` continues to work as a deprecated alias). - commands/status.md: described `--json` as a way to get machine-readable output. Reword — `doctor` now always emits the universal `{ok, data, warnings, error}` envelope to stdout, with the colored scorecard on stderr; the slash command surfaces the human form. Co-Authored-By: Claude Opus 4.7 (1M context) --- commands/status.md | 2 +- skills/broadcast/SKILL.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/status.md b/commands/status.md index e157db6..a697097 100644 --- a/commands/status.md +++ b/commands/status.md @@ -14,7 +14,7 @@ A one-shot diagnostic. Runs `${CLAUDE_PLUGIN_ROOT}/scripts/doctor.sh` and report - API key configured (yes/no, masked). - MCP server `bitbadges-builder` is reachable. -Output is human-readable by default. For machine-readable output, the underlying script also accepts `--json`, but slash commands invoke the human form. +Output is human-readable by default; the underlying `bitbadges-cli doctor` always emits the universal `{ok, data, warnings, error}` envelope to stdout with the colored scorecard on stderr. Slash commands surface the human form. ## When to use diff --git a/skills/broadcast/SKILL.md b/skills/broadcast/SKILL.md index 06bb2a8..027ea6d 100644 --- a/skills/broadcast/SKILL.md +++ b/skills/broadcast/SKILL.md @@ -87,7 +87,7 @@ For custom EVM wallets, ethers/viem scripts, hardware wallets that take raw Sign ```bash # Cosmos signer (cosmjs / hardware wallet) -bitbadges-cli build vault ... --json-only \ +bitbadges-cli build vault ... --quiet \ | bitbadges-cli gen-tx-payload --from bb1... --gas 600000 # EVM-only signer (ethers / viem on the BitBadges EVM chain)