Argus — Code Intelligence Scanner

PassAudited by ClawScan on May 10, 2026.

Overview

Argus appears to be a coherent local code scanner, but users should run it on an explicit project path and avoid the system-wide pip install command as written.

Before installing, run it only against the project you intend to scan by setting SOURCE_PATH explicitly. Use a Python virtual environment instead of the provided system-wide pip command, and review any optional JSON output because scan findings may reveal locations of sensitive code issues.

Findings (2)

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 run from a broad directory, it may inspect and report on more local code than the user intended.

Why it was flagged

The scanner can recursively inspect local source files from the current directory by default. This is expected for a code scanner, but users should ensure the directory is intentionally scoped.

Skill content
description: "Path to a .py or .js file, or a directory to scan recursively. Defaults to current directory."
Recommendation

Set SOURCE_PATH to the specific project or file you want scanned, and avoid running it from your home directory or other broad private locations.

What this means

Installing this way could affect the system Python environment or pick up a future package version with different behavior.

Why it was flagged

The setup step installs an unpinned external Python package and uses --break-system-packages, which can modify the system-managed Python environment. The step is disclosed and user-directed, so this is a supply-chain/environment note rather than evidence of malicious behavior.

Skill content
pip3 install rich --break-system-packages --quiet
Recommendation

Install dependencies in a virtual environment, avoid --break-system-packages where possible, and consider pinning the Rich package version.