Custom television channels for the tools we actually use โ Linear, GitHub orgs, and (eventually) Caspar.
Television is a fast, hackable fuzzy finder for the terminal. These channels wire it into our workflow.
| Channel | Command | What it does |
|---|---|---|
repos |
tv repos |
Browse a GitHub org's repos merged with your local clones. Tags each as [local + github], [local only], or [github only]. |
linear |
tv linear |
Fuzzy search all Linear issues. Preview shows full detail. Enter copies a Claude Code prompt. |
my-issues |
tv my-issues |
Same, filtered to issues assigned to you. |
caspar |
tv caspar |
Placeholder for when Caspar ships. |
brew install television
tv update-channels
git clone https://github.com/manzanita-research/tv-guide.git
cd tv-guide
./install.shThe install script symlinks channels into ~/.config/television/cable/.
The Linear channels (linear, my-issues) require linctl โ follow the install instructions in that repo.
The repos channel reads two environment variables. Add these to your .zshrc / .bashrc:
export TV_GH_ORG="manzanita-research" # your github org or username
export TV_CODE_DIR="$HOME/code/manzanita-research" # where you clone repos locally
# TV_CODE_DIR defaults to ~/code/$TV_GH_ORG if unsetThe linear channel reads TV_LINEAR_STATUS to filter by issue state. Pair it with shell aliases:
alias tv-seeds='TV_LINEAR_STATUS=Seeds tv linear'
alias tv-soil='TV_LINEAR_STATUS=Soil tv linear'
alias tv-growing='TV_LINEAR_STATUS=Growing tv linear'
alias tv-ready='TV_LINEAR_STATUS=Ready tv linear'These map to magpie statuses โ you can use any Linear state name (e.g. Backlog, In Review, Done).
Without the env var, tv linear shows all issues.
- television
- linctl (for Linear channels)
- gh (for repos channel)
jq
repos:
enterโ open in new Zellij tabctrl-oโ open on GitHubctrl-cโ clone repo locallyctrl-dโ cd into local clone
linear / my-issues:
enterโ copy Claude Code prompt to clipboardctrl-oโ open issue in browserassign-meaction โ assign issue to yourself
Drop a .toml file in channels/. The existing channels are good templates. See the television docs for the full cable channel spec.

