tinymaix-integration

tinymaix-integration is a skill for Claude Code, Codex from easyzoom/aix-skills. It costs 39 tokens per session (606 once invoked), scanned A, original, MIT.

An integration guide for TinyMaix, a small machine-learning runtime for running models on microcontrollers. It covers loading a model, preparing its input data, and running inference, which means producing a prediction from the model.

In plain words
What is it for?
Use it to deploy a machine-learning model on a microcontroller with limited RAM, storage, or processing power.
Why use it?
It helps find mismatches in tensor shapes, input preparation, number formats, and memory allocation that can cause loading failures, incorrect results, or slow execution.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to deploy a machine-learning model on a microcontroller with limited RAM, storage, or processing power.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/easyzoom/aix-skills/tinymaix-integration
Install

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.

Any agent
npx skills add easyzoom/aix-skills --skill tinymaix-integration
Clone the repo
git clone --depth 1 https://github.com/easyzoom/aix-skills

Made for: Claude Code, Codex.

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 tinymaix-integration

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/easyzoom/aix-skills/tinymaix-integration"><img src="https://agentmods.dev/badge/skills/easyzoom/aix-skills/tinymaix-integration.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 606 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.00039 $0.00606
Opus 5 $0.00019 $0.00303
Sonnet 5 $0.00008 $0.00121
Haiku 4.5 $0.00004 $0.00061

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

Security

Grade A, and why

tinymaix-integration 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 6d 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.

skills/tinymaix-integration/SKILL.md · 80 lines

How it starts

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

TinyMaix Integration

Overview

Use this skill to integrate TinyMaix by proving the model, tensor shapes, preprocessing, memory buffers, and target backend before optimizing inference speed. TinyML failures usually come from mismatched input format, quantization, or insufficient memory.

When To Use

Use this skill when:

  • The user wants to run TinyMaix on an MCU.
  • The issue involves model conversion, tm_load, tm_preprocess, tm_run, tensor dimensions, quantized data, RAM/flash limits, or wrong inference results.
  • The target has strict RAM, flash, CPU, or accelerator constraints.

Do not use this skill for full ML framework training or model design beyond embedded deployment checks.

First Questions

Ask for:

  • Target MCU/core, RAM/flash, compiler, and whether SIMD/FPU/DSP extensions exist.
  • TinyMaix version/source and model format.
  • Input shape, data type, quantization, preprocessing, and expected output.
  • Memory allocation strategy and inference buffer sizes.
  • Current symptom: compile error, load error, run error, wrong output, or too slow.

Integration Checklist

  1. Confirm model compatibility. Verify operator set, quantization type, input/output shapes, and converted model files.

  2. Prove preprocessing. Normalize, resize, color order, layout, and quantization must match training/export assumptions.

  3. Budget memory. Account for model, activations, input/output tensors, stack, and any temporary buffers.

  4. Bring up one known sample. Run a golden input with expected output before using live sensor data.

  5. Optimize only after correctness. CPU extensions, fixed-point paths, and memory placement come after correct inference.

Common Failures

  • Wrong NHWC/NCHW layout or color order.
  • Input values are float-scaled but model expects int8/uint8 quantized data.
  • Activation buffers overflow RAM.
  • Model uses unsupported operations.
  • Output interpretation ignores quantization scale/zero point.
  • Benchmark uses live noisy data before golden-vector validation.

Read the full file on GitHub · 80 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. 6d ago First seen · 80 lines · 39 tokens per session scan A 444d45be700c

Subscribe to this mod's changes

tinymaix-integration is a skill published in the GitHub repository easyzoom/aix-skills (31 stars, last pushed 1mo ago), licensed MIT. It adds 39 tokens to every session and 606 once invoked, about $0.0002 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-09-03.

Related

Other skills, from other repositories