Workspace Org

AdvisoryAudited by Static analysis on May 7, 2026.

Overview

No suspicious patterns detected.

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 run against the wrong directory, files could be moved into the skill's files/ layout and existing paths may change.

Why it was flagged

The apply helper can move files within the chosen workspace when explicitly run with --execute. This matches the skill's purpose and is dry-run by default, but it is still local file mutation authority.

Skill content
parser.add_argument("--execute", "-x", action="store_true") ... a["source"].rename(a["target"])
Recommendation

Run the dry run first, confirm the workspace path, and only use --execute after reviewing the planned moves.

What this means

Files placed in inbox/outbox may be read or acted on by other agents using the same workspace convention.

Why it was flagged

The skill defines local folders for agents to exchange deliverables. This is purpose-aligned, but users should treat these folders as shared handoff locations.

Skill content
**Cross-agent handoff**: sender writes to `files/outbox/`, receiver picks from `files/inbox/`.
Recommendation

Avoid placing secrets or untrusted executable content in shared handoff folders unless that sharing is intended and reviewed.