← Back to Skills Marketplace
izsook

Magyar Formázás

by Izsook · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
229
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install magyar-formatter
Description
Formáz magyar dátumokat, számokat, pénzösszegeket, telefonszámokat és címeket a helyi magyar szabályok szerint.
README (SKILL.md)

Magyar Formázás

Áttekintés

Magyar helyi formátumok alkalmazása: dátum, számok, pénzek, telefonszámok, és címek.

Mikor használd

  • Dátum formázás: magyar dátum (YYYY. MM. DD.)
  • Szám formázás: tizedesvessző, ezres elválasztó
  • Pénz formázás: Ft szimbólum, helyi valuta
  • Telefonszám: +36 XX XXX XXXX formátum
  • Cím formátum: magyar cím szerkezet

Formátum szabályok

1. Dátum

Magyar: 2026. március 18.
Rövid: 2026. 03. 18.
ISO: 2026-03-18 (konvertáld magyarra)

2. Számok

Angol: 1,234.56
Magyar: 1 234,56 (ezres szóköz, tizedesvessző)

3. Pénz

Angol: $1,234.56
Magyar: 1 234,56 Ft
Nagy összeg: 1,2 millió Ft

4. Telefonszám

Nemzetközi: +36 30 123 4567
Helyi: (30) 123-4567

5. Cím

1234 Budapest, Petőfi utca 12. fsz. 3.
irányítószám város, utca házszám emelet ajtó

Scriptek

  • scripts/format_date.py – dátum magyar formázás
  • scripts/format_number.py – számok formázása
  • scripts/format_currency.py – pénz Ft-ban
  • scripts/format_phone.py – telefonszám formázás

Példakód

def format_hungarian_date(date):
    return f"{date.year}. {date.month:02d}. {date.day:02d}."

def format_hungarian_number(num):
    return f"{int(num):,}".replace(',', ' ') + f",{abs(num - int(num)):.2f}"[2:]

def format_forint(amount):
    return f"{format_hungarian_number(amount)} Ft"

Referenciák

  • references/date-formats.md – dátum formátumok részletesen
  • references/currency.md – Ft konverziók, váltások
  • references/address-format.md – magyar cím szerkezet

Jegyzetek

  • Tizedesvessző kritikus (nem pont!)
  • Ezres elválasztó: szóköz vagy keskeny szóköz
  • Ft mindig szám után, szóközzel
  • Dátum pontok kötelezőek
Usage Guidance
This skill appears to do what it says (Hungarian formatting) and requests no credentials or installs, so the immediate risk is low. However, the SKILL.md mentions scripts and reference files that are not included in the package and the source/homepage is unknown — this could mean the skill is incomplete or the registry entry is inaccurate. Before installing or enabling: (1) ask the publisher for the missing scripts/references or a homepage/source link; (2) test the skill on non-sensitive sample data to verify output; (3) avoid sending real PII until you confirm the implementation; and (4) prefer a skill package that includes the promised files or points to a trusted repository so you can review the actual code. If the publisher cannot provide the missing artifacts or a trustworthy source, treat the skill as untrusted.
Capability Analysis
Type: OpenClaw Skill Name: magyar-formatter Version: 1.0.0 The skill bundle is designed for formatting dates, numbers, currency, and addresses according to Hungarian locale standards. The instructions in SKILL.md and the provided Python code snippets are consistent with the stated purpose and contain no indicators of malicious intent, data exfiltration, or harmful prompt injection.
Capability Assessment
Purpose & Capability
Name and description match the declared behavior (date, number, currency, phone, address formatting). However, the SKILL.md lists scripts (scripts/format_date.py, scripts/format_number.py, etc.) and reference files (references/*.md) that are not present in the package manifest — an inconsistency between claimed artifacts and the actual bundle.
Instruction Scope
The runtime instructions are limited to formatting rules and small example functions; they do not request credentials, system files, or network access. Still, the doc references external script files and reference docs that the agent would presumably rely on, but those files are missing from the skill, which makes the instructions incomplete.
Install Mechanism
No install spec and no code files are present (instruction-only). This minimizes the risk of arbitrary code being written to disk or executed during install.
Credentials
The skill declares no required environment variables, no credentials, and no config paths. The SKILL.md does not reference hidden env vars or secrets. Requested access is proportional to the stated purpose.
Persistence & Privilege
The skill is not forced-always (always: false) and uses default autonomous invocation settings. There is no indication it attempts to modify other skills or system-wide settings.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install magyar-formatter
  3. After installation, invoke the skill by name or use /magyar-formatter
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Dátum/szám/Ft formázás magyar szabályok szerint
Metadata
Slug magyar-formatter
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Magyar Formázás?

Formáz magyar dátumokat, számokat, pénzösszegeket, telefonszámokat és címeket a helyi magyar szabályok szerint. It is an AI Agent Skill for Claude Code / OpenClaw, with 229 downloads so far.

How do I install Magyar Formázás?

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

Is Magyar Formázás free?

Yes, Magyar Formázás is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Magyar Formázás support?

Magyar Formázás is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Magyar Formázás?

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

💬 Comments