Skip to content
@PersonalClaw

PersonalClaw

Self-hosted personal AI agent — an agentic OS for one person: chat, goal loops, memory, knowledge, automation, apps. Local-first, zero telemetry, MIT.
PersonalClaw

PersonalClaw

A 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.

Core CI PyPI License: MIT Python 3.12+ Zero telemetry Self-hosted

Website · Core · Apps · Docs · Roadmap


The PersonalClaw dashboard — tasks, active work, and context-aware suggestions at a glance

The dashboard — one home for tasks, active work, and context-aware suggestions. Dark theme shown; PersonalClaw ships light and dark.


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.

It is deliberately single-user and self-hosted: your conversations, memory, and knowledge never leave your machine unless you wire up a remote provider app. There is no telemetry — not as a setting, but as an architectural choice.

flowchart TB
    U["👤 You — dashboard · CLI · channels"] --> 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 & tools")]
Loading

The three repositories

PersonalClaw is one product across three public repos. Core is the only source of product truth; the apps repo follows it, and the website projects released core state — it never advertises ahead of a real release.

Repository What it is
🦞 PersonalClaw The platform — the gateway, agentic core, memory, knowledge, skills, automation, security, and the permission-gated app platform. Python 3.12 · aiohttp · React + Vite SPA · SQLite. This is where every capability and contract originates.
🧩 PersonalClawApps The first-party app bundles — 38 apps across model providers, search, speech, local models, agents (ACP), channels, tools, and full backend + UI apps. Each imports core only through the stable SDK and installs through the same scanner-gated Store as any third-party app.
🌐 personalclaw.dev The public website — product, documentation, security, installation, and ecosystem surface. A zero-tracking, Astro-built projection of released PersonalClaw, pinned to exact core + apps revisions so it can never claim something the product can't back.

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 straight into chat context.

🧩 Skills & app platform

Reusable SKILL.md procedures plus a permission-gated Store where providers, 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, by construction

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.

Agentic chat, grounded in your knowledge — light theme An autonomous goal loop mid-run under a deterministic supervisor
Knowledge base with source documents and an entity graph Layered, inspectable memory that learns how you work
Chat · goal loops · knowledge · memory — the full showcase (every screen, light and dark) lives in the core repo.

Quickstart

Install with one command — every path installs the same release artifact, 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 and open the dashboard at http://localhost:10000:

personalclaw gateway

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. Also available via pipx, pip (into an existing Python 3.12+ venv), Docker Compose, or a git checkout for development.

The permission-gated app Store — providers, search, channels, agents, and full apps
The Store — 38 first-party apps, each installed through a quarantine → security-scan → consent lifecycle.

⚠️ Pre-1.0 — breaking changes expected

PersonalClaw follows a clean-break engineering doctrine: when a design is replaced, the old path is removed in the same change rather than carried behind compatibility shims. The upshot for early users:

  • The next few minor (0.x) releases may introduce breaking changes with no automatic migration of your existing data under ~/.personalclaw.
  • Back up before every updatepersonalclaw snapshot creates a portable archive (restore with personalclaw restore).
  • Treat anything you put in PersonalClaw as reproducible or backed up elsewhere until backward-compatibility becomes the default posture (the post-1.0 lifecycle doctrine introduces gated, migration-backed changes).

We'd rather tell you plainly now than surprise you on an update.


Ecosystem & building

  • Build an app — an app is a directory with an app.json manifest that imports core only via personalclaw.sdk.*. Model providers, search, speech, channels, agent runtimes, and full backend + UI apps all use the same contract. See the app creation guide and platform architecture.
  • Contribute to core — the contributing guide covers the engineering doctrine (clean-break-within-class, provider-agnostic core, validate-as-a-user) and dev setup.
  • Supply chain — releases build in CI from a committed lockfile; PyPI publishing uses Trusted Publishing (OIDC) behind a manual approval gate; every release ships a syft SBOM and build-provenance attestations.
  • Report a security issue — privately, via the security policy.

Get started at personalclaw.dev »

Open source · self-hosted · zero telemetry · MIT

Pinned Loading

  1. PersonalClaw PersonalClaw Public

    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, provide…

    Python 1

  2. PersonalClawApps PersonalClawApps Public

    First-party app bundles for PersonalClaw — model providers, search, agents (ACP), channels (Slack), tools, and full backend+UI apps. Each installs through the scanner-gated Store.

    Python

  3. personalclaw.dev personalclaw.dev Public

    Official website for PersonalClaw, a self-hosted agentic operating system for chat, autonomous goals, memory, knowledge, automation, and replaceable apps.

    Astro

Repositories

Showing 4 of 4 repositories

People

This organization has no public members. You must be a member to see who’s a part of this organization.

Top languages

Loading…

Most used topics

Loading…