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

推荐订阅源

WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
D
Docker
H
Help Net Security
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Azure Blog
Microsoft Azure Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
月光博客
月光博客
C
Check Point Blog
S
SegmentFault 最新的问题
T
The Blog of Author Tim Ferriss
J
Java Code Geeks
M
MIT News - Artificial intelligence
B
Blog RSS Feed
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
腾讯CDC
美团技术团队
I
InfoQ
Blog — PlanetScale
Blog — PlanetScale

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 - jvaill/Kill-The-Backlog: Self-hosted background ...
jvaill · 2026-05-07 · via Hacker News: Show HN

Self-hosted agent runner for your GitHub repos. Connect a repo, kick off coding agents in cloud sandboxes, and get PRs back — no local checkout required.

Kill The Backlog session

Each session spins up an E2B sandbox, clones your repo, runs opencode against your prompt, then pushes commits to a fresh branch and opens a draft PR on GitHub — all streamed back to the session page in realtime.

Quick Start

Run locally with Docker in under 5 minutes. You'll need Docker and Node.js 22+ (to build the E2B sandbox template).

1. Clone and configure

git clone https://github.com/Kill-The-Backlog/Kill-The-Backlog.git
cd Kill-The-Backlog
cp .env.example .env

2. Create a GitHub OAuth App

  1. Go to Settings → Developer settings → OAuth Apps → New OAuth App
  2. Fill in:
    • Application name: Kill The Backlog (or anything you like)
    • Homepage URL: http://localhost:3000
    • Authorization callback URL: http://localhost:3000/auth/github/callback
  3. Click Register application
  4. Copy the Client ID and generate a Client secret
  5. Paste both into your .env:
GITHUB_OAUTH_CLIENT_ID=your_client_id
GITHUB_OAUTH_CLIENT_SECRET=your_client_secret

3. Add AI provider keys

Each session boots an E2B sandbox running opencode headless, with Anthropic as the model provider. Add both keys to your .env:

ANTHROPIC_API_KEY=your_key
E2B_API_KEY=your_key

Both services have free tiers that are enough to try things out. E2B_TEMPLATE_NAME is already set to e2b-template-dev in .env.example — you'll publish a template under that name in the next step.

4. Build the E2B sandbox template

Sessions launch from a custom E2B template (opencode pre-installed). Publish it once to your E2B account:

corepack enable pnpm
pnpm install
pnpm tools:e2b-template e2b:build:dev

This takes a few minutes the first time. It tags the template as e2b-template-dev in your E2B account, matching E2B_TEMPLATE_NAME from the previous step.

5. Start

docker compose up

The first run builds the app image and may take a few minutes. Once you see Server is running on http://localhost:3000, open http://localhost:3000 and sign in with GitHub.


Developing

This project uses Devbox to manage system-level dependencies (Node.js 22, PostgreSQL 18, Valkey, nginx, mkcert).

First-time setup

devbox shell
./setup-devbox.sh

Create a GitHub OAuth App with callback URL https://ktb.localhost/auth/github/callback and add the credentials to your .env. A GitHub OAuth App only allows one callback URL, so if you already created one for the Quick Start (http://localhost:3000/...), register a second app here. Infrastructure variables (DB URL, Redis, Zero, etc.) are set automatically by process-compose.yaml.

If you didn't already publish the E2B sandbox template during the Quick Start, do it now:

devbox run pnpm tools:e2b-template e2b:build:dev

Day-to-day development

devbox services up

This starts nginx (HTTPS), PostgreSQL, Valkey, the app, Zero cache, and the marketing site. Open https://ktb.localhost.


Architecture

Component Role
Main app (apps/main) React Router 7 + Express. Session UI, GitHub OAuth, BullMQ workers (session bootstrapper, event pump, session titler)
E2B sandboxes (tools/e2b-template) Per-session VMs launched from a custom template running opencode headless over HTTP + SSE
Marketing site (apps/www) Astro static site
PostgreSQL Primary database (Prisma migrations, Kysely queries)
Valkey Redis-compatible store for BullMQ job queues
Zero cache Rocicorp Zero — realtime sync between DB and browser

Deploying

See docs/deploying.md for deploying to GKE Autopilot with werf.


License

AGPL-3.0-or-later