GEVINO-TFT-7-10: Skill for Claude Code

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

gevino-tft is a skill for Claude Code from geva-elettronica/GEVINO-TFT-7-10. It costs 152 tokens per session (1,616 once invoked), scanned A, original, MIT.

A programming guide for Arduino/C++ firmware on the GEVA GEVINO TFT, a touch-screen industrial controller with a 7- or 10-inch display.

In plain words
What is it for?
Use it to build firmware in Arduino IDE or arduino-cli, detect the touch panel, control the display and board I/O, and follow the required library and build setup.
Why use it?
It reduces hardware-specific mistakes when working with the board, display, touch input, USB storage, and input/output controls.

Skill for Claude Code

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

This is geva-elettronica/GEVINO-TFT-7-10's own configuration. It tells Claude Code how to work on GEVINO-TFT-7-10 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-TFT-7-10 configures →

Reuse

Borrowing it

Nothing to install: this file belongs to geva-elettronica/GEVINO-TFT-7-10. 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-TFT-7-10/main/.claude/skills/gevino-tft/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/geva-elettronica/GEVINO-TFT-7-10

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-tft

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/geva-elettronica/gevino-tft-7-10/gevino-tft"><img src="https://agentmods.dev/badge/skills/geva-elettronica/gevino-tft-7-10/gevino-tft.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 152 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,616 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.00152 $0.01616
Opus 5 $0.00076 $0.00808
Sonnet 5 $0.00030 $0.00323
Haiku 4.5 $0.00015 $0.00162

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

Security

Grade A, and why

gevino-tft 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-tft/SKILL.md · 91 lines

How it starts

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

GEVINO TFT firmware

You are writing firmware for the GEVINO TFT — an Arduino Zero compatible HMI PLC with a 7" or 10" capacitive-touch TFT (1024×600, Raio RA8876 controller) based on the Microchip SAMD21 (ARM Cortex-M0+, 48 MHz, 256 KB flash, 32 KB RAM), 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.

7" vs 10": same board, only the glass changes. Touch controller: 7" = FT5206 (I²C 0x38), 10" = GT9271 (I²C 0x5D). Probe both addresses at startup to auto-detect the panel.

Read these first

Non-negotiable rules

  1. Respect the include order:
    #include "gevino_tft_io.h"
    #include "All_76_Pic_65K.h"
    #include "gevino_tft_display.h"
    
  2. Include gevino_tft_io.h in exactly ONE translation unit (the main .ino): it instantiates the Serial2/Serial3 SERCOM UARTs, their ISRs and the global I/O registers (OutReg/InReg).
  3. Call gevino_io_setup() once in setup(), after Serial2.begin()/Serial3.begin(); do not initialise pins yourself.
  4. Use the macros: inputs In0In11, outputs setOut0setOut7 / resOut0resOut7, setLed/resLed, set_Rs485_TxEn/res_Rs485_TxEn.
  5. Call updateIO() to push outputs (Out1Out7) and sample inputs (In4In11): these go through a 74HC595/74HC165 shift-register chain mirrored in OutReg/InReg. In0In3 and Out0 are direct GPIO. Write non-blocking, state-based code; avoid delay() in loop().

Skeleton

#include "gevino_tft_io.h"
#include "All_76_Pic_65K.h"
#include "gevino_tft_display.h"

void setup() {
  SerialUSB.begin(115200);
  gevino_io_setup();
  tft.init();
  tft.selectInternalFont(RA8876_FONT_SIZE_32);
  tft.println("GEVINO TFT");
}

void loop() {
  updateIO();
  if (In0) setOut1; else resOut1;
  updateIO();
}

Read the full file on GitHub · 91 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 · 91 lines · 152 tokens per session scan A bc554b45f076

Subscribe to this mod's changes

gevino-tft is a skill published in the GitHub repository geva-elettronica/GEVINO-TFT-7-10 (5 stars, last pushed 2mo ago), licensed MIT. It adds 152 tokens to every session and 1,616 once invoked, about $0.0008 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

tiaportal-mcp

A skill for controlling Siemens TIA Portal, the engineering software used to configure Siemens PLCs and HMIs. It works through an MCP server, a tool connection that lets an agent inspect and change projects.

bulaofen0036-coder/TIA_Portal_Openness_MCP · 103 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