Communityライティング&編集github.com

Altien/OpenLegalDataSkills

Installable Claude skills for OpenLegalData — case law, citations, contracts, statutes, world law. Install from here; developed in OpenLegalDataDev.

対応Claude Code~Codex CLI~Cursor
npx skills add Altien/OpenLegalDataSkills

Ask in your favorite AI

Open a new chat with this agent skill pre-loaded.

ドキュメント

Calling the islands (works in any runtime). Every endpoint below is a plain public HTTPS GET that returns JSON — call it with whatever fetch/HTTP tool you have (e.g. web-fetch). The bundled _lib/legal_search.py only parallelizes these same calls and needs a shell + outbound network: it works in Claude Code, but sandboxed runtimes (e.g. the claude.ai Skills container) may block egress. If the script is blocked, just fetch the URL directly instead.

Honesty rule: only data returned from these *.openlegaldata.net endpoints is an authoritative OpenLegalData result. If you cannot reach them, say so plainly — do NOT present a general web-search answer as an OpenLegalData verification.

World / Comparative Legal Sources

Each jurisdiction is its own island at <cc>.openlegaldata.net (ISO-ish country code), built from official government legal sources (courts + legislation), with every scraped field preserved as metadata (court, chamber, decision number, ECLI, dates, etc.). Content is in each country's native language — search in that language for best recall.

The full list lives in skills/_lib/islands.json under world (~55 entries: ad al am ar at au az ba be bg by ca ch coe cy cz de dk dz ee eg es fi fr ge gr hr hu ie is it li lt lu lv mc me mt nl no nz pl pt ro rs se si sk sm tr tw ua uk xk …).

How to use

Target a specific jurisdiction (preferred — precise + fast):

python "${CLAUDE_PLUGIN_ROOT:-.}/skills/_lib/legal_search.py" search "Datenschutz" --islands https://de.openlegaldata.net --limit 10

Broad comparative sweep across ALL world islands in parallel (e.g. "how do jurisdictions treat X"):

python "${CLAUDE_PLUGIN_ROOT:-.}/skills/_lib/legal_search.py" search "data protection" --category world --limit 5

Results are tagged with _island (the country) so you can compare across systems.

Strategy

  1. Known jurisdiction → query just that island (--islands https://<cc>.openlegaldata.net).
  2. Comparative question → parallel --category world, then group hits by _island.
  3. Search in the jurisdiction's language (German for de, French for fr/lu/mc, Arabic for eg/dz, etc.) — these are native-language corpora.
  4. Coverage is sample corpora per source (tens–hundreds of docs each), good for locating leading/representative texts; not exhaustive. Say so when relevant.

Endpoints

  • GET /search?q=<terms>&limit=N per island; GET / for info + counts.
  • Each result carries rich per-document metadata (the original scraped fields).
import os, sys; sys.path.insert(0, os.path.join(os.environ.get("CLAUDE_PLUGIN_ROOT","."), "skills/_lib"))
from legal_search import search, REGISTRY
fr = [i["url"] for i in REGISTRY["world"] if i["slug"] == "fr"]
hits = search("responsabilité du fait des produits", islands=fr, limit=10)

関連スキル

kostja94/translation

When the user wants to translate content, create translation workflows, manage terminology, or optimize translation quality. Also use when the user mentions "translate," "translation," "localization copy," "glossary," "terminology," "style guide translation," "machine translation," "human translation," "TMS," or "multilingual content." For strategy, use localization-strategy.

community

googlechrome/chrome-extensions

Build and publish Chrome Extensions using Manifest V3 best practices. Use this skill whenever the user asks to create, modify, debug, or understand Chrome browser extensions, add-ons, or anything involving the Chrome Extensions API. Trigger on mentions of: 'Chrome extension', 'browser extension', 'manifest.json', 'content script', 'service worker' (in browser context), 'popup' (in browser extension context), 'side panel', 'chrome.* API', 'declarativeNetRequest', 'omnibox', 'context menu' (in extension context), 'userScripts', 'user script', 'script manager', or any request to build functionality that integrates with the Chrome browser UI. Also trigger for publishing to the Chrome Web Store: 'publish extension', preparing an extension for publishing, responding to a review rejection, writing permission justifications, or drafting a privacy policy.

community

coreyhaines31/sms

When the user wants to plan, build, or optimize SMS or MMS marketing — including welcome flows, abandoned cart texts, post-purchase, win-back, promotional sends, or transactional/auth SMS. Also use when the user mentions "SMS marketing," "text message campaigns," "SMS sequence," "SMS automation," "abandoned cart text," "post-purchase SMS," "Klaviyo SMS," "Postscript," "Attentive," "Twilio," "A2P 10DLC," "TCPA," "SMS compliance," "short code," "toll-free SMS," "MMS campaign," "should I do SMS," or "SMS vs email." For email sequences, see emails. For SMS copy framing, see copywriting. For opt-in popups that capture phone numbers, see popups.

community

skill-mate/Document-Cloning-Skills

Claude Code skill: render Markdown into strictly-formatted Word docs (skeleton + profile modes)

community

YukiOvOb/mdrise

让 Markdown 升维成可分享的 HTML · A Claude skill that auto-maintains a styled HTML mirror of any Markdown — preserves every word, picks the right aesthetic, floats a ToC, works in 17+ scripts.

community

takaaaaaan/pr-review

Claude Code skill: general-purpose GitHub PR review workflow via gh CLI — multiple review styles, optional PR comment posting

community