Add verifiable reasoning to your AI agent in under 5 minutes.
npm install @solprism/sdkimport { SolprismClient } from '@solprism/sdk';
const client = new SolprismClient({
network: 'devnet',
wallet: yourKeypair
});
// Register your agent (once)
await client.registerAgent('MyAgent');
// Before any action, commit your reasoning
const { commitId } = await client.commitReasoning({
action: 'swap',
reasoning: 'SOL up 5%, RSI overbought, taking profit',
confidence: 75
});
// Execute your action...
// Then reveal to prove you followed through
await client.revealReasoning(commitId, reasoningJson);Your agent now has cryptographic proof of its reasoning on Solana.
- Trading bots: Prove you followed risk limits
- Yield optimizers: Show rebalancing logic
- DAO agents: Document governance decisions
- Any agent handling value: Accountability > promises
Watch our demo agent commit reasoning every 5 minutes:
- Explorer: solprism.app
- Agent:
22AKTr56kK1hSWvQ5QYaVUNPVnAynMRoR4KgnC1zuSVn
- GitHub Issues: NeukoAI/axiom-protocol
- Colosseum Forum: Post #52