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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
F
Fortinet All Blogs
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
The Cloudflare Blog
量子位
T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog
MyScale Blog
MyScale Blog
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
D
DataBreaches.Net
V
Visual Studio Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
U
Unit 42
博客园 - 聂微东
有赞技术团队
有赞技术团队
A
About on SuperTechFans

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 应用商店
goloop — the agentic loop CLI
mantyx · 2026-06-12 · via Hacker News: Show HN

// open source · MIT · single static binary

The agentic loop,
on the command line.

A supervisor model plans every iteration. A worker — Cursor or Claude Code — does the edits. State lives in plain markdown you can read, diff, and trust. Point it at a goal; walk away.

curl -fsSL https://raw.githubusercontent.com/mantyx-io/goloop/main/scripts/install.sh | bash

supervisor plans the move, emits a JSON action

worker edits the repo via Cursor / Claude Code

checkpoint writes .goloop/checkpoint.md

// 01 — what's inside

Built for autonomous coding,
not for a demo.

01

Supervisor / worker split

The planner never touches files. A dedicated worker does every edit — clean separation, predictable runs.

02

Pluggable backends

Supervise with ChatGPT, OpenAI, or Anthropic. Execute with Cursor CLI or Claude Code. Swap freely.

03

State you can read

No hidden database. Progress, blockers, and the iteration log are markdown files you can diff and edit.

04

Self-extending tools

The loop can author its own supervisor tools, exit 75, and auto-restart to pick them up.

05

Human in the loop

When only you can answer, it stops and asks with ask_user instead of hallucinating a decision.

06

Honest terminal UI

Streamed worker reasoning, a live iteration log, and full-screen wizards for setup — no spinners that lie.

07

Layered config

Models & auth once, globally. The goal per project. Flags override anything for a single run.

08

One static binary

Written in Go. No runtime, no node_modules. curl | bash and you're working.

// 02 — how it works

Read checkpoint. Decide. Act.

  1. 01

    Configure once

    goloop configure picks your provider, models, and signs you in — saved to ~/.goloop/config.yaml.

  2. 02

    Set a goal

    goloop init (or run auto-init) captures the objective into the project's .goloop/config.yaml.

  3. 03

    Let it loop

    goloop run . plans, delegates, evaluates, and checkpoints until the objective is met.

// supervisor action — every iteration

{
  "action": "delegate",        // evaluate · ask_user ·
                              // delegate_tools · complete
  "phase":  "build",
  "delegate_task": "Implement add/list/done commands",
  "checkpoint_update": {
    "completed":  ["CLI scaffold"],
    "next_steps": ["persist todos to disk"]
  },
  "status": "success"
}

// 03 — get started

Running in under a minute.

install

# macOS / Linux / WSL
curl -fsSL https://raw.githubusercontent.com/\
mantyx-io/goloop/main/scripts/install.sh | bash

# …or with Go
go install github.com/mantyx-io/goloop/cmd/goloop@latest

configure & run

# once: provider, models, sign-in
goloop configure
goloop login

# in your project
cd your-project
goloop run . --goal "Build a todo CLI"

// supervisors

ChatGPT subscription OpenAI API Anthropic API

// workers

Cursor CLI Claude Code

// 04 — configuration

Plain YAML. Three layers.

global ~/.goloop/config.yaml Provider, models, worker, loop defaults — set once.

project <dir>/.goloop/config.yaml The objective for this repo. Required to run.

run goloop run --goal … One-off overrides for a single invocation.

Give your terminal a goal.

Free and open source under the MIT license.

curl -fsSL …/install.sh | bash