How to Use KiloClaw (OpenClaw alternative) ?

Learn how to use KiloClaw with this step-by-step tutorial. Deploy your AI assistant in 60 seconds, connect platforms, and start automating workflows

Ashley Innocent

Ashley Innocent

26 February 2026

How to Use KiloClaw (OpenClaw alternative) ?

TL;DR

This guide walks you through deploying and using KiloClaw in 6 simple steps: sign up at app.kilo.ai/claw, choose your deployment type, connect chat platforms (Telegram, Discord, Slack, etc.), select your AI model, configure memory settings, and start using your AI assistant. The entire process takes under 60 seconds, and new users get 7 days of free compute.

Introduction

You've heard about KiloClaw, the hosted version of OpenClaw that's taken the AI agent world by storm. With 230,000+ GitHub stars and the ability to connect to 50+ platforms, it's never been easier to deploy a personal AI assistant.

In this tutorial, we'll walk through the entire process of setting up KiloClaw from scratch. By the end, you'll have a fully functional AI assistant connected to your preferred chat platforms, ready to help with automation, research, and productivity tasks.

💡
As you build AI agent workflows, Apidog is invaluable for testing and debugging the API calls your assistant makes. Save time debugging with Apidog's unified request inspector.
button

Prerequisites

Before you begin, ensure you have:

RequirementDescription
Kilo AccountSign up at app.kilo.ai (free)
Chat Platform AccountAt least one of: Telegram, Discord, Slack, etc.
AI API Key (optional)Anthropic, OpenAI, or Google key if bringing your own
Web BrowserChrome, Firefox, Safari, or Edge

That's it. No server, no Docker, no command line required.

Step 1: Create Your KiloClaw Account

Open your browser and visit https://app.kilo.ai/claw

You'll see the KiloClaw landing page with the option to sign in or create an account.

Sign Up Process

  1. Click "Get Started" or "Sign Up"
  2. Choose your sign-up method:
Sign Up Process to KiloClaw

Complete the verification (email or OAuth)

Account Setup

After signing up, you'll land on the Kilo dashboard. If you're new to Kilo:

  1. Enter your name or display name
  2. (Optional) Add a profile photo
  3. Accept terms of service

You're now ready to create your first KiloClaw instance.

Step 2: Choose Your Deployment Type

KiloClaw offers three deployment options to match your experience level:

The fastest path to a running assistant:

✓ Pre-configured defaults
✓ All popular platforms enabled
✓ Default model selected
✓ Standard memory settings

Time to deploy: ~30 seconds

Option B: Custom Deployment

For users who know what they want:

  1. Platform Selection: Choose specific platforms to connect
  2. Model Selection: Pick your preferred AI model(s)
  3. Memory Configuration: Set conversation history limits
  4. Capability Tuning: Enable/disable specific AgentSkills

Time to deploy: ~60 seconds

Option C: Import Configuration

For existing OpenClaw users:

  1. Export your config from self-hosted OpenClaw
  2. Upload the configuration file
  3. KiloClaw maps settings to hosted environment

Time to deploy: ~45 seconds

Recommendation: Start with Quick Start to see KiloClaw in action, then customize later.

Step 3: Connect Chat Platforms

This is where KiloClaw shines, connecting your AI assistant to the platforms you already use.

Supported Platforms

PlatformAuthenticationSetup Time
TelegramBot token2 min
DiscordBot token + server invite3 min
SlackOAuth installation3 min
WhatsAppQR code pairing2 min
Microsoft TeamsOAuth + admin consent5 min
SignalPhone number + verification2 min
MatrixAccess token3 min

Platform Setup Walkthrough

  1. In KiloClaw dashboard, click "Add Platform""Telegram"
  2. Open Telegram and message @BotFather
  3. Create a new bot: /newbot
  4. Copy the bot token
  5. Paste token into KiloClaw
  6. Click "Connect"
  7. Start chatting with your bot!

Telegram bot token format: 1234567890:ABCdefGHIjklMNOpqrsTUVwxyz

Discord

  1. Go to Discord Developer Portal
  2. Create a new application
  3. Add a bot to your application
  4. Copy the bot token
  5. In KiloClaw, paste token and specify server
  6. Set required permissions:
  1. Generate invite link and add bot to server

Slack

  1. Create a Slack app at api.slack.com
  2. Enable Bot Token Scopes:
  1. Install app to your workspace
  2. Copy Bot User OAuth Token
  3. Paste into KiloClaw

Connecting Multiple Platforms

KiloClaw supports connecting to multiple platforms simultaneously. Your AI assistant will be accessible across all connected channels:

Example setup:
├── Telegram: @MyAIAssistant
├── Discord: #ai-assistant in MyServer
├── Slack: @ai-assistant in workspace
└── WhatsApp: +1-555-AI-HELP

All platforms share the same memory and context, magic!

Step 4: Select Your AI Model

KiloClaw gives you flexibility in choosing how your assistant thinks.

Option A: Kilo Gateway Models

Access 500+ models through Kilo's unified gateway:

Model CategoryExamples Best For
ReasoningClaude 4 Opus, GPT-4.5Complex problem-solving
BalancedClaude 3.5 Sonnet, GPT-4oGeneral tasks
FastGPT-4o-mini, Claude 3 HaikuQuick responses
CodingClaude 4.5 Code, CodexDevelopment tasks
VisionClaude 4 Vision, GPT-4VImage understanding

Pricing: Pay-per-token at Kilo Gateway rates (no markup)

Option B: Bring Your Own Key

Use existing API keys:

  1. Click "Bring Your Own Key"
  2. Select provider: Anthropic, OpenAI, or Google
  3. Paste your API key
  4. Choose model(s) from that provider
  5. Save

Your API key is securely stored and proxied through Kilo's infrastructure, it never touches your local environment.

Model Selection Tips

Step 5: Configure Memory and Preferences

One of KiloClaw's most powerful features is persistent memory, your assistant remembers context across sessions.

Memory Settings

SettingDescriptionDefault
Conversation HistoryHow many messages to retain100
User PreferencesRemember user settingsEnabled
Context WindowHow much context per requestProvider limit
Memory FormatMarkdown files for persistenceEnabled

Custom Instructions

Set system prompts that define your assistant's behavior:

You are a helpful AI assistant specialized in:
- Software development and code review
- Research and fact-finding
- Drafting emails and documents

Be concise, accurate, and proactive. When unsure, ask clarifying questions.

Privacy Controls

Configure what your assistant can access:

Step 6: Deploy and Start Using

Launch Your Instance

With all settings configured:

  1. Click "Deploy KiloClaw"
  2. Wait for provisioning (~30 seconds)
  3. See "Instance Running" status
  4. Start chatting!

First Conversation

Send a message on any connected platform:

You: Hello! What can you help me with?

KiloClaw: Hi! I'm your personal AI assistant. I can help with:
- Research and information gathering
- Drafting emails, documents, and code
- Scheduling and reminders
- Automation across your connected apps
- And much more!

What would you like help with today?

Using Your KiloClaw AI Assistant

Now that it's running, here are the ways you can interact:

Basic Commands

CommandDescription
helpShow available commands
statusDisplay current configuration
memoryShow what the assistant remembers about you
resetClear conversation history

Task Examples

Research Task

You: Can you research the latest developments in AI agents and summarize the key trends?

KiloClaw: [Conducts web research, synthesizes findings, presents summary]

Code Assistance

You: Write a Python function to fetch data from a REST API with error handling.

KiloClaw: [Provides well-commented code with proper error handling]

Automation

You: Remind me to review pull requests every day at 9 AM.

KiloClaw: [Sets up scheduled reminder task]

Voice Interaction

If enabled, talk to your assistant:

Advanced Configuration

AgentSkills (100+ Pre-built Capabilities)

KiloClaw includes pre-configured skills for common tasks:

CategorySkills
DevelopmentCode review, debugging, documentation
ProductivityCalendar, email, note-taking
ResearchWeb search, data extraction
AutomationScheduled tasks, webhooks
CommunicationDrafting, translation, summarization

Enable/disable skills in dashboard settings.

Custom Tools

For advanced users, add custom capabilities:

  1. Create tool definition in JSON schema format
  2. Implement tool logic (Python, JavaScript)
  3. Register tool in KiloClaw dashboard
  4. Start using in conversations

Webhooks

Connect KiloClaw to external services:

{
  "trigger": "new_lead_form",
  "action": "notify_slack",
  "payload": "{{form_data}}"
}

Scheduling Automated Tasks

KiloClaw supports cron-style scheduling for recurring tasks.

Setting Up a Scheduled Task

  1. Go to "Automation""Scheduled Tasks"
  2. Click "Add Task"
  3. Configure:
FieldExample
NameDaily Standup Summary
Schedule0 9 * * 1-5 (Weekdays 9 AM)
ActionRun defined workflow
NotificationPost to Slack #standup

Common Scheduled Automations

Cron Expression Reference

┌───────────── minute (0-59)
│ ┌───────────── hour (0-23)
│ │ ┌───────────── day of month (1-31)
│ │ │ ┌───────────── month (1-12)
│ │ │ │ ┌───────────── day of week (0-6)
│ │ │ │ │
* * * * *

Managing Your Instance

Dashboard Controls

From the KiloClaw dashboard:

ActionDescription
Start/StopPause or resume your instance
RestartForce restart (fixes most issues)
View LogsSee activity and error logs
UpdateApply latest KiloClaw version
DeletePermanently remove instance

Monitoring Usage

Track your KiloClaw usage:

Scaling Up

For higher usage:

Troubleshooting Common Issues

Bot Not Responding

Symptoms: Message sent but no reply

Solutions:

  1. Check platform connection status in dashboard
  2. Verify bot has necessary permissions
  3. Restart the instance
  4. Check logs for errors

Rate Limiting

Symptoms: "Too many requests" error

Solutions:

  1. Wait for rate limit window to reset
  2. Switch to a faster model
  3. Reduce message frequency

Memory Issues

Symptoms: Assistant forgets context / repeats itself

Solutions:

  1. Increase memory settings in configuration
  2. Manually remind assistant of context
  3. Check available context window for your model

Platform Connection Errors

Symptoms: "Failed to connect" for platform

Solutions:

  1. Verify authentication credentials
  2. Check platform API status
  3. Regenerate tokens/keys
  4. Reconnect platform in dashboard

Best Practices

Security

  1. Use least privilege: Only enable platforms you need
  2. Rotate keys regularly: Update API keys periodically
  3. Monitor activity: Review logs for suspicious behavior
  4. Limit capabilities: Disable unused AgentSkills

Performance

  1. Choose appropriate models: Use fast models for simple tasks
  2. Set reasonable limits: Don't retain unlimited history
  3. Schedule intelligently: Run heavy tasks during off-peak

User Experience

  1. Set clear instructions: Define your assistant's role clearly
  2. Test thoroughly: Verify all platforms work as expected
  3. Gather feedback: Ask users what improvements they want
  4. Iterate: Start simple, add complexity as needed

Conclusion

KiloClaw makes deploying a powerful personal AI assistant accessible to everyone. In under 60 seconds, you can have an AI agent connected to 50+ platforms, powered by 500+ models, ready to handle automation, research, and productivity tasks.

The 7-day free trial gives you plenty of time to explore its capabilities. Start with Quick Start deployment, then customize as you learn what works best for your needs.

Next Step: As your KiloClaw assistant grows more sophisticated, you'll want to monitor and debug the API calls it makes. Apidog provides the perfect companion tooling, inspect requests, validate responses, and optimize performance.
button

FAQ

How long does KiloClaw take to set up?

The entire process takes under 60 seconds with Quick Start deployment. Adding platforms takes 2-5 minutes each depending on authentication requirements.

Do I need coding skills to use KiloClaw?

No. KiloClaw is designed for non-technical users. The only coding required is for advanced custom tools, which is optional.

Can I use KiloClaw for free?

Yes. New users get 7 days of free compute. After that, you pay for compute time and AI tokens at Kilo Gateway rates with zero markup.

How do I connect multiple chat platforms?

In the KiloClaw dashboard, go to "Platforms" and add each platform one by one. Each platform has its own authentication process (bot tokens, OAuth, etc.).

Can I use my own API keys?

Yes. KiloClaw supports bringing your own keys from Anthropic, OpenAI, Google, or any OpenAI-compatible API.

What happens if my instance crashes?

KiloClaw automatically restarts crashed instances. You can also manually restart from the dashboard if needed.

Can I schedule automated tasks?

Yes. KiloClaw supports cron-style scheduling for automated workflows that run on recurring schedules.

How do I delete my KiloClaw instance?

Go to Dashboard → Settings → Delete Instance. This permanently removes your instance and all associated data.

Explore more

How to Run OpenClaw with Ollama ?

How to Run OpenClaw with Ollama ?

Learn to run OpenClaw with Ollama for a free, private AI assistant. Step-by-step guide with Qwen, Llama, and Mistral models.

26 February 2026

10 OpenClaw Automation Tasks That Save Hours

10 OpenClaw Automation Tasks That Save Hours

Discover 10 powerful automation tasks with OpenClaw. Automate emails, scheduling, file management and more with your AI assistant.

26 February 2026

How to Run Qwen3.5 with OpenClaw for Free Using Ollama?

How to Run Qwen3.5 with OpenClaw for Free Using Ollama?

Run qwen3.5 with OpenClaw for free using Ollama on your hardware. You build a local multimodal AI agent and test every endpoint with Apidog.

25 February 2026

Practice API Design-first in Apidog

Discover an easier way to build and use APIs