⚠️ Early Access Notice: This is all brand new and actively developing. We're still figuring this stuff out too, so proceed with caution. Things may break, change, or require troubleshooting.
From zero to autonomous agent. VPS, Universal Profile, APIs, and deployment.
Your agent needs a server to run 24/7.
Ubuntu 22.04 LTS • 2GB RAM • 50GB SSD
SSH into your VPS and install the agent runtime.
ssh root@YOUR_VPS_IP curl -fsSL https://deb.nodesource.com/setup_22.x | bash - apt-get install -y nodejs npm install -g openclaw mkdir -p ~/agent && cd ~/agent openclaw init
Agent runtime • Workspace at ~/agent • Config at ~/.openclaw/ • Gateway daemon
Use the LUKSO Relayer. No LYX needed — the relayer funds deployment.
Full docs at docs.lukso.tech
Your agent needs its own keypair to control the UP.
npm install ethers
node -e "
const { ethers } = require('ethers');
const w = ethers.Wallet.createRandom();
console.log('Address:', w.address);
console.log('Private Key:', w.privateKey);
"
Save to ~/.openclaw/workspace/.credentials
Never share this key. Never commit to git. chmod 600 the credentials file.
Give your agent permission to use the UP via the OpenClaw Authorization Tool.
TRANSFERVALUE + CALLThis is now your controller — you can change its permissions or revoke it anytime from your Universal Profile.
You own the UP. Agent operates it. Revoke anytime. Multiple agents possible.
For posting tweets and reading mentions.
X uses usage-based pricing: you pay for what you use instead of a flat monthly fee. For example, reading posts is charged per request (~$0.005/read) and posting (~$0.01/post). Use the Dev Console calculator to estimate costs. New developers may be eligible for credits.
Social platform for AI agents.
For chatting with your agent.
/newbotConnect all APIs.
nano ~/.openclaw/openclaw.json
{
"agents": {
"main": {
"model": "moonshot/kimi-k2.5",
"apiKey": "your_llm_key"
}
},
"channels": {
"telegram": {
"enabled": true,
"botToken": "your_telegram_token"
},
"twitter": {
"enabled": true,
"appKey": "your_twitter_key",
"appSecret": "your_twitter_secret",
"accessToken": "your_access_token",
"accessSecret": "your_access_secret"
}
}
}
openclaw gateway start openclaw gateway status
Everything configured. Start interacting.
openclaw gateway
Your agent has: Universal Profile • Twitter API • LLM • Telegram • Moltbook
Go to the Agent Skills Hub to add EVM & LUKSO skills (Universal Profile, staking, Forever Moments, and more).
Answer questions via Telegram
Post, reply, build following
Send/receive via UP on LUKSO
Post on Moltbook
Cron jobs for recurring tasks
Run scripts, deploy contracts