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)

관련 스킬

coreyhaines31/programmatic-seo

When the user wants to create SEO-driven pages at scale using templates and data. Also use when the user mentions "programmatic SEO," "template pages," "pages at scale," "directory pages," "location pages," "[keyword] + [city] pages," "comparison pages," "integration pages," "building many pages for SEO," "pSEO," "generate 100 pages," "data-driven pages," or "templated landing pages." Use this whenever someone wants to create many similar pages targeting different keywords or locations. For auditing existing SEO issues, see seo-audit. For content strategy planning, see content-strategy.

community

belumume/claude-skills

Personal collection of Claude skills - growing as I discover patterns and solve real-world problems

community

RowanJu/subs

Analyze SaaS subscription fees — a portable skill for any coding agent (Plaid + Gmail)

community

Buds-2025/jme-card-skill

Codex skill for Japanese Modern Editorial social card generation

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

unexplained-familyephedraceae871/openclaw-skill

Provide precise OpenClaw documentation and exact configs to your coding agent for accurate answers without guesswork or summaries.

community