openclaw-nerve

Real-time web cockpit for OpenClaw: voice conversations, agent automated kanban board, workspace/file control, sub-agent sessions, inline charts, and usage visibility.

864
Stars
145
Forks
TypeScript
Language
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/daggerhashimoto/openclaw-nerve

Getting Started

Guides for using skills like openclaw-nerve.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

Nerve

Nerve

The cockpit OpenClaw deserves.

OpenClaw is powerful. Nerve is the interface that makes people say “oh, now I get it."

Star Nerve on GitHub MIT License Discord

curl -fsSL https://raw.githubusercontent.com/daggerhashimoto/openclaw-nerve/master/install.sh | bash

Run the installer, live in 60 seconds

Mobile Screenshots

Nerve screenshot 1Nerve screenshot 2Nerve screenshot 3

Why Nerve exists

Chat is great for talking to agents. It is not enough for operating them.

The moment you care about visibility, control and coordination over your agents, the thread gets too small. You want the workspace, sessions, taskboard, editor, usage, and agent context in one place.

Nerve is that place.

Why it feels different

✨ Fleet control, not just chat

Run multiple agents from one place. Each agent can have its own workspace, subagents, memory, identity, soul, and skills, while Nerve gives you a single control plane to switch context, inspect state, and operate the whole fleet.

✨ Voice that feels built in

Push-to-talk, wake word flows, explicit language selection, local Whisper transcription, multilingual stop and cancel phrases, and multiple TTS providers. Voice is part of the product, not an afterthought.

✨ Full agent operating context

Each agent can have its own workspace, memory, identity, soul, and skills. Nerve lets you inspect, edit, and manage that context live, without guessing what an agent knows, where it works, or how it is configured.

✨ A real operating layer

Crons, session trees, kanban workflows, review loops, proposal inboxes, and model overrides. Nerve gives agent work an operating surface instead of leaving it trapped inside chat history.

✨ Rich live output

Charts, diffs, previews, syntax-highlighted code, structured tool rendering, and streaming UI that makes agent responses easier to inspect.

What you can do with it
  • Talk to your agent by voice and hear it answer back naturally
  • Browse and edit the workspace live while the conversation is still happening
  • Watch cron runs as separate sessions instead of treating automation like a black box
  • Delegate work onto a kanban board and review what came back
  • Ask for a chart and get a real chart, not a code block pretending to be one
  • Track token usage, costs, and context pressure while long tasks run
  • Inspect subagent activity without losing the main thread
  • Switch between per-agent workspaces and memory without losing context
  • Inspect each agent’s identity, soul, and skills from the UI
  • Delegate subagent work inside a larger agent fleet instead of treating everything as one thread

Capability snapshot

AreaHighlights
Agent fleetRun multiple agents from one control plane, each with its own workspace, subagents, memory, identity, soul, and skills
InteractionStreaming chat, markdown, syntax highlighting, diff views, image paste, file previews, voice input, TTS, live transcription preview
WorkspacePer-agent file browser, tabbed editor, memory editing, config editing, skills browser
OperationsSession tree, subagents, cron scheduling, kanban task board, review flow, proposal inbox, model overrides
ObservabilityToken usage, cost tracking, context meter, agent logs, event logs
PolishCommand palette, responsive UI, 14 themes, font family and 10px to 24px font size controls, mobile-safe input sizing, hot-reloadable settings, updater with rollback

Get started

One command

curl -fsSL https://raw.githubusercontent.com/daggerhashimoto/openclaw-nerve/master/install.sh | bash

The installer handles dependencies, clone, build, and then usually hands off straight into the setup wizard. Guided access modes include localhost, LAN, Tailscale tailnet IP, and Tailscale Serve.

Pick your setup

  • Local — Run Nerve and Gateway on one machine. Recommended default setup for reliability and simplicity.
  • Hybrid — Keep Nerve local, run Gateway in the cloud
  • Cloud — Run Nerve and Gateway in the cloud
Try the next branch

master is the stable branch. Use next if you want the latest Nerve work before it lands in master.

Fresh install from next:

curl -fsSL https://raw.githubusercontent.com/daggerhashimoto/openclaw-nerve/master/install.sh | bash -s -- --branch next

Switch an existing install to next:

cd ~/nerve # installer default; manual clone: cd openclaw-nerve
git fetch origin
git switch next || git switch -c next --track origin/next
git pull --ff-only
npm install
npm run build
npm run prod

Keep next updated:

cd ~/nerve # installer default; manual clone: cd openclaw-nerve
git fetch origin
git switch next || git switch -c next --track origin/next
git pull --ff-only
npm install
npm run build
npm run prod

next can change quickly. Use it if you are comfortable testing early builds.

Manual install
git clone https://github.com/daggerhashimoto/openclaw-nerve.git
cd openclaw-nerve
npm install
npm run setup
npm run prod
Updating
npm run update -- --yes

Fetches the latest release, rebuilds, restarts, verifies health, and rolls back automatically on failure.

Development
npm run dev # frontend — Vite on :3080 by default
PORT=3081 npm run dev:server # backend — explicit split-port dev setup

npm run dev:server uses the normal server PORT setting. If you do not override it, the backend also defaults to :3080 and will collide with Vite.

Requires: Node.js 22+ and an OpenClaw gateway.

How it fits into OpenClaw

Nerve sits in front of the gateway and gives you a richer operating surface in the browser.

Browser ─── Nerve (:3080) ─── OpenClaw Gateway (:18789)
 │           │
 ├─ WS ──────┤ proxied to gateway
 ├─ SSE ─────┤ file watchers, real-time sync
 └─ REST ────┘ files, memories, TTS, models

OpenClaw remains the engine. Nerve gives it a cockpit.

Frontend: React 19 · Tailwind CSS 4 · shadcn/ui · Vite 7 Backend: Hono 4 on Node.js

Security

Nerve binds to 127.0.0.1 by default, so it stays local unless you choose to expose it.

When you bind it to the network (HOST=0.0.0.0), built-in password authentication protects the UI and its endpoints. Sessions use signed cookies, passwords are stored as hashes, WebSocket upgrades are authenticated, and trusted connections can use server-side gateway token injection.

For the full threat model and hardening details, see docs/SECURITY.md.

Documentation

Community

If this is the kind of interface you want around your OpenClaw setup, give the repo a star, contribute and keep an eye on it.

Join the Nerve Discord to get help, discuss, share your setup, and follow development.

People building Nerve

Contributors

License

MIT

Frequently Asked Questions

What is openclaw-nerve?

openclaw-nerve is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by daggerhashimoto. Real-time web cockpit for OpenClaw: voice conversations, agent automated kanban board, workspace/file control, sub-agent sessions, inline charts, and usage visibility. It has 864 GitHub stars.

Is openclaw-nerve safe to use?

openclaw-nerve returned warnings in SkillsLLM's automated security scan. It has no critical vulnerabilities, but review the flagged issues in the Security Report section before adding it to your workflow.

How do I install openclaw-nerve?

Clone the repository with "git clone https://github.com/daggerhashimoto/openclaw-nerve" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is openclaw-nerve written in?

openclaw-nerve is primarily written in TypeScript. It is open-source under daggerhashimoto on GitHub, so you can review or fork the full source.

Are there alternatives to openclaw-nerve?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh openclaw-nerve against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI Agents
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details