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

VariablePurposeFallback
SUPABASE_URLSupabase project URLInMemory store
SUPABASE_ANON_KEYSupabase anon keyAuth skipped (dev)
SUPABASE_SERVICE_ROLE_KEYService role keyUses anon key
PORTServer portDefault 3900
Tip: You can start immediately in InMemory mode without any environment variables. Data resets on server restart.

2. Page Structure

PageURLDescription
Landing/Service introduction
Onboarding/onboarding/Workspace creation wizard
Console/console/Main dashboard (all features)
Skills/console/skills.htmlSkill catalog (standalone view)
Memory/console/memory.htmlMemory search/view (standalone)

3. Quick Start

Step 1: Onboarding

  1. Go to /onboarding/
  2. Enter workspace name
  3. Select plan (Basic / Premium)
  4. 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

ConnectorFunction
GmailRead/send email (OAuth)
Google CalendarView/create events
BrowserWeb browsing (Puppeteer)
CronScheduled job registration
TelegramTelegram bot integration
WebhookExternal 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:

MenuFunction
WorkspacesAll workspaces list/detail
Connector HealthCross-workspace connector status
Runtime HealthAll runtime health summary
Usage by PlanPlan-level usage stats
GrowthMemory/artifact growth trends
Skill ReviewApprove/reject skills
ReadinessLaunch checklist
InstancesRemote 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

Docker: NotClaw includes a Dockerfile for container-based deployments on any cloud provider.