Dcs

PassAudited by VirusTotal on May 9, 2026.

Overview

Type: OpenClaw Skill Name: dcs Version: 1.0.0 The 'dcs' skill is a local management utility for a distributed control system, providing basic CRUD operations on data stored in a local directory (~/.dcs/). The bash script (scripts/script.sh) implements standard logging, searching, and configuration management without any network activity, credential harvesting, or suspicious execution patterns.

Findings (0)

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

A user could overestimate what the skill does and rely on it for DCS status or control that the artifacts do not show.

Why it was flagged

The DCS/industrial description is broader than the documented local entry-store behavior, so users and agents should not over-trust it as actual industrial control functionality.

Skill content
description: "Distributed control system manager" ... Commands: status, add, list, search, remove, export ... All data stored in `~/.dcs/` using JSONL format
Recommendation

Treat this as a local record manager unless additional, reviewed artifacts prove real DCS integration.

What this means

If invoked, the agent can remove local records or write export files in the working directory.

Why it was flagged

The script can delete entries from its local data file and create export files. This is disclosed and scoped, but still mutates local data.

Skill content
cmd_remove() ... sed -i "${num}d" "$DATA_DIR/data.jsonl" ... cmd_export() ... cp "$DATA_DIR/data.jsonl" "$out"
Recommendation

Confirm remove and export actions before running them, and keep the data directory scoped to non-sensitive records.

What this means

Information added to the skill may remain on disk across sessions and be surfaced later by list, search, or export commands.

Why it was flagged

The skill persists user-provided entries locally, which can later be listed, searched, or exported.

Skill content
All data stored in `~/.dcs/` using JSONL format (one JSON object per line).
Recommendation

Avoid storing sensitive information unless you are comfortable with it being retained locally, and delete or relocate the data directory when needed.