Mingjing— AI Agent Health Center

ReviewAudited by ClawScan on May 13, 2026.

Overview

The skill’s documented monitoring, local storage, and dashboard behavior fit its stated health-monitoring purpose, but users should verify the external package/plugin and understand what agent telemetry is stored locally.

Before installing, verify the `mingjing` package and `mingjing-probe` plugin source, understand what telemetry is collected and stored locally, and make sure you can stop the daemon and dashboard when you are done.

Publisher note

Network: none — zero outbound traffic, data stays local LLM: none — pure rule engine, zero model calls Permissions: filesystem:write (to ~/.ming/ for hot logs and SQLite) Sandbox: safe — passive observer, no code execution

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

You would be trusting code from an external package source that was not included in this review.

Why it was flagged

The skill instructs users to install an external Python package, but the submitted artifact set contains only SKILL.md and no reviewed package source or install spec.

Skill content
pip install mingjing
Recommendation

Verify the PyPI package and GitHub repository before installing, and prefer pinned versions or trusted release artifacts.

What this means

The plugin may receive access to agent runtime events, so its behavior matters even though the request is aligned with the monitoring purpose.

Why it was flagged

The skill asks users to install and enable an OpenClaw probe plugin, but the plugin implementation is not included in the provided artifacts.

Skill content
openclaw plugins install mingjing-probe
Recommendation

Review the plugin source or package provenance before enabling it in OpenClaw.

What this means

Local monitoring data could include sensitive prompts, outputs, tool results, or agent memory details, even if it is not sent over the network.

Why it was flagged

The skill discloses local storage of monitoring data. Its feature tables also describe live event streams and diagnostics covering model output, tool output, and memory retrieval/storage.

Skill content
Offline-first | No outbound traffic, data stored locally
Recommendation

Check where logs are stored, how long they are retained, and whether sensitive content is redacted before using it on private workflows.

What this means

The monitoring service may keep running after setup and expose diagnostics on a local web port.

Why it was flagged

The documented workflow starts a background daemon and a local web dashboard, which is expected for real-time monitoring but creates persistent local processes.

Skill content
python3 -m src.ming start --daemon
python3 -m src.ming web start --port 18088
Recommendation

Only start it when needed, confirm it binds locally, and learn how to stop the daemon and web panel.