Mink is a lightweight AI coding agent for local workflows. It supports interactive CLI usage and Telegram Bot mode.
The design goal is simple: keep the core small, fast, and easy to extend. Instead of hiding everything behind a heavy framework, Mink focuses on a minimal runtime, straightforward configuration, and a few practical extension points such as skills, external tools, and background jobs.
go install github.com/abcdlsj/mink@latestYou can also download a binary from Releases.
- Create a config file:
mkdir -p ~/.mink
cp config.example.toml ~/.mink/config.toml-
Edit
~/.mink/config.tomland set at least your model and API key. -
Start Mink:
minkSee config.example.toml for a full example.
mink # start interactive mode
mink tg # start Telegram Bot mode
mink version # show versionOverride config from flags:
mink -p openai -m gpt-4o -k <api_key>Linux (systemd):
cp deploy/mink.service ~/.config/systemd/user/
systemctl --user enable --now minkmacOS (launchd):
cp deploy/com.mink.agent.plist ~/Library/LaunchAgents/
launchctl load ~/Library/LaunchAgents/com.mink.agent.plist~/.mink/config.toml— main config~/.mink/skills/— custom skills~/.mink/ext/— external executable tools~/.mink/SOUL.md— extra behavior guidance
MIT