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.
curl -O https://raw.githubusercontent.com/geva-elettronica/GEVINO-Motor/main/.claude/skills/gevino-motor/SKILL.mdgit clone --depth 1 https://github.com/geva-elettronica/GEVINO-MotorWrote 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/geva-elettronica/gevino-motor/gevino-motor)<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.
<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>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.00121 | $0.01413 |
| Opus 5 | $0.00060 | $0.00707 |
| Sonnet 5 | $0.00024 | $0.00283 |
| Haiku 4.5 | $0.00012 | $0.00141 |
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.
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 theISEq/Paramregisters. When unsure, read this file.
Non-negotiable rules
- Include a sine table first, then the library:
The library references#include "Sinewave128.h" // 1,2,4,8,16,32,64,128,256,512,1024 microsteps #include "gevino_motor.h"dataword_rom/SinwaveTableSizefrom theSinewave*.htable. - Include
gevino_motor.hin exactly ONE translation unit (the main.ino): it defines global objects (ISEq,Param,analogResult, …) and functions. - Call
gevino_motor_setup()once insetup()and do not initialise pins yourself. - Use the macros, never raw pin numbers:
In1…In5,setOut1…setOut4/resOut1…resOut4,setLed/resLed,set_Rs485_TxEn/res_Rs485_TxEn, and driver pinssetLATCH/resLATCH,setBANK_EN/resBANK_EN,setSTANDBY/resSTANDBY. - Write non-blocking, state-based code. Prefer
switch/caseandmillis()/ the bundledTimer. Avoiddelay()inloop()(shortdelayMicroseconds()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);
}
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 · 81 lines · 121 tokens per session scan A e7a753db726f
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.
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…
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.
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…
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…
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.
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.