automotive-sdv

Implements software-defined vehicle systems including cloud telemetry, OTA updates, and containerized vehicle apps.

7|2|Updated May 19, 2026
One-click install
npx skills add https://github.com/pangzhenying2025/hermes-automotive-skills --skill automotive-sdv-pangzhenying2025
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: automotive-sdv
Source: https://github.com/pangzhenying2025/hermes-automotive-skills/tree/main/skills/automotive-sdv
Command: npx skills add https://github.com/pangzhenying2025/hermes-automotive-skills --skill automotive-sdv-pangzhenying2025

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Building software-defined vehicle (SDV) platforms requires deep expertise across cloud connectivity, containerization, digital twins, and OTA update pipelines, which most teams must assemble from scattered documentation and trial-and-error. ## Core Features & Use Cases - Cloud-Vehicle Integration: Production-ready MQTT telemetry clients with offline SQLite buffering, AWS IoT Core fleet backends, FastAPI gateways, and Terraform infrastructure for connected vehicle platforms. - Containerized Vehicle Apps: Guidance on container runtimes (Docker, Podman, containerd) for automotive workloads with resource limits and inter-container communication. - OTA Updates, Digital Twins & App Stores: Coverage of over-the-air update systems, cloud-based vehicle digital twins, and in-vehicle application distribution. - Use Case: A fleet engineer needs to stream battery telemetry from vehicles to AWS, store it in Timestream, trigger low-battery alerts via SNS, and send remote lock commands — this Skill provides the complete working implementation. ## Quick Start Ask the agent to design a vehicle telemetry pipeline using MQTT and AWS IoT Core with offline buffering and remote command support.

Frequently Asked Questions about automotive-sdv

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I stream vehicle telemetry to the cloud using MQTT?▼

Use an MQTT client like Eclipse Paho to publish telemetry to topics such as vehicles/{vin}/telemetry/{type} with QoS levels per data criticality. The Skill provides a complete Python client with TLS, automatic reconnection, and SQLite offline buffering for connectivity loss.

What AWS services are used for connected vehicle fleet management?▼

The reference architecture uses AWS IoT Core for device messaging, DynamoDB for vehicle state, Timestream for time-series telemetry, SNS for alerts, and IoT topic rules to route messages. Terraform configurations for all of these resources are included.

How do I handle vehicle telemetry when connectivity is lost?▼

Buffer messages locally in a SQLite database when the MQTT broker is unreachable, then flush the buffer in order once the connection is restored. This prevents data loss during coverage gaps without blocking the CAN monitoring loop.

Can containers run on automotive embedded platforms?▼

Yes, container runtimes like Docker, Podman, and containerd can run vehicle applications with defined resource limits and inter-container communication. The Skill covers manifest formats and automotive-specific constraints for containerized workloads.

What security measures are needed for vehicle-to-cloud communication?▼

Use X.509 certificate-based device authentication, TLS 1.2+ transport encryption, fine-grained per-VIN authorization policies, and audit logging of all remote commands. Certificates should be securely provisioned during vehicle manufacturing.