You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(plugin)!: one vocabulary across both plugins, and a /help in each (#335)
BREAKING CHANGE: three commands were renamed. /stocks:stocks → /stocks:report,
/crypto:crypto → /crypto:report, /crypto:coin → /crypto:lookup.
The two plugins had grown separate words for the same question — `stocks` and
`crypto` for "the full report", `coin` and `lookup` for "name → symbol" — so
knowing one taught you nothing about the other. Worse, the headline command in
each was named after its own plugin, which is what produced `/crypto:crypto`.
They cannot ship the same *set*: a pair has no earnings transcript and an equity
has no order book. They can share vocabulary, and now do:
shared help · report · quote · lookup
stocks signals · research · reports · discover
crypto book · bars · spark · pairs
Eight each, four spelled identically. `/stocks:report NVDA` and
`/crypto:report BTC` are the same question asked of different markets.
New in both: `/…:help`, which lists that plugin's commands with no tool call —
the answer to "command not found" being a dead end rather than a signpost.
New in stocks: `/stocks:quote`, the four-line read. It exists because the CLI
already aliases `quote` to `report` for equities, so the plugin was the only
surface where the word did not work — which is exactly how someone found it.
It reads the same document as `report`; the difference is how much it prints.
Two tests hold the shape: every plugin must ship each shared name, and no
command may repeat its own plugin's name. The second one is what a bare
`/crypto:crypto` would have failed.
Both plugins go to 0.3.0 — renamed commands do not reach an existing install
until that number moves.
Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
"description": "Crypto market data slash commands backed by advis0r.com: live prices, technical scores, order books, OHLCV history and sparklines across Alpaca's US crypto venue.",
0 commit comments