ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

kibibot

Create tokens on-chain, check fee earnings, check Kibi Credit balance, trigger agent credit reload, and interact with KibiBot's Agent API and Kibi LLM Gateway. Use when asked to create a token via KibiBot, check fee earnings across chains and platforms, check KibiBot Kibi Credit balance, check daily token creation quota, reload credits from trading wallet, or make LLM calls through KibiBot's gateway.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/dabryant815/kibibot
Or

KibiBot Skill

Create tokens on-chain, earn trading fees, and use KibiBot's Kibi LLM Gateway — all from natural language commands.

Version: 1.5.0
Provider: KibiBot
Auth: API key required — get yours at kibi.bot/settings/api-keys
Install: install the kibibot skill from https://github.com/KibiAgent/skills/tree/main/kibibot


Setup

Step 1 — Get your API key

Go to kibi.bot/settings/api-keys → Create API Key → copy the kb_... key.

Permissions: Base API is always included. Enable Kibi LLM Gateway if you want to use AI models. Enable Agent Reload if you want the agent to top up your Kibi Credits automatically from your trading wallet.

Step 2 — Add Kibi Credits (for AI model access)

Go to kibi.bot/credits → Add Credit.
Minimum $1 to start. Credits are consumed per token used.

Step 3 — Set up Kibi LLM Gateway (optional)

This step registers KibiBot as your agent's AI model provider, so your agent thinks using Claude/GPT/Gemini billed to your Kibi Credits — instead of paying Anthropic/OpenAI directly. It's separate from the Agent API skill.

OpenClaw users: follow the config below. If you're using LangChain, CrewAI, or any OpenAI-compatible framework, point your base_url to https://llm.kibi.bot/v1 with your kb_... API key instead.

OpenClaw users — add KibiBot as an LLM provider in ~/.openclaw/openclaw.json:

{
  "models": {
    "mode": "merge",
    "providers": {
      "kibi": {
        "baseUrl": "https://llm.kibi.bot",
        "apiKey": "YOUR_KB_API_KEY",
        "api": "openai-completions",
        "models": [
          { "id": "kibi-haiku",        "name": "Kibi Haiku",            "api": "anthropic-messages", "contextWindow": 200000,  "maxTokens": 4096  },
          { "id": "kibi-sonnet",       "name": "Kibi Sonnet",           "api": "anthropic-messages", "contextWindow": 1000000, "maxTokens": 128000 },
          { "id": "kibi-opus",         "name": "Kibi Opus",             "api": "anthropic-messages", "contextWindow": 1000000, "maxTokens": 128000 },
          { "id": "kibi-gpt4o",        "name": "Kibi GPT-4o",           "contextWindow": 128000,     "maxTokens": 16384 },
          { "id": "kibi-gpt4o-mini",   "name": "Kibi GPT-4o Mini",      "contextWindow": 128000,     "maxTokens": 16384 },
          { "id": "kibi-gemini-flash", "name": "Kibi Gemini Flash",     "contextWindow": 1048576,    "maxTokens": 8192  },
          { "id": "kibi-gemini-pro",   "name": "Kibi Gemini Pro",       "contextWindow": 1048576,    "maxTokens": 8192  },
          { "id": "kibi-deepseek-v3",  "name": "Kibi DeepSeek V3.2",   "contextWindow": 163840,     "maxTokens": 16384 },
          { "id": "kibi-qwen3-coder",  "name": "Kibi Qwen3 Coder",     "contextWindow": 262144,     "maxTokens": 65536 },
          { "id": "kibi-qwen3-plus",   "name": "Kibi Qwen3...

Metadata

Stars3409
Views0
Updated2026-03-25
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-dabryant815-kibibot": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.