Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Magyar Formázás

v1.0.0

Formáz magyar dátumokat, számokat, pénzösszegeket, telefonszámokat és címeket a helyi magyar szabályok szerint.

0· 208·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for izsook/magyar-formatter.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Magyar Formázás" (izsook/magyar-formatter) from ClawHub.
Skill page: https://clawhub.ai/izsook/magyar-formatter
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install magyar-formatter

ClawHub CLI

Package manager switcher

npx clawhub@latest install magyar-formatter
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
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.
What to consider before installing
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.

Like a lobster shell, security has layers — review code before you run it.

latestvk972fy95k9ddq8rjjdr93bshms834kc3
208downloads
0stars
1versions
Updated 22h ago
v1.0.0
MIT-0

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

Comments

Loading comments...