cd /news/artificial-intelligence/i-built-a-personal-ai-agent-in-swift… · home topics artificial-intelligence article
[ARTICLE · art-93573] src=github.com ↗ pub= topic=artificial-intelligence verified=true sentiment=↑ positive

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

Developer Ivan Magda released clawd v0.2.0, an open-source personal AI agent written in Swift 6 that runs as a daemon on macOS 15+ and Linux, pairing a private Telegram bot with any OpenAI-compatible LLM. The agent features durable SQLite memory, Markdown-based skills, scheduled proactive tasks, a policy engine with SSRF protection and approval gates for writes and code execution, sandboxed VM code execution, and MCP server tool integration, with all data stored locally in ~/.swift-claw.

read5 min views1 publishedAug 12, 2026
I built a personal AI agent in Swift on top of what macOS ships
Image: source

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. Askills/<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, andclawd 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 first, or follow the manual route in 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

). - 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 asCLAW_ALLOWLIST=<id>

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

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).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 (§12). To report a vulnerability, see 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 documents every variable;

docs/CUSTOMIZATION.mdis the guide.

You want to Read
Set it up end to end

docs/INSTALL.mddocs/CUSTOMIZATION.mddocs/INSTALL.mddocs/LOCAL_DEV.mddocs/ARCHITECTURE.mdSECURITY.mdContributions are welcome. Open an issue to discuss what you have in mind before sending a pull request; CONTRIBUTING.md has the details and the lint/test gate.

MIT © Ivan Magda

── more in #artificial-intelligence 4 stories · sorted by recency
── more on @ivan magda 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/i-built-a-personal-a…] indexed:0 read:5min 2026-08-12 ·