← Back to Skills Marketplace
izsook

Magyar Szótár

by Izsook · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
154
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install magyar-szotar
Description
Magyar szavak jelentésének, szinonimáinak, szólások magyarázatának és nyelvi elemzésének gyors lekérdezése helyi vagy webes forrásból.
README (SKILL.md)

Magyar Szótár Skill

Áttekintés

Ez a skill lehetővé teszi magyar szavak jelentésének, szinonimáinak, és nyelvi kapcsolatainak gyors lekérdezését. Használj helyi szótár adatbázist vagy web API-t a válaszokhoz.

Mikor használd

  • Szójelentés kérdezése: "Mit jelent az hogy 'macerás'?"
  • Szinonima keresés: "Mi a szinonimája a 'gyors'-nak?"
  • Szólások/mondások: "Mit jelent az 'eső után köpönyeg'?"
  • Nyelvi elemzés: magyar szöveg morfológiai elemzése
  • Szócsoportosítás: tematikus szókapcsolatok keresése

Szótár források

1. Arcanum – Magyar Értelmező Szótár (ÉrtSz.)

Elsődleges forrás: https://www.arcanum.com/hu/online-kiadvanyok/Lexikonok-a-magyar-nyelv-ertelmezo-szotara-1BE8B/

  • 6 kötetes (1959-1962), ~60.000 szócikk
  • Szerkesztők: Bárczi Géza, Országh László (MTA Nyelvtudományi Intézete)
  • Kötetek: I: A-D, II: E-Gy, III: H-Kh, IV: Ki-Mi, V: Mo-S, VI: Sz-Ty, VII: U-Zs
  • Jellemző: irodalmi és köznyelv törzsállománya, nem enciklopédia

2. Helyi szótár fájl (gyors lookup)

Tarts egy references/magyar-szotar.json fájlt strukturált szótár adatokkal:

{
  "szavak": {
    "macerás": {
      "jelentés": "nehézséget okozó, problémás",
      "szinonimák": ["problémás", "nehéz", "bonyolult"],
      "példa": "Ez egy macerás feladat."
    }
  }
}

2. Web API fallback

Ha helyi szótár nem elérhető, használj nyilvános API-t:

  • dict.sztaki.hu (magyar-angol, de van értelmező is)
  • Wiktionary API

Gyors kezdés

# Példa szójelentés lekérdezésre
def lookup_word(word):
    # 1. Helyi szótár keresés
    if word in local_dict:
        return local_dict[word]
    # 2. API fallback
    return fetch_from_api(word)

Referenciák

  • references/kozmondasok.md – 100+ magyar közmondás és szólás jelentéssel, példákkal
  • references/magyar-szotar.json – fő szótár adatbázis
  • references/arcanum-ertsz.md – Arcanum ÉrtSz. forrásdokumentáció
  • references/morfológia.md – magyar nyelvtani szabályok, ragozások

Jegyzetek

  • Mindig ellenőrizd a szótár forrás frissességét
  • Nagy szövegeknél batch lookup-ot használj (token hatékony)
  • Ha szó nem található, jelezd és ajánlj alternatívát
Usage Guidance
This skill appears to do what it says: look up Hungarian words from the bundled JSON and, if needed, query public dictionary APIs. Before installing, consider: (1) verify licensing/terms if you intend to query or redistribute content from Arcanum or Wiktionary; (2) if you rely on the web-API fallback, review and whitelist which endpoints the agent may contact (network calls are allowed by the instructions); (3) update or vet the local JSON if you need authoritative or up-to-date definitions; (4) note the SKILL.md references a missing 'morfológia' file — ensure any implementation you use provides required morphology rules. No credentials or opaque external downloads are requested, so there are no obvious red flags for credential exfiltration or unexpected install behavior.
Capability Analysis
Type: OpenClaw Skill Name: magyar-szotar Version: 1.0.0 The 'magyar-szotar' skill bundle is a legitimate Hungarian language reference tool providing dictionary definitions, synonyms, and proverbs. It contains static data in JSON and Markdown formats (e.g., magyar-szotar.json, kozmondasok.md) and illustrative Python snippets for word lookups. No evidence of data exfiltration, malicious execution, or prompt injection was found.
Capability Assessment
Purpose & Capability
Name/description (Hungarian dictionary, synonyms, idioms, morphological analysis) match the included files and runtime instructions. It only needs a local JSON and public dictionary APIs, which is appropriate for the stated functionality.
Instruction Scope
SKILL.md confines runtime behavior to local lookup (references/magyar-szotar.json) and optional public fallbacks (dict.sztaki.hu, Wiktionary). That scope is appropriate. Minor issues: it references a 'references/morfológia.md' file that is not present in the manifest, and code snippets assume variables (e.g., local_dict) defined by the integrator — these are implementation details rather than security problems.
Install Mechanism
No install spec and no code files — instruction-only skill. This has minimal install risk because nothing is downloaded or written during install.
Credentials
No environment variables, credentials, or config paths are requested. The declared requirements are minimal and proportional to a dictionary lookup skill.
Persistence & Privilege
always is false and the skill does not request system-wide persistence or privileged modifications. Autonomous invocation is allowed by default but not combined with any broad privileges.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install magyar-szotar
  3. After installation, invoke the skill by name or use /magyar-szotar
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Magyar értelmező szótár + közmondások + Arcanum forrás
Metadata
Slug magyar-szotar
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Magyar Szótár?

Magyar szavak jelentésének, szinonimáinak, szólások magyarázatának és nyelvi elemzésének gyors lekérdezése helyi vagy webes forrásból. It is an AI Agent Skill for Claude Code / OpenClaw, with 154 downloads so far.

How do I install Magyar Szótár?

Run "/install magyar-szotar" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Magyar Szótár free?

Yes, Magyar Szótár is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Magyar Szótár support?

Magyar Szótár is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Magyar Szótár?

It is built and maintained by Izsook (@izsook); the current version is v1.0.0.

💬 Comments