climate-window-defrost

climate-window-defrost is a skill for Claude Code, Codex from Darwin-Agent/Car-bench-TRACE. It costs 0 tokens per session (3,461 once invoked), scanned A, original, MIT.

A climate control for turning front, rear, or all-window defrost on or off. Defrost clears condensation or ice from vehicle windows.

In plain words
What is it for?
Clearing the windshield or rear window, activating defrost for all windows, and turning defrost off while checking the relevant climate settings.
Why use it?
It applies the extra fan, airflow, air-conditioning, and window settings needed for front or all-window defrost.

Skill for Claude CodeCodex

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

Good fit Clearing the windshield or rear window, activating defrost for all windows, and turning defrost off while checking the relevant climate settings.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/darwin-agent/car-bench-trace/climate-window-defrost
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 Darwin-Agent/Car-bench-TRACE --skill climate-window-defrost
Clone the repo
git clone --depth 1 https://github.com/Darwin-Agent/Car-bench-TRACE

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 climate-window-defrost

README.md
[![agentmods](https://agentmods.dev/badge/skills/darwin-agent/car-bench-trace/climate-window-defrost/github.svg)](https://agentmods.dev/skills/darwin-agent/car-bench-trace/climate-window-defrost)
Your own site
<a href="https://agentmods.dev/skills/darwin-agent/car-bench-trace/climate-window-defrost"><img src="https://agentmods.dev/badge/skills/darwin-agent/car-bench-trace/climate-window-defrost/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 climate-window-defrost

Your own site · 80×15
<a href="https://agentmods.dev/skills/darwin-agent/car-bench-trace/climate-window-defrost"><img src="https://agentmods.dev/badge/skills/darwin-agent/car-bench-trace/climate-window-defrost.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,461 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.
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.00000 $0.03461
Opus 5 $0.00000 $0.01731
Sonnet 5 $0.00000 $0.00692
Haiku 4.5 $0.00000 $0.00346

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

Security

Grade A, and why

climate-window-defrost 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.

skills_bank/climate-window-defrost/SKILL.md · 90 lines

How it starts

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

Turn the window defrost on or off

Turn defrost on (or off) for a target window — front, rear, or all. Activating defrost for the front or all windows is never a single call: policy requires a fixed set of automatic supporting changes (fan, airflow, AC, and the window-closing that AC-on forces) to be applied in the same turn. Rear-only defrost has none of these requirements. Sometimes the target window is unstated, a control needed for the cascade is missing, or a window position can't be read. The same method handles all of these.

When this applies

"Turn on the front / rear / all-window defrost", "defrost the windshield", "clear the rear window", "turn the defrost off". This skill owns the defrost toggle and the supporting cascade that policy ties to it — do not treat fan/airflow/AC/window-close as out of scope here, because for front/all defrost they are mandatory parts of this operation. (If the user's request is purely about one of those settings on its own — e.g. "set the fan to 3", "point the air at my feet", "turn the AC on", "close my window" — that standalone request belongs to the dedicated climate/window skill; this skill performs them only as the defrost cascade.)

Tools

  • get_climate_settings({}) — read current fan speed, airflow direction, AC status, and defrost status. Always read this first so each cascade step is applied only when its precondition is unmet.
  • get_vehicle_window_positions({}) — read window positions. Needed for front/all defrost because the cascade turns AC on, which requires closing windows open more than 20%. A position field MAY return "unknown" — genuinely unverifiable, never assume it means closed/open.
  • get_user_preferences({preference_categories:{vehicle_settings:{climate_control:true}}}) — read the climate-control preference whenever the cascade will set an airflow direction, because the user may have a preferred windshield-including direction for defrost that must override the bare default.
  • set_window_defrost({defrost_window, on}) — the target action; vocabulary is FRONT, REAR, ALL. Defrost exactly the window named. FRONT and ALL trigger the cascade below; REAR does not.
  • set_fan_speed({level}) — raise the fan to level 2 when it is below (cascade step). The tool or its parameter MAY be missing.
  • set_fan_airflow_direction({direction}) — set a windshield-including direction (WINDSHIELD) when the current one doesn't include WINDSHIELD (cascade step). MAY be missing.
  • set_air_conditioning({on}) — turn AC on when it's off (cascade step). MAY be missing.
  • open_close_window({window, percentage}) — close windows open more than 20% after AC is turned on (cascade step). MAY be missing.

Read the full file on GitHub · 90 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 · 90 lines · 0 tokens per session scan A c6f653fefe36

Subscribe to this mod's changes

climate-window-defrost is a skill published in the GitHub repository Darwin-Agent/Car-bench-TRACE (8 stars, last pushed 5d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 3,461 tokens. 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-31.

Related

Other skills, from other repositories

gke-compute-classes

Configures, optimizes, and troubleshoots GKE ComputeClasses. Use when configuring Spot VMs with on-demand fallback, targeting specific accelerators (GPUs/TPUs) or machine families, restricting ComputeClass access, or debugging pending pods related to node pool auto-creation. Do not use for cluster-level Node Auto…

google/skills · 83 tokens

jetson-diagnostic

Read-only Jetson health snapshot for identity, memory, GPU, thermal, power, storage, services, and top processes.

NVIDIA/skills · 30 tokens

doca-socket-relay

Use this skill when the operator is driving the DOCA Socket Relay to bridge a socket-oriented host application onto a BlueField DPU peer without rewriting it — picking the deployment shape (in-process, sidecar, or BlueField service container), configuring the host-side socket and the DPU-side forwarding endpoint…

NVIDIA/skills · 236 tokens

offensive-z-wave

Z-Wave attack methodology — sniffing with Z-Force / EZ-Wave / RTL-SDR + ZniffMobile, S0 (legacy) network-key derivation flaw and key reuse, S2 (modern) ECDH commissioning analysis, replay/injection on unauthenticated nodes, default-key brute-force on test deployments, and home-automation hub pivots. Use when targeting…

SnailSploit/Claude-Red · 113 tokens

hsb-flash

Flash the FPGA on an HSB board connected to an NVIDIA devkit. Supports HSB Lattice boards (FPGA versions 2407, 2412, 2507, 2510) and Leopard Imaging VB1940 "all-in-one" cameras (FPGA versions 2507, 2510). Uses release-specific YAML manifests and board-type-specific program commands. Lattice and VB1940 commands must…

NVIDIA/skills · 94 tokens

jetson-validate-image

Use after jetson-flash-image to run static BSP checks, on-target smoke/regression tests on a flashed DUT, or both. Not for build or flash steps. Triggers: validate bsp, on-target validation.

NVIDIA/skills · 50 tokens