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.
npx skills add matematicsolutions/awesome-matematic-skills-pl --skill matematic-marketplace-installergit clone --depth 1 https://github.com/matematicsolutions/awesome-matematic-skills-plWrote 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/matematicsolutions/awesome-matematic-skills-pl/matematic-marketplace-installer)<a href="https://agentmods.dev/skills/matematicsolutions/awesome-matematic-skills-pl/matematic-marketplace-installer"><img src="https://agentmods.dev/badge/skills/matematicsolutions/awesome-matematic-skills-pl/matematic-marketplace-installer/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/matematicsolutions/awesome-matematic-skills-pl/matematic-marketplace-installer"><img src="https://agentmods.dev/badge/skills/matematicsolutions/awesome-matematic-skills-pl/matematic-marketplace-installer.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.00066 | $0.02281 |
| Opus 5 | $0.00033 | $0.01141 |
| Sonnet 5 | $0.00013 | $0.00456 |
| Haiku 4.5 | $0.00007 | $0.00228 |
Grade A, and why
matematic-marketplace-installer 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 — 164 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MateMatic Marketplace Installer
Generuje gotowe skrypty instalacyjne skilli MateMatic dla docelowych użytkowników (prawnicy, kancelarie) - bez wymagania Git, npm ani wiedzy technicznej.
Safety Tiers
| Tier | Operacje | Reguła |
|---|---|---|
| R | Podgląd listy skilli do instalacji | Bez potwierdzenia |
| M | Generowanie skryptu .bat / .ps1 | Pokaż zawartość przed zapisem |
| D | Nadpisanie istniejących skilli w ~/.claude/skills/ |
Użytkownik wpisuje "potwierdzam" |
Tryby
/marketplace install [skill-slug]
Generuje install-matematic-skills.bat gotowy do uruchomienia przez prawnika.
/marketplace list
Wyświetla dostępne skille z awesome-matematic-skills-pl z opisem.
/marketplace check
Sprawdza co jest już zainstalowane w ~/.claude/skills/.
Workflow generowania instalatora
- Pobierz
marketplace.jsonzmatematicsolutions/awesome-matematic-skills-pl(ścieżka:.claude-plugin/marketplace.json) - Zapytaj które skille lub "wszystkie"
- Wygeneruj
install-matematic-skills.bat(patrz szablon poniżej) - Wygeneruj
README-instalacja.txtz instrukcją krok po kroku - Dostarcz oba pliki gotowe do wysłania klientowi
Szablon install-matematic-skills.bat
Szablon, nie gotowy plik. Tryb
/marketplace installpodstawia dwa placeholdery przed zapisem.batna dysk:
__GIT_REF__-> domyślnie tag najnowszej publikacji zmarketplace.json(np.refs/tags/v0.6.0); klient może wymusić inny przez--ref mainlub--ref vX.Y.Z. Pinowanie do taga = powtarzalna instalacja (audytowalna).__SKILL_SLUGS__-> lista slugów wybranych skilli, oddzielona spacjami (np.let-it-be redline-docx-pl saos-orzecznictwo).Surowy szablon poniżej nie zadziała uruchomiony bez podstawienia.
@echo off
setlocal enabledelayedexpansion
chcp 65001 >nul
echo MateMatic Marketplace Installer
echo ================================
echo Instaluje skille AI dla Claude Code
echo.
:: Katalog docelowy
set "SKILLS_DIR=%USERPROFILE%\.claude\skills"
if not exist "%SKILLS_DIR%" mkdir "%SKILLS_DIR%"
:: Tymczasowy katalog pobrania
set "TMP_DIR=%TEMP%\matematic-install-%RANDOM%"
mkdir "%TMP_DIR%"
echo [1/3] Pobieranie skilli z MateMatic Marketplace...
:: __GIT_REF__ = refs/tags/vX.Y.Z (domyślnie najnowszy tag z marketplace.json) lub refs/heads/main (bleeding-edge).
powershell -Command "Invoke-WebRequest -Uri 'https://github.com/matematicsolutions/awesome-matematic-skills-pl/archive/__GIT_REF__.zip' -OutFile '%TMP_DIR%\skills.zip' -UseBasicParsing"
if not exist "%TMP_DIR%\skills.zip" (
echo BLAD: Nie udalo sie pobrac. Sprawdz polaczenie z Internetem.
pause
exit /b 1
)
echo [2/3] Rozpakowywanie...
powershell -Command "Expand-Archive -Path '%TMP_DIR%\skills.zip' -DestinationPath '%TMP_DIR%\extracted' -Force"
echo [3/3] Instalowanie skilli...
:: [LISTA SKILLI - generowana dynamicznie]
:: UWAGA: nazwa katalogu po Expand-Archive zalezy od ref ZIPa - dla taga vX.Y.Z bedzie "awesome-matematic-skills-pl-X.Y.Z", dla main "awesome-matematic-skills-pl-main". Tryb /marketplace install podstawia __EXTRACTED_DIR__.
for %%S in (__SKILL_SLUGS__) do (
set "SRC=%TMP_DIR%\extracted\__EXTRACTED_DIR__\skills\%%S"
set "DST=%SKILLS_DIR%\%%S"
if exist "!SRC!" (
:: UWAGA: rd /s /q usuwa lokalne modyfikacje w skillu. Klient ostrzezony w README-instalacja.txt.
if exist "!DST!" rd /s /q "!DST!"
xcopy /e /i /q "!SRC!" "!DST!" >nul
echo OK: %%S
) else (
echo POMINIETY: %%S (nie znaleziono)
)
)
:: Czyszczenie
rd /s /q "%TMP_DIR%"
echo.
echo ================================
echo Instalacja zakonczona!
echo Uruchom nowa sesje Claude Code.
echo Skille beda dostepne jako /nazwa-skilla
echo ================================
pause
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 · 164 lines · 66 tokens per session scan A af6efafcc3bc
matematic-marketplace-installer is a skill published in the GitHub repository matematicsolutions/awesome-matematic-skills-pl (6 stars, last pushed 19d ago), licensed MIT. It adds 66 tokens to every session and 2,281 once invoked, about $0.0003 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
Read, search, and draft email in the connected mailbox (Gmail or Microsoft 365). Use when the user asks about their inbox, wants a message found or summarized, or wants a reply drafted. Sending is gated by a separate, explicitly granted permission — never assume you can send, and never claim a message was sent unless…
metago-scene-adapt
A communication add-on that adapts generated language to the audience and situation. It can explain technical terms for everyday readers or replace them with business wording in commercial material.
orbit-notion
Open Orbit briefing skill — selected by the Orbit pipeline when Notion is the user's only connected connector, or when the user explicitly scopes their daily digest to Notion. Pulls the past 24 hours of document edits, comments, mentions, and database row changes from the user's authenticated Notion connection and…
agentmail
Use your assigned AgentMail inbox to read email tasks, explicitly send or reply, and check delivery. Provided automatically by your inbox assignment.
Cortex
Operate Cortex, the LifeOS memory system — the typed Knowledge Archive (People, Companies, Ideas, Research with typed related: links) plus recall of prior work sessions, ISAs, and conversations. Search, add, harvest, develop, ingest, distill, graph-navigate, recall. USE WHEN cortex, knowledge, knowledge base, search…
pinchtab-mcp
Use this skill when a task requires browser automation through PinchTab's MCP server connected to a remote browser instance. Covers navigation, element interaction, data extraction, form filling, multi-step flows, and session management via MCP tools.