setup-zellij

setup-zellij is a skill for Claude Code from atman-33/workhub. It costs 47 tokens per session (2,387 once invoked), scanned B, original, MIT.

A setup skill for installing Zellij and configuring shells to start it automatically. Zellij is a terminal multiplexer that lets you manage multiple terminal panes and sessions in one window.

In plain words
What is it for?
Use it to configure Zellij startup in PowerShell, WSL Bash, or Zsh environments.
Why use it?
It removes the manual work of installing Zellij and replacing an older automatic terminal-start setup.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Part of the agent-ops plugin — 8 skills shipped together

Good fit Use it to configure Zellij startup in PowerShell, WSL Bash, or Zsh environments.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/atman-33/workhub/setup-zellij
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add atman-33/workhub --skill setup-zellij
Clone the repo
git clone --depth 1 https://github.com/atman-33/workhub

Made for: Claude Code.

Or install agent-ops, the plugin that ships this one along with the rest of its 8 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for setup-zellij

README.md
[![agentmods](https://agentmods.dev/badge/skills/atman-33/workhub/setup-zellij/github.svg)](https://agentmods.dev/skills/atman-33/workhub/setup-zellij)
Your own site
<a href="https://agentmods.dev/skills/atman-33/workhub/setup-zellij"><img src="https://agentmods.dev/badge/skills/atman-33/workhub/setup-zellij/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for setup-zellij

Your own site · 80×15
<a href="https://agentmods.dev/skills/atman-33/workhub/setup-zellij"><img src="https://agentmods.dev/badge/skills/atman-33/workhub/setup-zellij.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,387 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00047 $0.02387
Opus 5 $0.00023 $0.01193
Sonnet 5 $0.00009 $0.00477
Haiku 4.5 $0.00005 $0.00239

Measured 5d ago against content hash 75490f773ff0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade B, and why

setup-zellij scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

sudo apt update && sudo apt install -y zellij
plugins/agent-ops/skills/setup-zellij/SKILL.md · 211 lines

How it starts

The opening of the file, as written. The whole thing — 211 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Task

Install zellij terminal multiplexer and configure each shell profile (PowerShell and WSL bash / zsh) to launch it automatically on startup — replacing any existing herdr autostart block installed by setup-herdr.

Steps

1. Check Zellij installation (per environment)

PowerShell: Run Get-Command zellij -ErrorAction SilentlyContinue (or zellij --version).

WSL: Run wsl -- which zellij (or wsl -- zellij --version).

If found in an environment, mark that environment "already installed" and skip to step 3 for it. If not found, continue to step 2 for that environment.


2. Install Zellij (only after user confirmation)

These are system-level installers — always show the exact command and get the user's go-ahead before running it via Bash/PowerShell (same convention setup-herdr uses for herdr's own install script).

Windows:

winget install --id Zellij.Zellij -e

WSL/Linux:

sudo apt update && sudo apt install -y zellij

If the distribution doesn't ship zellij, install it from Cargo instead: cargo install --locked zellij (or see https://zellij.dev).

If the user declines, mark that environment "skipped (declined)" and continue with the other environment.


3. Configure shell profiles: remove herdr autostart, add Zellij autostart

Process the following four profiles independently: PowerShell 7 ($PROFILE), Windows PowerShell, WSL bash, and WSL zsh (only if zsh is installed).

3-A. PowerShell 7 profile
  1. Get the profile path from $PROFILE.
  2. If the file does not exist, create it along with its parent directory.
  3. Remove any existing herdr autostart block. Look for the # Auto-start herdr comment; if present, remove it together with the block that follows through the matching closing }:
    # Auto-start herdr
    if (-not $env:HERDR_ENV) {
        herdr
    }
    
    If not found, note "(nothing to remove)" and continue.
  4. Read the file and check whether it contains ZELLIJ or Auto-start Zellij. If found, mark as "already configured" and skip to 3-B.
  5. If not found, append the following at the end of the file:

Read the full file on GitHub · 211 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 211 lines · 47 tokens per session scan B 75490f773ff0

Subscribe to this mod's changes

setup-zellij is a skill published in the GitHub repository atman-33/workhub (2 stars, last pushed 3d ago), licensed MIT. It adds 47 tokens to every session and 2,387 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

gonavi-cli

Operate databases through the GoNavi headless CLI — the gonavi executable shipped in verified GitHub Release archives. Covers listing/adding/importing saved connections, running SQL queries against saved connections or ad-hoc connection files, exporting result sets to csv/json/md/html/xlsx, batch-executing SQL files…

Syngnat/GoNavi · 144 tokens

tty7

Drive the tty7 terminal workbench from the shell with the tty7 binary — list workspaces/tabs/panes, split a pane, send text or keystrokes into one, capture what is on a pane's screen, run a command in a real PTY and pass its exit code through, block until a pane finishes or needs input, see which coding agents are…

l0ng-ai/tty7 · 274 tokens

i-have-adhd

Shape output for a reader with ADHD: lead with the next action, number multi-step work, restate state across turns, suppress tangents, give specific time estimates, make wins visible. Invoke with /i-have-adhd; stays on until "stop adhd mode".

ayghri/i-have-adhd · 62 tokens

superbrain-distill

Internal SuperBrain skill — run by the detached capture child to distill a session-event delta into routed Obsidian notes. Not for direct user invocation.

m3talux/superbrain · 36 tokens

sitrep-panel

Keep a live local HTML report updated as you work on a task — a status board, a running "what's happening now" narrative, screenshots, and a newest-first log — served on localhost so the user can watch progress in a browser tab instead of reading the transcript. Use when the user invokes /sitrep-panel, asks for a…

dbl8005/sitrep-panel · 101 tokens

git-workflow

Use when starting feature work that needs a branch, creating worktrees for isolation, making atomic commits during development, or completing a development branch via merge, PR, preserve, or discard. Also use when the user says "set up worktree", "create PR", "finish this branch", "start feature", or when you need an…

lgbarn/shipyard · 76 tokens