wterm

wterm is a skill for Claude Code from tdimino/claude-code-minoan. It costs 76 tokens per session (686 once invoked), scanned A, original, MIT.

A tool for running shell sessions through a web browser, either on the local machine or across a private network. It can create, list, monitor, restart, and stop terminal sessions.

In plain words
What is it for?
Use it to open a browser-based terminal, start a shell or Claude Code session, inspect active sessions, terminate a session, or restart the web terminal service.
Why use it?
It lets you access command-line work without being at the machine's terminal. Session and daemon controls make it easier to manage remote shells and running processes.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: reads .claude/ paths; mentions Claude Code.

Good fit Use it to open a browser-based terminal, start a shell or Claude Code session, inspect active sessions, terminate a session, or restart the web terminal service.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tdimino/claude-code-minoan/wterm
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 tdimino/claude-code-minoan --skill wterm
Clone the repo
git clone --depth 1 https://github.com/tdimino/claude-code-minoan

Made for: Claude Code.

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 wterm

README.md
[![agentmods](https://agentmods.dev/badge/skills/tdimino/claude-code-minoan/wterm.svg)](https://agentmods.dev/skills/tdimino/claude-code-minoan/wterm)
Your own site
<a href="https://agentmods.dev/skills/tdimino/claude-code-minoan/wterm"><img src="https://agentmods.dev/badge/skills/tdimino/claude-code-minoan/wterm.svg" alt="Measured on agentmods" height="20"></a>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 686 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 3 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Privilege Escalation · line 59
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
  • high Privilege Escalation · line 67
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
  • medium Rogue Agent · line 29
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
How audits are shown
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.00076 $0.00686
Opus 5 $0.00038 $0.00343
Sonnet 5 $0.00015 $0.00137
Haiku 4.5 $0.00008 $0.00069

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

Security

Grade A, and why

wterm scanned grade A with 0 findings 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 4d ago.

The scan reads SKILL.md. This mod also ships 6 executable files (launchd/install.sh, scripts/create-session.sh, scripts/kill-session.sh, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/integration-automation/wterm/SKILL.md · 69 lines

How it starts

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

wterm

Manage the wterm-server daemon — a Node.js service providing browser-based shell access via @wterm/react + node-pty. Access locally at https://wterm.localhost (via portless) or remotely from any tailnet device at http://<hostname>:3036.

Commands

Check status

bash ~/.claude/skills/wterm/scripts/status.sh

Reports whether the daemon is running, its PID, port, and active session count.

List sessions

bash ~/.claude/skills/wterm/scripts/list-sessions.sh

Shows all active PTY sessions (id, name, command, PID, client count, last activity).

Create a session

bash ~/.claude/skills/wterm/scripts/create-session.sh           # default: zsh
bash ~/.claude/skills/wterm/scripts/create-session.sh claude     # Claude Code
bash ~/.claude/skills/wterm/scripts/create-session.sh /bin/bash  # explicit shell

Spawns a new PTY session. Default shell is zsh. Pass claude to start a Claude Code session.

Kill a session

bash ~/.claude/skills/wterm/scripts/kill-session.sh <session-id>

Terminates a session by its hex ID (get IDs from list-sessions.sh).

Restart the daemon

bash ~/.claude/skills/wterm/scripts/restart.sh

Restarts the wterm-server LaunchAgent. All active sessions are lost.

Architecture

  • Daemon: ~/daimones/wterm-server/ — TypeScript, node-pty, ws, Vite React SPA
  • Port: 3036 (bound to 0.0.0.0 for Tailscale access)
  • Auth: Bearer token from WTERM_AUTH_TOKEN in ~/.config/env/secrets.env. Auth is fail-closed — server rejects all requests if no token is configured.
  • LaunchAgent: com.minoan.wterm-server — RunAtLoad, KeepAlive
  • Logs: ~/.claude/logs/wterm-server.{out,err}.log

Gotchas

  • Sessions default to zsh, not Claude Code. Pass claude explicitly to create-session.sh.
  • The daemon must be running on the host machine. If status shows not running, use restart.sh or check launchctl list | grep wterm.
  • Auth token is required for remote access. If scripts return 401, verify WTERM_AUTH_TOKEN is set in ~/.config/env/secrets.env.
  • Restarting the daemon kills all active sessions — the scrollback buffer is in-memory only.

Read the full file on GitHub · 69 lines

Files

What ships with it

7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 4d ago First seen · 69 lines · 76 tokens per session scan A 221c1da1f6e6

Subscribe to this mod's changes

wterm is a skill published in the GitHub repository tdimino/claude-code-minoan (41 stars, last pushed today), licensed MIT. It adds 76 tokens to every session and 686 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. 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

protected-vercel-deployments

Access and test Vercel deployments protected by Vercel Authentication, SSO, or Deployment Protection with agent-browser. Use when a preview or production URL redirects to a Vercel login page, returns a protection 401 or 403, or needs short-lived Trusted Sources OIDC authentication instead of a static bypass secret or…

vercel-labs/agent-browser · 75 tokens

vercel-sandbox

Run agent-browser + Chrome inside Vercel Sandbox microVMs for browser automation from any Vercel-deployed app. Use when the user needs browser automation in a Vercel app (Next.js, SvelteKit, Nuxt, Remix, Astro, etc.), wants to run headless Chrome without binary size limits, needs persistent browser sessions across…

vercel-labs/agent-browser · 126 tokens

defuddle

Plan and, with explicit network consent, use an optional external Defuddle cleaner to extract article-like HTTPS pages as Markdown. Use for defuddle, clean this URL, strip page clutter, readable Markdown from a web page, or preparing a web source for later wiki ingestion.

AgriciDaniel/claude-obsidian · 57 tokens

webcrawler-deep-crawl

Deep-crawl any website from start URLs, return per-page LLM-ready text/markdown/HTML plus metadata (title, description, author, language, canonical URL, OG) and in-scope outbound links. Use when user mentions deep crawl website, recursive crawl, crawl a whole site, scrape entire website, scrape docs site, scrape…

browser-act/skills · 215 tokens

ebay-search-listing

Extracts product listings from any eBay search or category page URL, returning per-item cards (itemNumber, url, title, subtitle, caption, price, priceWithCurrency, currency, wasPrice, bids, shipping, seller, sellerFeedbackCount, sellerPositiveRating, reviewsCount, starRating, image) plus pagination state (currentPage…

browser-act/skills · 221 tokens

etsy-product-detail

Etsy product detail scraper: given an Etsy listing URL, returns full product detail including listingId, title, priceCurrent, priceOriginal, currency, images (all), description, shopName, shopUrl, rating, reviewCount, favorites, inCartCount, variations (with per-option price ranges), highlights, listedDate…

browser-act/skills · 187 tokens