aktual: Skill for Claude Code

.claude/skills/add-material-icon/SKILL.md

add-material-icon is a skill for Claude Code from jonapoul/aktual. It costs 37 tokens per session (1,667 once invoked), scanned A, original, Apache-2.0.

A procedure for downloading a Material Design icon and turning its SVG image into a Kotlin Compose icon.

In plain words
What is it for?
It helps developers add Material icons to the Aktual Compose icon library, including classic or newer Material icon variants.
Why use it?
It removes the repetitive work of finding the correct icon source and converting it into code the app can display.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter.

This is jonapoul/aktual's own configuration. It tells Claude Code how to work on aktual 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 aktual configures →

Reuse

Borrowing it

Nothing to install: this file belongs to jonapoul/aktual. 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/jonapoul/aktual/main/.claude/skills/add-material-icon/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/jonapoul/aktual

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 add-material-icon

README.md
[![agentmods](https://agentmods.dev/badge/skills/jonapoul/aktual/add-material-icon/github.svg)](https://agentmods.dev/skills/jonapoul/aktual/add-material-icon)
Your own site
<a href="https://agentmods.dev/skills/jonapoul/aktual/add-material-icon"><img src="https://agentmods.dev/badge/skills/jonapoul/aktual/add-material-icon/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 add-material-icon

Your own site · 80×15
<a href="https://agentmods.dev/skills/jonapoul/aktual/add-material-icon"><img src="https://agentmods.dev/badge/skills/jonapoul/aktual/add-material-icon.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,667 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high YARA Match · line 3
    YARA rule matched a hack tool or exploit indicator (offensive tools, reconnaissance, privilege escalation, or exploit frameworks).
    Fix: Remove offensive tool references and exploit code. Legitimate agent skills should not contain penetration testing tools, exploit frameworks, or reconnaissance utilities.
How audits are shown
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.00037 $0.01667
Opus 5 $0.00018 $0.00834
Sonnet 5 $0.00007 $0.00333
Haiku 4.5 $0.00004 $0.00167

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

Security

Grade A, and why

add-material-icon 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 7d 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/add-material-icon/SKILL.md · 157 lines

How it starts

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

Add a Material Design icon to the aktual-core/icons module by fetching its SVG source and converting it to a Kotlin ImageVector.

Do NOT ask clarifying questions — just execute.

Arguments

  • $ARGUMENTS should contain the icon name in either snake_case or PascalCase (e.g., calendar_today or CalendarToday)
  • If --classic is included, fetch from classic Material Icons (24x24) instead of Material Symbols
  • If --material is included, use MaterialIcons as the receiver instead of AktualIcons

Step-by-Step Process

1. Determine source and fetch SVG

Material Symbols (default, 960x960):

Fetch the filled variant SVG directly from the Google Fonts CDN:

https://fonts.gstatic.com/s/i/short-term/release/materialsymbolsoutlined/{snake_case_name}/fill1/24px.svg

The fill1 path segment selects the filled variant. The response is a plain SVG file (not base64).

Classic Material Icons (with --classic, 24x24):

The source repo is: https://android.googlesource.com/platform/frameworks/support/+/1de65587b7e999a38df120bd8827c3594974864d/compose/material/material/icons/generator/raw-icons/filled/

Convert the PascalCase icon name to snake_case for the filename (e.g., AccountCircleaccount_circle).

Fetch the SVG using WebFetch:

https://android.googlesource.com/platform/frameworks/support/+/1de65587b7e999a38df120bd8827c3594974864d/compose/material/material/icons/generator/raw-icons/filled/{snake_case_name}.xml?format=TEXT

The response is base64 encoded. Decode it to get the Android Vector Drawable XML.

2. Parse the SVG/Vector Drawable

From the Android Vector Drawable XML (classic), extract:

  • android:viewportWidth and android:viewportHeight (typically 24)
  • android:pathData from each <path> element

From an SVG (symbols), extract:

  • The viewBox attribute (typically 0 -960 960 960)
  • The d attribute from each <path> element

3. Convert path data to Kotlin

Convert SVG/Android path commands to Kotlin PathBuilder calls:

Read the full file on GitHub · 157 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. 7d ago First seen · 157 lines · 37 tokens per session scan A 42b6745f8217

Subscribe to this mod's changes

add-material-icon is a skill published in the GitHub repository jonapoul/aktual (34 stars, last pushed today), licensed Apache-2.0. It adds 37 tokens to every session and 1,667 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-01.

Related

Other skills, from other repositories

compose-component-design

Use when designing or reviewing reusable Jetpack Compose component APIs with modifier parameters, root layout placement, caller-provided variable content, primitive content parameters, optional content, or boolean shape flags.

chrisbanes/skills · 41 tokens

maui-accessibility

Improve MAUI accessibility. USE FOR: semantic labels, hints, headings, screen-reader focus/announcements, AutomationProperties, touch targets, decorative content, TalkBack/VoiceOver/Narrator checks. DO NOT USE FOR: general layout, automation-only tests, performance.

dotnet/maui-labs · 60 tokens

kotlin-expert

Expert-level Kotlin development, Android, coroutines, and multiplatform. Use when the user mentions Android, coroutines, multiplatform, or JVM, or when the task involves Kotlin Fundamentals, Android Development, Kotlin Multiplatform, or Kotlin Style.

personamanagmentlayer/pcl · 55 tokens

m3-expressive

Material 3 Expressive design patterns for Jetpack Compose - expressive theming, motion physics, shape morphing, typography emphasis, color emphasis, and all 28 expressive components.

ahmed3elshaer/everything-claude-code-mobile · 41 tokens

design-ui

Design UI screens in Google Stitch and produce a Compose Implementation Blueprint with HTML + token inventories persisted for downstream skills.

ThisIsSadeghi/KMPilot · 22 tokens

liquid-glass

Apple Liquid Glass design patterns for SwiftUI iOS 26 - glass effects, morphing, containers, interactive glass, tinting, accessibility, and cross-platform glass design.

ahmed3elshaer/everything-claude-code-mobile · 40 tokens