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 skills add RikyZ90/ShibaClaw --skill windows-shellgit clone --depth 1 https://github.com/RikyZ90/ShibaClawWrote 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.
[](https://agentmods.dev/skills/rikyz90/shibaclaw/windows-shell)<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>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once 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 |
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.
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
-Keeponly 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"
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.
- 8d ago First seen · 161 lines · 35 tokens per session scan A 47b299991458
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.
Other skills, from other repositories
browser-use
Direct browser control via CDP for web interaction: automation, scraping, testing, screenshots, and site/app work.
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 }}.
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 }}.
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 }} + {{…
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.
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.