Skill
/install lumin
Lumin — Local Agent Observability
Lumin records every LLM call, tool call, and decision your OpenClaw agent makes. View them at \x3Chttp://localhost:3000>. Data never leaves the machine — everything runs in a single Docker container.
This skill provides three commands that hit Lumin's local HTTP API so you can check status and pull trace data without leaving the chat.
Check if Lumin is running
Run: node $SKILL_DIR/lumin.mjs status
Returns one of:
Lumin is running on http://localhost:8000Lumin is not running on …. Start with: docker run -p 3000:3000 -p 8000:8000 zistica/lumin
Show recent traces
Run: node $SKILL_DIR/lumin.mjs traces
Returns the last 5 agent traces formatted like:
Recent agent traces:
1. openclaw_session 3.2s $0.0023 OK
2. openclaw_session 1.8s $0.0011 OK
3. openclaw_session 5.1s $0.0089 ERROR
…
Open http://localhost:3000/traces for the full list.
Show one trace's spans
Run: node $SKILL_DIR/lumin.mjs trace \x3Cid>
Returns the trace metadata plus every span with type, model, tokens, cost, and any error message.
Wire OpenClaw to Lumin
This skill only reads from Lumin. To get your OpenClaw agent's traces into Lumin, install the companion exporter:
npm install @lumin-io/openclaw
…and pass luminProcessor() into your OpenClaw OTel config. See
\x3Chttps://github.com/amitbidlan/zistica-lumin/tree/main/packages/integrations/openclaw>.
Start Lumin (if not running)
docker run -p 3000:3000 -p 8000:8000 zistica/lumin
Then open \x3Chttp://localhost:3000>.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install lumin - After installation, invoke the skill by name or use
/lumin - Provide required inputs per the skill's parameter spec and get structured output
What is Skill?
Observe and debug your OpenClaw agent with Lumin — local-first AI observability. Records every LLM call, tool call, and decision; view at localhost:3000. Use... It is an AI Agent Skill for Claude Code / OpenClaw, with 31 downloads so far.
How do I install Skill?
Run "/install lumin" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Skill free?
Yes, Skill is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Skill support?
Skill is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Skill?
It is built and maintained by Amit Bidlan (@amitbidlan); the current version is v0.1.0.