docs(skill): use new capability path in crypto example#54
Merged
Conversation
Contributor
Author
|
此本本需要等 |
agentkey_crypto now dispatches by capability path (market/quotes, token/price, …) instead of provider-prefixed type names (cmc_quotes, token_price, …). Update the quickstart example to match — and use the nested params shape so callers see the canonical envelope. Background: docs/crypto-providerless-taxonomy.md on the server.
3dfb96a to
2cc8c90
Compare
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
agentkey_cryptonow dispatches by capability path (market/quotes,token/price, …) instead of provider-prefixed type names (cmc_quotes,token_price, …) after the server-side providerless rename. The quickstart snippet inSKILL.mdstill showed the oldcmc_quotesexample, which would 400 against the new server.This PR updates that one example and switches it to the canonical nested params envelope, which is the shape the catalog renders and the shape the server forwards verbatim to upstreams.
Pairs with chainbase-labs/AgentKey-Server#40 (the server rename). No version bump needed —
docs:prefix keeps release-please from cutting a release.Full migration table for callers:
AgentKey-Server/docs/crypto-providerless-taxonomy.md.Test plan
SKILL.md