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.
npx agentmods add skills/thrownlemon/claude-code-plugins/fork-terminalnpx skills add ThrownLemon/claude-code-plugins --skill fork-terminalgit clone --depth 1 https://github.com/ThrownLemon/claude-code-pluginsWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00028 | $0.03236 |
| Opus 5 | $0.00014 | $0.01618 |
| Sonnet 5 | $0.00006 | $0.00647 |
| Haiku 4.5 | $0.00003 | $0.00324 |
Grade C, and why
fork-terminal scanned grade C 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 yesterday.
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.
Instruction-override phrasinghighPrompt injection
Text telling the model to disregard its earlier instructions or safety rules is the shape of a prompt injection, whoever wrote it.
> **Security Warning (opt-in only)**: The `--dangerously-*` flags and `-y -p` (yolo headless) mode bypass safety prompts. Only add them when you explicitly need autonomous/unattended execution in a trusted environment. How it starts
The opening of the file, as written. The whole thing — 377 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Fork Terminal Skill
This skill enables forking terminal sessions to new windows using various AI coding tools or raw CLI commands.
Supported Tools
| Tool | Trigger Pattern | Default Model |
|---|---|---|
| Claude Code | "fork terminal use claude code..." | opus (bare alias, auto-tracks latest) |
| Codex CLI | "fork terminal use codex..." | gpt-5.2-codex |
| Gemini CLI | "fork terminal use gemini..." | gemini-2.5-pro |
| Raw CLI | "fork terminal run..." | N/A |
Model Modifiers
- fast: Use lighter/faster models (haiku, codex-mini, flash)
- heavy: Use most capable models (opus, codex-max, gemini-pro)
How to Execute
- Identify the tool from the user's request
- Read the appropriate cookbook for execution details
- Execute
fork_terminal(command)using the Python tool
Tool Selection
Match the user's language against these patterns:
- "fork terminal use claude code to..." → Use
cookbook/claude-code.md - "fork terminal use codex to..." → Use
cookbook/codex-cli.md - "fork terminal use gemini to..." → Use
cookbook/gemini-cli.md - "fork terminal run..." → Use
cookbook/cli-command.md
Execution Steps
For AI Coding Tools (Claude Code, Codex, Gemini)
- Read the corresponding cookbook file to get model variables and command format
- Determine model based on modifier (fast/heavy/default)
- If the user requests "with summary" or context handoff:
- Use the template in
prompts/fork_summary_user_prompt.md - Fill in conversation history summary
- Include the next user request
- Use the template in
- Execute via:
python3 ${CLAUDE_PLUGIN_ROOT}/skills/fork-terminal/tools/fork_terminal.py "<full_command>"
For Raw CLI Commands
- Parse the command from the user's request
- Run
<command> --helpfirst to understand options (if needed) - Execute via:
python3 ${CLAUDE_PLUGIN_ROOT}/skills/fork-terminal/tools/fork_terminal.py "<command>"
Example Commands
Default (interactive) — no bypass flags:
What ships with it
16 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.
- cookbook/claude-code.md 1.2 KB
- cookbook/cli-command.md 816 B
- cookbook/codex-cli.md 1.6 KB
- cookbook/gemini-cli.md 1.7 KB
- cookbook/tournament.md 5.8 KB
- cookbook/worktree.md 5.1 KB
- prompts/fork_summary_user_prompt.md 1.3 KB
- prompts/tournament_task.md 1.7 KB
- prompts/worktree_task.md 1.4 KB
- tools/coordination.py 17 KB runs code
- tools/fork_terminal.py 4.8 KB runs code
- tools/spawn_session.py 20 KB runs code
- tools/tournament_review.py 13 KB runs code
- tools/tournament.py 16 KB runs code
- tools/visual_tournament.py 11 KB runs code
- tools/worktree_manager.py 11 KB runs code
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.
- yesterday First seen · 377 lines · 28 tokens per session scan C aa807a4decba
fork-terminal is a skill published in the GitHub repository ThrownLemon/claude-code-plugins (2 stars, last pushed 2mo ago), licensed MIT. It adds 28 tokens to every session and 3,236 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 1 finding (instruction-override phrasing). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
brainstorming
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
babysit-pr
Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…
imagegen
Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…