Hive Terminal: Job Control

Manages long-running or backgrounded terminal jobs with start-poll-wait patterns.

Works with setup

Test report

Verdict
Works with setup
Score
8.0/10
Tested
Jul 12, 2026
Environment
Claude Code 2.x (agent harness)
Upstream re-checked
Aug 10, 2026 · d7928ee

Teaches three Hive-runtime MCP tools (terminal_job_start / terminal_job_logs / terminal_job_manage) whose implementations live inside the Hive framework and are not callable in a plain Claude Code shell, so it was tested on knowledge-application rather than live execution. Verbatim install is clean (valid YAML frontmatter, references/signals.md present). In the A/B, the skill produced a materially more correct sequence than the base: it nailed the negative subprocess exit-code convention (-2/-15/-9 mapping each signal to what actually killed the job) and the truncated_bytes_dropped fall-behind signal, both of which the base's general shell-job-control knowledge got only approximately right.

Scored on four weighted criteria — install, triggering, output vs. baseline, docs. How scoring works

  • Installs cleanly 5/5
  • Triggers reliably 4/5
  • Output vs. baseline 7/10
  • Docs & honesty 4/5

What Hive Terminal: Job Control does

Use when launching anything that runs longer than a minute, anything that streams logs, anything you want to keep running while doing other work — or when terminal_exec auto-backgrounded on you and returned a job_id. Teaches the start→poll→wait pattern with terminal_job_logs offset bookkeeping, the `wait_until_exit=True` blocking-poll idiom, the truncated_bytes_dropped resumption signal, the…

How to install Hive Terminal: Job Control

git clone https://github.com/aden-hive/hive
cd hive
mkdir -p ~/.claude/skills
cp -r core/framework/skills/_preset_skills/terminal-tools-job-control ~/.claude/skills/hive-terminal-tools-job-control

Skills live in ~/.claude/skills/ (global) or .claude/skills/ (per-project). Restart Claude Code after installing.

Commands — how to trigger Hive Terminal: Job Control

  • /hive-terminal-tools-job-control Manages long-running or backgrounded terminal jobs with start-poll-wait patterns.

It also activates on plain-language prompts like these:

  • Run this long build job in the background and poll it
  • Check the logs on this backgrounded terminal job
  • Wait for this job to finish without blocking everything

Frequently asked questions

Is the Hive Terminal: Job Control skill free?
Yes. The skill itself is free from aden-hive/hive. SkillProof publishes the install command and an independent test verdict at no cost.
Does Hive Terminal: Job Control work with Claude Code?
We tested it with Claude Code 2.x (agent harness) on Jul 12, 2026. Verdict: Works with setup. Teaches three Hive-runtime MCP tools (terminal_job_start / terminal_job_logs / terminal_job_manage) whose implementations live inside the Hive framework and are not callable in a plain Claude Code shell, so it was tested on knowledge-application rather than live execution. Verbatim install is clean (valid YAML frontmatter, references/signals.md present). In the A/B, the skill produced a materially more correct sequence than the base: it nailed the negative subprocess exit-code convention (-2/-15/-9 mapping each signal to what actually killed the job) and the truncated_bytes_dropped fall-behind signal, both of which the base's general shell-job-control knowledge got only approximately right.
What is the Hive Terminal: Job Control SkillProof Score?
8.0/10 — installs cleanly 5/5, triggers reliably 4/5, output vs. baseline 7/10, docs & honesty 4/5.
How do I install Hive Terminal: Job Control?
Copy the install command from this page, run it in your terminal, and restart Claude Code. Skills live in ~/.claude/skills/ (global) or .claude/skills/ inside a project.
Can I use Hive Terminal: Job Control with Cursor, Copilot, Gemini CLI, Codex or other AI tools?
The SKILL.md format is native to Claude (Claude Code, Desktop, claude.ai). The instructions inside adapt to other assistants: Cursor rules, GitHub Copilot instructions, Windsurf rules, Custom GPTs, AGENTS.md for OpenAI Codex, and GEMINI.md for Google Gemini CLI — our conversion guides cover each, and the free converter on the tools page does the wrapping for you.