windows-encoding-fixes

A collection of fixes for Windows encoding, line-ending, shell, and Python-environment problems.

In plain words
What is it for?
Use it when writing cross-platform scripts, installing software, handling Cyrillic or other Unicode text, or supporting PowerShell and MINGW64.
Why use it?
It helps prevent errors caused by Windows using different text encodings, file endings, commands, and folder layouts than other systems.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/oleg494/coding-kit/windows-encoding-fixes
Any agent
npx skills add oleg494/coding-kit --skill windows-encoding-fixes
Clone the repo
git clone --depth 1 https://github.com/oleg494/coding-kit

Made for: Claude Code, Codex.

Per session 108 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,696 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 2 findings. Scan, not verified.
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 $0.00108 $0.02696
Opus 5 $0.00054 $0.01348
Sonnet 5 $0.00022 $0.00539
Haiku 4.5 $0.00011 $0.00270

Measured yesterday against content hash efa5af923a35, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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", ...])` →
skills/windows-encoding-fixes/SKILL.md · 232 lines

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).

Read the full file on GitHub · 232 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. yesterday First seen · 232 lines · 108 tokens per session scan A efa5af923a35

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories

run

Execute a named agent role with optimized instructions. Explicit invocation only ($run). Never trigger implicitly.

mystilleef/spae-framework · 21 tokens

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.

mystilleef/spae-framework · 32 tokens

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…

browoz/agentic-sdlc-skills · 106 tokens

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…

browoz/agentic-sdlc-skills · 91 tokens

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…

browoz/agentic-sdlc-skills · 95 tokens

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…

browoz/agentic-sdlc-skills · 97 tokens