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.
A user could overestimate what the skill does and rely on it for DCS status or control that the artifacts do not show.
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.
description: "Distributed control system manager" ... Commands: status, add, list, search, remove, export ... All data stored in `~/.dcs/` using JSONL format
Treat this as a local record manager unless additional, reviewed artifacts prove real DCS integration.
If invoked, the agent can remove local records or write export files in the working directory.
The script can delete entries from its local data file and create export files. This is disclosed and scoped, but still mutates local data.
cmd_remove() ... sed -i "${num}d" "$DATA_DIR/data.jsonl" ... cmd_export() ... cp "$DATA_DIR/data.jsonl" "$out"Confirm remove and export actions before running them, and keep the data directory scoped to non-sensitive records.
Information added to the skill may remain on disk across sessions and be surfaced later by list, search, or export commands.
The skill persists user-provided entries locally, which can later be listed, searched, or exported.
All data stored in `~/.dcs/` using JSONL format (one JSON object per line).
Avoid storing sensitive information unless you are comfortable with it being retained locally, and delete or relocate the data directory when needed.
