Belschak.dev ← belschak.dev

Case files from the workbench

Open source.

Everything on this page started as a fix for a problem I hit in my own daily agent workflow: an agent that quietly summarized the wrong source, the fear of a key leaking in a public push, overnight builds dying at the usage limit. Each tool ran in real use before it had a README. The write-ups below say plainly what is tested, what is a limit, and what stays your job. None of it was built to be a demo.

What are you trying to do?

Research & verification

Skills that make an agent read the source it was actually asked to read, and read third-party code before anything gets installed.

01

belschak / web-research-cascade

Claude Code skill

Stops your agent from silently reading the wrong source.

Four fetch stages, from plain WebFetch to your own logged-in browser. The rule sits above the ladder: when a source blocks, escalate the fetch. Never swap the source for a weaker one just because that one loads.

$ git clone --depth=1 https://github.com/belschak/web-research-cascade.git ~/.claude/skills/web-research-cascade

last touched July 2026

02

belschak / repo-audit

Claude Code skill

A Claude Code / agent skill that reads third-party code for red flags before you install it.

$ git clone --depth=1 https://github.com/belschak/repo-audit.git ~/.claude/skills/repo-audit

last touched July 2026

Shipping discipline

The checks that stand between a working private repo and a public one.

03

belschak / publish-gate

Claude Code skill

A leaked key in a public repo is forever.

This gate is built so that a dirty commit never leaves your machine.

$ git clone https://github.com/belschak/publish-gate ~/.claude/skills/publish-gate

v1.0.0 · last touched August 2026

04

belschak / showpiece

Claude Code skill

A Claude Code skill that turns "build me a real website" into a studio-grade pipeline.

$ git clone --depth=1 https://github.com/belschak/showpiece.git ~/.claude/skills/showpiece

v1.0.0 · last touched July 2026

05

belschak / claude-design-handoff

Claude Code skill

A Claude Code skill that keeps Claude Design from silently rewriting your facts while it designs your document.

$ git clone --depth=1 https://github.com/belschak/claude-design-handoff.git ~/.claude/skills/claude-design-handoff

v1.0.0 · last touched July 2026

Agent infrastructure

The conventions and runners that keep an agent team and parallel sessions useful past a single context window.

06

belschak / claude-agent-team

Claude Code setup

Turns Claude Code into an agent team for everyday life.

Most public Claude Code setups are built for writing software. This one is built for everything else: an orchestrator that routes to specialist personas (finance, travel, training, research), each with a backlog file that survives context clears, plus a hiring workflow for domains that have no owner yet. The personas are starting points. The durable part is the conventions, documented with the failure each one prevents.

$ git clone --depth=1 https://github.com/belschak/claude-agent-team.git
$ mkdir -p ~/.claude
$ cp -rn claude-agent-team/template/* ~/.claude/

v0.2.0 · last touched July 2026

07

belschak / parallel-streams

Claude Code skill

Your subscription window empties at 2am.

Your build keeps going.

$ git clone https://github.com/belschak/parallel-streams.git

v1.1.0 · last touched August 2026

Everyday automation

Small skills that each take over one recurring chore end to end.

08

belschak / video-watch

Claude Code skills

Two Claude Code / agent skills that watch videos for you: Whisper transcript plus one page of findings with timestamps.

$ git clone --depth=1 https://github.com/belschak/video-watch.git video-watch-repo
$ mkdir -p ~/.claude/skills
$ cp -r video-watch-repo/video-watch video-watch-repo/audio-transcribe ~/.claude/skills/

v1.0.1 · last touched August 2026

09

belschak / google-maps-skills

Claude Code skills

Two Claude Code / agent skills that research the best places in a city and file them into your Google Maps, through your own logged-in Chrome.

$ git clone --depth=1 https://github.com/belschak/google-maps-skills.git
$ mkdir -p ~/.claude/skills
$ cp -r google-maps-skills/google-maps google-maps-skills/map-scout ~/.claude/skills/

v1.0.0 · last touched July 2026

10

belschak / strava-withings-sync

Python CLI

Sync Strava activities and Withings health data (weight, sleep, heart rate) into Notion.

Standard library Python only, no dependencies.

$ git clone https://github.com/belschak/strava-withings-sync.git

v1.0.0 · last touched August 2026