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 pangzhenying2025/hermes-automotive-skills --skill automotive-ai-ecugit clone --depth 1 https://github.com/pangzhenying2025/hermes-automotive-skillsWrote 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/pangzhenying2025/hermes-automotive-skills/automotive-ai-ecu)<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.
<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>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.00039 | $0.37462 |
| Opus 5 | $0.00019 | $0.18731 |
| Sonnet 5 | $0.00008 | $0.07492 |
| Haiku 4.5 | $0.00004 | $0.03746 |
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( 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()
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.
- 12d ago First seen · 4,441 lines · 39 tokens per session scan A 4f8f68c7b019
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.
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…
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'…
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.
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.
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.
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"…