NotClaw User Manual
OpenClaw AI 에이전트를 위한 관리형 런타임 콘솔 가이드
1. Getting Started
NotClaw는 OpenClaw 기반 AI 에이전트를 관리하는 콘솔 플랫폼입니다. 워크스페이스 생성, 런타임 관리, 메모리/스킬/커넥터 운영까지 하나의 대시보드에서 처리합니다.
# Install dependencies
npm install
# Development mode (hot reload)
npm run dev
# Production build + start
npm run build && npm start
Server runs at http://localhost:3900
Environment Variables
| Variable | Purpose | Fallback |
|---|---|---|
SUPABASE_URL | Supabase project URL | InMemory store |
SUPABASE_ANON_KEY | Supabase anon key | Auth skipped (dev) |
SUPABASE_SERVICE_ROLE_KEY | Service role key | Uses anon key |
PORT | Server port | Default 3900 |
2. Page Structure
| Page | URL | Description |
|---|---|---|
| Landing | / | Service introduction |
| Onboarding | /onboarding/ | Workspace creation wizard |
| Console | /console/ | Main dashboard (all features) |
| Skills | /console/skills.html | Skill catalog (standalone view) |
| Memory | /console/memory.html | Memory search/view (standalone) |
3. Quick Start
Step 1: Onboarding
- Go to
/onboarding/ - Enter workspace name
- Select plan (Basic / Premium)
- Click "Create Workspace"
Step 2: Console Dashboard
Navigate to /console/ and select your workspace from the left sidebar.
4. Console Features
Dashboard
Workspace overview showing runtime status, memory/artifact counts, and connector status. Quick actions: Start, Stop, Restart runtime.
Runtime
Monitor your AI agent's runtime state machine: Created → Provisioning → Running → Stopped → Failed. Heartbeat-based health checks with automatic recovery actions (restart / retry / reprovision).
Chat
Real-time chat with your agent. Session-based conversations with auto-saved memory per session.
Memory
Four memory types: session, episodic, semantic, and artifact. Features: text search, pin/unpin important memories, create/delete entries.
Skills
Browse and install skills from the catalog. Policy options: auto_install, manual_review, locked. Version management and permission inspection.
Connectors
| Connector | Function |
|---|---|
| Gmail | Read/send email (OAuth) |
| Google Calendar | View/create events |
| Browser | Web browsing (Puppeteer) |
| Cron | Scheduled job registration |
| Telegram | Telegram bot integration |
| Webhook | External HTTP integration |
Toggle connectors ON/OFF. Configure credentials and OAuth state via detail modal.
Settings
Workspace rename, plan upgrade (Basic → Premium), runtime config (browser_enabled, cron_enabled), and Enterprise onboarding request.
5. Admin (System)
Admin features available under the "SYSTEM" section in the sidebar:
| Menu | Function |
|---|---|
| Workspaces | All workspaces list/detail |
| Connector Health | Cross-workspace connector status |
| Runtime Health | All runtime health summary |
| Usage by Plan | Plan-level usage stats |
| Growth | Memory/artifact growth trends |
| Skill Review | Approve/reject skills |
| Readiness | Launch checklist |
| Instances | Remote OpenClaw instance management |
6. Deployment
Railway (Current Setup)
# Build + commit + push
npm run build
git add -A && git commit -m "your message"
git push origin main
# Railway deploy
railway up --detach
Production URL: https://visionclaw-production.up.railway.app