whendone-plus

whendone-plus is a skill for Claude Code, Codex from EliasOulkadi/shokunin. It costs 116 tokens per session (1,618 once invoked), scanned A, original, MIT.

A notification skill that watches long-running terminal commands and alerts you when they finish. It can report whether commands such as tests, builds, installations, and Git operations succeeded or failed.

In plain words
What is it for?
Use it for long tests, Docker builds, package installations, Git transfers, database migrations, data pipelines, and large file transfers.
Why use it?
It removes the need to keep checking a terminal while a command runs. You can switch to other work and return when the command is complete.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions OpenCode.

Good fit Use it for long tests, Docker builds, package installations, Git transfers, database migrations, data pipelines, and large file transfers.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/eliasoulkadi/shokunin/whendone-plus
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 EliasOulkadi/shokunin --skill whendone-plus
Clone the repo
git clone --depth 1 https://github.com/EliasOulkadi/shokunin

Made for: Claude Code, Codex.

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 whendone-plus

README.md
[![agentmods](https://agentmods.dev/badge/skills/eliasoulkadi/shokunin/whendone-plus/github.svg)](https://agentmods.dev/skills/eliasoulkadi/shokunin/whendone-plus)
Your own site
<a href="https://agentmods.dev/skills/eliasoulkadi/shokunin/whendone-plus"><img src="https://agentmods.dev/badge/skills/eliasoulkadi/shokunin/whendone-plus/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 whendone-plus

Your own site · 80×15
<a href="https://agentmods.dev/skills/eliasoulkadi/shokunin/whendone-plus"><img src="https://agentmods.dev/badge/skills/eliasoulkadi/shokunin/whendone-plus.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 116 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,618 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: 1 finding, up to medium

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 →

  • medium MCP Rug Pull · line 48
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
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.00116 $0.01618
Opus 5 $0.00058 $0.00809
Sonnet 5 $0.00023 $0.00324
Haiku 4.5 $0.00012 $0.00162

Measured 7d ago against content hash d5a1db5d1e5c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

whendone-plus 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 7d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/notify.js), 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.

.pack/skills/whendone-plus/SKILL.md · 180 lines

How it starts

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

WhenDone Plus

Automatically notify when long-running commands complete.

How It Works

  1. User runs a long command (e.g. npm test, docker build, git push)
  2. The agent monitors the command execution time
  3. If the command runs longer than the threshold (default 10s), the agent notifies the user on completion
  4. Exit code is passed through

Workflow

Step 1: Detect long-running command

Identify commands likely to exceed threshold:

  • npm test, npm run test, npx playwright test
  • docker build, docker compose up, docker compose down
  • git push, git pull, git clone
  • pip install, npm install, pnpm install, yarn install
  • cargo build, cargo test, go build, dotnet build
  • Custom scripts, database migrations, data processing pipelines
  • ffmpeg, rsync, scp, large file transfers

Step 2: Monitor execution

Start a background timer when the command begins. Track:

  • Elapsed wall-clock time
  • Peak memory usage (if available)
  • Child process tree (for pipeline awareness)

Step 3: Notify on completion

Basic notification format:

✅ "Command finished: npm test completed in 142s (exit 0)"
❌ "Command finished: docker build failed in 89s (exit 1)"

Include:

  • Command name (first word + key args)
  • Execution time (rounded to seconds)
  • Exit code (success/failure)
  • Optional: memory peak, output file path if redirected

Step 4: Handle edge cases

  • Commands completing under 10s: no notification (too fast to matter)
  • Interactive/TUI commands (vim, nano, htop): skip (user is watching)
  • Piped commands (e.g. npm test | grep error): monitor the pipeline, not the first process
  • Backgrounded commands (&): notify on background process completion
  • Chained commands (;): notify per-segment or in aggregate
  • Commands killed by signal: notify with signal name (e.g. "killed by SIGTERM")

Notification Mechanisms

Windows Toast Notification (PowerShell)

Add-Type -AssemblyName System.Windows.Forms
$balloon = New-Object System.Windows.Forms.NotifyIcon
$balloon.Icon = [System.Drawing.SystemIcons]::Information
$balloon.BalloonTipTitle = "Command Complete"
$balloon.BalloonTipText = "npm test finished in 142s (exit 0)"
$balloon.Visible = $true
$balloon.ShowBalloonTip(5000)
Start-Sleep -Seconds 5
$balloon.Dispose()

Read the full file on GitHub · 180 lines

Files

What ships with it

1 file 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. 7d ago First seen · 180 lines · 116 tokens per session scan A d5a1db5d1e5c

Subscribe to this mod's changes

whendone-plus is a skill published in the GitHub repository EliasOulkadi/shokunin (113 stars, last pushed 1mo ago), licensed MIT. It adds 116 tokens to every session and 1,618 once invoked, about $0.0006 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

deploy-docker-compose

Run the Omnigent server as a Docker compose stack (server + Postgres) on any Docker host — your laptop, a VPS, EC2 by hand, or as the base layer of any container-platform deploy. Invoke when the user wants to build the image, bring up the compose stack, debug the stack on a host they already have, or extend the stack…

omnigent-ai/omnigent · 84 tokens

rust-project

Modern Rust project architecture guide for 2025. Use when creating Rust projects (CLI, web services, libraries). Covers workspace structure, error handling, async patterns, and idiomatic Rust best practices.

majiayu000/spellbook · 43 tokens

slides

A slide generator that creates PNG images for presentation decks, including simple backgrounds for spoken-video scripts and fuller layouts for standalone presentations.

majiayu000/spellbook · 41 tokens

typescript-project

Modern TypeScript project architecture guide for 2025. Use when creating new TS projects, setting up configurations, or designing project structure. Covers tech stack selection, layered architecture, and best practices.

majiayu000/spellbook · 42 tokens

architecture-foundation

Design architecture foundations before implementation. Use when asked to design or refactor architecture, choose Rust/Go crate, package, module, runtime, workflow, or service boundaries, compare mature project architecture, prevent stacked one-off PRs, audit migration debt in existing repos, or produce a spec before…

majiayu000/spellbook · 64 tokens

product-manager-toolkit

Use when the user needs product management workflows such as RICE prioritization, customer interview analysis, PRD templates, discovery frameworks, go-to-market strategy, feature prioritization, research synthesis, or requirements documentation.

majiayu000/spellbook · 47 tokens