$git clone https://github.com/daymonio/daymonOpen source autopilot for Claude.
| 1 | <p align="center"> |
| 2 | <a href="https://daymon.io"> |
| 3 | <img src="docs/banner.png" alt="Daymon — Run Claude while you sleep." width="100%"> |
| 4 | </a> |
| 5 | </p> |
| 6 | |
| 7 | # Daymon |
| 8 | |
| 9 | [](LICENSE) |
| 10 | [](https://github.com/daymonio/daymon/releases/latest) |
| 11 | [](https://github.com/daymonio/daymon/releases/latest) |
| 12 | [](https://github.com/daymonio/daymon/releases/latest) |
| 13 | [](https://github.com/daymonio/daymon/releases/latest) |
| 14 | [](https://github.com/daymonio/daymon/stargazers) |
| 15 | |
| 16 | **Open source autopilot for Claude.** |
| 17 | |
| 18 | Scheduled tasks, persistent memory, background automation. No API keys. No cloud. Runs on your Mac, Windows, or Linux machine. |
| 19 | |
| 20 | [daymon.io](https://daymon.io) |
| 21 | |
| 22 | > Daymon is not affiliated with, endorsed by, or sponsored by Anthropic. |
| 23 | |
| 24 | <p align="center"> |
| 25 | <video src="https://github.com/user-attachments/assets/4bb11bef-1f70-439b-b688-21855da40548" autoplay loop muted playsinline width="800"></video> |
| 26 | </p> |
| 27 | |
| 28 | --- |
| 29 | |
| 30 | ## Why Daymon? |
| 31 | |
| 32 | Sleep. Daymon doesn't. It runs Claude tasks on schedule, remembers context across conversations, watches files for changes, and works in the background — all while you sleep, commute, or focus on other things. |
| 33 | |
| 34 | No API keys. No token costs. No cloud. Just your existing Claude subscription, finally working 24/7. |
| 35 | |
| 36 | --- |
| 37 | |
| 38 | ## Requirements |
| 39 | |
| 40 | - **macOS 12 (Monterey) or later** (Apple Silicon & Intel), **Windows 10+** (x64), or **Linux x64** (Ubuntu, Debian, Fedora, etc.) |
| 41 | - **[Claude Desktop](https://claude.ai/download)** or **[Claude Code](https://docs.anthropic.com/en/docs/claude-code)** (you need at least one) |
| 42 | - A Claude subscription (Pro, Max, or Team) — Daymon uses your existing subscription, no API keys needed |
| 43 | |
| 44 | ## Installation |
| 45 | |
| 46 | ### macOS — Homebrew (recommended) |
| 47 | |
| 48 | ```bash |
| 49 | brew install daymonio/daymon/daymon |
| 50 | ``` |
| 51 | |
| 52 | ### macOS — Download |
| 53 | |
| 54 | Download the latest `.dmg` from [GitHub Releases](https://github.com/daymonio/daymon/releases/latest). |
| 55 | |
| 56 | ### Windows — Download |
| 57 | |
| 58 | Download the latest `.exe` installer from [GitHub Releases](https://github.com/daymonio/daymon/releases/latest). |
| 59 | |
| 60 | ### Linux — Download |
| 61 | |
| 62 | Download the `.deb` or `.AppImage` from [GitHub Releases](https://github.com/daymonio/daymon/releases/latest). |
| 63 | |
| 64 | ```bash |
| 65 | # .deb (Ubuntu/Debian) |
| 66 | sudo dpkg -i daymon_*.deb |
| 67 | |
| 68 | # AppImage (any distro) |
| 69 | chmod +x Daymon-*.AppImage && ./Daymon-*.AppImage |
| 70 | ``` |
| 71 | |
| 72 | ### Build from Source |
| 73 | |
| 74 | ```bash |
| 75 | git clone https://github.com/daymonio/daymon.git |
| 76 | cd daymon |
| 77 | npm install |
| 78 | npm run dev # Development mode |
| 79 | npm run build # Production build |
| 80 | ``` |
| 81 | |
| 82 | ## Quick Start |
| 83 | |
| 84 | ### Claude Desktop |
| 85 | |
| 86 | Install Daymon and open it. That's it — Daymon auto-configures Claude Desktop on first launch. |
| 87 | |
| 88 | Open Claude Desktop and try: |
| 89 | |
| 90 | > "Remember that I prefer TypeScript over JavaScript" |
| 91 | |
| 92 | > "Every weekday at 9am, check HackerNews for AI news and summarize the top 5 stories" |
| 93 | |
| 94 | > "Watch my Downloads folder and organize new files into subfolders by type" |
| 95 | |
| 96 | ### Claude Code |
| 97 | |
| 98 | Install Daymon and open it. Daymon auto-configures Claude Code on first launch (if `~/.claude.json` exists). |
| 99 | |
| 100 | Then try: |
| 101 | |
| 102 | > "Remember this project uses PostgreSQL 16 and runs on port 5432" |
| 103 | |
| 104 | > "Schedule a daily code review of this repo every morning at 8am" |
| 105 | |
| 106 | ## What is Daymon? |
| 107 | |
| 108 | Daymon is a desktop app for macOS, Windows, and Linux that lives in your menu bar (system tray on Windows). It gives Claude persistent memory, scheduled tasks, workers, and file watchers — all running locally on your machine. |
| 109 | |
| 110 | Your Claude subscription only works when you do. Daymon puts it to work 24/7. |
| 111 | |
| 112 | ## Features |
| 113 | |
| 114 | **Scheduled Tasks** — "Every weekday at 9am, check HackerNews for AI news." Just tell Claude what you want. Daymon handles the scheduling. |
| 115 | |
| 116 | **Persistent Memory** — "Remember I'm fundra |