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

推荐订阅源

The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
The Cloudflare Blog
G
Google Developers Blog
博客园_首页
Martin Fowler
Martin Fowler
Apple Machine Learning Research
Apple Machine Learning Research
L
LangChain Blog
D
Docker
C
Check Point Blog
T
Tailwind CSS Blog
博客园 - 司徒正美
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
Microsoft Security Blog
Microsoft Security Blog
V
V2EX
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss
酷 壳 – CoolShell
酷 壳 – CoolShell
IT之家
IT之家
M
MIT News - Artificial intelligence
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 【当耐特】
GbyAI
GbyAI

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 - ToxicPine/offloads: /offload for Claude Code and...
cardellifan · 2026-06-16 · via Hacker News: Show HN

License Built with Nix

offload-demo-25s-v2-youtube-1080p30.mp4

About

/offload lets coding agents continue long-running tasks on another machine.

You may, for example:

/offload look through leads.csv, email the 500 best matches about our invoice
cleanup service between 9am and 5pm, track who replies and what they ask,
and stop Wednesday with a short review summary and recommended next steps

The agent sends your current project state to another machine, runs the task there, and saves any changes on a new branch. You can use any machine you can access, or /offload can easily dispatch the job to a cloud instance on Fly, similar to Cursor Cloud Agents.

The run can continue even if your laptop sleeps or disconnects. It can send status updates, expose remote localhost:<port> dev servers through authenticated public URLs, and use the official Claude Code or Codex remote controls to check in or steer it.

Quick Start

/offload is an agent skill; no persistent local software is needed.

Install from GitHub:

curl -fsSL https://raw.githubusercontent.com/ToxicPine/offloads/master/install-offload | bash

Pass options after bash -s --, for example --yes to skip the prompt or --silent for quiet installs.

Documentation

This software is distributed with an agent skill, which serves as complete documentation. I suggest that you install the skill, then ask an LLM about its usage, etc. Alternatively, you may read the skill text yourself, starting with this.

How It Works (Technical)

/offload ships with a zero-install, rootless way to run the Nix package manager, and the skill helps manage the work of making your project runnable as a Nix flake. That lets the repo define the project environment the remote machine needs in order to work with it correctly.

The next part is the remote target: a container designed for work, with the right tooling installed, runtime Nix builds, persistent state, and a way to expose dev servers running on its own localhost:<port> through authenticated public URLs. The skill includes instructions for deploying that container on Fly.

The rest is integration polish, like checking and seeding GitHub credentials, git identity, repo state, and coding-agent login state for tools like Codex and Claude Code. The goal is simple: run the same project somewhere else and return the result as a normal branch.

Optional: Hermes Agent Integration With Telegram

The machine includes Hermes by default. You can optionally enable its Telegram integration for progress pings, phone supervision, and quick interventions like asking the remote agent for a dev-server link. /offload still works without it.

Packages

offload is the main agent skill. It decides whether a remote computer is ready, helps set one up when needed, and starts the offloaded run.

offloader sends a command from your current git project to the remote computer and creates the run branch that receives the work.

offloader-configurator checks and seeds the remote computer with the account state it needs, such as GitHub and assistant login.

offloader-container is the ready-to-run remote computer image used by the default setup.

offloader-transports is the small set of ways to reach that computer, including Fly.io, plain SSH, and Tailscale SSH.

nestail turns localhost:<port> on the remote computer into an openable URL, and can generate protected share links for that port.

vusperize wraps long work so it can send live status updates while it runs.

boondoggler gives Codex a goal, lets it work from the remote branch, then commits and pushes the result back.