Policy Lawyer
Analysis
This skill coherently reads a small policy reference document or a user-specified policy file and has no evidence of hidden execution, credential use, network access, or destructive behavior.
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.
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.
parser.add_argument("--policy-file", type=Path, default=Path(__file__).resolve().parent.parent / "references" / "policies.md", help="Path to the policy reference document.")The CLI can read a local file path supplied by the user. This is expected for comparing policy documents, but it means users should avoid pointing it at unrelated private files.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
Log every sensitive action in `memory/YYYY-MM-DD.md` so auditors can reconstruct decisions.
The policy content that this skill may quote recommends persistent logging of sensitive actions. The skill does not write those logs itself, but users should be careful about what sensitive details get persisted if they follow the policy.
