automotive-ai-ecu

automotive-ai-ecu is a skill for Claude Code, Codex from pangzhenying2025/hermes-automotive-skills. It costs 39 tokens per session (37,462 once invoked), scanned A, original, MIT.

A reference skill for artificial-intelligence systems inside vehicles. It covers camera vision, driver monitoring, edge AI deployment, neural processing units and voice-language understanding for automotive systems.

In plain words
What is it for?
Use it when working on camera-based driver assistance, driver monitoring, AI running directly on vehicle hardware, neural-processing hardware or in-car voice understanding.
Why use it?
It helps connect AI models with vehicle cameras, dedicated AI hardware and driver-facing functions instead of treating them as general-purpose software alone.

Skill for Claude CodeCodex

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

Good fit Use it when working on camera-based driver assistance, driver monitoring, AI running directly on vehicle hardware, neural-processing hardware or in-car voice understanding.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pangzhenying2025/hermes-automotive-skills/automotive-ai-ecu
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 pangzhenying2025/hermes-automotive-skills --skill automotive-ai-ecu
Clone the repo
git clone --depth 1 https://github.com/pangzhenying2025/hermes-automotive-skills

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 automotive-ai-ecu

README.md
[![agentmods](https://agentmods.dev/badge/skills/pangzhenying2025/hermes-automotive-skills/automotive-ai-ecu/github.svg)](https://agentmods.dev/skills/pangzhenying2025/hermes-automotive-skills/automotive-ai-ecu)
Your own site
<a href="https://agentmods.dev/skills/pangzhenying2025/hermes-automotive-skills/automotive-ai-ecu"><img src="https://agentmods.dev/badge/skills/pangzhenying2025/hermes-automotive-skills/automotive-ai-ecu/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 automotive-ai-ecu

Your own site · 80×15
<a href="https://agentmods.dev/skills/pangzhenying2025/hermes-automotive-skills/automotive-ai-ecu"><img src="https://agentmods.dev/badge/skills/pangzhenying2025/hermes-automotive-skills/automotive-ai-ecu.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 37,462 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00039 $0.37462
Opus 5 $0.00019 $0.18731
Sonnet 5 $0.00008 $0.07492
Haiku 4.5 $0.00004 $0.03746

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

Security

Grade A, and why

automotive-ai-ecu scanned grade A with 1 finding 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 12d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

response = requests.post(
skills/automotive-ai-ecu/SKILL.md · 4,441 lines

How it starts

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

Automotive Ai Ecu

Camera Vision Ai

Camera Vision AI for Automotive

Skill: Computer vision pipelines for automotive cameras with AI/ML integration Version: 1.0.0 Category: AI-ECU / Perception Complexity: Advanced


Overview

Complete guide to automotive camera vision AI pipelines: object detection (YOLO, EfficientDet), semantic segmentation, lane detection, 360° surround view with AI, camera ISP tuning, and multi-camera fusion for ADAS and autonomous driving.

Automotive Camera Landscape

Camera Types in Modern Vehicles

Camera Type Resolution FOV Frame Rate Use Case Interface
Front Camera 1920x1080 - 2880x1644 60-120° 30-60 FPS ADAS, Lane Keep, AEB MIPI CSI-2
Rear Camera 1280x720 - 1920x1080 120-180° 30 FPS Parking, Rear Cross Traffic MIPI CSI-2
Side Cameras (2x) 1280x720 90-120° 30 FPS Blind Spot, Lane Change MIPI CSI-2
DMS Camera (IR) 640x480 - 1280x720 60-90° 30-60 FPS Driver Monitoring MIPI CSI-2
OMS Camera (IR) 640x480 90-120° 15-30 FPS Occupant Monitoring MIPI CSI-2
360° Surround 4x 1280x720 180-220° 30 FPS Parking, Top View MIPI CSI-2

Total Bandwidth: Up to 12 Gbps for multi-camera system (8 cameras)


Camera ISP Pipeline

Image Signal Processor (ISP) Tuning

ISP Pipeline: Raw Bayer → Demosaic → White Balance → Gamma → Color Correction → AI Inference

class AutomotiveISPTuner:
    """
    ISP tuning for automotive vision AI
    Goal: Optimize image quality for ML model accuracy (not human perception)
    """
    def __init__(self, isp_device):
        self.isp = isp_device

    def tune_for_object_detection(self):
        """
        ISP tuning optimized for YOLO/EfficientDet
        - High contrast for edge detection
        - Low noise to avoid false positives
        - Wide dynamic range (HDR) for varying light conditions
        """
        self.isp.set_parameter('demosaic_algorithm', 'bilinear')  # Fast, good for edges
        self.isp.set_parameter('white_balance_mode', 'auto')  # Auto WB for varying conditions
        self.isp.set_parameter('gamma', 2.2)  # Standard gamma
        self.isp.set_parameter('contrast', 1.3)  # +30% contrast for better edges
        self.isp.set_parameter('sharpening', 1.5)  # +50% sharpening
        self.isp.set_parameter('noise_reduction', 'moderate')  # Balance speed vs. quality
        self.isp.set_parameter('hdr_mode', 'enabled')  # HDR for tunnels, bright sun
        self.isp.set_parameter('ae_target', 0.5)  # Exposure target (0-1 scale)

    def tune_for_lane_detection(self):
        """
        ISP tuning for lane marking detection
        - High contrast for white/yellow lines on asphalt
        - Aggressive edge enhancement
        - No color correction (monochrome sufficient)
        """
        self.isp.set_parameter('contrast', 1.5)  # +50% contrast
        self.isp.set_parameter('sharpening', 2.0)  # Maximum sharpening
        self.isp.set_parameter('saturation', 0.8)  # Reduce saturation (focus on luminance)
        self.isp.set_parameter('edge_enhancement', 'aggressive')

    def tune_for_dms(self):
        """
        ISP tuning for IR-based driver monitoring
        - 940nm IR illumination
        - No color processing (monochrome sensor)
        - Low noise for accurate eye/face detection
        """
        self.isp.set_parameter('ir_filter', 'bypass')  # Allow 940nm IR
        self.isp.set_parameter('noise_reduction', 'aggressive')  # Critical for DMS accuracy
        self.isp.set_parameter('gain', 2.0)  # Amplify IR signal
        self.isp.set_parameter('frame_rate', 60)  # High FPS for gaze tracking

    def adaptive_tuning_based_on_scenario(self, scenario):
        """
        Dynamically adjust ISP based on driving scenario
        """
        if scenario == 'highway_day':
            self.isp.set_parameter('exposure_time', 8)  # ms (bright conditions)
            self.isp.set_parameter('gain', 1.0)

        elif scenario == 'highway_night':
            self.isp.set_parameter('exposure_time', 20)  # ms (low light)
            self.isp.set_parameter('gain', 4.0)  # Amplify signal
            self.isp.set_parameter('noise_reduction', 'aggressive')

        elif scenario == 'tunnel_entry':
            self.isp.set_parameter('hdr_mode', 'enabled')  # Critical for tunnel transitions
            self.isp.set_parameter('ae_speed', 'fast')  # Quickly adapt to light change

        elif scenario == 'parking':
            self.isp.set_parameter('fisheye_correction', 'enabled')  # Correct distortion
            self.isp.set_parameter('frame_rate', 30)  # Standard FPS sufficient

# Example: Apply ISP tuning
isp = AutomotiveISPTuner('/dev/video0')
isp.tune_for_object_detection()

Read the full file on GitHub · 4,441 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. 12d ago First seen · 4,441 lines · 39 tokens per session scan A 4f8f68c7b019

Subscribe to this mod's changes

automotive-ai-ecu is a skill published in the GitHub repository pangzhenying2025/hermes-automotive-skills (5 stars, last pushed 3mo ago), licensed MIT. It adds 39 tokens to every session and 37,462 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

iso26262

ISO 26262 functional-safety expert that operates in two modes: (1) HARA / ASIL determination — enumerate hazardous events from item malfunctions × driving situations, rate Severity (S0–S3), Exposure (E0–E4), Controllability (C0–C3), look up ASIL from ISO 26262-3:2018 Table 4, and produce a HARA report with Safety…

ptsilivis/autonomousguy · 197 tokens

automotive-syseng

When the user wants to analyze automotive requirements, check INCOSE/EARS compliance, review MISRA-C code, assess ADAS levels, or verify ISO 26262/AUTOSAR/SOTIF conformance. Also use when the user says 'check requirements', 'EARS check', 'INCOSE analysis', 'MISRA check', 'ASIL assessment', 'V-model check'…

duonghvu/automotive-syseng · 122 tokens

automotive-expert

Expert-level automotive systems, connected vehicles, fleet management, telematics, ADAS, and automotive software. Use when the user mentions connected car, fleet, telematics, ADAS, or vehicle, or when the task involves Automotive Systems, Technologies, Standards and Protocols, or Fleet Management.

personamanagmentlayer/pcl · 64 tokens

spark-environment-setup

Set up a working ML training/inference environment on NVIDIA DGX Spark (GB10, aarch64, CUDA 13). Use when installing PyTorch/Unsloth/TRL/vLLM on DGX Spark, hitting libcudart or wheel-ABI errors on aarch64, or choosing between NGC containers and bare pip installs.

wshobson/agents · 76 tokens

spark-training-gotchas

Preflight and diagnose the ten known failure modes for ML training on NVIDIA DGX Spark. Use when a training run on DGX Spark fails to start, OOMs below the 128GB limit, slows down mid-run, or before any multi-hour training job on GB10.

wshobson/agents · 63 tokens

minicpm5-deploy-litert

Run MiniCPM5-2B or MiniCPM5-1B on-device with Google's LiteRT-LM runtime — the litert-lm CLI or its OpenAI-compatible server on a desktop, the Kotlin API or the AI Edge Gallery app on Android, the same .litertlm bundle on CPU or GPU. Use when the user says "LiteRT", "LiteRT-LM", "litertlm", ".litertlm", "Android"…

OpenBMB/MiniCPM · 121 tokens