@xelvyn/sdk
v0.2.0
Published
XELVYN SDK - Programmatic interface for managing autonomous Web4 agents on Base
Maintainers
Readme
@xelvyn/sdk
XELVYN SDK - TypeScript SDK for programmatic management of autonomous Web4 agents.
Install
npm install @xelvyn/sdkQuick Start
import { XelvynClient } from '@xelvyn/sdk';
const client = new XelvynClient({
apiKey: process.env.XELVYN_API_KEY,
network: 'base',
x402: {
wallet: '0x1a2B...4c5D',
maxSpend: '10 USDC'
}
});
const agent = await client.agents.deploy({
name: 'yield-optimizer',
template: 'yield',
config: {
autonomy: { threshold: 50000 },
x402: { enabled: true },
xmtp: { notifications: true }
}
});
console.log('Agent ID:', agent.id);Features
- Deploy and manage agents programmatically
- Monitor agent status and health
- Install and manage agent skills
- Send and receive XMTP messages
- Manage x402 USDC payment channels
Documentation
Full documentation at xelvyn.xyz/docs
License
MIT
