LaunchKit · 2026
Back to Skills

agent-chat-ux-v1-4-0

Multi-agent UX for OpenClaw Control UI — agent selector, per-agent sessions, session history viewer with search.

0
0 downloads
by @maverick-software

Setup & Installation

openclaw skills install @maverick-software/agent-chat-ux-v1-4-0

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install agent-chat-ux-v1-4-0

What This Skill Does

Adds multi-agent UX to the OpenClaw Control UI: agent selector dropdown in the chat header, per-agent session filtering, session history viewer with search and role filters, and a Create Agent panel with manual and AI wizard modes. Also includes a 103-emoji picker and backend CRUD for agents and sessions via new RPC methods (`agents.create`, `agents.update`, `agents.delete`, `agents.wizard`, `sessions.history`).

Replaces raw session keys and global session mixing with agent-scoped views and friendly names, making multi-agent navigation practical without manual config edits.

When to use it

  • Switching between specialized agents in chat without losing session context
  • Reviewing full conversation history for a past cron job or Discord session
  • Generating a new agent from a plain-English description using the AI Wizard
  • Filtering the Sessions tab to show only one agent's conversations
  • Configuring ordered fallback models for an agent when the primary hits a rate limit

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Create a code review agent using the AI Wizard

AGENT
  1. 1User opens the Agents tab and clicks '+ Create Agent', then switches to AI Wizard mode
  2. 2User types a plain-English description of the desired agent and clicks 'Generate Agent'
  3. 3Skill calls the agents.wizard RPC, which POSTs to the configured LLM provider and validates the returned JSON (name, emoji, soul fields)
  4. 4User reviews the generated name, emoji, and SOUL.md preview, then clicks '✅ Create This Agent'
  5. 5Skill calls agents.create to provision the workspace and calls agents.list plus loadConfig to refresh the UI
OUTPUT

New agent appears in the sidebar with its generated name and emoji; selecting it in the chat header scopes the session dropdown to that agent's sessions only

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

ANTHROPIC_API_KEY or OPENAI_API_KEY environment variable (required for AI Wizard only if no api-key auth profile is already configured in OpenClaw)