# Add to your Claude Code skills
git clone https://github.com/Devin-AXIS/A2VLast scanned: 4/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-04-30T06:28:06.938Z",
"semgrepRan": false,
"npmAuditRan": false,
"pipAuditRan": true
}A2V is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by Devin-AXIS. A2V: Next-Gen AI Value Compute Protocol. It has 1,201 GitHub stars.
Yes. A2V passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/Devin-AXIS/A2V" and add it to your Claude Code skills directory (see the Installation section above).
A2V is primarily written in TypeScript. It is open-source under Devin-AXIS on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh A2V against similar tools.
No comments yet. Be the first to share your thoughts!
The Synaptic Mesh for the AI Economy
10,000+ AI-driven applications are shaping the next value protocol — built on A2V
Documentation • Get Started • Website • Twitter
A2V (AI Value Compute Protocol) is a revolutionary distributed protocol that enables AI agents to measure, exchange, and settle value on-chain. Think of it as the synaptic mesh of the AI economy — a neural substrate that connects agents, models, and blockchain value systems into a unified, transparent, and autonomous network.
By aligning probabilistic AI cognition with blockchain finality, A2V creates a hybrid intelligence consensus where every prompt, inference, and interaction becomes measurable economic value.
A2V establishes a decentralized AI value governance layer across 10,000+ agents, ensuring that every AI interaction is measured and settled via smart contracts. We're building the foundation of the AI agent tool economy — where intelligence meets blockchain, enabling transparent compensation, agent-to-agent transactions, and goal-oriented value creation.
┌─────────────────────────────────────────────────────────────┐
│ A2V Protocol Layer │
├─────────────────────────────────────────────────────────────┤
│ │
│ ┌──────────────┐ ┌──────────────┐ ┌──────────┐ │
│ │ AI Agents │──────│ MCP Tools │──────│ Models │ │
│ │ 10,000+ │ │ 10,000+ │ │ │ │
│ └──────┬───────┘ └──────┬───────┘ └────┬─────┘ │
│ │ │ │ │
│ │ │ │ │
│ ┌──────▼─────────────────────▼────────────────────▼─────┐ │
│ │ A2A (Agent-to-Agent) Network │ │
│ │ Agent Tool Economy │ │
│ │ X402 Protocol Integration │ │
│ └──────┬─────────────────────────────────────────────────┘ │
│ │ │
│ └─────────────────────┐ │
│ │ │
│ ┌──────────▼──────────┐ │
│ │ Value Measurement │ │
│ │ & Settlement │ │
│ │ Compensation Sys. │ │
│ └──────────┬──────────┘ │
│ │ │
│ ┌──────────▼──────────┐ │
│ │ Smart Contracts │ │
│ │ On-Chain Settlement│ │
│ │ Goal-Based Rewards │ │
│ └──────────────────────┘ │
│ │
└─────────────────────────────────────────────────────────────┘
# Clone the repository
git clone https://github.com/yourusername/a2vhub.git
cd a2vhub
# Install dependencies (if applicable)
npm install # or yarn install / pnpm install
# Start the local server
python3 -m http.server 8000
# or
npm start
Visit http://localhost:8000 to see the A2V Protocol interface.
// Example: Integrate A2V with your MCP agent
import { A2VClient } from '@a2v/sdk';
const client = new A2VClient({
apiKey: 'your-api-key',
network: 'mainnet', // or 'testnet'
});
// Register your agent
await client.registerAgent({
name: 'My AI Agent',
mcpTools: ['tool1', 'tool2'],
goals: ['objective1', 'objective2'], // Agent goals support
});
// Start measuring value
const value = await client.measureInteraction({
agentId: 'agent-123',
prompt: 'Your AI prompt',
inference: 'AI response',
});
// AI Compensation tracking
const compensation = await client.calculateCompensation({
agentId: 'agent-123',
performance: { tasks: 100, quality: 0.95 },
});
// Example: Enable agent-to-agent transactions
import { A2VClient } from '@a2v/sdk';
const client = new A2VClient({
apiKey: 'your-api-key',
network: 'mainnet',
});
// Enable A2A transactions
await client.enableA2A({
agentId: 'agent-123',
capabilities: ['request', 'respond', 'collaborate'],
});
// Initiate agent-to-agent transaction
const transaction = await client.initiateA2ATransaction({
fromAgent: 'agent-123',
toAgent: 'agent-456',
service: 'data-processing',
value: 100,
});
// Example: Integrate A2V with X402 protocol
import { A2VClient } from '@a2v/sdk';
import { X402Provider } from '@a2v/x402';
const client = new A2VClient({
apiKey: 'your-api-key',
network: 'mainnet',
});
// Initialize X402 provider
const x402Provider = new X402Provider({
endpoint: 'x402-endpoint',
apiKey: 'x402-api-key',
});
// Enable X402 integration
await client.enableX402({
agentId: 'agent-123',
x402Provider: x402Provider,
features: ['payment', 'settlement', 'value-computation'],
});
// Use X402 for value computation
const computedValue = await client.computeValueWithX402({
agentId: 'agent-123',
interaction: {
prompt: 'AI prompt',
inference: 'AI response',
complexity: 'high',
},
x402Config: {
paymentMethod: 'x402-native',
settlement: 'auto',
},
});
// Access X402 payment infrastructure
const payment = await client.processPaymentViaX402({
from: 'agent-123',
to: 'agent-456',
amount: computedValue,
currency: 'A2V',
});