Ps Tool
Analysis
This is a simple local process-listing skill with no network, credentials, or persistence, though users should know it can display visible process command lines and its documentation overstates some output features.
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.
for p in os.listdir('/proc'):
if p.isdigit():
...
print(f"{p:6} {cmd[:60]}")The script enumerates visible process IDs under /proc and prints each process command line. This is purpose-aligned for a process viewer, but it exposes local process information that users should treat carefully.
Source: unknown Homepage: none
The registry information does not provide an upstream source or homepage. This is a provenance note rather than a concern because the provided package is small, contains no dependencies or install script, and includes the full script content for review.
print(f"{p:6} {cmd[:60]}")The implementation prints only the PID and truncated command line, while SKILL.md describes CPU usage, memory consumption, status, sorting, and filtering options. This is a functionality accuracy issue users should notice, not evidence of deception or high-impact abuse.
