r/OnlyAICoding

▲ 6 r/OnlyAICoding+5 crossposts

I built my own harness to replace claude.ai | Self-hosted, beautiful, and works from any device

I built a harness for myself. It runs on my own machine. Its beautiful, fast, and built for professional work (I use it for my job).

The aesthetics and design was important to me, had to be easy to use, informative, feature rich but not bloated.

Features I built into it:

  • Runs locally in a browser: remote-accessible from any device with a browser, full mobile UI, installable as a home-screen app in Android.
  • Tabs: Multiple sessions open at once, and sessions keep running even if I close the browser
  • Prebuilt AGENTS.md per project type: Coding, Writing, Business, Legal, General
  • Epic mode: Projects too big for one conversation get a persistent spec, task list, and state that future sessions pick up
  • Persistent memory: browse, edit, or delete every memory, and see exactly what got recalled into any chat
  • Nightly worker agents: Automated nightly code review + fixer agents lay out verified, one-click fixes every morning
  • Private web search & deep research: Self-hosted search engine, cited reports (Crawl4AI).
  • Independent reviewer agent: A clean-context critique of code, docs, or writing, instead of the model grading its own work
  • Chats & projects: Quick chats each get an isolated folder with full tool access; serious work lives in project workspaces
  • Handles every file type, both ways: Reads and authors PDF, Word, Excel, PowerPoint, images, charts; plus skills and saved prompts with fill-in variables
  • Voice both ways: Local Whisper dictation and read-aloud replies; no audio leaves the machine

Nice touches: full system terminal access, a ⌘K command palette with cross-project search, a usage dashboard that counts every token, live system status, a real note-taking app, plan mode, light/dark themes, native notifications when a turn finishes, and hourly encrypted backups.

My goal with this post is to inspire others to build their own harness for themselves, its actually tons of fun! Like building out your workshop or garage the way you want to help you create, repair, & experiment on things.

u/PilgrimOfHaqq — 2 hours ago
▲ 8 r/OnlyAICoding+6 crossposts

CalTrainTrax

Hey commuters! I know there’s a plethora of Caltrain tracking apps, but I figured why not add one more to the mix! I just released it and looking for any feedback. Want to keep actively developing and improving this, so I’ll plan on implementing the most upvoted suggestion within the next week.

apps.apple.com
u/tomsoysauce — 12 hours ago
▲ 1 r/OnlyAICoding+1 crossposts

Does anyone have a name for that subtle "Sameness" creeping into model outputs lately? [R]

I've been running a lot of comparative evals across recent model releases—both API and open-weight—and there's a pattern I can't unsee.

After a certain number of turns, or when you push into niche territory, the outputs start converging. Same cadence. Same hedging phrases. Same blind spots. It's not full collapse. It's a kind of... homogenization. A creep.

My working theory: we're deep enough into the synthetic data flywheel now that we're seeing the first-generation effects. Not model collapse in the catastrophic sense, but a gradual loss of "texture" across models that share overlapping synthetic ancestry.

I've been calling this EchoCreep in my notes. The slow, creeping homogenization of model behavior driven by shared synthetic data lineage.

Has anyone else been tracking this? Is there a formal term yet? If not, what are you seeing in your evals that fits this pattern? I'm especially interested in:

  • Concrete eval metrics that might capture it
  • Whether fine-tuning on entirely human-curated data clears it
  • If you've seen it worsen between checkpoint versions

any feedback would be appreciated?

Thanks

reddit.com
u/BCondor3 — 21 hours ago
▲ 9 r/OnlyAICoding+1 crossposts

Best OpenRouter models for coding with Cursor ($20–25 budget)?

Hey everyone,

I’ve been using Cursor Pro for about four months, and I’m starting to run into issues with it… Mainly the usage limits on frontier models. It’s been a bit frustrating and I’m considering switching setup.

Right now I’m thinking about using OpenRouter with Cursor instead, and plugging in my own API models. My budget is around $20–25/month.

A few questions:

Is this a good idea compared to staying on Cursor Pro?
Which models on OpenRouter would you recommend for coding (best balance of quality + cost)?

Any setups or workflows that work especially well with Cursor + OpenRouter?

I’d really appreciate any advice or experiences from people who’ve tried this.
Thanks in advance!

reddit.com
u/JamieHM_ — 1 day ago
▲ 0 r/OnlyAICoding+1 crossposts

A research language I'm building with AI in the loop, and how I keep the AI from quietly breaking it

Work in progress, solo developer, so the usual caveats apply. I want to share the project but mostly the workflow question.

I'm building Yon, a programming language with a real type-checker (dependent types, identity/path types, a small proof kernel) that compiles to native code through MLIR and LLVM. I use AI as a pair formalizing logic and math solutions, generating code, exploring designs, drafting docs. The hard problem isn't getting the AI to write code. It's that in a system like this, AI-generated code can be plausibly wrong: it compiles, it looks right, and it silently makes the type-checker accept things it shouldn't. In a proof kernel that's the worst failure mode, because the whole point is to reject false statements.

So the workflow I've settled into is built around not trusting any single pass, AI-written or mine:

  • Every claim gets verified against the code, never from memory or from what the AI "says" it did. File and line, or it didn't happen.
  • An adversarial audit pass where I go hunting for false-accepts in the checker. Recent ones I found and closed: the universe-equality check was a tautology (it accepted Type_0 == Type_5), and a naturality check reported a false "proven" from key aliasing. Neither was a crash. Both were the system claiming something untrue. No amount of "the AI wrote it and it compiled" catches these; only reading it does.
  • A regression suite that runs the whole pipeline end to end on every example, on Linux x86-64 and macOS Apple Silicon, plus kernel oracles. AI slop doesn't survive a regression suite. That's the filter.

The takeaway I'd offer the sub: AI is genuinely fundamental for a project this size, but only if you treat its output as a suspect that has to earn trust through mechanical verification, exactly like you'd treat your own tired 2am code. The leverage is real; the guardrails are non-negotiable.

Where it's at: this is the current line of work. Version coming in the next stretch, and I'm rewriting the site and the documentation, plus a proper illustrative project. Repo's open if anyone wants to look at how the verification side is wired.

Repository: https://github.com/yon-language/yon

Website: https://yon-lang.org/

Subreddit: r/YonLang

u/anthem_reb — 1 day ago
▲ 5 r/OnlyAICoding+3 crossposts

Free ai for coding

Hi,

I previously used antigravity for 3 months with the 25$/month plan. Currently I am using vs code with kilo code and am running DeepSeek v4 pro through open router. I am also exploring using the free aws 100$ but it isn’t working for some reason. I have also checked out gitlab and heard about a notion bug that lets you code with it. Is there any loopholes or optimal ways to get frontier ai for free or at a very low cost (I am ok with trials aswell) to code on an ide? I am also curious on hearing your guys setups.

Any information on this matter helps.

Thank you

reddit.com
u/submarinebeansteam — 1 day ago
▲ 330 r/OnlyAICoding+69 crossposts

I built an open-source, self-hosted AI gateway: 237 providers (90+ free), auto-fallback combos, and a 10-engine token-compression pipeline (MIT)

Builders-welcome post with the substance up front (disclosure: I'm the maintainer). OmniRoute is a free, MIT, self-hosted AI gateway — one OpenAI-compatible endpoint over 237 providers — built around two problems: runs dying on a provider 429, and tokens bleeding on tool/log output.

One endpoint, 237 providers — 90+ of them free. You point any tool or agent at a single OpenAI-compatible endpoint (localhost:20128/v1) and it can reach 237 LLM providers without you rewriting anything. 90+ have free tiers and 11 are free forever (no card), which aggregates to ~1.6B documented free tokens/month — and that's honest, pool-deduped math (we count each shared pool once instead of inflating it; the methodology is public in the repo). There's a one-command setup-* for 13+ coding tools (Claude Code, Codex, Cursor, Cline, Roo, Kilo, Gemini CLI…), so switching your existing setup over takes seconds.

Fallback combos — so it never stops mid-task. A "combo" is a ladder of models the router walks automatically: your subscription first, then API keys, then cheap models, then free ones. When a provider returns a 500 or you hit a rate limit, it slides to the next target in milliseconds, mid-request, and your tool never even sees the error. There are 17 routing strategies (priority, weighted, round-robin, cost-optimized, auto/coding:fast…) plus three resilience layers — a per-provider circuit breaker, a per-key cooldown, and a per-model lockout — so one dead key can't take down a whole provider.

Fusion — an ensemble mode for the hard steps. Beyond simple routing, there's a fusion strategy that fans a single prompt out to a panel of different models in parallel and then has a judge model synthesize one best answer (mixture-of-agents, built in). It's cost-aware, so easy turns stay on one fast model and it only fuses when the step is worth it.

A 10-engine compression pipeline — the part most routers don't have. Every request flows through a transparent compression pass you can toggle/stack per combo. Instead of one trick, it stacks the best of the open-source ecosystem: RTK filters command/tool output (git diffs, test logs, builds) at 60–90%, Microsoft's LLMLingua-2 does ML semantic pruning, Caveman handles prose, session-dedup strips repeats across turns. Critically, code, URLs and JSON are preserved byte-perfect, and a default-on inflation guard throws the compressed version away and sends the original if compressing would actually grow the prompt — it never makes things worse. On tool-heavy sessions that's ~89% average input-token reduction (an 8k-token git diff becomes a few hundred). Full credit to every upstream project (RTK, Caveman, LLMLingua-2, Troglodita) is in the README.

Agent-native — the agent can drive the router itself. There's a built-in MCP server (95 tools across 30 audited scopes, over stdio / SSE / streamable-HTTP), plus A2A (v0.3, JSON-RPC 2.0) support. That means an agent can query providers, switch combos, read its own remaining quota and manage memory through the gateway — not just consume tokens through it.

It's 100% local (zero telemetry, AES-256-GCM at rest), MIT-licensed, has a prompt-injection guard on every LLM route, opt-in memory, and runs on npm, Docker, desktop or your phone via Termux.

For context on whether it's worth your time: it's grown to ~9.8K GitHub stars, 1,490+ forks and 280+ contributors in ~4.5 months, with 21,000+ automated tests and 1,830+ issues closed — so it's a battle-tested project, not a brand-new experiment.

npm install -g omniroute

GitHub: https://github.com/diegosouzapw/OmniRoute · Site: https://omniroute.online

Would value a critique of the routing/compression architecture from this crowd.

u/ZombieGold5145 — 3 days ago
▲ 54 r/OnlyAICoding+13 crossposts

I wanted to learn how coding agents work, so I built one and want to share what I learned

Hey everyone!
I'd like to share a project I've been working on, it's called Orin and it's a coding agent.

I use coding agents constantly, and at some point I realized I had basically no idea what was happening between me hitting enter and code showing up.

Also I was tired of building apps I wasn't able to really debug because I didn't know how they were being built in the first place so I got busy studying: read a bunch of articles, still felt like a black box, so I just tried to build one.

Couple things worth saying before anyone digs in:

It's mostly AI-written code, no point in hiding that, but I don't think "written by AI" and "sloppy" have to go together.

I try to run all my projects in the most professional way I know of, following actual SDLC practices: spec first, then an issue, then the implementation, then a real PR review before anything merges, not vibe-coding where you just accept every diff.

Whether that shows in the actual code is for other people to judge, not me.

Also this isn't some original idea I came up with: I cloned and read through pi.dev, nanocoder, and opencode as primary references (and skimmed Cline/Kilo Code for patterns), and basically tried to take what made sense to me from each and put it into one implementation.

My whole idea was try and build something that took the best from each to make a coding agent that would perform well. I plan to benchmark it on SWE-bench Verified sooner or later, but I don't think it's ready just yet: there are rough edges and bugs, but its usable.

Some of the actual implementation stuff, for anyone who cares about those rather than the pitch:

  • The loop is just: stream a response from the provider, push it to message history, if there are tool calls run them, push the results back, repeat until there's nothing left to call.
  • The loop is completely headless — it doesn't touch the terminal, it just emits events. The TUI (SolidJS on top of OpenTUI, just like opencode) is a separate subscriber to those events. You could swap in a totally different frontend without touching the loop at all.
  • Another thing I got from OpenCode are edits: they go through a fuzzy replacer chain, not a single exact string match — if the model's oldText is off by whitespace or indentation, it falls through a chain of matchers before giving up. I had never thought about this and can confirm it's the kind of thing you don't appreciate until you actually try to implement it.
  • There's a model routing mechanism that switches different models based on what the agent has to do:
    • explore runs on a cheap/fast model by default,
    • implement on a code-tuned model,
    • review on the main model.
  • Another thing I borrowed from the web is a delegate_read tool that lets the main agent hand off read-heavy grunt work (scanning a big file, summarizing logs) to a cheap model so that content never bloats the main context.
    • It's basically a one off LLM call that only returns a distilled summary, seems dumb but works surprisingly well with capable models like Claude who know exactly what to look for and delegate super well to other agents.
  • Tool selection isn't a static allow-list. Every turn runs a BM25 retrieval pass over the full tool catalog (including MCP tools) via a super cool library called Ratel, so the model only ever sees the tools relevant to what it's doing in that specific turn instead of the whole catalog every time. There's even an A/B flag to compare tool_pool=ratel vs tool_pool=default in your own telemetry to see if it even makes a difference (similar to how rtk gain works).
  • Every file write gets snapshotted into a shadow git history before it happens, including stuff done through raw bash — allowing the agent to have a proper /undo /redo command.
  • When I implemented subagents I wanted to explore different isolation mechanisms and ended up with 3 different ones you can configure yourself:
    • shared (edits land on the main working tree, safe because they run serially),
    • worktree (isolated branch)
    • sandbox (a real E2B cloud VM, edits get thrown away on dispose — for code you don't trust at all).
    • The lead model can escalate isolation for a given task but never go below the configured floor.
  • I implemented hooks borrowing from nanocoder and opencode. This allows the agent to be expanded by third party code and I bundled some sensible defaults:
    • there's a before_tool hook that rewrites bash commands through rtk so that command output gets compressed before it ever reaches the model.
  • In my daily work I build AI agents and vibe coded internal tools for my company and after a while I saw how much telemetry is crucial for debugging and actually understanding agent behaviour, so I decided that my agent would ship native OTLP tracing by default.
    • This means that by adding just one environment variable you can see full traces in your telemetry platform (Langfuse, Tempo, Jaeger, whatever you like) out of the box.
  • Orin is also provider-agnostic (currently supports OpenRouter, OpenAI, Anthropic, OpenCode Go/Zen and Regolo if you want an EU-hosted option) — switching provider or model happens at runtime through a provider registry, no restart needed.

None of this is groundbreaking, it's just what I landed on after reading other people's code and deciding what to keep.

Try it:

git clone https://github.com/thetombrider/coding_agent.git

cd coding_agent

./install.sh

orin

There's also a deepwiki writeup if you want the architecture without reading source: https://deepwiki.com/thetombrider/coding_agent

I would really appreciate feedback in any shape or form. I'm learning and sharing my journey, hope it helps someone.

u/Immediate_House_6901 — 3 days ago

Student in India: Which $20 AI coding plan gives the best agentic coding with the fewest usage limits?

I'm a 4th-year CSE student from India, and I'm looking to buy one AI coding subscription with a budget of around $20/month.

My primary use case is agentic coding, not chat. I want to build websites and full-stack projects mostly by giving prompts and letting the AI work through the codebase.

My workflow would look something like this:

\- "Redesign this entire landing page to feel like Linear/Vercel."

\- "Implement authentication, dashboard, and database."

\- "Refactor the whole codebase."

\- "Fix all TypeScript errors."

\- "Build this feature end-to-end."

So I'm looking for something that can handle large repositories, maintain context well, and let me run long autonomous coding sessions without constantly worrying about hitting limits.

I'm not looking for the best chatbot. I'm specifically looking for the best coding agent.

The options I'm considering are:

\- Cursor Pro

\- Windsurf Pro

\- Google AI Pro (Gemini CLI/VS Code workflow)

\- OpenCode (if it's worth considering)

A few things about me:

\- Student in India, so value for money matters.

\- I mainly build websites using Next.js, React, TypeScript, Tailwind, Node.js, etc.

\- I expect to code several hours almost every day.

\- I don't mind using VS Code if it means significantly higher usage limits.

\- I care more about real-world agent capability and practical limits than benchmark scores.

My biggest concern is usage limits. Marketing pages are often vague, so I'd love to hear from people who actually use these tools daily.

For those of you who code professionally or use AI for hours every day:

  1. Which plan gives you the most agentic coding for around $20/month?

  2. Which one hits limits the least?

  3. If you could only subscribe to one today, which would you pick and why?

Looking for real-world experiences rather than marketing claims. Thanks!

reddit.com
u/Consistent_Raccoon95 — 2 days ago
▲ 5 r/OnlyAICoding+1 crossposts

Made a tool to auto-generate .cursorrules from your actual stack

https://i.redd.it/xijc5m69817h1.gif

Cursor is great until it improvises on the parts I never told it about — the data layer, where files belong, naming that doesn't match the repo. .cursorrules fixes that, but I never kept mine current, so Cursor kept making those structural calls for me.

Payo interviews you about your project and writes .cursorrules + .cursor/rules/** tailored to it, so Cursor follows your conventions from the first prompt instead of guessing. One-time setup, then you stop re-explaining.

Try it now:

  npx @uge/payo
  # or
  bunx @uge/payo

The same questionnaire also outputs the equivalent for Claude, Copilot, Codex, Windsurf, and Antigravity, if you switch tools — and it covers 25 frameworks / 24 data layers / 4 DBs across TS/JS, Python, Go, and Rust.

Curious what you all keep in .cursorrules — what rule has made the biggest difference for your output? And if you know a stack deeply, I'd really value help adding it or improving the defaults for one already supported — feedback

and PRs welcome.

Repo: https://github.com/uttam-gelot/payo

Site: https://payo.uttamgelot.com

reddit.com
u/uttam_b — 3 days ago
▲ 8 r/OnlyAICoding+5 crossposts

Build AI Code Review Agent ( looking for feedbacks and contribution )

I've been learning AI engineering by building instead of just watching tutorials.

To push myself beyond the basics, I started building an AI Code Review Agent. The goal wasn't to create a polished product—it was to force myself to understand how these systems actually work.

Some of the concepts I ended up learning along the way:

  • Retrieval-Augmented Generation (RAG)
  • Embeddings and vector search
  • ReAct-based agent workflows
  • LLM-powered code analysis
  • GitHub integrations

One thing I learned quickly is that getting an LLM to answer questions isn't the hard part. Making retrieval reliable, giving the agent the right context, and designing good workflows takes much more iteration than I initially expected.

The project is open source and still a work in progress, with plenty of room for improvement as I continue building and learning.

Repository: https://github.com/RishabhhG/codereview-agent
Linkedin : https://www.linkedin.com/in/rishabh-guptaaa/

If anyone wants to try it out, use it, or contribute, I'd really appreciate the feedback. I'm also happy to discuss the architecture, implementation decisions, or hear suggestions for improving the agent.

u/Aggravating-Drama916 — 4 days ago
▲ 2 r/OnlyAICoding+5 crossposts

Building an elite computational materials team to automate soft-matter design. I have the tech and active lab validation—I’ll show you the code and data right away so you know it’s real. (Remote / Collab)

Hey reddit nerds,

Proud to say this is my first time posting on reddit. But seems this is the best place to turn for what I'm looking for... I am the founder of an early-stage computational materials and molecular design venture, and I’m looking for serious scientific talent to join my inner circle. I am not going to wave hands about generic "AI discovery." I have a functioning platform, and if you are the right fit, I will show you our pipeline, terminal transcripts, and data in our first call so you can see exactly what we've built.

What we have right now:

Active Physical Validation: We have a signed, funded Sponsored Research Agreement (SRA) with a top-tier academic biophysics/materials lab to ground our predictive engine in analog reality.

The Locked Panel: A 30-well experimental design plate of our deterministically engineered synthetic variants is undergoing various stress tests in a physical lab.

Complete Data Integrity: The entire pipeline runs on an immutable, content-addressed data provenance ledger mapped to strict data-integrity standards

We are transforming soft-matter engineering from an empirical guessing game into a Materials Design Automation (MDA) engine. We design custom, sequence-defined polymers and macromolecular architectures engineered to handle extreme environmental, thermodynamic, and non-equilibrium state transitions. We aren't blindly guessing molecular structures and praying. We built a Thermodynamic Constraint-Satisfaction Network that routes structural engineering based on specific target payload or system failure mechanics:

The "Matrix" Loop: For macromolecular systems vulnerable to structural dissociation under stress, our engine optimizes for precise charge asymmetry constraints ($\kappa > 0.40$) and specific Sequence Charge Decoration (SCD) topologies to form rigid, system-spanning physical networks that lock components in place

The "Shield" Loop: For components that fail via bimolecular aggregation or localized misfolding, the engine forces alternating topologies ($\kappa < 0.25$) to create highly repulsive, fluid steric spacers that maintain spatial stability.

This engine is already university backed and we have high aspirations for the impact it'll have on world health ( Will explain when we connect)

.

Who I need: I have the operational chassis and the physics engine moving. I need an elite team of scientists and engineers to help scale, refine, and push the circumference of this grid out. If you have deep, hands-on experience in:

  • Inverse statistical mechanics & polymer/soft-matter physics
  • Coarse-grained Molecular Dynamics (CG-MD) or enhanced sampling simulation
  • Generative biomolecular/polymer design codebases (Diffusion models, ESM-family, structural inference networks, etc.)
  • Physical chemistry, glassy state dynamics, or ionic transport (with an eye for broad materials engineering, from macromolecular stabilizers to solid polymer electrolytes)

Who I'll Take: honestly, if you are highly fluent in claude code, the science is just a plus. I need hustlers who are fluent in claude code. We can teach you the science (tbh many tasks you don't need to even get it).

This venture took off much sooner than i anticipated and i have a mandate to assemble a 15 person team within the next 3 weeks. If you want to be on that team, dm me here with a brief bio and/or CV and include the # of hours per week you can dedicate to this. Comp can be paid in all forms, though most of our recent hires are taking option packages so we can use all fundraising proceeds for compute and commercialization.

thanks!

a fellow nerd

reddit.com
u/NinthGreenat9 — 3 days ago

Student hitting AI usage limits constantly — any better free options for building a project?

Hey everyone,

I'm a student working on a project and keep running into the same issue — I hit the usage limit on whatever AI I'm using, so I'm forced to switch to another one, and I lose all my context/progress in the process. It's getting frustrating.

Also heard GitHub Copilot's free Student plan recently got cut down a lot (premium models removed, new sign-ups paused), so that's not really reliable anymore either.

Currently using a mix of Claude's free tier and a couple others, but none of them alone feel like enough for a full project without hitting caps.

For students out there — what's actually working for you right now? Looking for:

• Free or student-discounted AI tools with decent usage limits

• Anything that helps keep context when switching between tools

• General tips for managing a real project without constantly running out of quota

Appreciate any suggestions, thanks!

reddit.com
u/Rash_Fushigami — 4 days ago
▲ 8 r/OnlyAICoding+1 crossposts

Claude Code -&gt; WriteFile -&gt; Semgrep -&gt; Classifier (to prevent security bug)

Hi all,

not sure this is the right approach, but I've been testing it in my coding agent. Every time it writes a file, the hook runs Semgrep against it to catch unsanitized user input, then acts as a classifier: it blocks on critical stuff or surfaces a warning depending on the type of input involved. Ends up saving a lot of tokens compared to loading a secure coding skill.

if anyone wants to check the code and give me some feedback, it would be really appreciated :)

I started building it as a Claude Code hook after noticing that both Sonnet and Opus often fail to sanitize URLs, leading to SSRF and DNS rebinding, and IMO this is kind of hard to spot than the more obvious stuff like XSS or open redirects.

What do you think? Thanks!

github.com
u/theMiddleBlue — 5 days ago
▲ 110 r/OnlyAICoding+1 crossposts

DeepSeek Stan 4 life

DS had finished a prompt and I was like how bad is it?

Rare user win. Thank you team DeepSeek 🙏

I still I’m just

Thankful

u/No_Claim2881 — 8 days ago

Help me to decide

My lead asked me to recommend the best AI coding tool—Cursor, Antigravity, or any other alternatives. For context, I’m currently using Claude Code. I’d love to hear your opinions, especially on pricing, usage limits, context window, and any other trade-offs or limitations worth considering.

reddit.com
u/omniscient75 — 6 days ago
▲ 21 r/OnlyAICoding+4 crossposts

Android Devs: Which AI coding tool do you actually use daily?

Android developers,

I'm curious ,what AI coding tool do you actually use in your daily workflow?

- Cursor

- Claude

- GitHub Copilot

- ChatGPT

- Windsurf

- Something else?

I'm building an Android startup using Kotlin, Jetpack Compose, MVVM, Firebase, and Agora, so I'd love to know what real Android developers are using today ,not what you'd recommend, but what you personally use.

Feel free to mention why you chose it.

reddit.com
u/Major-Active4440 — 9 days ago
▲ 88 r/OnlyAICoding+3 crossposts

Anyone building their own harness?

A month ago I found Pi and then found Pi-Web. Since then I have been building on top of it and now I have my own harness that works much better than any of the harnesses I have used. I copied the look of claude.ai so its clean, minimal and functional. I just cant get myself to work inside a terminal.

Anyone else building their own? I am curious. Would love to share ideas to improve on each other's builds.

In case anyone asks: I am not making my harness public, its highly personalised to my workflow just wanted to find others to discuss this with as I am having tons of fun!

reddit.com
u/PilgrimOfHaqq — 11 days ago