# Add to your Claude Code skills
git clone https://github.com/meetopenbot/openbotLast scanned: 5/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-30T15:05:01.198Z",
"npmAuditRan": true,
"pipAuditRan": true
}See how openbot compares with popular alternatives.
openbot is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by meetopenbot. Meet OpenBot. OS for Agents. It has 340 GitHub stars.
Yes. openbot passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/meetopenbot/openbot" and add it to your Claude Code skills directory (see the Installation section above).
openbot is primarily written in TypeScript. It is open-source under meetopenbot on GitHub, so you can review or fork the full source.
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 openbot against similar tools.
No comments yet. Be the first to share your thoughts!
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
OpenBot is a local-first harness for running AI agents. It exposes a small event API, local file storage, and a Melony-powered runtime.
4132 by default.~/.openbot.system agent (LLM runtime + storage tools).state agent for deterministic storage reads (no LLM).~/.openbot/agents/<agent-id>/AGENT.md.Requires Node.js >=20.12.0.
npm i -g openbot
openbot start
Local development:
npm install
npm run dev
Set an API key before starting (example for OpenAI):
export OPENAI_API_KEY=sk-...
openbot start
GET /api/events — SSE stream for a channel or thread.POST /api/publish — publish an event (defaults to the system agent).GET /api/state — run an event and return resulting events (defaults to the state agent).Example:
curl -X POST http://localhost:4132/api/publish \
-H "content-type: application/json" \
-d '{"type":"agent:invoke","data":{"role":"user","content":"hello"}}'
Context headers/fields: channelId, threadId, agentId, runId.
| Plugin | Role |
|---|---|
openbot |
LLM agent runtime with storage tools |
storage |
Channel/thread persistence |
ui |
Interactive UI widgets |
Create ~/.openbot/agents/<agent-id>/AGENT.md:
---
name: Assistant
description: A helpful local assistant.
plugins:
- id: openbot
config:
model: openai/gpt-4o-mini
- id: storage
---
You are a careful assistant. Be concise and clear.
MIT — applies to this repository through release v0.5.3. Code released under MIT before this archive remains MIT; newer work is not published here.