windows-shell

windows-shell is a skill for Claude Code, Codex from RikyZ90/ShibaClaw. It costs 35 tokens per session (1,077 once invoked), scanned A, original, Apache-2.0.

A Windows workflow for running commands as background PowerShell jobs, so they can continue while you perform other work.

In plain words
What is it for?
Run long tasks, keep processes alive across steps, check job status, read output, wait for completion, and run several commands in parallel on Windows.
Why use it?
It avoids tying up one terminal while a task runs and lets you check progress or output later.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Run long tasks, keep processes alive across steps, check job status, read output, wait for completion, and run several commands in parallel on Windows.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rikyz90/shibaclaw/windows-shell
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 RikyZ90/ShibaClaw --skill windows-shell
Clone the repo
git clone --depth 1 https://github.com/RikyZ90/ShibaClaw

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 windows-shell

README.md
[![agentmods](https://agentmods.dev/badge/skills/rikyz90/shibaclaw/windows-shell.svg)](https://agentmods.dev/skills/rikyz90/shibaclaw/windows-shell)
Your own site
<a href="https://agentmods.dev/skills/rikyz90/shibaclaw/windows-shell"><img src="https://agentmods.dev/badge/skills/rikyz90/shibaclaw/windows-shell.svg" alt="Measured on agentmods" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,077 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 pass 7 Sept 2026
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.00035 $0.01077
Opus 5 $0.00017 $0.00539
Sonnet 5 $0.00007 $0.00215
Haiku 4.5 $0.00003 $0.00108

Measured 8d ago against content hash 47b299991458, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

windows-shell 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 8d 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.

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.

shibaclaw/skills/windows-shell/SKILL.md · 161 lines

How it starts

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

Windows Shell Skill

Use PowerShell Jobs when you need to run tasks in the background, keep processes alive across multiple steps, or run several commands in parallel on Windows.
This skill is the Windows counterpart of the tmux skill (available on Linux/macOS).


Quick-start: start a background job

# Start a background job and keep a reference
$job = Start-Job -Name "myTask" -ScriptBlock {
    # Replace with the real command
    python -u my_script.py
}
Write-Host "Job started: $($job.Id) ($($job.Name))"

Check job status

# List all jobs
Get-Job

# Check a specific job
Get-Job -Name "myTask" | Select-Object Id, Name, State, HasMoreData

States: Running, Completed, Failed, Stopped.


Read output (non-destructive peek)

# Read output without consuming it (Keep = $true)
Receive-Job -Name "myTask" -Keep

Remove -Keep only when you want to consume and discard the buffered output.


Wait for completion

# Block until the job finishes (with timeout)
$job = Get-Job -Name "myTask"
$job | Wait-Job -Timeout 120   # seconds

if ($job.State -eq "Completed") {
    Receive-Job $job
} else {
    Write-Warning "Job did not finish in time. State: $($job.State)"
}

Run multiple jobs in parallel

$jobs = @(
    Start-Job -Name "task1" -ScriptBlock { python -u worker.py --id 1 },
    Start-Job -Name "task2" -ScriptBlock { python -u worker.py --id 2 },
    Start-Job -Name "task3" -ScriptBlock { python -u worker.py --id 3 }
)

# Wait for all
$jobs | Wait-Job

# Collect results
foreach ($j in $jobs) {
    Write-Host "=== $($j.Name) ==="
    Receive-Job $j
}

Start a long-running server / process

# Start server in background
$server = Start-Job -Name "devServer" -ScriptBlock {
    Set-Location $using:PWD
    python -m uvicorn app:app --reload --port 8000
}

# Poll until it is listening
for ($i = 0; $i -lt 30; $i++) {
    Start-Sleep -Seconds 1
    $out = Receive-Job $server -Keep
    if ($out -match "Application startup complete") { break }
}
Write-Host "Server ready"

Read the full file on GitHub · 161 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. 8d ago First seen · 161 lines · 35 tokens per session scan A 47b299991458

Subscribe to this mod's changes

windows-shell is a skill published in the GitHub repository RikyZ90/ShibaClaw (80 stars, last pushed today), licensed Apache-2.0. It adds 35 tokens to every session and 1,077 once invoked, about $0.0002 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-08-30.

Related

Other skills, from other repositories

browser-use

Direct browser control via CDP for web interaction: automation, scraping, testing, screenshots, and site/app work.

browser-use/browser-use · 26 tokens

agent-tool

Add a new tool/function the AI agent can call (e.g. look something up, hit an external API, perform an action). Use when extending the assistant's capabilities, wiring a new function into the agent, or when the model needs a new action. This project uses {{ cookiecutter.aiframework }}.

vstorm-co/full-stack-ai-agent-template · 66 tokens

background-task

Add or modify work that runs outside the request/response cycle — emails, document ingestion, webhooks, cleanups, scheduled jobs. Use when something is slow or fire-and-forget, or when adding a periodic/cron task. This project's queue is {{ cookiecutter.backgroundtasks }}.

vstorm-co/full-stack-ai-agent-template · 62 tokens

rag-knowledge

Work with the RAG knowledge base — ingest documents, run semantic search, manage collections, or add a sync source/connector (Google Drive, S3). Use when populating or debugging the knowledge base, tuning retrieval, or adding a new document source. This project uses {{ cookiecutter.vectorstore }} + {{…

vstorm-co/full-stack-ai-agent-template · 76 tokens

alembic-migration

Create, review, and apply database schema changes with Alembic. Use whenever a SQLAlchemy model is added or changed, a column/index/constraint needs to change, or a data backfill is required — anything that alters the PostgreSQL schema.

vstorm-co/full-stack-ai-agent-template · 56 tokens

channel-bot

Work with messaging-channel bots (Telegram / Slack) — register a bot, route inbound messages through the AI agent, handle webhooks vs polling, or add a new channel adapter. Use when wiring chat into a messaging platform or debugging bot delivery.

vstorm-co/full-stack-ai-agent-template · 53 tokens