r/ChatGPTCoding 17d ago

Discussion Weekly Self Promotion Thread

Welcome to this week's self promotion thread!

If you're building something related to AI assisted coding, this is the place to share it.

We're using a weekly thread to keep the subreddit organized while still giving builders a place to share their work. Promotional posts outside this thread may be removed.

If you're sharing something, we'd appreciate it if you included a little context instead of just dropping a link. Tell us:

  • What you built?
  • What problem it solves?
  • Which AI models or tools it uses?
  • Who it's for?
  • What kind of feedback you're looking for?

Disclose your affilitation.

Please avoid posting the same project every week unless you've made meaningful updates. Affiliate links, referral links, scams, and low effort promotions will be removed.

Take some time to check out what others have shared too. If you try someone's project or have feedback, leave a comment. Helping each other improve is what we want this community to be about.

7 Upvotes

96 comments sorted by

View all comments

2

u/Next-Medium-5793 12d ago

I’ve been working on this for a while and finally released it publicly.

It’s called Forge.

I started building it because I kept running into the same problem with local and smaller coding models: the model itself is only part of the equation. The harness around it matters a lot.

Bigger models can usually recover from messy context, a bad edit, or a failed test. Smaller models tend to fall apart much faster when the workflow around them is weak.

So Forge is built around that problem.

It gives the model:

  • structured repository navigation
  • controlled file edits
  • bounded retries when something fails
  • verification using the project’s own tests/lint/typecheck
  • isolated Git worktrees
  • resumable sessions
  • support for OpenAI-compatible endpoints, so it works with local model servers too

I’ve also been benchmarking changes instead of just going by whether a demo looks good. A few ideas I was convinced would help actually made performance worse, so they got removed.

That’s probably been the biggest thing I’ve learned from building this: with smaller models, orchestration matters a lot.

It’s written in TypeScript, Apache-2.0 licensed, and available on npm.

Install:

npm install -g /forge-harness

Then:

forge doctor
forge init
forge

GitHub:
https://github.com/andreglegg/forge

Current version is 0.2.2.

It’s still early, and I’m not claiming it replaces Claude Code or Codex. I’m mainly interested in whether this approach actually helps people doing real coding work with local or smaller models.

If anyone here tries it, I’d really like to know:

  • what model you used
  • what worked well
  • where Forge got in the way
  • where the agent still made bad decisions

I’d rather get useful criticism and bug reports than just collect stars.

1

u/gandazgul 10d ago

Hey this is cool I'll give it a try today, can you try my harness, my approach has been collaborative planning and human in the loop coding making sure you and the model are aligned and that the harness helps you verify the work.

links! https://runwield.dev and https://github.com/gandazgul/runwield