惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
IT之家
IT之家
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
Apple Machine Learning Research
Apple Machine Learning Research
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 【当耐特】
V
V2EX
Last Week in AI
Last Week in AI
H
Help Net Security
The GitHub Blog
The GitHub Blog
S
SegmentFault 最新的问题
F
Fortinet All Blogs
I
InfoQ
宝玉的分享
宝玉的分享
A
About on SuperTechFans
MongoDB | Blog
MongoDB | Blog
Microsoft Azure Blog
Microsoft Azure Blog
Blog — PlanetScale
Blog — PlanetScale
B
Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Pi: The Open-Source AI Coding Agent You Probably Haven't ...
ArshTechPro · 2026-05-26 · via DEV Community

If you've been following the AI coding agent space, you've likely heard of Claude Code, GitHub Copilot, or Codex. But there's a fast-moving open-source alternative sitting at over 46,000 GitHub stars that deserves a serious look: pi, from earendil-works/pi.

This article walks you through what pi actually is, how to get it running in under five minutes, and whether it's worth adding to your workflow.


What Is Pi?

Pi is a monorepo of tools built for constructing and running AI agents. The centerpiece is a coding agent CLI — a terminal-based assistant that can read your files, write code, run shell commands, and iterate on tasks, all within your actual project directory.

The repo is built entirely in TypeScript and ships as a set of npm packages:

  • @earendil-works/pi-coding-agent — the interactive CLI you'll use day to day
  • @earendil-works/pi-agent-core — the agent runtime (tool calling, state management) for building your own agents
  • @earendil-works/pi-ai — a unified LLM API layer that normalizes OpenAI, Anthropic, Google, and others behind one interface
  • @earendil-works/pi-tui — a terminal UI library with differential rendering
  • @earendil-works/pi-web-ui — web components for AI chat interfaces

Setup in Five Minutes

Prerequisites: Node.js installed, and an API key or existing subscription (Claude Pro, ChatGPT Plus, or GitHub Copilot).

Step 1: Install

npm install -g @earendil-works/pi-coding-agent

Enter fullscreen mode Exit fullscreen mode

That's the whole install. No Docker, no Python environment, no build step.

If you prefer another package manager:

pnpm add -g @earendil-works/pi-coding-agent
# or
yarn global add @earendil-works/pi-coding-agent
# or
bun add -g @earendil-works/pi-coding-agent

Enter fullscreen mode Exit fullscreen mode

Step 2: Authenticate

Pi supports two authentication paths.

Option A — Subscription login (Claude Pro/Max, ChatGPT Plus/Pro, GitHub Copilot):

Start pi from any directory and run:

pi
/login

Enter fullscreen mode Exit fullscreen mode

A prompt will appear to select your provider. This stores credentials in ~/.pi/agent/auth.json.

Option B — API key:

export ANTHROPIC_API_KEY=sk-ant-...
pi

Enter fullscreen mode Exit fullscreen mode

You can use OPENAI_API_KEY, GOOGLE_API_KEY, or others the same way. The /login command can also store API keys interactively so you don't need to export them every session.

Step 3: Start a session

Navigate to your project and launch:

cd /path/to/your/project
pi

Enter fullscreen mode Exit fullscreen mode

Pi starts in interactive mode and loads your project directory as its working context. Type a request and press Enter:

Summarize this repository and tell me how to run its checks.

Enter fullscreen mode Exit fullscreen mode

Out of the box, the agent has access to four tools: read (read files), write (create or overwrite files), edit (patch files), and bash (run shell commands). Additional read-only tools like grep, find, and ls are available through tool options.


Key Features Worth Knowing

Context files

Pi loads AGENTS.md (or CLAUDE.md) files at startup to give the model project-specific instructions. You can have a global one in ~/.pi/agent/AGENTS.md and a per-project one in your repo root. Example:

# Project Instructions

- Run `npm run check` after code changes.
- Do not run production migrations locally.
- Keep responses concise.

Enter fullscreen mode Exit fullscreen mode

Run /reload inside a session to pick up changes without restarting.

File references

Type @ in the editor to fuzzy-search and reference files, or pass them on the command line:

pi @src/app.ts @src/app.test.ts "Review these together"

Enter fullscreen mode Exit fullscreen mode

You can paste images with Ctrl+V (Alt+V on Windows) or drag them into supported terminals.

Session management

Sessions are saved automatically. Resuming is straightforward:

pi -c         # Continue most recent session
pi -r         # Browse previous sessions

Enter fullscreen mode Exit fullscreen mode

Inside a session, /fork and /clone let you branch the conversation tree — useful when you want to try two different approaches to a problem without losing your current state.

Non-interactive (one-shot) mode

Pi works well in scripts and pipelines:

pi -p "Summarize this codebase"
cat README.md | pi -p "Summarize this text"
pi -p @screenshot.png "What's in this image?"

Enter fullscreen mode Exit fullscreen mode

For automation, --mode json gives structured event output and --mode rpc allows stdin/stdout process integration.

Shell commands mid-session

Prefix a command with ! to run it and send the output to the model:

!npm run lint

Enter fullscreen mode Exit fullscreen mode

Use !!command to run it without adding the output to the model's context window.

Model switching

Use /model or Ctrl+L to change models mid-session. Shift+Tab cycles thinking levels. This is useful if you want a fast cheap model for exploration and a smarter one for final implementation.


Using Pi as a Library

If you're building something on top of pi rather than using it as a CLI, the SDK path is clean:

import {
  AuthStorage,
  createAgentSession,
  ModelRegistry,
  SessionManager,
} from "@earendil-works/pi-coding-agent";

const authStorage = AuthStorage.create();
const modelRegistry = ModelRegistry.create(authStorage);

const { session } = await createAgentSession({
  sessionManager: SessionManager.inMemory(),
  authStorage,
  modelRegistry,
});

await session.prompt("What files are in the current directory?");

Enter fullscreen mode Exit fullscreen mode

For non-Node.js integrations, pi supports RPC mode over stdin/stdout with JSONL framing — so you can integrate from any language.


Building from Source

If you want to contribute or run from source:

git clone https://github.com/earendil-works/pi.git
cd pi
npm install       # Install all dependencies
npm run build     # Build all packages
npm run check     # Lint, format, and type check
./pi-test.sh      # Run pi from sources (any directory)

Enter fullscreen mode Exit fullscreen mode

Note: npm run check requires a prior npm run build because the web-ui package needs compiled .d.ts files from dependencies.


Is It Worth a Try?

Yes, with some caveats.

Pi earns attention for a few concrete reasons:

It's genuinely multi-provider. Most coding agents are tied to one model provider. Pi normalizes across OpenAI, Anthropic, Google, and others at the API layer, so you can switch without re-learning a tool. If you already pay for Claude Pro or GitHub Copilot, pi can use those subscriptions directly — no extra API costs by default.

The session model is well-designed. Branching, forking, and resuming sessions is something most similar tools handle poorly. Pi treats this as a first-class feature, which matters when you're doing long iterative work.

The extensibility story is solid. Extensions are TypeScript modules that can add tools, slash commands, event handlers, and custom UI. If the built-in tools don't cover your workflow, you can add to them.

Where it's less compelling: The terminal UI won't appeal to everyone, and if you're deeply embedded in VS Code with Copilot already working, the switching cost is real. The documentation is good but spread across many individual files in the repo — there's no single polished docs site yet.

For developers who want control over their AI tooling, prefer the terminal, or need to build agents programmatically rather than just use them interactively, pi is a serious option. It's the kind of tool that rewards spending an hour with it.


Quick Reference

Task Command
Install npm install -g @earendil-works/pi-coding-agent
Start in project cd /project && pi
Login (subscription) /login inside pi
Set API key export ANTHROPIC_API_KEY=...
Continue last session pi -c
Browse sessions pi -r
One-shot prompt pi -p "your prompt"
Switch model /model or Ctrl+L
Run shell command !your-command
Reload context files /reload
Uninstall npm uninstall -g @earendil-works/pi-coding-agent

Repo: github.com/earendil-works/pi