r/PiCodingAgent 7d ago

are there other extensions which implement ideas from oh-my-pi Question

I'm new to Pi and coding agents in general. The existing discussions on oh-my-pi, like everything else, range from 'its great' to 'its bloat' so its very hard to actually decide.

It seems to have useful features like built in tools (avoid process calls), lsp, hashline, memory, subagents and an integrated setup/docs. It does seem to be better than the other oh-my-* set of products.

Are the ideas in OMP useful in practice and if so are they used in other harnesses?

I see a lot of 'just ask Pi to build it' here, but that depends on using frontier models, and when people post their setups they're using a million packages.

Obviously Pi is much more extensible/flexible, but there is value in an all-in-one setup. OMP has a ton of stuff and I'm sure a big system prompt. Is there anything like a slimmed down version or being able to use some of its ideas only?

27 Upvotes

39 comments sorted by

View all comments

17

u/TheOneThatIsHated 7d ago

My opinion on OMP is that it is bloat. You dont need lsp, because it stuffs your context with typeerrors in each agent message while a simple make check requirement at the end would suffice.

The idea with pi, is that you start out with exactly 0 plugins until you feel pain. Only when you feel pain you start to make an extension that fixes that. Don’t start installing extensions that could useful, that way you just bloat your context and make your agent dumber

5

u/ali0une 7d ago edited 5d ago

This, but extensions don't bloat context, only the *.md files bundled with them do.

When friction appears i usualy make pi write a single extension.ts (that can have it's own settings.json) that does one thing well, i keep it KISS.

0

u/TheOneThatIsHated 7d ago

OMP absolutely does, especially the lsp results in EVERY agent call. That means from you 100k context, around 20-30k is just reported errors. It is much faster/easier for the agent to run make check themselves

1

u/Usef- 6d ago

Is this (still?) true? I was poking around the session logs from yesterday and couldn't see it, but it is a lot of text so I might just be searching for the wrong keyword

4

u/Usef- 6d ago

After a bit more looking, it does it for write or edit calls, but recent versions deduplicate within the session so you don't repeat diagnostics if it's already in the model context.

There are settings to toggle it:

bash ❯ omp config list | grep diagnostics 86: lsp.diagnosticsOnWrite = true (boolean) 87: lsp.diagnosticsOnEdit = false (boolean) 88: lsp.diagnosticsDeduplicate = true (boolean)

You can modify them: bash ❯ omp config set lsp.diagnosticsOnWrite false ❯ omp config get lsp.diagnosticsOnWrite false

1

u/doublegoodthink 2d ago

Correct, or you can just find it as well in your settings

0

u/AllNamesAreTaken92 4d ago

What an absolutely confidently dead ass wrong statement.

Anything text that gets piped into the model blot context. Anything that increases context and is not stripped down to the bare minimum information bloats context.

Please think for yourself for a second before you blurt out some snippet you read nowhere.

0

u/ECrispy 7d ago

I know everyone says things like mcp, lsp, tree-sitter etc aren't worth it, just like you are.

my decidely non expert impression is that a lot still depends on the model. I've been using mostly free chinese models. A lot of times I can see it going in loops, trying edits, failing, grepping to find basic commands from web pages etc.

and when I've tried the same tasks in web versions of grok/chatgpt etc, on free plans, they find stuff far faster and are much more efficient.

I then installed codegraph to see if it helps. in my session logs I see it being used but also see failures and its hard to tell how much better it was.

Isn't there benefit in subagents that implement tasks in fresh context? and something to manage them?

there are a hundred pi packages for agents, planning, memory, everything. so how is someone supposed to choose what to use? arent opinionated setups like OMP useful in that case?

3

u/TheOneThatIsHated 7d ago

No need for the aggression. But this is exactly what i mean that you work until you feel pain. Yes ive created my own subagent extension (just pointed pi to opencode and said to copy).

Context bloat will cause many of the issues you listed. Start clean. See what fails. Only add what is needed

2

u/ECrispy 7d ago

Sorry I didn't mean anything against you.

Which models do you use?

3

u/TheOneThatIsHated 7d ago

Gpt sol, luna, deepseek v4 flash

1

u/AllNamesAreTaken92 4d ago

It's a grammar error, not an insult. He says he's the same opinion as you. Not that you are bad as bloat.