Skills hide-openclaw-banner

Suppress the OpenClaw CLI banner message. Use when the user says "hide openclaw banner", "disable openclaw banner", "suppress openclaw banner", "remove openclaw banner", "openclaw banner is annoying", "turn off the lobster", or wants to stop seeing the OpenClaw startup tagline on every command invocation.

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/brunobuddy/shut-up-openclaw-cli" ~/.claude/skills/clawdbot-skills-hide-openclaw-banner && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/brunobuddy/shut-up-openclaw-cli" ~/.openclaw/skills/clawdbot-skills-hide-openclaw-banner && rm -rf "$T"
manifest: skills/brunobuddy/shut-up-openclaw-cli/SKILL.md
source content

Hide OpenClaw Banner

The OpenClaw CLI banner is emitted during CLI bootstrap (Commander.js

preAction
hook) before the plugin system initializes. A plugin cannot suppress it. Use the built-in env var instead.

How to Apply

Add to the user's shell config (

~/.zshrc
or
~/.bashrc
):

export OPENCLAW_HIDE_BANNER=1

Place it near any existing OpenClaw config (e.g., after the completions

source
line).

After editing, remind the user to run

source ~/.zshrc
or open a new terminal.

How to Revert

Remove the

OPENCLAW_HIDE_BANNER
line from the shell config, then
source ~/.zshrc
.