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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 三生石上(FineUI控件)
雷峰网
雷峰网
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
博客园 - 叶小钗
The Cloudflare Blog
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
小众软件
小众软件
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
美团技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
宝玉的分享
宝玉的分享

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 - tamerh/enju: Coordinating Humans, AI Agents, and...
timurg · 2026-05-27 · via Hacker News: Show HN

Enju is a workflow system where humans, AI agents, and deterministic compute work the same DAG as peers. The unit of work is a task — something any of them can answer, review, vote on, or compute. The graph is live: a task can spawn more tasks while a run is in flight, so a review that returns request_changes drops a revision task back into the graph with its feedback already attached, and the work cycles until it's approved.

What makes this work is where the lines are drawn. Review and voting are ordinary task actions, not out-of-band approvals — human judgement enters the graph as a recorded decision with the same standing as an agent's output. The coordinator is output-neutral: it tracks task state and decisions, never the content work produces. Every result is a git commit, so attribution and audit fall out of git history with nothing extra to wire up, and a plain git remote is the only thing moving content between machines. Enju ships as a single binary that speaks MCP, a CLI, and a web UI.

A PRISMA systematic-review workflow in Enju: compute, AI agents, and human review gates as peers on one DAG

A real Enju workflow — a PRISMA systematic review — where deterministic compute (teal), AI agents (blue), and human review gates (orange) are peers on one graph.
Any citizen can claim from this graph in parallel, each on its own model and tokens.

What a workflow looks like

A workflow is a DAG of tasks, written as YAML and committed to your repo. Here an agent drafts a report and a human gates it — two tasks, two different kinds of citizen, one graph:

name: My First Workflow

agents:
  - name: writer
    handler: claude
    model: claude-sonnet-4-6

tasks:
  - id: write_report
    action: answer            # an agent (or a human) produces work
    assign_to: writer
    writes: [report.md]
    prompt: Write a short report on solar-energy adoption to report.md.

  - id: human_review
    action: review            # a human gate, equal standing in the graph
    reviews: write_report      # approve · request_changes · reject
    prompt: Approve if accurate; request_changes sends it back with feedback.
enju go enju.yaml --auto-agents

The agent claims write_report, runs its model, and commits report.md; human_review then waits in your inbox. Every step is a commit on the run's branch. → full walkthrough in the quickstart.

How it fits together

Enju architecture

The coordinator holds the task DAG and its lifecycle (pending → ready → claimed → running → review → done, with a revise loop) plus the state and events databases — but no produced content. Each citizen runs a fat client on their own machine exposing MCP/CLI/Web UI, forking agent daemons and committing to a local git clone. Multiple citizens work the same DAG as peers — and each runs its own model on its own tokens, so the compute and API cost is shared across whoever joins the run. Remote git holds everything produced and is the only cross-machine transport.

The task model

One primitive, interchangeable executors: a task's action selects whether a human, an LLM agent, or a script runs it — all the same kind of node. Edges carry typed data, for_each fans a task (or a whole run) out into parallel iterations, and a review verdict can approve, fail, or cycle the work back with feedback — every attempt kept as a commit.

Quick install

curl -fsSL https://raw.githubusercontent.com/tamerh/enju/main/install.sh | sh

Installs enju to ~/.local/bin/enju (no sudo). Add it to your PATH if it isn't already:

echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc   # or ~/.zshrc

Verify with enju --version.

Other platforms or specific versions: download a binary from the releases page and put it on your PATH.

Examples

Three reference workflows — clone, install, run:

  • mustache-engine-enju — build a Mustache template engine from spec. Six Sonnet agents gated by request_changes loops; 136/136 conformance tests pass.
  • prisma-review-enju — PRISMA systematic review of FMT-for-rCDI RCTs. Four Sonnet agents + two human review gates produce a 14-RCT synthesis.
  • nanopore-assembly-enju — ONT phage-genome assembly. Thirteen containerized compute tasks across two machines, git as transport.

Docs

See docs/getting started, guides, reference, or how it works.

For the design and motivation, see the preprint: sugi.bio/enju.

License

MIT — see LICENSE.