Quickstart
Get from zero to a running pipeline in under 60 seconds.
Prerequisites
You need Claude Code CLI installed and accessible in your PATH. Run
claude --version to verify.1. Install Claude Code CLI
If you haven't already, install the Claude Code CLI:
Terminal
bash
npm install -g @anthropic-ai/claude-code2. Download AgentFlow
Grab the latest release for your platform from the download page or build from source:
Terminal
bash
git clone https://github.com/jadessoriano/agent-flow.git
cd agent-flow
npm install
cargo tauri build3. Open Your Project
Launch AgentFlow and open any git repository. The app auto-detects existing Claude Code agents and pipelines in the .claude/ directory.
4. Create Your First Pipeline
Click New Pipeline, then:
- Drag an AI Task node onto the canvas
- Add a Shell Command node
- Connect them by dragging from the output handle of the first node to the input handle of the second
- Click each node to configure its instructions in the side panel
Example
AI Task: "Review this code for bugs" → Shell: "npm run test"
5. Run It
Press Ctrl+R or click the Run button. Watch your pipeline execute in real-time with live log streaming and per-node status updates.
Next Steps
- Pipelines — Learn about the JSON schema, variables, and conditional edges
- Node Types — Explore all 8 node types and their configuration options
- Execution & Runs — Streaming logs, retry, resume, and run history
- Example Pipeline — Full CI/CD walkthrough using all node types