v0.5.2

Sleep tight.
NightMe codes all night.

A remote-pair developer agent. No more babysitting AI—stay in the loop from your phone while NightMe takes the wheel.

~/.nightme — bash
nightme login feishu
Please scan the QR code via Feishu mobile app...
nightme start
[INFO] NightMe daemon started on PID 68861
nightme list
SESSION ID
CWD
STATUS
chat_abc123
~/feat-backend
Running
chat_xyz789
~/feat-html
Idle
_

Not another AI wrapper. A multi-agent engine.

NightMe doesn't replace your agent subscriptions or memory. It sits in front of them. It routes your IM messages to the right local CLI process, keeping them warm, persistent, and running in parallel.

You (Feishu)
Chat Platform
The Bridge
NightMe Logo
NightMe Engine
Routing & Persistence
Claude Code
CWD: Proj A
Codex
CWD: Proj B
Pi / OpenCode
CWD: Proj C
▲ CWD = project; agents run inside that CWD; all parallel from one NightMe instance.
/think on

Always-in-the-loop

Toggle /think on to watch the AI's internal reasoning unfold in real-time. Paired with Reaction Emojis and the ultimate StatusBar, you never have to guess what's happening.

Pa
Db
Xu
Sq
[Lz] NightMe
Devin 12:51 AM
编写一个oneline shell install脚本放入 html/install.sh, windows html/install.ps ...
⌨️ NightMe 🤯 NightMe
View earlier 10 replies
NightMe ☁️ 分析架构:1. macOS/Linux 用 curl bash,2. Windows 用 irm iex ...
NightMe ☁️ 获取 release API,解析 JSON,提取正确的 os/arch binary 下载链接 ...
Reply
1 reply
Devin avatar
NightMe Agent
Reply to Devin: 编写一个oneline shell install脚本放入 html/install.sh, windows html/install.ps ...
📋 Tasks
  • [ ] Research release assets and current install UX (Researching release assets and install UX)
  • [ ] Design installer architecture and edge cases
  • [ ] Write html/install.sh (POSIX bash)
  • [ ] Write html/install.ps1 (Windows PowerShell)
  • [ ] Sanity-check and report results
🤖: claude · MiniMax-M3 · 8df75903-f2c7-4080-b835-4f39905135b3
💰: 「 5.1k / 50.9k / 3.3k · 6.0% (1M) · $5.144 」
📁: nightme.nightme/docs-release · 🌿 docs-release · ⬆ 0 · #134
Message [Lz] NightMe...

Built for Real Developer Scenarios

We didn't just wrap an API. We built an engine that understands how you actually work across multiple codebases.

SCENARIO: THE JUGGLER

1 CWD = 1 Project

Set your AI to write backend tests. A frontend bug drops? Don't kill the backend agent. Open a different Feishu chat, type /cwd ~/frontend, and fix the bug in parallel. Project isolation is by directory.

SCENARIO: ZERO COLD START

Multi-Agent Hot Swap

Need a different model's perspective? Type /use codex. The active agent swaps instantly, while the previous one continues its task in the background. Results still come back, but new messages route to the new agent.

SCENARIO: HALLUCINATION CONTROL

Real-time Interrupts

When an AI goes off the rails, you don't have to watch it burn tokens. Send /stop to halt gracefully, or /steer to immediately redirect the AI without losing history.

BEYOND THE README

Git Team Workflow /gtw

git worktree gives you isolated branches per task. gh pr create gives you a one-shot PR. AI agents give you on-demand coding help. /gtw glues the three together into one short-lived agent workflow.

  • 1

    Three tools in one

    /gtw fix -n <branch> opens a fresh worktree on your just-up-to-date main and runs a one-shot agent to do the work. Run 3 of these in parallel—three issues, three worktrees, three agents, no state collision.

  • 2

    Auto-Rehydrating Environments

    New worktrees lack build artifacts. NightMe automatically fires shell hooks like npm install before the AI starts typing.

  • 3

    Ready to ship

    When the task is done, /gtw close tears down the worktree and returns you to main. The branch is ready to ship (or discard) while your main chat stays clean.

~/.nightme/gtw.yml YAML
# Auto-rehydrate dev environment
# in the newly created worktree
fix:
  hooks:
    after:
      - codegraph init
      - npm install
      - go mod download
INSTALL

# One line. Installs everything. You're welcome. 🌙

$ curl -fsSL https://nightme.dev/install.sh | bash