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-saosWrote 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-saos)<a href="https://agentmods.dev/skills/jamarpl21/prawo-pl-eli/prawo-pl-saos"><img src="https://agentmods.dev/badge/skills/jamarpl21/prawo-pl-eli/prawo-pl-saos/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-saos"><img src="https://agentmods.dev/badge/skills/jamarpl21/prawo-pl-eli/prawo-pl-saos.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.00397 | $0.04810 |
| Opus 5 | $0.00198 | $0.02405 |
| Sonnet 5 | $0.00079 | $0.00962 |
| Haiku 4.5 | $0.00040 | $0.00481 |
Grade A, and why
prawo-pl-saos 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 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.
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 — 173 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Polskie orzecznictwo z publicznego API SAOS
Skill do orzecznictwa (judykatury) polskiego: wyroków, postanowień i uchwał. Sięga do publicznego API
SAOS (System Analizy Orzeczeń Sądowych, https://www.saos.org.pl/api) — agregatu orzeczeń jawnych:
SN, TK, sądy powszechne (SA/SO/SR), KIO. Używaj go zawsze, gdy pytanie dotyczy tego, jak sądy
stosują/interpretują przepis, gdy trzeba znaleźć konkretny wyrok po sygnaturze, ustalić linię
orzeczniczą albo poprzeć argument w piśmie procesowym judykaturą.
Podział ról (przepis ≠ orzeczenie)
- Treść przepisu — z ELI, nie z SAOS. Brzmienie polskiej ustawy/kodeksu cytuj przez skill
prawo-pl-eli (
scripts/eli.py). SAOS daje orzeczenia, nie autorytatywny tekst przepisu. - JAK sądy stosują przepis — z SAOS. „Co mówi orzecznictwo o art. 299 k.s.h.", „czy SN dopuszcza…", „linia orzecznicza w sprawie…", „znajdź wyrok sygn. III CSK 203/09" — to zadania dla tego skilla.
- Most ELI → SAOS: najpierw ustal przepis w ELI, potem
szukaj --przepis "..."w SAOS, by znaleźć orzeczenia powołujące ten przepis. - Delegując research subagentowi, wpisz: „orzecznictwo polskie pobieraj przez
scripts/saos.py(skill prawo-pl-saos); treść przepisów przezscripts/eli.py(prawo-pl-eli)".
Narzędzie
Wszystko robi helper scripts/saos.py (tylko biblioteka standardowa Pythona — bez instalacji).
Skrypt leży obok tego pliku SKILL.md (<katalog skilla>/scripts/saos.py) — NIE zakładaj, że to
~/.claude/skills/prawo-pl-saos (skill zainstalowany jako plugin leży w katalogu pluginów; w Claude
Code: ${CLAUDE_PLUGIN_ROOT}/skills/prawo-pl-saos). Uruchamiaj wyłącznie helper z bieżącego pakietu:
# 1) Claude Code: przy ładowaniu skilla podstawia ${CLAUDE_PLUGIN_ROOT} (pełna ścieżka poniżej).
SAOS="${CLAUDE_PLUGIN_ROOT}/skills/prawo-pl-saos/scripts/saos.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 "$SAOS" ] || SAOS="<katalog skilla>/scripts/saos.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 "$SAOS" ] || SAOS=$(python3 - <<'EOF'
import hashlib, os, sys, urllib.request
WERSJA, SHA256 = "2.0.1", "71f87c1eda5e2d8a6084ac8226d3a9513a74564062a937248816040850d7d655"
URL = f"https://raw.githubusercontent.com/jamarpl21/prawo-pl-eli/v{WERSJA}/plugins/prawo-pl-saos/skills/prawo-pl-saos/scripts/saos.py"
p = os.path.join(os.environ.get("TMPDIR", "/tmp"), f"prawo-pl-saos-{WERSJA}", "saos.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 "$SAOS" ] || exit 1
python3 "$SAOS" <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.
- 12d ago First seen · 173 lines · 397 tokens per session scan A 33ba3aef145d
prawo-pl-saos is a skill published in the GitHub repository jamarpl21/prawo-pl-eli (15 stars, last pushed 18d ago), licensed MIT. It adds 397 tokens to every session and 4,810 once invoked, about $0.0020 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.