Moark Text Moderations

v1.0.0

Perform text review on user-specified input text that may be inappropriate or offensive.

0· 134·2 current·2 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 fchange/moark-text-moderations.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Moark Text Moderations" (fchange/moark-text-moderations) from ClawHub.
Skill page: https://clawhub.ai/fchange/moark-text-moderations
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: GITEEAI_API_KEY
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 moark-text-moderations

ClawHub CLI

Package manager switcher

npx clawhub@latest install moark-text-moderations
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (text moderation) match the code and runtime instructions. The script calls a moderation endpoint at https://ai.gitee.com/v1 and uses model 'moark-text-moderation'. The single requested env var (GITEEAI_API_KEY) is appropriate for that purpose.
Instruction Scope
SKILL.md instructions are narrowly scoped: install the 'openai' Python package and run the bundled script, then parse the output line starting with 'MODERATION_RESULT:'. Minor oddities: SKILL.md asks to display results using a markdown 'image syntax' snippet (`🛡️[Moderation Result]`) which is unusual but not a security issue. The instructions do print the submitted input text to stdout (expected for debugging) — avoid sending sensitive PII to this skill if you don't want it logged or transmitted.
Install Mechanism
There is no install spec; this is instruction-only with a small bundled script. Dependencies are the standard 'openai' Python package (the script documents this), which is proportionate to the task.
Credentials
Only GITEEAI_API_KEY is required and declared as primaryEnv. No unrelated credentials, config paths, or excessive environment access are requested.
Persistence & Privilege
The skill does not request 'always: true', does not modify other skills or global agent settings, and does not demand persistent system-level privileges.
Assessment
This skill appears to do exactly what it says: call Gitee's moderation API with your GITEEAI_API_KEY and return the result. Before installing: (1) Only provide a Gitee AI API key you control — prefer a restricted or test key rather than a high-privilege production key. (2) Be aware the script prints the input text to stdout (so don't send highly sensitive PII). (3) The skill's source and homepage are unknown — if you need stronger assurance, review the script yourself (it's short) or obtain the skill from a known/trusted publisher. (4) The instructions ask you to pip install 'openai' and use the OpenAI-compatible client pointed at ai.gitee.com; this is normal for services exposing an OpenAI-compatible API but double-check network access policies if you're in a restricted environment.

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

Runtime requirements

🛡️ Clawdis
EnvGITEEAI_API_KEY
Primary envGITEEAI_API_KEY
latestvk9798sywx5cg6na26c10t18w4183h9pe
134downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Text Moderation

This skill allows users to perform text review on user-specified input text that may be inappropriate or offensive using an external GITEE AI API.

Usage

Ensure you have installed the required dependencies (pip install openai). Use the bundled script to perform text moderation.

python {baseDir}/scripts/perform_text_moderation.py --text "User-specified input text" --api-key YOUR_API_KEY

Options

No additional parameters are required for this skill.

Workflow

  1. Execute the perform_text_moderation.py script with the parameters from the user.
  2. Parse the script output and find the line starting with MODERATION_RESULT:.
  3. Extract the moderation result from that line (format: MODERATION_RESULT: ...).
  4. Display the moderation result to the user using markdown syntax: 🛡️[Moderation Result]

Notes

  • If GITEEAI_API_KEY is none, you should remind user to provide --api-key argument
  • You should not only return the moderation result but also provide a brief summary of the moderation result based on the user's input text.
  • When you add prompt, you should honestly repeat the requirements from user without any additional imaginations.
  • The script prints MODERATION_RESULT: in the output - extract this result and display it using markdown image syntax:🛡️[Moderation Result].
  • Always look for the line starting with MODERATION_RESULT: in the script output.

Comments

Loading comments...