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

推荐订阅源

小众软件
小众软件
C
Check Point Blog
Vercel News
Vercel News
Y
Y Combinator Blog
G
Google Developers Blog
P
Proofpoint News Feed
WordPress大学
WordPress大学
MongoDB | Blog
MongoDB | Blog
博客园 - 司徒正美
Last Week in AI
Last Week in AI
博客园 - 【当耐特】
N
Netflix TechBlog - Medium
L
LangChain Blog
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
博客园_首页
B
Blog RSS Feed
The Cloudflare Blog
MyScale Blog
MyScale Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Security Blog
Microsoft Security Blog

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - yendo-eng/remuda: A CLI to make AI-assisted deve...
dgunay · 2026-06-12 · via Hacker News: 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.