Skip to content
 
 

Latest commit

 

History

500 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PersonalClaw

PersonalClaw

Your self-hosted personal AI agent — an agentic operating system for one person.

Chat, autonomous goal loops, long-term memory, a knowledge base, skills, scheduled automation, and channel integrations — all behind one gateway process and one web dashboard you own. Local-first, provider-agnostic, zero telemetry, MIT.

CI License: MIT Python 3.12+ Zero telemetry Self-hosted Pre-1.0

PersonalClaw dashboard

The dashboard — tasks, active work, and context-aware suggestions at a glance. Dark theme shown; PersonalClaw ships light and dark.

Agentic chat, grounded in your knowledge — light theme Knowledge base with entity graph — dark theme

📸 See the full visual showcase » — dashboard, chat, goal loops, knowledge, memory, tasks, skills, automation, agents, and settings, in light and dark.


⚠️ Pre-1.0 — breaking changes expected

PersonalClaw is at v0.1.3 and moving fast toward a deeper architecture (see the roadmap). It follows a clean-break engineering doctrine: when a design is replaced, the old path is removed in the same change rather than carried along behind compatibility shims. The upshot for you as an early user:

  • The next few minor (0.x) releases may introduce breaking changes with no automatic migration of your existing data — sessions, memory, knowledge, config, and app state under ~/.personalclaw may need to be recreated after an update.
  • Back up before every update. Run personalclaw snapshot to create a portable state archive first (restore with personalclaw restore), and keep the archive somewhere safe.
  • Don't make this your only system of record yet. Treat anything you put in PersonalClaw as reproducible or backed up elsewhere until backward compatibility becomes the default posture — the point at which gated, migration-backed changes replace clean breaks (the lifecycle mental model in CONTRIBUTING.md). Until then, run it as a power-user's second machine, not your primary driver.
  • This is expected to last a while. Migration-backed change discipline is scheduled deliberately late — it lands once the architecture has stopped moving, near the end of the current roadmap, because freezing compatibility around a half-built architecture is worse than breaking it honestly now. Plan for breaking 0.x updates as the norm, not the exception, for the foreseeable future.

This warning is relaxed only when that discipline lands — not on a date. We'd rather tell you plainly now than surprise you on an update.

Contributing? None of this asks you to break compatibility: contributor changes stay additive, and breaking changes are the maintainer's call. See CONTRIBUTING.md → Breaking changes.


What is PersonalClaw?

PersonalClaw runs AI agents that accomplish your work with a rich, user-assembled set of capabilities. Every vendor — model providers, search, speech, channels, agent runtimes — is a removable app, so nothing ties you to a single LLM vendor or service. All state lives under one ~/.personalclaw home on your machine; the system degrades gracefully to local-only and never requires the network for core operation.

flowchart TB
    subgraph you[" "]
        U["👤 You — dashboard · CLI · channels"]
    end
    U --> GW["🦞 Gateway (one process)"]
    subgraph core["Provider-agnostic core"]
        GW --> CHAT["Agentic Chat"]
        GW --> LOOP["Goal Loops"]
        GW --> AUTO["Automation · Triggers · Inbox"]
        CHAT & LOOP & AUTO --> ENG["Context Engine · Approvals · Guardrails"]
        ENG --> MEM["Memory"]
        ENG --> KN["Knowledge"]
        ENG --> SK["Skills"]
    end
    ENG --> APPS["App Platform (permission-gated, scanner-gated)"]
    APPS --> P1["Model providers"]
    APPS --> P2["Search · Speech · Local models"]
    APPS --> P3["Channels · Agent runtimes (ACP)"]
    APPS -. "removable, sandboxed" .-> EXT[("Your vendors\n& tools")]
Loading

Highlights

🗣️ Agentic chat

Multi-session chat with tool use and approval controls, session forking/undo, answer variants, folders/tags/kanban, side conversations, per-session model overrides, and temporary/incognito memory modes.

🎯 Goal loops

Give the agent a target and let it work autonomously — it classifies the goal, plans it, then loops cycle by cycle under a deterministic supervisor you can pause, nudge, or stop.

🧠 Memory that learns

Layered semantic + episodic + procedural memory with active recall, after-turn learning from your corrections, automatic promotion of repeated facts, and an optional Obsidian-compatible markdown vault.

📚 Knowledge base

Ingest documents (PDF/DOCX/PPTX/HTML/…), web pages, and media; AI enrichment, entity extraction, a knowledge graph, and semantic search wired into chat context.

🧩 Skills & 🔌 App platform

Reusable SKILL.md procedures with a marketplace and supply-chain scanning; a permission-gated Store where model providers, search, speech, local models, channels, agent runtimes, and full backend+UI apps install through a quarantine → scan → consent lifecycle.

⏰ Automation

Cron/interval/webhook triggers, background subagents, an inbox that watches channels and drafts replies, and workflow SOPs surfaced automatically when they match.

🛡️ Security-first

Tool approval modes, a shell-command denylist, an egress guard with allow/deny host policy, a tamper-evident (HMAC) security event log, app-scoped tokens, and honest labeling of the one permission it can't technically enforce. Controls are enforced at the point of execution, not merely requested in a prompt — the threat model maps each to the OWASP Agentic Top-10 with code citations and states the limitations plainly. Found a security issue? Report it privately via our security policy. See also the security model.

Quickstart

Install with one command — every path installs the same release artifact (no per-channel special builds), and you don't need to install Python or Node yourself:

uv tool install personalclaw && personalclaw setup     # recommended — uv brings Python 3.12

Or use the bootstrap one-liner (installs uv if it's missing, then the above):

curl -fsSL https://personalclaw.dev/install | sh

Then start the gateway:

personalclaw gateway

Install matrix

Path Command Best for
uv tool (recommended) uv tool install personalclaw anyone — uv provides Python 3.12
Bootstrap curl -fsSL https://personalclaw.dev/install | sh the fastest start
pipx pipx install personalclaw isolated Python tools
pip pip install personalclaw inside an existing Python 3.12+ venv
Docker Compose see below self-hosters · Windows
Git checkout CONTRIBUTING contributors / development

Docker Compose

cp .env.example .env && docker compose -f deploy/compose/compose.yaml up -d

Brings up the gateway + a TLS web proxy with a persistent volume — details, backups, and updates in the container guide.

The dashboard opens at http://localhost:10000. Install a model-provider app from the Store, add your API key under Settings → Providers, and bind a chat model under Settings → Models — full walkthrough in Getting started.

Tech stack: Python 3.12 · aiohttp gateway · React + Vite SPA · SQLite · MIT. Run modes: local process · Docker Compose · systemd/launchd service. (A macOS-only Electron desktop shell exists but is experimental — not built, signed, or released by CI, and has no auto-update channel.)

Platform support. Every row names what proves it — CI:<job> is a workflow job, checklist:<section> is a documented manual walkthrough, community is user-reported and not verified by us. Details and the [models]-extra per-arch reality: Platforms.

Platform Support Proof
Linux x86-64 first-class CI:full/matrix (ubuntu-latest) + release smoke
Linux arm64 first-class CI:full/matrix (ubuntu-24.04-arm) + release smoke
macOS Apple silicon first-class CI:full/matrix (macos-14)
macOS Intel best-effort community
Windows via WSL2 supported checklist:Windows via WSL2Platforms
Windows via Docker Desktop supported checklist:Windows via Docker DesktopPlatforms
Windows native not supported

Privacy

Zero telemetry. PersonalClaw sends no usage data anywhere. It's single-user and self-hosted; your conversations, memory, and knowledge never leave your machine unless you wire up a remote provider app. Exports exclude credentials by design.

Supply chain

The release pipeline practices the install-time gating the product itself preaches: builds run in CI from a committed lockfile (uv.lock, installed with uv sync --locked); PyPI publishing uses Trusted Publishing (OIDC — no long-lived tokens stored anywhere) behind a manual owner-approval gate; every release attaches a syft SBOM and build-provenance attestations on the wheel and images; and Dependabot watches the pip, npm, and GitHub-Actions ecosystems weekly. pip-audit and npm audit run on every push to main.

Documentation

Contributing

See CONTRIBUTING.md for the engineering doctrine (clean-break-within-class, provider-agnostic core, validate-as-a-user) and dev setup. First-party apps live in the PersonalClawApps repo — the community front door.

Looking for somewhere to start? The good-first-issue label marks well-scoped work that needs little context.

Questions, ideas, showing off what you built: Discussions — Q&A for help, Show and tell for what you've made, Ideas for feature thinking. Bugs go to Issues instead, so they can be tracked and closed.

The roadmap is maintainer-owned, but not opaque: propose changes in Discussions → Ideas rather than by PR'ing docs/roadmap/. See the intake path.

License

MIT

About

Your self-hosted personal AI agent — an agentic OS for one person: chat, autonomous goal loops, memory, knowledge base, skills, automation, and a permission-gated app platform. Local-first, provider-agnostic, MIT.

Resources

Code of conduct

Contributing

Security policy

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages