Skip to main content
1

Install Blink globally

Install Blink globally using your preferred package manager:
bun i -g blink
This requires Node.js to be installed. If you don’t have it, install Node.js first.
2

Initialize your agent

Create a new agent project in an empty directory:
mkdir my-agent
cd my-agent
blink init
3

Start developing

Launch the Blink development environment:
blink dev
This opens Blink in your terminal where you can:
  • Use Edit Mode (Ctrl+T) to define your agent’s behavior
  • Use Run Mode to test and interact with your agent
  • Iterate quickly between building and testing
4

Deploy your agent

Optionally, when you’re ready, deploy your agent to Blink Cloud:
blink deploy
By deploying your agent to Blink Cloud, others can interact with it in Slack, GitHub, or any other destination you configure.
I