Capture and investigate fast inbounds
Bytheway is a Go CLI to capture and investigate fast inbounds — Slack threads, hallway asks, leadership questions — and turn them into entrypoints for agentic work in Claude Code. The funnel runs capture → soak → investigate → hand off; bytheway owns capture and investigation, while shaping and handoff are left to downstream agents.
The CLI is the agent-first surface: match resolution, ID generation, slug generation, and formatting all live in the binary so the agent never has to read or rewrite task files itself. Tasks are plain markdown — cat, grep, rg, and vim work directly against the data directory without going through the binary.
Install
Section titled “Install”Pre-built binary (no Go toolchain required):
curl -fsSL https://jvcorredor.github.io/bytheway/install.sh | shInstalls the latest release to $HOME/.local/bin/btw. Override the destination with INSTALL_DIR=/usr/local/bin or pin the release with VERSION=0.2.0. Full reference and verification details live on the Install page.
From source (requires Go):
go install github.com/jvcorredor/bytheway@latestThe binary lands in $GOBIN as bytheway (the shell installer above is the path that produces a btw executable directly). Alias btw=bytheway if you want the shorter handle — see the Install page.
Where to go next
Section titled “Where to go next”- Install — both install methods, env-var overrides,
$PATHsetup, checksum verification, macOS quarantine note. - CLI reference — every subcommand, flags, examples, and match-resolution behavior.
- File & storage format — data directory layout and the on-disk shape of a task file.
- Configuration —
tasks_dir,editor, XDG paths, and resolution order. - Agentic usage — JSON schema, error envelopes, and the slash-command dispatch pattern.
- Agentic recipes — capture / soak / investigate / hand off as recipes against existing CLI primitives.
- Releases — Conventional Commits, pre-1.0 versioning policy, link to the GitHub Releases page.
- Design notes — out-of-scope items, internal package layout, and the migration tool.