Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add jamarpl21/prawo-pl-eli/plugin install prawo-pl-edziennikiWrote 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/jamarpl21/prawo-pl-eli/prawo-pl-edzienniki)<a href="https://agentmods.dev/skills/jamarpl21/prawo-pl-eli/prawo-pl-edzienniki"><img src="https://agentmods.dev/badge/skills/jamarpl21/prawo-pl-eli/prawo-pl-edzienniki/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/jamarpl21/prawo-pl-eli/prawo-pl-edzienniki"><img src="https://agentmods.dev/badge/skills/jamarpl21/prawo-pl-eli/prawo-pl-edzienniki.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.00342 | $0.04329 |
| Opus 5 | $0.00171 | $0.02165 |
| Sonnet 5 | $0.00068 | $0.00866 |
| Haiku 4.5 | $0.00034 | $0.00433 |
Grade A, and why
prawo-pl-edzienniki scanned grade A with 1 finding 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 11d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
import hashlib, os, sys, urllib.request How it starts
The opening of the file, as written. The whole thing — 168 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Prawo miejscowe z API wojewódzkich dzienników urzędowych
Skill do prawa miejscowego: aktów publikowanych w wojewódzkich dziennikach urzędowych — uchwał rad gmin/powiatów/sejmików, rozporządzeń i zarządzeń wojewody, porozumień, obwieszczeń (w tym wyroków WSA uchylających akty miejscowe). Tych aktów NIE ma w Dz.U./M.P. — każde z 16 województw prowadzi własny e-Dziennik z API zgodnym z ELI (ten sam wzorzec co API Sejmu, ale na osobnym hoście). Używaj go, gdy pytanie dotyczy konkretnej gminy, powiatu lub województwa: podatki i opłaty lokalne, plany miejscowe (MPZP), statuty, organizacja szkół, strefy parkowania.
Podział ról (który skill do czego)
- Prawo miejscowe (ta gmina/powiat/województwo) → ten skill.
- Prawo krajowe → prawo-pl-eli (ustawy, rozporządzenia, kodeksy z Dz.U./M.P.). Upoważnienie ustawowe do uchwały (np. art. 5 u.p.o.l. dla stawek podatku od nieruchomości) cytuj z ELI.
- Kontrola sądowa aktów miejscowych (skargi na uchwały, rozstrzygnięcia nadzorcze) → orzecznictwo WSA/NSA w skillu prawo-pl-cbosa.
- Delegując research subagentowi, wpisz: „akty prawa miejscowego pobieraj przez
scripts/edzienniki.py(skill prawo-pl-edzienniki); ustawy przezscripts/eli.py(prawo-pl-eli)".
Narzędzie
Wszystko robi helper scripts/edzienniki.py (tylko biblioteka standardowa Pythona — bez instalacji).
Do PEŁNEJ treści aktu helper używa pdftotext (pakiet poppler) z PATH — zalecane: poppler/pdftotext
(macOS brew install poppler, Debian/Ubuntu apt install poppler-utils); bez niego tekst jest tylko
z text.html (zwykle wyłącznie 1. strona aktu) albo z PDF pobranego przez --pdf.
Skrypt leży obok tego pliku SKILL.md (<katalog skilla>/scripts/edzienniki.py) — NIE zakładaj, że
to ~/.claude/skills/prawo-pl-edzienniki (skill zainstalowany jako plugin leży w katalogu pluginów;
w Claude Code: ${CLAUDE_PLUGIN_ROOT}/skills/prawo-pl-edzienniki). Uruchamiaj wyłącznie helper z bieżącego pakietu:
# 1) Claude Code: przy ładowaniu skilla podstawia ${CLAUDE_PLUGIN_ROOT} (pełna ścieżka poniżej).
EDZ="${CLAUDE_PLUGIN_ROOT}/skills/prawo-pl-edzienniki/scripts/edzienniki.py"
# 2) Codex / Claude Desktop / instalacja ręczna: katalog TEGO pliku SKILL.md (Claude Code podaje go
# jako „Base directory for this skill”, Codex w liście skilli) — podstaw go zamiast <katalog skilla>.
[ -f "$EDZ" ] || EDZ="<katalog skilla>/scripts/edzienniki.py"
# 3) Piaskownica (Cowork, czat z code execution): katalog pluginu bywa NIEWIDOCZNY dla powłoki — wtedy
# pobierz DOKŁADNIE tę wersję helpera (tag = wersja z nagłówka tego pliku). Suma SHA-256 jest
# sprawdzana w kodzie przed zapisem i przed każdym uruchomieniem; niezgodna = helper nie startuje.
[ -f "$EDZ" ] || EDZ=$(python3 - <<'EOF'
import hashlib, os, sys, urllib.request
WERSJA, SHA256 = "2.0.1", "8ae96c4b313af78c8e737815e8d0643e4698922aacf9ca3ed4747f7e679cfede"
URL = f"https://raw.githubusercontent.com/jamarpl21/prawo-pl-eli/v{WERSJA}/plugins/prawo-pl-edzienniki/skills/prawo-pl-edzienniki/scripts/edzienniki.py"
p = os.path.join(os.environ.get("TMPDIR", "/tmp"), f"prawo-pl-edzienniki-{WERSJA}", "edzienniki.py")
try:
dane = open(p, "rb").read() if os.path.exists(p) else urllib.request.urlopen(URL, timeout=30).read()
except Exception as e:
sys.exit(f"BŁĄD: nie udało się pobrać helpera ({e}). Bez helpera NIE cytuj prawa z pamięci ani z portali — poinformuj użytkownika.")
if hashlib.sha256(dane).hexdigest() != SHA256:
os.path.exists(p) and os.remove(p)
sys.exit("BŁĄD: suma SHA-256 helpera nie zgadza się z SKILL.md — helper NIE zostanie uruchomiony. Nie cytuj prawa z pamięci ani z portali — poinformuj użytkownika.")
os.makedirs(os.path.dirname(p), exist_ok=True); open(p, "wb").write(dane); print(p)
EOF
) && [ -f "$EDZ" ] || exit 1
python3 "$EDZ" <komenda> [...]
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 11d ago First seen · 168 lines · 342 tokens per session scan A bec2c1189085
prawo-pl-edzienniki is a skill published in the GitHub repository jamarpl21/prawo-pl-eli (15 stars, last pushed 17d ago), licensed MIT. It adds 342 tokens to every session and 4,329 once invoked, about $0.0017 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
lawyer-expert
Expert-level legal systems, contracts, compliance, and legal technology. Use when the user mentions legal, contracts, compliance, law, or legal tech, or when the task involves Legal Systems, Legal Technology, Compliance Frameworks, or Contract Management.
law-to-markdown
A skill that converts legal provisions and regulatory documents from plain text, PDF, or Word format into Markdown. Markdown is a plain-text format commonly used for structured documents.
fl-laws
Use when an agent needs to look up, quote, summarize, cite, or reason from Florida Statutes, the Florida Constitution, or Florida court rules. Provides local full-corpus access through compact HTML files and citation lookup scripts.
ny-laws
Use when an agent needs to look up, quote, summarize, cite, or reason from New York State statutes, the New York State Constitution, the New York City Administrative Code, or New York Unified Court System rules. Provides local full-corpus access through compact HTML files and a citation lookup script.
federal-court-rules
Use when an agent needs to look up, quote, summarize, cite, or reason from bundled federal court rules, including the Federal Rules of Civil Procedure, Federal Rules of Appellate Procedure, Federal Rules of Evidence, supplemental rules, selected federal district local rules, and selected ECF rules. Provides local…
us-code
Use when an agent needs to look up, quote, summarize, cite, or reason from the United States Code. Provides local full-corpus access to U.S. Code title sections through compact HTML section files and a citation lookup script.