@cryptyx/agentkit-tools
v0.1.1
Published
Coinbase AgentKit ActionProvider for the CRYPTYX x402 API. Ships 15 institutional-grade crypto analytics tools directly into any AgentKit agent — signals, factor scores, walk-forward-validated triggers with Sortino/MDD/profit factor, natural-language quer
Maintainers
Readme
@cryptyx/agentkit-tools
Coinbase AgentKit ActionProvider for the CRYPTYX x402 API. Bring 15 institutional-grade crypto analytics actions into any AgentKit agent — signals, factor scores, walk-forward-validated triggers, natural-language query. Payments settle in USDC on Base via x402.
npm install @cryptyx/agentkit-tools @cryptyx/x402-client @cryptyx/tool-schemas @coinbase/agentkitQuickstart
import { AgentKit, CdpWalletProvider } from '@coinbase/agentkit';
import { Cryptyx } from '@cryptyx/x402-client';
import { cryptyxActionProvider } from '@cryptyx/agentkit-tools';
// AgentKit's own wallet provider — one wallet powers both execution AND
// CRYPTYX x402 payments
const walletProvider = await CdpWalletProvider.configureWithWallet({
apiKeyName: process.env.CDP_API_KEY_NAME!,
apiKeyPrivateKey: process.env.CDP_API_KEY_PRIVATE_KEY!,
networkId: 'base-mainnet',
});
const cx = new Cryptyx({
wallet: walletProvider.getViemWalletClient(),
network: 'base',
maxSpend: 5.0,
});
const agentkit = await AgentKit.from({
walletProvider,
actionProviders: [cryptyxActionProvider(cx)],
});
// AgentKit agent now has 15 CRYPTYX actions available alongside its
// native execution primitives (send_transaction, get_balance, etc).What ships
15 tools covering the canonical agent workflow — grounding, signal discovery, per-asset drilldown, institutional trigger evaluation with full evidence packets, natural-language query. See @cryptyx/tool-schemas for the full tool catalog.
Why AgentKit + CRYPTYX
AgentKit gives your agent execution rails: sign transactions, send USDC, place orders on Base. CRYPTYX gives it the intelligence layer: institutional-grade conviction on 200+ assets with walk-forward-validated evidence.
Native flow:
CRYPTYX action fires → agent gets conviction envelope
↓
Agent decides based on Sharpe / MDD / regime context
↓
AgentKit action fires → transaction settled on BaseSame wallet, same chain, one integrated agent.
License
MIT.
