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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
WordPress大学
WordPress大学
GbyAI
GbyAI
C
Check Point Blog
M
MIT News - Artificial intelligence
T
The Blog of Author Tim Ferriss
Jina AI
Jina AI
博客园 - 【当耐特】
U
Unit 42
月光博客
月光博客
腾讯CDC
Y
Y Combinator Blog
小众软件
小众软件
博客园_首页
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
The GitHub Blog
The GitHub Blog
博客园 - 聂微东
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
T
Tailwind CSS 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.
devloop · Spec in. Reviewed code out.
satyaborg · 2026-06-16 · via Show HN
░█▀▄░█▀▀░█░█░█░░░█▀█░█▀█░█▀█
░█░█░█▀▀░▀▄▀░█░░░█░█░█░█░█▀▀
░▀▀░░▀▀▀░░▀░░▀▀▀░▀▀▀░▀▀▀░▀░░

Spec-driven code/review loop that runs until all acceptance criteria are met and bugs fixed by agents.

$ curl -fsSL https://devloop.sh/install | bash

Requires Codex and Claude Code. Runs on macOS.

## WHY

Developers now spend most of their time in code review, assisted by coding agents. But the same model family can't both code and review. It favors its own outputs. Devloop makes Codex implement and Claude Code review adversarially (or vice versa), until all criteria are met and reviews addressed, so humans only come in where judgment pays off: at the spec and PR sign-off stages.

## HOW IT WORKS

  • Spec: /devloop-spec skill generates a short markdown spec with a clear problem, outcome, acceptance criteria, and what's in scope as much as what's out.
  • Code: Codex implements the spec in isolated git worktrees.
  • Review: Claude Code runs /devloop-review against the spec to ensure all acceptance gates along with engineering gates (security, maintainability, correctness, simplicity, etc.) are met.
  • Loop: Iterates on reject, stops on accept or max passes, and generates a PR ready for human review.

## SKILLS

Devloop ships two skills, installed for both agents:

  • /devloop-spec: turns a rough idea, notes, a URL, or an interview into one concrete, devloop-ready spec.
  • /devloop-review: judges each pass against the spec and engineering quality gates, returning ACCEPT, REJECT, or UNCLEAR with fix instructions.

## WHEN (NOT) TO USE

When to use

  • The work can be pinned down in a clear spec through an interview with the coding agent.
  • The change is large or multi-step enough that adversarial review actually catches something.
  • You want the agents to iterate unattended and only pull you in for the spec and PR sign-off.

When not to use

  • The task is one-shotable and the scope is tiny: just ask the agent directly.
  • The work is exploratory or open-ended, where acceptance criteria can't be written up front.
  • You want hands-on control of every edit rather than a loop running on its own.

## FAQ

Will it touch my working tree?

No. It runs in isolated sibling worktrees and never pushes or opens a PR unless you pass --create-pr. Pass --in-place to work in your current checkout instead.

Which agent codes, which reviews?

Codex codes and Claude reviews by default. Swap either with --coder / --reviewer.

Can it run my tests?

Yes. Add a .devloop/verify hook with your build, lint, or test command. It gates acceptance and blocks the loop when it fails.

When does the loop stop?

On ACCEPT, on a stall, or when it runs out of passes (up to 5 by default, clamped 1-10). A 30-minute timeout caps each run.

Any telemetry?

None. One auditable Bash script; tracks and reports land under .devloop/.