A comprehensive toolset for managing OpenBytes network operations through wallet authentication, API key orchestration, and on-chain financial workflows.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install openbytes
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install openbytes using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The OpenBytes Control Plane skill provides a robust framework for AI agents to interact with the OpenBytes network core infrastructure. It bridges the gap between decentralized wallet identity and centralized API gateway access, enabling seamless authentication via EIP-191 signatures and session management. By leveraging Openclaw Skills, developers can build agents that handle complex tasks like creating API keys, querying model lists, and monitoring usage metrics.
This skill is particularly valuable for teams building on the Base Sepolia network who require programmatically managed access to large language models. It ensures that the transition from a transient session to a persistent API key is handled securely, allowing agents to perform long-running tasks without constant user intervention. By standardizing the interaction with the gateway, Openclaw Skills ensures reliable model inference and account management across different developer environments.
To begin using this skill with Openclaw Skills, ensure you have a wallet and the gateway URL ready.
# Generate a new wallet if needed using Node.js
node -e "const { Wallet } = require('ethers'); const w = Wallet.createRandom(); console.log(w.address, w.privateKey);"
# Authenticate and receive a session token
curl -sS -X POST "https://gateway.openbytes.ai/v1/auth/wallet/verify" \
-H "Content-Type: application/json" \
-d '{
"wallet_address": "<YOUR_ADDRESS>",
"nonce": "random-nonce",
"signature": "<YOUR_SIGNATURE>"
}'
# Create a persistent API key
curl -sS -X POST "https://gateway.openbytes.ai/v1/consumer/api-keys" \
-H "Authorization: Bearer <SESSION_TOKEN>" \
-d '{"label": "agent-key"}'
The skill manages several key data entities to maintain the network state:
| Entity | Key Fields | Description |
|---|---|---|
| Session | login_token, expires_at |
Used for administrative tasks and key creation. |
| API Key | api_key, prefix, status |
The primary credential for model inference and usage tracking. |
| Balance | balance_usdc, total_spent |
Real-time financial data indexed from the Base Sepolia chain. |
| Parent Link | parent_wallet, child_wallet |
Relational data for delegated account management and top-ups. |
Loading
A high-performance CLI utility for one-click REST/GraphQL API testing, automated report generation, and smart mock data simulation.

A comprehensive automation skill for visualizing Tencent Cloud architectures and managing governance through risk assessments and compliance dashboards.

A comprehensive DeFi planning tool that generates optimized liquidity provision strategies and direct deep links for PancakeSwap across multiple blockchains.

A comprehensive financial data skill providing real-time market index details, K-line charts, and minute-level pricing data.

An automated research assistant that fetches, filters, and summarizes computer vision papers from arXiv based on specific user topics.

A comprehensive methodology and toolset for architecting, optimizing, and operating production-grade Retrieval-Augmented Generation systems.








































