rch

Offloads cargo, bun, and gcc builds to remote workers via workers.toml.

1|Updated Feb 9, 2026
One-click install
npx skills add https://github.com/danzam98/claude-skills-toolkit --skill rch-danzam98
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: rch
Source: https://github.com/danzam98/claude-skills-toolkit/tree/main/skills/rch
Command: npx skills add https://github.com/danzam98/claude-skills-toolkit --skill rch-danzam98

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Remote compilation introduces significant delays when local resources are limited or cross-compile is needed, making builds slow and tedious.

Core Features & Use Cases

  • Offloads cargo build, bun test, and gcc to remote workers transparently for faster turnaround.
  • Supports configuring workers and diagnostics to diagnose build bottlenecks.
  • Use cases include large Rust projects, multi-language builds, and CI-like environments needing speedups.

Quick Start

Run a local build to see remote offloading speed up cargo, bun, and gcc tasks.

Frequently Asked Questions about rch

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I offload cargo and gcc builds to remote workers?

To offload remote builds, you configure a workers.toml-based worker pool to distribute cargo, bun, and gcc compilation tasks to dedicated workers, accelerating development workflows transparently.

What is the best way to speed up large Rust and Bun builds in CI?

Speeding up large builds in CI involves offloading cargo and bun compilation to a dedicated remote worker pool, significantly reducing turnaround time for multi-language projects.

Can I use remote build offloading for C/C++ projects?

Yes, remote build offloading supports C/C++ projects by transparently distributing gcc compilation tasks to dedicated remote workers configured via a workers.toml file.

How do I diagnose bottlenecks in a distributed build setup?

You diagnose distributed build bottlenecks using built-in diagnostic tools, specifically the doctor command, to validate worker health and identify issues across the build fleet.

Do I need a specific configuration file to manage a remote build fleet?

Yes, you need a workers.toml file to define and manage your worker pool, enabling end-to-end verification commands to validate remote builds across the fleet.

When should I not use remote build offloading?

You should avoid remote build offloading when local resources are sufficient, as the overhead of managing a distributed worker pool may outweigh the speed benefits for small projects.