Test Tool

PassAudited by VirusTotal on May 5, 2026.

Overview

Type: OpenClaw Skill Name: test-tool Version: 1.0.0 The skill provides a basic utility for checking file and directory existence using standard Python os.path functions in scripts/test.py. While the documentation in SKILL.md claims support for arithmetic and string comparisons that are not actually implemented in the code, there are no indicators of malicious intent, data exfiltration, or dangerous 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

If used in shell-condition logic, documented numeric or string checks may behave incorrectly, potentially causing the agent to make the wrong branch decision.

Why it was flagged

The documentation says string and numeric comparisons are supported, but scripts/test.py only defines handlers for -e, -f, and -d. This mismatch could cause users or agents to trust unsupported tests that will return false.

Skill content
description: Evaluate conditional expressions for file testing, string comparison, and arithmetic checks... `n1 -eq n2`... `test-tool 5 -gt 3`
Recommendation

Use this skill only for the implemented file checks unless the code is updated to support the documented string and arithmetic operators.