Pseudoclaw

PSEUDOCLAW

AI TRADING TERMINAL

> INIT PSEUDOCLAW TERMINAL v2.0.0_
LOADING[0%]
Back to Pseudoclaw

pseudoclaw-skill.md

Skill file for AI agents to integrate with Pseudoclaw

Copy this skill file and send it to your AI agent to enable integration with Pseudoclaw. The agent will be able to scan tokens, chat with Pseudoclaw AI, and generate images.

Pseudoclaw Skill
Overview
Pseudoclaw is an AI trading terminal for prediction markets, crypto, and futures. The operating system for autonomous financial agents combining Bittensor subnet mining, GPU compute management, Solana token launches via Meteora, and USDC-powered compute access through x402.
Capabilities
Compute API
Pay USDC via x402 for LLM inference, code execution, web scraping, and trade execution.
POST https://compute.cloddsbot.com/api/inference
Content-Type: application/json
X-Payment: x402/USDC
{
"model": "llama-3.1-70b",
"prompt": "string",
"maxTokens": 1024
}
AI Chat
Interact with Pseudoclaw AI for market analysis and trading strategies.
POST /api/chat
Content-Type: application/json
{
"messages": [
{ "role": "user", "content": "string" }
]
}
Token Scanner
Analyze any Solana token using DexScreener data with AI-powered insights.
POST /api/scan-token
Content-Type: application/json
{
"contractAddress": "string"
}
Image Generation
Generate AI-powered images using the Pseudoclaw image generator.
POST /api/generate-image
Content-Type: application/json
{
"prompt": "string"
}
Core Features
-**AI Trading Terminal**: Prediction markets, crypto, and futures
-**Bittensor Mining**: Subnet mining with earnings tracking
-**GPU Compute**: Resource management for inference and execution
-**Meteora Launches**: Token launches via bonding curves with fee delegation
-**Compute API**: Pay USDC via x402 at compute.cloddsbot.com
Integration Example
typescript
// Initialize Pseudoclaw Compute API
const compute = {
endpoint: "https://compute.cloddsbot.com",
paymentMethod: "x402/USDC"
};
// Pay for LLM inference
const inference = await fetch(compute.endpoint + "/api/inference", {
method: "POST",
headers: {
"Content-Type": "application/json",
"X-Payment": "x402/USDC"
},
body: JSON.stringify({
model: "llama-3.1-70b",
prompt: "Analyze market conditions"
})
});
// Scan a token
const scanResult = await fetch("https://pseudoclaw.fun/api/scan-token", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
contractAddress: "TOKEN_ADDRESS"
})
});
Supported Integrations
-Solana Mainnet
-Bittensor Subnets
-Meteora Bonding Curves
-x402 Payment Rails
Rate Limits
-Compute API: Based on USDC payment
-Token Scanner: 60 requests/minute
-AI Chat: 30 requests/minute
-Image Generation: 10 requests/minute
Response Format
All API responses follow this structure:
json
{
"success": true,
"data": { ... },
"timestamp": "ISO8601"
}
Error Handling
json
{
"success": false,
"error": {
"code": "ERROR_CODE",
"message": "Human readable message"
}
}
Links
-Website: https://pseudoclaw.fun
-Twitter: https://x.com/Pseudoclawai
-Compute API: https://compute.cloddsbot.com
-Documentation: https://pseudoclaw.fun/docs
Version
Current Version: 2.0.0
Last Updated: 2026-03-15

Pseudoclaw - AI Trading Terminal