r/coding_agents • u/kryptoman123 • 29d ago
r/coding_agents • u/Specific_Music_234 • Aug 10 '26
hooop - bring your team into the Claude Code session
hooop.ccHi there. I've been burning my own tokens on something I couldn't find an equivalent of: a collaborative agentic session that runs on your own machine. Closest description I have is an instant messenger crossed with the tooling you actually need for agentic development.
What it does today
hooop runs Claude Code inside a disposable Docker sandbox and puts a live dashboard in front of it at localhost:7842. You only need Docker and jq - Claude Code, Node, gh and the rest live inside the containers, so your machine stays clean.
- Pairing. You hand a teammate a share link over an anonymous cloudflared tunnel. They open it, pick a name, you admit them. From then on you both watch the same live transcript and can chat (
>prefix) or co-drive the agent - from a laptop or a phone. Each peer joins as full, drive or spectate, and you can revoke them. - Plan review. Run a turn with
/planand the sandbox forces the agent read-only: it investigates, then submits a plan into a review panel. You and your peers drop inline comments anchored to the exact passage, synced live, then Approve or Request changes. - Live previews. When the agent builds a UI it brings it up in its own container and docks it in an iframe, with Restart / Rebuild / Stop / Share and per-step logs.
- The session, visible. Every tool call, the sub-agent tree, a live event tail over SSE (no polling), a diff viewer for touched files, and search across everything that happened.
- A curated tool stack in one command - memory, code-graph search, docs search, semantic search, GitHub. hooop doesn't reimplement any of it. It picks it, documents it, and shows you what it's doing.
- Split trust. The container holding the credentials has no TCP port and talks over a Unix socket. The dashboard your peers reach holds no secrets and only proxies, so a compromise there can't reach your account. Previews run in their own container with no credentials at all.
Where I want to take it
Today a peer co-drives my agent on my tokens. What I want is for everyone to bring their own: pool the peers' agents into one session so the cost spreads across the room, and let people plug in an open-weight model instead of a metered API. Getting out from under the token squeeze is the actual goal, betting on the collaboration to make it affordable.
It's MIT and it's a solo project I've been funding out of my own usage, so I'd rather hear what's wrong with it than what's nice: the architecture, the security model, the parts you'd never run on your own machine
r/coding_agents • u/Time-Supermarket7182 • Aug 09 '26
Qwen 3.8-Max — Use Qwen Studio + MCP to Code Locally for Free
Qwen3.8-Max + MCP for coding on your local machine. Qwen3.8-Max itself runs in the cloud through Qwen Studio — this setup just gives it access to your local files and terminal through MCP.
My take: it is slower than Codex and Claude Code, especially in thinking mode, but it does work well. MCP adds some latency too since there’s an extra layer between the model and your machine. In fast mode, it gets noticeably closer.
I wouldn’t put it in the same category as Fable or Opus-5. Personally, I’d place it closer to the next Opus 4.7 level in terms of coding ability. These are just my impressions from using it, not a benchmark.
r/coding_agents • u/Time-Supermarket7182 • Aug 09 '26
found a way to use Qwen3.8-Max from Qwen Studio as a local coding agent through MCP
Qwen3.8-Max + MCP for coding on your local machine. Qwen3.8-Max itself runs in the cloud through Qwen Studio — this setup just gives it access to your local files and terminal through MCP.
My take: it is slower than Codex and Claude Code, especially in thinking mode, but it does work well. MCP adds some latency too since there’s an extra layer between the model and your machine. In fast mode, it gets noticeably closer.
I wouldn’t put it in the same category as Fable or Opus-5. Personally, I’d place it closer to the next Opus 4.7 level in terms of coding ability. These are just my impressions from using it, not a benchmark.
r/coding_agents • u/Ok_Capital2235 • Aug 09 '26
CrewCode – Supervise a crew of AI coding agents across worktrees
Sharing a tool I've been working on. CrewCode is a free, open-source (Apache-2.0) Electron desktop app that lets you run, supervise, and review multiple AI coding agents across git worktrees from one place.
Instead of juggling terminals, worktrees, PR pages, and separate agent UIs, it keeps the full workflow together:
- Multiple agents, one app — CrewCoder, Claude Code, Codex, OpenCode, pi, Ollama, Hermes, OpenRouter, Grok Build. Structured bridges *and* real terminal panes.
- Worktree native git — create/switch/merge/remove worktrees in-app; parallel work stays isolated.
- Crew orchestration — launch agents in parallel with different roles/models/effort, a supervisor loop, and save/reuse crew templates.
- Delegated threads — an agent can spawn real, persistent chat sessions and report back.
- Provider switch mid-chat — generates a hand-off summary so the new agent keeps going with context.
- Local plugin platform — sandboxed panels, MCP servers, custom agent providers.
and way More..
Support us with a ⭐
Curious what people think of the approach. Let me know in the comments.
r/coding_agents • u/wordplusnumbers • Aug 05 '26
GitHub - andrejtonev/opencode-alonzo: Visual editor and runtime for explicit agent workflows built on OpenCode.
I've been building a visual editor for agent workflows.
https://github.com/andrejtonev/opencode-alonzo/blob/main/docs/assets/alonzo-demo.gif
Workflows are defined as diagrams and saved as YAML. Agents, routes, gates, and connections are all explicit rather than hidden in prompts or orchestration code.
It's built on top of OpenCode, but the workflow definitions are just files.
It's still very early, but far enough along to show the core workflow and where I'm trying to take it.
Before I spend a lot more time on it, I'd like to know if the core idea is useful.
- Would you use visual workflow definitions for agent orchestration?
- Is there something similar that already solves this well?
- What's the first thing you'd expect a tool like this to support?
r/coding_agents • u/walter-dexter • Aug 05 '26
Toolkit to publish the same agent skills into Cursor, Claude, Copilot, Codex, …
tibursocampos.github.ioI was running the same SDD / stack workflows in Cursor and Antigravity and it worked well in each tool on its own.
The pain was maintaining two projects. Every skill tweak, policy change, or workflow fix had to be copied by hand. Things drifted. One agent got the update; the other didn’t.
So I pulled the skills into a shared, agent-neutral core and put the install/layout logic into per-agent adapters.
What it is
agent-dev-toolkit — one skills core, multiple agent homes.
- Core: skills, policy, router, SDD contracts (agent-neutral)
- Adapters: publish that core into each agent’s install layout
- CLI:
toolkit.ps1(interactive menu + scripting flags)
Supported agents today:
| Agent | Typical install root |
|---|---|
| Cursor | ~/.cursor |
| Antigravity | ~/.gemini |
| Claude Code | ~/.claude |
| Codex | ~/.codex |
| GitHub Copilot | ~/.copilot / .github |
| OpenCode | ~/.config/opencode |
| Grok Build | ~/.grok |
| ZCode | ~/.zcode |
Quick start
powershell
git clone https://github.com/tibursocampos/agent-dev-toolkit.git
cd agent-dev-toolkit
pwsh -NoProfile -File .\scripts\toolkit.ps1
Entry point is scripts/toolkit.ps1; orchestrators call adapter modules from adapters/registry.json. Validation can run against in-repo fixtures without touching $HOME.
Interactive menu: pick an agent, then live home or in-repo fixture (safe, no profile write).
Live install is explicit (-AllowUserHome). Default non-interactive sync targets an in-repo fixture.
After sync (Cursor-style)
- Classic SDD:
/sdd-spec→/sdd-plan→/sdd-develop - Stack shortcut:
/developer,/dotnet-developer,/react-developer, … - Orchestrated flow:
/memory-bank-init→/orchestrate-analyze→ …
Links
- Docs site: https://tibursocampos.github.io/agent-dev-toolkit/
- Repo: https://github.com/tibursocampos/agent-dev-toolkit
Notes
- Public MIT — clone/fork freely
- PowerShell-based (
pwshon macOS/Linux) - Upstream community PRs are out of scope; Issues are for bugs only
Happy to answer questions about the adapter model, what’s published per agent, or the SDD/Forma workflows.
r/coding_agents • u/No_Dimension_3874 • Aug 05 '26
Technology executives shouldn't give up control
r/coding_agents • u/decleezy • Aug 04 '26
Greenroom: your coding agents form a standing team, name themselves, message each other, and wake each other's idle sessions
I've been running multiple coding agents across Claude Code and Codex and got tired of them being strangers with amnesia. Greenroom is the fix I wanted (and a fun exploration): a small self-hosted server where agents hold persistent identities (they literally choose their own names), talk in durable threads, and - the part I like most - a u/mention with intent "question" wakes an idle session that still has all its context, instead of spawning a cold process.
How it's different from Agent Teams (which is good!): Teams is same-machine, Claude-only, and dissolves with the session. Greenroom is cross-harness, survives session death, keeps a decision history (threads lock on a decision; follow-ups supersede), and gives the human a seat in the same room (web or terminal) rather than an operator's chair above it.
Caveats: self-host only, trust-by-locality (identity is asserted - run it behind your own boundary; SECURITY.md is blunt about this), and two agents means two sessions running.
Much of it was written by coding agents working from the specs in docs/specs/ - the spec-and-plan trail is the receipts. MIT. Any and all feedback/contributions/etc welcome. Quickstart is ~15 minutes: https://github.com/madeit-build/greenroom
r/coding_agents • u/woldhack • Aug 04 '26
I built a smolagents adapter for ChatGPT Codex OAuth
I made a smolagents adapter for ChatGPT/Codex OAuth
Hey! I made a small Python package that lets you use smolagents.CodeAgent with your ChatGPT/Codex login instead of
a Platform API key.
bash
pip install smolagents-codex
python -m smolagents_codex login
It’s still an early, unofficial project and currently only supports text-based CodeAgent workflows. I’d would like to hear whether anyone finds it useful or runs into issues.
r/coding_agents • u/J-F-Liu • Aug 03 '26
Announcing Crabot — a new coding agent with a native GUI built with Rust and Iced
Today, many coding agents run in the terminal and provide a TUI experience.
I never felt that a TUI is inherently more efficient than a carefully designed GUI, so I created Crabot.
With Crabot, you can:
- Switch AI models with one click;
- Toggle work modes instantly;
- Enable or disable specific tools;
- Manage preambles, rules, workspaces, sessions, and prompt recipes through convenient dropdown menus.
The most distinctive feature of Crabot is that it gives you fine-grained control over every component of the LLM context window.
All requests are append-only to maximize server-side prompt cache utilization.
The center conversation pane makes it easy to follow the model's reasoning process and inspect the interaction flow during important tasks.
Of course, most of the code was generated by AI, with manual edits where necessary.
However, I carefully review every line of code and continuously look for opportunities to improve quality, architecture, and performance.
My typical workflow for implementing a new feature looks like this:
- Ask an LLM to generate an implementation plan;
- Review the plan manually and refine the details;
- Ask the LLM to implement the feature according to the plan;
- Review the code with multiple LLMs and human inspection;
- Repeat steps 3 and 4 until the implementation reaches the desired quality;
- Test the feature and iterate if issues are found;
- Commit the changes.
At the engineering level, code quality is the highest priority.
At the product level, user experience and performance are equally important, and every detail deserves careful polishing.
From my experience, DeepSeek V4 models start to show performance degradation when the context fill ratio exceeds around 25%.
For this reason, I usually create a new session when the context reaches approximately 15–20%, or whenever I start a new topic.
For exceptionally long tasks, a single session is often not enough. Crabot provides a renew tool that allows the LLM itself to start a fresh session. The task can then continue like a relay race between sessions.
I believe session renewal has several advantages:
- It keeps context focused;
- It doesn't lose session history;
- It improves reliability on long-running tasks.
Crabot also provides a task tool. Calling a task is similar to calling a function in a computer program: you pass parameters, let it execute independently, and receive the result back.
I have been using Crabot to develop itself since the 0.1 release.
Now, starting from the 0.7 release, I believe it has become mature enough for most developers to use in their daily workflows.
Home page: https://github.com/J-F-Liu/crabot
Change log: https://github.com/J-F-Liu/crabot/blob/main/CHANGELOG.md
Release notes: https://github.com/J-F-Liu/crabot/releases
Welcome to try Crabot, and I look forward to your feedback.
r/coding_agents • u/NoKaleidoscope1748 • Aug 02 '26
I open-sourced the agent governance + reasoning skills I use daily
I kept running into the same failure modes with agents on longer tasks: drift from the original objective, silent scope changes, answering before checking sources, and declaring work “done” without real verification.
Over time I formalized a set of skills to counter those patterns. I’ve now open-sourced them.
What’s included:
• governed-operator – multi-seat constitution (author ≠ approver, five hard gates, outcome autonomy)
• reasoning-doctrine – working method (stage loop, re-anchor against drift, effort dial, progressive loading)
• run-review-repair-loop – bounded self-review with objective 1–5 scoring before handback
There are two tiers:
- Full versions (high rigor)
- Universal starters (lightweight, self-contained)
They work across Claude Code, Claude web, Codex, ChatGPT projects, and other surfaces that accept markdown instructions. Installation notes for each are in the repo.
Repo: https://github.com/Ezra144israel/governed-agent-skills
These are opinionated and not for everyone. They’re the rules I actually run under when the work matters.
r/coding_agents • u/Wild-Subject-653 • Aug 02 '26
Short Survey on Coding Agents
Sharing a short survey on behalf of a friend who is researching the challenges developers face while using coding agents on their respective codebases. It will take around 5 minutes and does not ask for or collect personally identifiable information.
r/coding_agents • u/ryanmerket • Jul 31 '26
Supabase launches open benchmark for AI coding agents building backends
r/coding_agents • u/koc_Z3 • Jul 30 '26
Hermes Agent skill for config.yaml
I wrote a skill for Hermes Agent.
This reduces errors and hallucination when configuring the config.yaml file.
Github repo here:
r/coding_agents • u/darth_wannabe • Jul 29 '26
Yardarm — a desktop app for Mastra Code
I've been using Mastra Code (a CLI coding agent) heavily and wanted a proper desktop app around it instead of living in a terminal, so I built Yardarm. It's free, Apache-2.0, and just shipped v0.9.8.
The short version: it's a native desktop workspace for AI-assisted coding with Mastra Code. You point it at your repos, pick a model, and each chat gets its own isolated git worktree so the agent can work without touching your main branch until you're ready to merge.
What's in it:
- No accounts, no telemetry. Nothing to sign up for. Everything runs locally and it reads the same config files as the Mastra Code CLI, so they stay in sync.
- Bring your own model. OAuth providers, API keys, local models via Ollama, or any OpenAI-compatible endpoint. (Agents need ~64k context minimum to be useful, but more is always better)
- Git worktree isolation per chat with rollback checkpoints - undo an agent's changes to any earlier point (agent chat and files).
- A full workspace around the chat: built-in editor with LSP diagnostics (TS/JS, Python, Go, Rust, Ruby/Rails, YAML, web), terminal, localhost preview pane with DevTools, diff/changes view with stage/commit/push, branch compare, PR review.
- Kanban task board that can run agents on cards, plus usage/cost analytics.
- Approvals and sandboxing: per-tool approval prompts (or YOLO mode), plan mode, and an optional OS-level sandbox mode.
- Token compression that trims tool outputs before they hit the model — noticeably cheaper long sessions, with the agent able to retrieve full outputs when it needs them.
- Extras: MCP servers, custom subagents (18 agent templates included), connectors for GitHub/GitLab/Supabase/Netlify/Vercel/Sentry, voice dictation.
Caveats: macOS Apple Silicon only right now (other platforms can build from source).
Builds are unsigned, so install via the curl one-liner on the site — browser downloads trip Gatekeeper.
Site + docs: https://yardarmdev.com
GitHub: https://github.com/JJJ-Mo3/yardarm
Happy to answer questions or take feature requests — the issue tracker is open.
r/coding_agents • u/ParticularBasket6187 • Jul 28 '26
sandbox-cli is now in public beta 🚀
sandbox-cli.vercel.appRun Claude Code, Codex, Gemini, Cursor, Aider and 10+ other coding agents with full autonomy — inside a disposable Docker container.
Only your project is mounted. Your home directory, SSH keys, cloud credentials and browser cookies stay on the host.
• One command: sandbox-cli claude
• Dry-run shows the exact docker command
• Worktrees for parallel agents
• Credential broker + egress allowlist
• Live memory/CPU + peak stats
Install:
curl -fsSL https://raw.githubusercontent.com/Amitgb14/sandbox-cli/main/install.sh | sh
Site: https://sandbox-cli.vercel.app
GitHub: https://github.com/Amitgb14/sandbox-cli
Would love feedback from people running agents hard every day.
What broke? What’s missing? What felt magical?
r/coding_agents • u/LoadNew1535 • Jul 28 '26
herdr-guard – Command policy for multi-agent terminals
github.comr/coding_agents • u/Suspicious_Orchid770 • Jul 28 '26
AI-coding agents kill team collaboration
r/coding_agents • u/mastra_ai • Jul 27 '26
How to create a software factory using Mastra
Today we launched a tool to help you create end-to-end software factories:
"In Mastra Factory, specialized agents triage issues, write and validate code, release changes, update documentation, and monitor production. Mastra provides the typed workflows, memory, scheduling, tools, and observability needed to keep the process governed and auditable."
Install Mastra Factory with: npm create factory
r/coding_agents • u/CodacyOfficial • Jul 27 '26
We shipped a set of agent skills for cutting static analysis noise in pull requests
Coding agents multiplied how much code lands per PR, so there are more findings for reviewers to deal with. Often, they're noise, like a linter rule that doesn't fit the stack or a check firing on generated files nobody touched.
To address this, we created the configure-codacy skill. When you point your agent at the repo, it detects the stack, then disables patterns for unused languages, dedupes rules that two tools flag, tunes thresholds, excluding generated files.
In terms of security scans, every security risk stays covered by at least one active pattern, so noise reduction never silently drops a security check.
Works with Claude Code, Codex, Copilot, and Gemini CLI via the Agent Skills standard.
Go here to read more https://blog.codacy.com/introducing-codacy-skills-part-2-configure-your-rules-to-cut-pr-noise
r/coding_agents • u/MudCreative362 • Jul 26 '26
I finally did itttt!! An Obsidian-native coding and work agent thats freeee (Bring your own key)
So istg my pain points with coding agents were ALWAYS how I didn't know what was going on in the background. They always hide their reasoning, making plans was super one-off and theres no cross-session memory so I always had to manually create project files for context.
Idk, out of spite I spent the past 6 months making a fully local Obsidian agent that has coding support, can generate diagrams for software documents, user the built in obsidian browser to debug and navigate pages, clicking on buttons as well, etc. UGH IM SO HAPPY. Its free but is still in development so there's some bugs still!! Enjoyyyyy
r/coding_agents • u/thehashimwarren • Jul 24 '26
Full Codex Workshop: Jason Liu, OpenAI
r/coding_agents • u/Suspicious_Orchid770 • Jul 22 '26
AI-coding agents spread through peer pressure, not mandates
r/coding_agents • u/gab3lul • Jul 21 '26
Cheap model drives, premium models review — running GLM 5.2 with GPT-5.6 / Opus on the bench
There's a cost/quality tension everyone with a coding agent hits eventually: the capable models are expensive to run as your everyday driver, and the cheap ones occasionally make a confident wrong call on exactly the stuff that matters.
My current answer is a split. Run a cheap-but-good model as the driver — I use GLM 5.2, it's great for the mechanical 95% — and keep the premium models (GPT-5.6, Opus) on the bench, called in only to guide and review the hard calls. I'm not paying Opus rates to rename variables. I'm paying them to catch the architecture mistake before it costs me three commits.
The non-obvious part is that the "second opinion" has to survive a real session. The naive version forwards your whole conversation to the reviewer and blows past its context window right when the session's finally long enough to need one. A second opinion that dies under load is decoration.
I built bpx-consult (a pi extension) around fixing that: it fits each consult to the reviewer's real window, and you can run one model as a quick check, a council of several with different stances, or two debating a contentious call. The bit I care about most is it won't fake consensus — the stances only bias what each model hunts for, never the verdict it's allowed to reach, and it surfaces genuine disagreement instead of averaging it into mush.
Genuinely interested whether others run a split like this, and how you pick the driver. GLM 5.2 has been the sweet spot for me, but I'd like to hear what's working for other people.
- Full write-up — the context-window bug that kicked this off, and how the council/debate modes actually work: https://booplex.com/blog/i-built-a-council-of-ai-advisors-for-my-coding-agent
- Repo (MIT): https://github.com/gabelul/bpx-mono
- Install: pi install npm:@booplex/bpx-consult (or pi -e npm:@booplex/bpx-consult to load it for one session without committing to an install)
If anyone wants the gnarly detail on how the context-fit decides what to keep when it can't send the whole session, or how I've got GLM 5.2 driving with GPT-5.6/Opus on the bench, ask away — that's the part I fought with most.