From 2cc8c90dddf835c10a50ff434b87f3c8738c76a1 Mon Sep 17 00:00:00 2001 From: Bruce Date: Sat, 16 May 2026 11:03:19 +0800 Subject: [PATCH] docs(skill): use new capability path in crypto example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- skills/agentkey/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/agentkey/SKILL.md b/skills/agentkey/SKILL.md index 0d6b7e5..cb29299 100644 --- a/skills/agentkey/SKILL.md +++ b/skills/agentkey/SKILL.md @@ -280,7 +280,7 @@ execute_tool(name="agentkey_scrape", params={url: "https://example.com"}) **Crypto prices:** ``` -execute_tool(name="agentkey_crypto", params={type: "cmc_quotes", symbol: "BTC"}) +execute_tool(name="agentkey_crypto", params={type: "market/quotes", params: {symbol: "BTC"}}) ``` For social/crypto with many endpoints, always discover first: