Bikin Agent WA
dalam 1 Menit

Self-service agent factory. Scan QR, pilih model + plugins + skills. Free tier forever.

Fitur

Agent yang mengerti bisnismu

Bukan chatbot biasa. AI Agent dengan persona, memory, dan integrasi langsung ke WhatsApp.

Instant Provisioning

Scan QR WA → agent live dalam detik.

🔌

Socket Runtime

Persistent connection seperti Baileys — auto reconnect.

🧩

MCP Plugins

WhatsApp, Sheets, Search, Image, Postgres.

🎯

Skills Creator

YAML/JSON skill definition. Deploy tanpa restart.

💾

Memory Engine

Per-user + per-session memory. RAM + Postgres/Redis.

🟢

Free Tier

1 agent, 1.000 msg/bulan, 5 skills, 1GB.

Buat Agent

Buat agent dalam 3 langkah

Config → Scan QR → Live.

Agent Configuration

Scan QR dengan WhatsApp

QR Preview
WhatsApp → Menu → Perangkat Tertaut → Tautkan Perangkat
Menghubungkan ke server...

Agent Live ✅

Agent aktif. Kirim pesan ke nomor WA lu.
Butuh Bantuan?
SDK
Referensi developer

Build agent dengan Node.js atau Python. Runtime: Baileys-style socket + MCP.

Install
Create
Skills
Memory
API
# Install CLI
$ npm install -g @ailham/agent-cli

# atau Python
$ pip install ailham-agent

# Initialize
$ ailham init my-agent
$ cd my-agent && cp .env.example .env
// agent.js
const { Agent } = require('@ailham/agent-sdk');

const agent = new Agent({
  name: 'budi-bot',
  model: 'hy3',
  transport: 'baileys'
});

agent.start();
# skills/qr_generator.yaml
name: qr-generator
triggers: ["buat qr"]
endpoint: https://api.qrserver.com/v1/create-qr-code

$ ailham skills deploy skills/qr_generator.yaml
// Memory API
const mem = agent.memory;

// Short-term session
await mem.set('last_order', { id: 'ORD-001', total: '150rb' });
const order = await mem.get('last_order');

// Long-term per-user
await mem.persist(ctx.user.id, 'preferences', { language: 'id', model: 'hy3' });
POST /api/wa-agent/create create agent
GET /api/wa-agent/:name/qr QR PNG
GET /api/wa-agent/:name/status live / offline
POST /api/wa-agent/skills create/update
GET /api/wa-agent/skills list
POST /api/wa-agent/memory/:uid set
GET /api/wa-agent/memory/:uid get
GET /api/wa-agent/plugins list