Skip to main content

Overview

Blink lets you build an agent that acts as a planning partner. This type of agent can help you scope features, compare technical approaches, break down complex work into milestones, and de-risk decisions before you commit to building. This page shows you what’s possible and provides prompts you can use in Edit Mode to build your own planning agent.

Getting started

  1. Create a new agent directory and run blink init
  2. Start the dev server with blink dev
  3. Press Ctrl+T to toggle to Edit Mode
  4. Describe your planning agent using the ideas below

What you can build

Here are examples of what you can ask your planning agent to do once you’ve built it. These show the end result: scroll down to see how to build an agent that can handle these requests.

Building your planning agent

Switch to Edit Mode (Ctrl+T) and use these prompts to build your agent. Copy and customize them based on what you want your agent to do.
You don’t need to use all of these prompts. Start with 2-3 that match your needs, test the agent, then add more capabilities as needed.

Make it analyze trade-offs

Make it break down large features

Make it identify risks proactively

Make it ask clarifying questions

Make it format plans consistently

Make it reference code structure

Make it estimate scope realistically

Make it suggest proof-of-concepts

Make it compare frameworks and tools

Make it create debugging plans

How it works behind the scenes

When you use the prompts above, Edit Mode automatically implements the right tools for your agent. You don’t need to code anything; just describe what you want. Common tools include:
  • File reading - Access codebase to understand existing patterns
  • Web search - Research frameworks, libraries, and best practices
  • Code analysis - Identify complexity and integration points
  • Structured output - Format plans with consistent structure
Edit Mode handles all the technical implementation. Your job is to describe the agent’s planning behavior and decision-making process.

Iterating on your agent

As you test, you’ll discover what works and what needs adjustment. Use these Edit Mode prompts to refine your agent’s behavior:

Advanced capabilities

Once your basic agent works well, consider these enhancements:

Tips for success

When you’re building:
  • Start with basic trade-off analysis and milestone breakdown
  • Give Edit Mode examples of good plans you’ve created before
  • Test the agent on real planning scenarios from your backlog
  • Iterate based on whether the plans feel actionable
When you’re ready to scale:
  • Add codebase reading so plans reference actual code
  • Integrate with your project management tools
  • Build in memory to learn from past decisions
  • Share the agent with your team for consistent planning
Focus on getting the core planning behavior right first. You can always add sophistication like velocity tracking or RFC generation later.