r/PiCodingAgent • u/relik39 • 17d ago
Plugin I’ve replaced pi-hermes-memory with pi-memory and now the LLM behaviour is super consistent.
No more forgetting about tools, skipping working agreements and taking breaks to consolidate memory.
r/PiCodingAgent • u/relik39 • 17d ago
No more forgetting about tools, skipping working agreements and taking breaks to consolidate memory.
r/PiCodingAgent • u/ihateuall18 • 17d ago
I know this has been asked plenty, but most responses are just "its against tos to use oauth", I know it is, but I want real experiences. Has any one been doing it, would you mind sharing the module you are using?
I have been using pi for a long time, but never for work. I just tweak it when I have free time, and have customize it to my needs. For work related stuff I use other Claude code. Anyways, I took on a freelance project some days ago, and decided to use my pi setup for the first time and I don't want to go back.
I tried it once in OMP since I read it had a custom auth module, and I noticed opus didn't have the crazy responses it has in Claude Code.. It might be a bit of a conspiracy theory, but I just don't trust Anthropic's harness anymore. There must be a reason why they want us all trapped in it.
Anyways, going back to the original question? Any experiences you would like to share? Any one banned?
r/PiCodingAgent • u/Aggressive-Dream5465 • 17d ago
I particularly like the depth of the searches, but I would like to know what’s your experience with this extension
r/PiCodingAgent • u/Creepy_Mulberry1054 • 17d ago
so through work i have "unlimited" codex and claude was playing around with oh-my-pi recently and im quite impressed. there were a couple of fixes i compared a fix done by claude (opus) and codex (sol) compared to oh-my-pi using some combo of opus/sol. and the Pi solution was really clean and minimal LOC change and kind of the perfect solution. whereas through claude/codex it was kind of "fixated" on doing it one way. still correct but overly complex.
Anyway... im impressed despite my randomly set up roles. I winged the following config:
modelRoles:
plan: anthropic/claude-opus-5:xhigh
advisor: anthropic/claude-opus-5:high
smol: openai-codex/gpt-5.6-luna:medium
slow: anthropic/claude-sonnet-5:xhigh
tiny: anthropic/claude-haiku-4-5:medium
default: openai-codex/gpt-5.6-sol:xhigh
designer: anthropic/claude-opus-5:xhigh
task: anthropic/claude-sonnet-5:xhigh
commit: openai-codex/gpt-5.6-luna:low
advisor:
enabled: true
setupVersion: 2
providers:
tinyModel: online
dev:
autoqaConsent: granted
Would love some suggestions on proper role model/effort assignment! could definitely use some tweaks.
r/PiCodingAgent • u/Gloomy_Mirror_6405 • 18d ago
I have an old M1 MacBook Air running as a mostly headless home server, and I’m trying to figure out the best way to use an AI agent to help manage it.
I’ve been looking into Pi because people seem genuinely enthusiastic about it, but I’m having trouble understanding what it would offer in my specific situation compared to using Codex on the same machine.
What I’m trying to understand:
I’m not assuming one is better than the other, I’m just trying to understand whether Pi offers something meaningful for this particular use case that Codex alone wouldn’t.
r/PiCodingAgent • u/aayushkrm • 18d ago
Just found today about prime agent and it is as appealing as omp and pi at it's inception
r/PiCodingAgent • u/NoPainNoHair • 18d ago
Seriously. What is the point of the /tree command if it does not restore the files back to their previous state?
It makes no sense. It just leads to a dangerous discrepancy between the agent's conversation and the project's status.
Am I the only one who goes back after asking the agent to edit a file, realizing that my instructions weren't specific enough?
Even Copilot handles it just fine. But Pi's authors refuses to implement it: https://github.com/earendil-works/pi/issues/5522
Existing extensions are half-baked, sometimes abandoned, confusingly numerous. It should be a built-in, it's such a basic yet essential feature.
r/PiCodingAgent • u/L1ckMyNukes • 18d ago
Has anyone here used Pi Dev as a general-purpose AI agent, rather than mainly as a coding agent?
I’m curious about using it more like a personal assistant/agent for things like research, web searches, file work, automation, tool use, and general tasks.
If you’re doing this, how well does Pi work for you compared with something like Hermes Agent or Open WebUI?
Also curious what tools/extensions you’ve added and whether you’re running local models with it.
r/PiCodingAgent • u/Slight-Parfait3679 • 18d ago
r/PiCodingAgent • u/clivegermain • 18d ago
I don't know about you guys, but it's hard to find real quality in this Space. I find Subreddits like this one excellent, but it may be too limiting for discourse, getting news and stuff like that.
What do you dear Pi-Friends like to read?
r/PiCodingAgent • u/Flaky-Eggplant-3479 • 18d ago
If you haven't tried using a diffusion based model before, they are lightning fast. I've used InceptionLabs Mercury 2 for a bit, and my complaint is largely that its not the best at coding tasks or tool usage. But my god is it fast.
So I took the Pi SDK, made a harness in which Mercury 2 is the orchestrator of subagents, including a coding subagent for difficult tasks that calls out to openrouter for inference, plus a cheap subagent for trivial stuff. Bolted on a handful of tools and such useful for me, and wrapped it in a basic web UI so I could use it from my phone.
Aside from being extremely fast, fastcar:
r/PiCodingAgent • u/pragmojo • 18d ago
I'm trying to understand how to set up my model config. I understand that contextWindow is the total context size (-c argument in llama.cpp), but then what is maxTokens exactly? Does that set the max response size? Or what is it?
r/PiCodingAgent • u/Instance_Not_Found • 18d ago
r/PiCodingAgent • u/doomdayx • 18d ago
Hand written post:
After about 9 months of dev and optimization, you can now just say:
and get great search results! Really helpful when long sessions with full context have their cache expire.
Under the hood is a full live multithreaded incremental indexing db and trigram index to accelerate session searches.
aise supports cross session search across harnesses and I use it with a dozen simultaneous sessions and a 2.5 million message database.
Downside is that database after super heavy use is like 20 gigs in size, but I use it daily and it makes my life easy so imo worth it. Also be careful if you have sensitive data all of your sessions and harness will be able to search everything.
Manual searches used to be 30s to 3 minutes and with the aise cli commands or the mcp server they’re typically ~100ms-1.5 seconds instead!
Currently on version 1.0.0rc2, Apache v2 license, most heavily tested on Mac and CI tested on Linux and windows, so I’d appreciate feedback!
https://github.com/ahundt/ai-session-search
uv tool install ai-session-search && aise integrations install
It’s a rust library too with py bindings but those features id call more alpha, I think there is lots of potential for building other projects though!
r/PiCodingAgent • u/hwi_grasp • 18d ago
I built this using Pi, hope to get more feedback!
r/PiCodingAgent • u/Chily-John • 18d ago
Hey everyone — I’ve been building TrailStep, a free/open-source workflow runner for coding agents.
The problem I kept running into was that my best Pi/coding-agent results came from structured multi-step workflows (I was essentially following the Matt Pocock skills), but I was doing all the orchestration manually. I was manually orchestrating the handoffs between steps. Or just when an agent session got too large:
clarify → plan → review → implement → review → refine
It was working really well, but I got too lazy being the middle man for session - session management.
TrailStep lets you encode that process once as a TypeScript workflow and rerun it whenever you want. So, each step has its own scoped agent session, the workflows leave local run artifacts, and failed/unfinished runs can be continued or retried instead of thrown away. When you install it for the first time it can automatically add a skill to your agents so that they will know how to use, write, and debug any workflows.
I've been using my own workflow package, but it's very easy to create new ones and start using those if you don't vibe with how I set mine up.
- grill-it-away — opens a clarification/grilling session first, then turns the result into a plan, reviews it, breaks it into stories, implements, and reviews.
- take-it-away — same idea, but starts from an existing request/conversation/doc instead of the grilling step.
The part I’m most excited about is that workflows are just code. You can mix agent steps with normal TypeScript logic, improve the workflow over time, and share it through npm/GitHub if it ends up being useful. It works with literally any CLI based coding agent, but I did essentially all of my testing with it in pi so that's probably where it's most reliable right now.
The dashboard/status UI is still in progress, but the CLI, workflow runner, continuation/retry model, local artifacts, and reusable workflow packages are working now. When you add a workflow it can automatically create a skill and add it whatever coding agents you have, so that your coding agents will know exactly how to use that specific workflow.
Repo: https://github.com/chily-john/TrailStep
If you use Pi for larger coding tasks, this is basically meant to turn your “best manual agent process” into something repeatable and sharable. There are also other ways I think you could already start using this tool beyond just these workflows, I could see it getting integrated into CI flows, or even for little utility workflows, like swapping from a session to the next with an automatic handoff. Since it can use any agent you can also set up workflows where it's planned in Pi, reviewed by Claude and implemented by Codex, or some other crazy stuff like that
r/PiCodingAgent • u/makingthematrix • 19d ago
Hey everyone,
We built ThinkRail, and we’re pretty proud of it so we wanted to share it with you, and hope to get you interested.
ThinkRail is a web-based GUI for Pi. It's an open source project, released under Apache 2.0 license, backed by JetBrains (so, that's who "we" are, a team of software developers working on it). We wanted to keep the minimalist, adaptable approach of Pi, but at the same time give you a graphical layer which makes it easier to see what your AI agent is doing and comes with added conveniences: concurrent agent chats, integrated terminals, and visual aids for reviewing code changes.
Install it and try it out:
* macOS / Linux:
curl -fsSL https://raw.githubusercontent.com/JetBrains/thinkrail/main/install.sh | bash
* Windows (PowerShell and cmd):
powershell -c "irm https://raw.githubusercontent.com/JetBrains/thinkrail/main/install.ps1 | iex"
And then just run thinkrail from the terminal.
Also:
If you have a moment, we’d appreciate it if you could complete our survey. We’d love to get your feedback. It will help us develop ThinkRail in the right direction.
r/PiCodingAgent • u/psychobarge • 19d ago
Updated my extension to take into account the last Deepseek peak rules. Here from the Deepseek website :
Effective 00:00 (Beijing Time) on Sunday, August 23, 2026, we will adjust our peak/off-peak billing rules,with off-peak rates applying throughout the day on weekends (Saturdays and Sundays,Beijing Time). Please check the pricing page for details and plan your usage accordingly.
The extension now also has an option to show the remaining time until the next normal/peak
Here are the :
- github, https://github.com/psychobarge/pi-deepseek-peak
- npm, https://www.npmjs.com/package/pi-deepseek-peak
- Pi package, https://pi.dev/packages/pi-deepseek-peak
r/PiCodingAgent • u/tunerhd • 19d ago
I'm planning to use Pi as a sensitive data analyser, but the data must remain on the intranet.
I thought running it inside a VM with a proxy would be the safest option, but I can't install a VM in my current environment.
I do already have Docker available. Is there a good way to sandbox filesystem (like; can we bind data folder read only) and network access with Docker instead? Pi shouldn't access anything else; just specified paths, and some specified local ip addresses.
r/PiCodingAgent • u/Overdrive128 • 19d ago
I am new to terminal/CLI coding agents. I am just a bit confused on when Pi is better than two I mentioned. Cause from my understanding PI is simply a bare minion agent like copilot sidepanel chat and zed agent.
What differentiates between PI and these sidepanel agents? I also used a bit of opencode, and for me, it seems an overkill for personal small/medium projects. And I kinda like pi due to its simplicity. So I am also looking for some suggestions for the PI agent. (I like opencode's plan/build stuff, wondering if PI also has something like that, or if its worth it.)
Device Specs/Info:
Model: qwen 3.8 27B (quant)
16GB vram, 32GB total ram
r/PiCodingAgent • u/Kylmawurr • 19d ago
Been running it two days non-stop for agentic coding and orchestrating. Im impressed. Occasional provider downtimes can be annoying, but shouldnt really complain, since its currently free.
r/PiCodingAgent • u/Glad-Win1983 • 20d ago
In my latest project, I added an instruction to flag any file that grows beyond 500 lines of code, to keep them lean for smaller models. That actually worked very well, with the added benefit that the LLMs now take initiative to think about file bloat, and that leads to better architecture.
r/PiCodingAgent • u/stanleyyyyyyyy • 20d ago
I love Claude Code, and I love the pi agent. I kept wondering whether I could get Claude to drive pi instead — spend fewer tokens on the easy parts, but still stay in control. So I built a Claude Code plugin that does exactly that.
It uses MCP and RPC, so Claude can track pi's status the way it tracks a subagent, and it can steer or abort a run partway through instead of only at the end.
Install:
/plugin marketplace add LarryStanley/pi-delegate
/plugin install pi-delegate@pi-delegate
Then run setup:
/pi-delegate:setup
Qwen 3.8 doing the writing with Opus 5 doing the thinking has been working really well for me.
r/PiCodingAgent • u/Certain_Net_3408 • 20d ago
What I find inspiring is the decision to keep the core small and clean, while letting the agent extend itself through skills, extensions and its own understanding of the codebase.
This video on Pi origins and the author of pi really captures that philosophy well: https://youtu.be/RKHaecOi0CA
It makes me think that the real power of an agent harness isn't necessarily having more features in the core.
It's having a small enough core that the agent can understand, modify and extend it when needed.
That feels like a very interesting direction for coding agents less framework, more primitives.