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/oleg494/coding-kit/windows-encoding-fixesnpx skills add oleg494/coding-kit --skill windows-encoding-fixesgit clone --depth 1 https://github.com/oleg494/coding-kitWhat 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.00108 | $0.02696 |
| Opus 5 | $0.00054 | $0.01348 |
| Sonnet 5 | $0.00022 | $0.00539 |
| Haiku 4.5 | $0.00011 | $0.00270 |
Grade A, and why
windows-encoding-fixes scanned grade A with 2 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 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
| curl — alias | in PowerShell `curl` = Invoke-WebRequest | `curl.exe` explicitly | Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
**Symptom:** `subprocess.run(["npm", "install", ...])` → How it starts
The opening of the file, as written. The whole thing — 232 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Windows: encodings, console, cross-platform
Experience from two coding-kit installation bug reports on Windows 10 (research.db id=141, 146). Each pitfall — with symptom, cause, fix. Apply to ANY script/file that must also work on Windows.
1. stdout encoding: cp1251 kills Russian output
Symptom: UnicodeEncodeError: '\u2713' ... codec can't encode — fails
when printing ✓/✗/Cyrillic. Shows up when redirecting output
(script > log 2>&1) and in a cp1251 console.
Cause: the Windows console defaults to cp1251; Python 3.12 takes the console encoding when redirecting, and Unicode does not fit into it.
Fix (required in every CLI script):
try:
sys.stdout.reconfigure(encoding="utf-8", errors="replace")
sys.stderr.reconfigure(encoding="utf-8", errors="replace")
except Exception: # noqa: S110,BLE001 — reconfigure is optional
pass
In coding-kit — the single memory/scripts/_compat.py: fix_encoding() instead of copying.
Fix for bash wrappers:
export PYTHONIOENCODING="${PYTHONIOENCODING:-utf-8}"
System-level fix (recommended for every Windows box):
[Environment]::SetEnvironmentVariable("PYTHONUTF8", "1", "User")
2. Writing files: CRLF breaks md5 checks
Symptom: Path.write_text() on Windows writes \r\n; the canonical form is \n.
Any md5 check of mirrors/copies falsely fails with «files diverged».
Fix when writing: newline="\n" + byte comparison:
dst.write_text(content, encoding="utf-8", newline="\n")
# freshness check:
if dst.read_bytes() == content.encode("utf-8"): ...
Fix when checking (bash, md5 with normalization):
first=$(tr -d '\r' < "${MIRRORS[0]}" | md5sum | cut -d' ' -f1)
3. PowerShell 5.1: UTF-8 without BOM is read as cp1251
Symptom: a bootstrap .ps1 ignores --check, outputs mojibake,
fails on the dash «—» in comments.
Cause: Windows PowerShell 5.1 decodes a .ps1 without BOM as cp1251; Cyrillic and dashes break parsing (down to the argument logic).
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 · 232 lines · 108 tokens per session scan A efa5af923a35
windows-encoding-fixes is a skill published in the GitHub repository oleg494/coding-kit (1 stars, last pushed yesterday), licensed MIT. It adds 108 tokens to every session and 2,696 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 2 findings (makes network calls, runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
run
Execute a named agent role with optimized instructions. Explicit invocation only ($run). Never trigger implicitly.
tip
Deliver a transformative life perspective shift and a productivity tip. Use when the user invokes /tip or wants non-technical inspiration or a fresh mental model.
agentic-security-review
Run a security and dependency audit for agent systems, tool-using AI apps, MCP/A2A integrations, or security-sensitive AI-generated code. Check slopsquatting risk, tool shadowing, rug pulls, memory/context poisoning, secrets, unsafe permissions, and common CWE patterns. Use when asked for security review, dependency…
agentic-spec
Create a structured specification before agentic coding work. Assemble the six context types, scale rigor for prototype/internal/production tasks, produce SPEC.md, and configure focused AGENTS.md boundaries. Use when asked to write a spec, plan a feature, design an agent/system, define architecture, or create…
agentic-evals
Design evaluation contracts and test plans for agentic systems. Create deterministic tests, trajectory evals, quality dimensions, gold-set criteria, and CI gates before or after implementation. Use when asked for tests first, an eval plan, success criteria, non-deterministic testing, LLM-as-judge setup, or…
agentic-production-readiness
Prepare an AI agent system for production operation. Cover SHIELD controls, sandbox/canary/production rollout, OpenTelemetry observability with GenAI semantic conventions, Agent Card drafting, governance, and post-deploy monitoring. Use for production readiness checks, go-live checklists, agent monitoring, agent…