# I built a personal AI agent in Swift on top of what macOS ships

> Source: <https://github.com/ivan-magda/swift-claw>
> Published: 2026-08-12 12:23:50+00:00

**Your always-on personal AI assistant. One pure-Swift daemon on hardware you own.**

`clawd`

pairs a private Telegram bot with the LLM of your choice. It remembers what you
tell it and runs scheduled and proactive tasks. Consequential tool calls wait for your
approval. Everything it keeps stays in one directory on your own machine: a SQLite
database, encrypted secret envelopes, and Markdown files you edit by hand.

**A real Telegram chat.** Answers stream in as live message drafts.`/stop`

cancels a turn,`/new`

starts a fresh session, clawd transcribes voice notes on-device (macOS 26), and it looks at photos you send if your model can see them.**Durable memory.** Facts you confirm persist in SQLite, and clawd recalls them by importance and recency. Workspace Markdown files hold your profile, notes, and daily logs, and conversation history is full-text searchable.**Skills you write once.** A`skills/<name>/SKILL.md`

file shows up in context as its name and one line about when to use it; when a task matches, clawd loads the body and follows your procedure instead of asking you to paste it again. Send`/skills`

to see every accepted skill and each file the scanner rejected.**Proactive, on your clock.**"Every weekday at 07:00" schedules fire once per occurrence across restarts and DST changes, and an opt-in heartbeat respects quiet hours.**Tools behind a policy engine.**`web_fetch`

sits behind an SSRF gate; writes and code execution wait for an explicit tap-to-approve in Telegram. clawd enforces policy in code and treats inbound content as data, never as instructions.**Sandboxed code execution.** Untrusted code runs in a fresh disposable VM per request (macOS 26 arm64, off by default).**Tools from MCP servers.** List a server, store its token encrypted, and its tools join the built-ins as the least-trusted tools clawd has. Calls ask by default; you may mark a named tool safe, but the exfiltration gate can still require approval. Only you can add a server or change what it exposes.**Bring your own model.** Any OpenAI-compatible endpoint works, and`clawd auth login`

can run an eligible model on a ChatGPT subscription.**One binary.** Swift 6 with strict concurrency, from the Telegram long-poll down to SQLite.

A file write suspends the run until you answer. Every field on the card comes from the daemon's own
record of the action: the target path after symlink and `..`

resolution, the size, and a preview of
the content. Tap Deny and clawd writes nothing.

```
curl -fsSL https://raw.githubusercontent.com/ivan-magda/swift-claw/main/install.sh | sh
```

Everything lands in `~/.swift-claw`

, with no sudo. The script verifies every download
against the release checksums, stages the service files, and prints the next steps.
Pin a release with `curl … | CLAWD_VERSION=v0.2.0 sh`

, read the
[script source](/ivan-magda/swift-claw/blob/main/install.sh) first, or follow the manual route in
[docs/INSTALL.md](/ivan-magda/swift-claw/blob/main/docs/INSTALL.md) (macOS 15+ arm64; Linux x86_64 with glibc 2.38+).

Or build from source with a Swift 6.3 toolchain (Linux needs `libsqlite3-dev`

):

```
git clone https://github.com/ivan-magda/swift-claw.git && cd swift-claw
swift build -c release
sudo install -m755 .build/release/clawd /usr/local/bin/clawd
```

- Get a bot token from
[@BotFather](https://t.me/BotFather)(send`/newbot`

). - Edit
`~/.swift-claw/clawd.env`

: set the token and your LLM provider (`CLAW_LLM_BASE_URL`

,`CLAW_LLM_MODEL`

,`CLAW_LLM_API_KEY`

). - Load the config and encrypt your secrets at rest:
`set -a && . ~/.swift-claw/clawd.env && set +a && clawd secrets seal`

- Say hello once in the foreground:
`clawd run`

, then send`/start`

to your bot. The refusal shows your numeric ID; set it as`CLAW_ALLOWLIST=<id>`

in`clawd.env`

, then Ctrl-C. - Check health and start the service:
`set -a && . ~/.swift-claw/clawd.env && set +a && clawd doctor`

, then run the start command doctor prints.

The full walkthrough, including the ChatGPT-subscription route and troubleshooting, is
in [docs/GETTING_STARTED.md](/ivan-magda/swift-claw/blob/main/docs/GETTING_STARTED.md).

swift-claw assumes you are the only person it serves.

**Default-deny.** Only allowlisted Telegram IDs get a conversation. clawd refuses everyone else, and answers`/start`

with the sender's own numeric ID so you can allowlist them.`CLAW_ALLOWLIST`

only ever adds, so revoking an ID means deleting its row from the database ([details](/ivan-magda/swift-claw/blob/main/docs/CUSTOMIZATION.md#everything-else)).**Secrets encrypted at rest.**`clawd secrets seal`

wraps the bot token and API keys in an AES-GCM envelope. Plaintext env secrets remain available as a dev fallback that warns on every boot.**Approvals are durable and unforgeable.** File writes, memory writes, and code execution suspend into a durable state machine until you tap Approve in Telegram. A forged or third-party callback cannot approve, and pending approvals expire to deny.**Prompt injection contained.** Messages, web content, tool output, and stored memory enter the context as untrusted data. Once a session has both ingested untrusted content and pulled your private files into context, fetching an arbitrary URL also needs your approval. clawd pins your LLM and search providers in config, and the model cannot redirect them.

The full model is in [docs/ARCHITECTURE.md](/ivan-magda/swift-claw/blob/main/docs/ARCHITECTURE.md) (§12). To report a
vulnerability, see [SECURITY.md](/ivan-magda/swift-claw/blob/main/SECURITY.md).

Persona and behavior live in Markdown files under `~/.swift-claw/workspace/`

:

| File | Shapes | Trust |
|---|---|---|
`SOUL.md` |
Personality and tone | System prompt |
`AGENTS.md` |
Behavior rules | System prompt |
`TOOLS.md` |
When and how to use tools | System prompt |
`USER.md` |
Who you are | Untrusted, labeled |
`HEARTBEAT.md` |
The proactive heartbeat checklist | Heartbeat runs only |
`skills/<name>/SKILL.md` |
A procedure the agent loads when a task calls for it | Untrusted, labeled |

MCP servers go in `~/.swift-claw/mcp.yaml`

, with their tokens stored encrypted by
`clawd mcp set-token`

. Other runtime knobs are environment variables: the model route
(`CLAW_LLM_MODEL`

), an optional fallback route (`CLAW_LLM_FALLBACK_MODEL`

, off unless you
set it), USD budgets, schedules and quiet hours, voice locales, sandbox limits.
[ .env.example](/ivan-magda/swift-claw/blob/main/.env.example) documents every variable;

[docs/CUSTOMIZATION.md](/ivan-magda/swift-claw/blob/main/docs/CUSTOMIZATION.md)is the guide.

| You want to | Read |
|---|---|
| Set it up end to end |
|

[docs/INSTALL.md](/ivan-magda/swift-claw/blob/main/docs/INSTALL.md)[docs/CUSTOMIZATION.md](/ivan-magda/swift-claw/blob/main/docs/CUSTOMIZATION.md)[docs/INSTALL.md](/ivan-magda/swift-claw/blob/main/docs/INSTALL.md#4-running-as-a-service)[docs/LOCAL_DEV.md](/ivan-magda/swift-claw/blob/main/docs/LOCAL_DEV.md)[docs/ARCHITECTURE.md](/ivan-magda/swift-claw/blob/main/docs/ARCHITECTURE.md)[SECURITY.md](/ivan-magda/swift-claw/blob/main/SECURITY.md)Contributions are welcome. Open an issue to discuss what you have in mind before
sending a pull request; [CONTRIBUTING.md](/ivan-magda/swift-claw/blob/main/CONTRIBUTING.md) has the details and the
lint/test gate.

[MIT](/ivan-magda/swift-claw/blob/main/LICENSE) © Ivan Magda
