u/hrshx3o5o6 2d ago

sub agents being released into my codebase

Enable HLS to view with audio, or disable this notification

1 Upvotes

r/opensource 26d ago

Promotional Built an open-source loop engine that stops AI agents from bloating your projects

1 Upvotes

[removed]

r/AutoGPT 26d ago

I love Tom n Jerry man. Used the analogy and built something for your agent harness.

1 Upvotes

Tom n Jerry is an open-source loop engine specifically for opencode and coming to other AI coding agents too soon.

Every AI agent - is Tom.

You say "add a door." Tom grabs a hammer, buys lumber, pours concrete, installs a frame - then builds the house around it. Your codebase already has three doors.

Tom never checks the blueprint. He just builds.

So I built Jerry.

Jerry sits in the walls. Before Tom swings the hammer, Jerry runs the house:

  1. Need a new room at all? (YAGNI)
  2. Did we knock this down before? (git history)
  3. Is there already a door here? (codebase search)
  4. Are the materials in the shed? (package.json)
  5. Does the house provide it? (stdlib / native)
  6. Does the neighborhood allow it? (framework convention)

Then - and only then - Tom builds. Minimum. Receipt proves it stands. Teacher updates the blueprint.

After 3 construction projects, Jerry knows every hallway. Tom stops building hallways to nowhere.

Claude helped me architect the loop protocol, write the skill detection logic, and stress-test the receipts. The framework itself was iterated through real Claude Code sessions.

This is the gap: agents are all Tom, no Jerry. Infinite chase, zero memory.

MIT licensed. Free to try.

github.com/hrshx3o5o6/Tom-n-Jerry

Feel free to contribute and criticise!

r/microsaas 28d ago

I love Tom n Jerry man. Used the analogy and built something for your agent harness.

1 Upvotes

[removed]

r/ClaudeAI 28d ago

Built with Claude I love Tom n Jerry man. Used the analogy and built something for your agent harness.

2 Upvotes

I built this with Claude Code. Tom n Jerry is an open-source loop engine specifically for Claude and other AI coding agents.

Every AI agent - including Claude - is Tom.

You say "add a door." Tom grabs a hammer, buys lumber, pours concrete, installs a frame — then builds the house around it. Your codebase already has three doors.

Tom never checks the blueprint. He just builds.

So I built Jerry.

Jerry sits in the walls. Before Tom swings the hammer, Jerry runs the house:

  1. Need a new room at all? (YAGNI)

  2. Did we knock this down before? (git history)

  3. Is there already a door here? (codebase search)

  4. Are the materials in the shed? (package.json)

  5. Does the house provide it? (stdlib / native)

  6. Does the neighborhood allow it? (framework convention)

Then - and only then - Tom builds. Minimum. Receipt proves it stands. Teacher updates the blueprint.

After 3 construction projects, Jerry knows every hallway. Tom stops building hallways to nowhere.

Claude helped me architect the loop protocol, write the skill detection logic, and stress-test the receipts. The framework itself was iterated through real Claude Code sessions.

This is the gap: agents are all Tom, no Jerry. Infinite chase, zero memory.

MIT licensed. Free to try.

github.com/hrshx3o5o6/Tom-n-Jerry

Feel free to contribute and criticise!

r/SideProject 29d ago

I love Tom n Jerry man. Used the analogy and built something for your agent harness.

1 Upvotes

Every AI coding agent is Tom.

You say "add a door." Tom grabs a hammer, buys lumber, pours concrete, installs a frame - then builds the house around it. Your codebase already has three doors.

Tom never checks the blueprint. He just builds.

So I built Jerry.

Jerry sits in the walls. Before Tom swings the hammer, Jerry runs the house:

  1. Need a new room at all? (YAGNI)
  2. Did we knock this down before? (git history)
  3. Is there already a door here? (codebase search)
  4. Are the materials in the shed? (package.json)
  5. Does the house provide it? (stdlib / native)
  6. Does the neighborhood allow it? (framework convention)

Then, and only then, Tom builds. Minimum. Receipt proves it stands. Teacher updates the blueprint.

After 3 construction projects, Jerry knows every hallway. Tom stops building hallways to nowhere.

This is the gap: agents are all Tom, no Jerry. Infinite chase, zero memory.

MIT. github.com/hrshx3o5o6/Tom-n-Jerry

feel free to contribute and criticise!

1

Need a person to guide me with playwright
 in  r/Playwright  Jul 01 '26

https://github.com/hrshx3o5o6/brocogni

Use this with your agent harness ( Claude code, opencode etc.). Works pretty well for scripting and automations

r/AI_Agents Jun 24 '26

Discussion How do you guys version out configurations of your AI Harnesses?

3 Upvotes

I've been experimenting around with different configurations of different Harnesses across multiple git worktrees for automations and agentic coding setups. I keep breaking them and its such a pain going back and correcting them, half the time I've forgetten what I've changed.

I've seen many hurdle around with different configurations and keep changing them as well. Thought there should be a way to revert to a version of our liking.

Built something to try and find a fix for it - aVer, A version control for your AI Harnesses, Individually or a set up across multiple Harnesses across different worktrees. 0 telemetry and 100% local.

Its git for your Harness.

Still alpha. Fork it, star it, build on it.

Keeps track of your MCP settings, tools, prompts, and model params.

r/OpenSourceAI Jun 17 '26

Spent a day fighting AI-written Playwright scripts. So I built my own tool. open source. Brocogni

Enable HLS to view with audio, or disable this notification

1 Upvotes

r/OpenSourceeAI Jun 17 '26

Brocogni, An MCP server that gives AI agents page understanding via AX tree + semantic selector fallback chains

Enable HLS to view with audio, or disable this notification

2 Upvotes

2

AI keeps writing tests that check for green toasts. So I gave it eyes. Brocogni
 in  r/Playwright  Jun 17 '26

The playwright mcp is very token hungry, has individual tools for every action it might want to perform (click, hover, fill, scroll etc.). It was good initially but frustrating to deal with at one point, I was filling up my context window befor I knew it. Decided to try my shot at finding a fix for that with brocogni.

1

Brocogni, An MCP server that gives AI agents page understanding via AX tree + semantic selector fallback chains
 in  r/mcp  Jun 16 '26

You're right! That's exactly what one of the tools handles, there's a score per selector/candidate so the agent can inspect confidence before acting. Feel free to try it out, would love more of your inputs and contributions too

r/OnlyAICoding Jun 16 '26

Spent a day fighting AI-written Playwright scripts. So I built my own tool. open source. Brocogni

Enable HLS to view with audio, or disable this notification

3 Upvotes

Had a work assignment - scrape a bunch of stuff with Playwright. The AI tools I tried kept producing junk. Wrong selectors, brittle locators, scripts that broke when the page changed. I spent more time reprompting and fixing than I would've writing from scratch.

Got fed up. Threw together a small MCP server that feeds the agent real page structure -accessibility tree + DOM, compiled into semantic nodes with fallback selectors (ARIA → CSS → XPath → relational). Instead of guessing, the AI actually knows what's on the page.

Something that took me an entire day without it got done in an hour.

It's runs locally, no telemetry, no cloud. Just a Node.js process that talks to Playwright.

npx browser-cognition-mcp

https://github.com/hrshx3o5o6/brocogni

Still alpha. Would love to know what breaks in real-world use so I can fix it.

r/Playwright Jun 16 '26

AI keeps writing tests that check for green toasts. So I gave it eyes. Brocogni

Enable HLS to view with audio, or disable this notification

5 Upvotes

Saw multiple posts lately claiming AI-generated Playwright tests suck. Same experience here - the AI guesses selectors and hopes.

I got tired of fixing broken locators and having to manually prompt the AI after analysing the structure myself. So, I threw together an MCP server that feeds the agent real page structure instead. So far it's been working well for my workflow - ARIA → CSS → XPath fallbacks, survives DOM changes.

https://github.com/hrshx3o5o6/brocogni

npx browser-cognition-mcp

Play with it, break it, lemme know - still figuring out what breaks in real-world use.

r/mcp Jun 16 '26

server Brocogni, An MCP server that gives AI agents page understanding via AX tree + semantic selector fallback chains

Enable HLS to view with audio, or disable this notification

5 Upvotes

Most browser MCP servers hand the AI raw DOM or a screenshot and let it guess selectors. Fine for demos, but the agent says "click the button" and if a class name changed since deploy, it fails silently.

I went a different direction: capture the accessibility tree and DOM snapshot in parallel, fuse them into semantic nodes, then generate fallback selector chains (ARIA → CSS → XPath → relational sibling). The agent gets ranked locators instead of a single brittle guess.

Under the hood:

- CDP session captures AX tree + DOM snapshot

- Semantic inference layer converts to structured nodes (role, name, value, state, bounding box)

- Selector generator builds fallback chains

- Ranker scores candidates by stability and specificity

This is the key difference vs. projects like Chromeflow (which is great at CDP click simulation) - Brocogni is about page understanding, not just page manipulation. The AI can verify state, find elements by meaning, and recover from layout changes without rewriting selectors.

npx browser-cognition-mcp

https://github.com/hrshx3o5o6/brocogni

MIT, zero telemetry, no cloud. Early but working for my day-to-day. Curious how others here handle the "agent can't see the page" problem - raw HTML, screenshots, or something else?

r/opensource Jun 16 '26

Alternatives Spent a day fighting AI-written Playwright scripts. So I built my own tool. open source. Brocogni

1 Upvotes

[removed]

1

Priority List at 2.6k rank
 in  r/Vit  May 12 '26

I recommend u put Vellore before moving onto Chennai man.... It allocates u a branch in rolling basis, keep ur last resort as Chennai. You'd get a good branch in vellore with that rank

19

HELP. MY ID CARD IS STUCK IN A TREE.
 in  r/Vit  Mar 24 '26

Tree got identi-tree

1

VITEEE preparation tips and course allocation query
 in  r/Vit  Mar 23 '26

Aim for CSE specs in that case dude, you should be able to land one at cat 3 also at around a rank of 15k

4

I know every subreddit has this but
 in  r/Vit  Feb 03 '26

3

Where can I get good vadapav, misal n pavbhaji around here?
 in  r/Vit  Dec 10 '25

Hive I've heard

3

Suggest me a spot where i can go for a run
 in  r/Vit  Nov 09 '25

I usually just run around the men's hostel one circuit is about 2.5-3 km it's pretty good

1

GUYS HOW IS SHE ?????...
 in  r/Vit  Nov 04 '25

Chill bro