Andon
Analysis
This appears to be a straightforward local Andon status-board tool that stores entries on disk, with no evidence of hidden network, credential, or destructive behavior.
Findings (3)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
scripts/script.sh status
The skill instructs use of a bundled Bash script for its commands. This is local code execution, but it is the disclosed and central mechanism for the CLI-style tool.
sed -i "${num}d" "$DATA_DIR/data.jsonl" ... cp "$DATA_DIR/data.jsonl" "$out"The remove command edits the local Andon data file, and the export command writes an output file. These actions fit the stated purpose but can change local data.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
DATA_DIR="${ANDON_DIR:-$HOME/.andon}" ... >> "$DATA_DIR/data.jsonl"Entries are appended to a persistent local data file under the configured Andon directory, so content can be reused, listed, searched, or exported later.
