惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
D
Docker
Microsoft Security Blog
Microsoft Security Blog
Google DeepMind News
Google DeepMind News
M
MIT News - Artificial intelligence
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
Y
Y Combinator Blog
Vercel News
Vercel News
F
Fortinet All Blogs
B
Blog
Recent Announcements
Recent Announcements
A
About on SuperTechFans
GbyAI
GbyAI
T
The Blog of Author Tim Ferriss
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - Franky
MongoDB | Blog
MongoDB | Blog
Stack Overflow Blog
Stack Overflow Blog
B
Blog RSS Feed
C
Check Point Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
V
Visual Studio Blog
月光博客
月光博客

Show HN

Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap GitHub - noopolis/moltnet: Self-hostable chat network for AI agents. Pre-built bridges for Claude Code, Codex, and the Claws. Rooms, DMs, history. No Slack bots, no Matrix, no glue code.
GitHub - yendo-eng/remuda: A CLI to make AI-assisted deve...
dgunay · 2026-06-12 · via Show HN

Remuda – agent orchestration tool

Remuda is a command line application that makes many agentic programming workflows easier:

  • create disposable working copies of Git repositories
  • launch agents in them
  • containerize your agents for safer unattended workflows
  • reuse prompt snippets and inject context from tools like Jira and Slack
  • broadcast messages to swarms of agents

Why Remuda?

I would frequently hear coworkers voice some problem or feature idea and think "(current frontier model) could oneshot that", but then I knew I'd have to clone the repo, assemble the prompt, configure all the flags, manage the terminal window, etc. There was enough activation energy still there that I just wouldn't go through with it most of the time.

Most agentic coding tools take care of managing single agents with the human in the loop, but not a lot of them expose a good interface for managing lots of agents working on unrelated tasks. The ones that do are often ecosystem locked to only one agent harness, despite there being at this point few meaningful differences between how they fundamentally work.

I wanted one that could do all that and fit with my own tooling preferences:

  • session management with a terminal multiplexer (e.g. tmux)
  • little to no config required
  • strong integration with my other CLI tools
  • portable binary

I believe coding agents are strongest when managed asynchronously. For the busy developer, they are a powerful weapon against codebase rot, allowing you to delegate smaller tasks while you focus on big ones. Remuda attempts to make this workflow as frictionless as possible.

Remuda was the answer. I started with the goal of being able to kick something off with just vibe "please do this thing I don't have time for" and it grew from there.

Installation

Requirements:

  • Required to build/install (via go install):
    • Go 1.24+ (any platform supported by the Go toolchain)
    • Git
  • Strongly recommended:
    • tmux for the default detached-session flow (zellij is a supported alternative when configured)
    • Agent harness (at least one is required to actually run an agent). Currently supported:
  • Optional (feature-dependent):
    • fzf for interactive selection flows

Build from source

go install github.com/yendo-eng/remuda/cmd/remuda@latest

# Verify installation
remuda --help

Quick Start

By default, remuda stores workspaces under ~/.remuda/repos. You can override the root via the REMUDA_REPOS_BASE_DIR environment variable.

Tip — Interactive wizard: Add --wizard to most commands for a guided, TUI-based flow.

Here's the most generally useful workflow for feature development:

# Use a published image for container sessions
IMAGE=ghcr.io/acme/vibe-dev:latest

remuda vibe \
  --name '<your-session-name-goes-here>' \
  --container \
  --container-name "$IMAGE" \
  --yolo \
  --use make-pr \
  --use small-commits \
  "please build the feature"

Documentation

For detailed usage information, see:

Session Merge Flags

remuda session kill --merge uses gh pr merge under the hood.

  • Configure default merge flags in config: defaults.merge.gh_flags
  • Override per run with repeatable --merge-flag (replaces config list)
  • If neither is set, Remuda keeps the current default behavior: --rebase

License

Remuda is licensed under the MIT License.