GEVINO-Motor: Skill for Claude Code

.claude/skills/gevino-motor/SKILL.md

gevino-motor is a skill for Claude Code from geva-elettronica/GEVINO-Motor. It costs 121 tokens per session (1,413 once invoked), scanned A, original, MIT.

A programming guide for the GEVINO Motor PLC, an Arduino Zero-compatible board used to control stepper or brushed-DC motors. It explains the board’s motor library, pins, registers, and microstepping setup.

In plain words
What is it for?
Use it when writing Arduino or C++ firmware for GEVINO Motor, including motor initialization, microstepping, speed-related settings, and brushed-motor control.
Why use it?
It provides the board-specific rules needed to write firmware that builds and controls the motor driver correctly. It also points to the library files that define the available controls.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions AGENTS.md.

This is geva-elettronica/GEVINO-Motor's own configuration. It tells Claude Code how to work on GEVINO-Motor itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything GEVINO-Motor configures →

Reuse

Borrowing it

Nothing to install: this file belongs to geva-elettronica/GEVINO-Motor. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/geva-elettronica/GEVINO-Motor/main/.claude/skills/gevino-motor/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/geva-elettronica/GEVINO-Motor

Made for: Claude Code.

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 gevino-motor

README.md
[![agentmods](https://agentmods.dev/badge/skills/geva-elettronica/gevino-motor/gevino-motor/github.svg)](https://agentmods.dev/skills/geva-elettronica/gevino-motor/gevino-motor)
Your own site
<a href="https://agentmods.dev/skills/geva-elettronica/gevino-motor/gevino-motor"><img src="https://agentmods.dev/badge/skills/geva-elettronica/gevino-motor/gevino-motor/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 gevino-motor

Your own site · 80×15
<a href="https://agentmods.dev/skills/geva-elettronica/gevino-motor/gevino-motor"><img src="https://agentmods.dev/badge/skills/geva-elettronica/gevino-motor/gevino-motor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 121 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,413 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.00121 $0.01413
Opus 5 $0.00060 $0.00707
Sonnet 5 $0.00024 $0.00283
Haiku 4.5 $0.00012 $0.00141

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

Security

Grade A, and why

gevino-motor 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 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.

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.

.claude/skills/gevino-motor/SKILL.md · 81 lines

How it starts

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

GEVINO Motor firmware

You are writing firmware for the GEVINO Motor — an Arduino Zero compatible motor-control PLC based on the Microchip SAMD21 (ARM Cortex-M0+, 48 MHz, 256 KB flash, 32 KB RAM) and a Toshiba TB67S128FTG driver (one stepper or two brushed-DC motors, 50 V / 5 A, microstepping to 1/128), made by GEVA Elettronica. Build in the Arduino IDE / arduino-cli with the Arduino SAMD core, board Arduino Zero (Native USB Port). It also works with Cursor and OpenPLC.

Read these first

  • AGENTS.md — the full programming guide (this skill is its short form).
  • src/gevino_motor.h — the single library header with every pin macro, the motor-control functions and the ISEq/Param registers. When unsure, read this file.

Non-negotiable rules

  1. Include a sine table first, then the library:
    #include "Sinewave128.h"   // 1,2,4,8,16,32,64,128,256,512,1024 microsteps
    #include "gevino_motor.h"
    
    The library references dataword_rom / SinwaveTableSize from the Sinewave*.h table.
  2. Include gevino_motor.h in exactly ONE translation unit (the main .ino): it defines global objects (ISEq, Param, analogResult, …) and functions.
  3. Call gevino_motor_setup() once in setup() and do not initialise pins yourself.
  4. Use the macros, never raw pin numbers: In1In5, setOut1setOut4 / resOut1resOut4, setLed/resLed, set_Rs485_TxEn/res_Rs485_TxEn, and driver pins setLATCH/resLATCH, setBANK_EN/resBANK_EN, setSTANDBY/resSTANDBY.
  5. Write non-blocking, state-based code. Prefer switch/case and millis() / the bundled Timer. Avoid delay() in loop() (short delayMicroseconds() between microsteps is fine).

Skeleton

#include "Sinewave128.h"
#include "gevino_motor.h"

void setup() {
  SerialUSB.begin(115200);
  gevino_motor_setup();
  resSTANDBY;            // hold the motor in position
  ISEq.AGC = 1;
  MotorInit();           // send init sequence to the driver
  Param.Torque = 6;  Param.MDTA = 3;  Param.MDTB = 3;   // 3 = ADMD
  Microstep();           // open the SPI transaction
}

void loop() {
  MicrostepUp();
  delayMicroseconds(500);
}

Read the full file on GitHub · 81 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 · 81 lines · 121 tokens per session scan A e7a753db726f

Subscribe to this mod's changes

gevino-motor is a skill published in the GitHub repository geva-elettronica/GEVINO-Motor (5 stars, last pushed 3mo ago), licensed MIT. It adds 121 tokens to every session and 1,413 once invoked, about $0.0006 per session on Opus 5. 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

arduino-code-generator

Generate Arduino and embedded C++ snippets for sensors, actuators, buses, state machines, timing, data logging, and hardware abstraction. Use when a user requests implementation code and provide the exact board, framework, toolchain, pins, voltage, memory, and library versions first. Bundled templates target UNO…

wedsamuel1230/arduino-skills · 86 tokens

library-selection

Use when selecting, replacing, pinning, or auditing an Arduino, ESP32, RP2040, C++, or vendor-framework library. Compare architecture support, framework and version compatibility, API behavior, footprint, maintenance, provenance, security, and hardware assumptions before installation.

wedsamuel1230/arduino-skills · 57 tokens

doca-argp

Use this skill for hands-on DOCA Arg Parser CLI work on a shipped sample or new DOCA-using app — adding / removing / renaming flags; wiring docaargpinit → register params → docaargpstart → docaargpdestroy in order; picking a parameter type from the full public enum (DOCAARGPTYPESTRING, INT, BOOLEAN, DEVICE, DEVICEREP…

NVIDIA/skills · 267 tokens

embedded-stm32

Best practices for embedded C/C++ development on STM32 microcontrollers using the HAL, covering peripherals, DMA, interrupts, memory constraints, and hardware-focused testing. Use when writing STM32 HAL code, configuring peripherals generated by STM32CubeMX, working with interrupts or DMA, debugging with SWD/JTAG…

Mindrally/skills · 87 tokens

hip-kernel-optimization

This skill should be used when writing or tuning HIP kernels on AMD/NVIDIA GPUs, covering memory coalescing, shared-memory tiling, bank conflict avoidance, warp primitives, occupancy, vectorization, async ops, loop unrolling, and profiling.

AMD-AGI/Apex · 56 tokens

cuda

Use when writing CUDA kernels, managing the thread, block, and grid hierarchy, tiling shared memory, using streams, setting nvcc flags, or using Thrust. Not for kernel debugging: use cuda-debugging.

OutlineDriven/outline-driven-development · 46 tokens