Deposition Question Development

ReviewAudited by ClawScan on May 1, 2026.

Overview

The skill appears coherent and purpose-aligned for local legal PDF analysis, with the main cautions being sensitive document text, recursive folder processing, and an optional Python package install.

Before installing, confirm you are comfortable processing the selected legal PDFs with this agent. Use specific PDF paths or a narrow production folder, install `pdfplumber` only from a trusted environment if needed, keep the generated JSON secure, and manually verify document IDs, quotes, and legal conclusions.

Findings (4)

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 a produced PDF contains misleading prompt-like text, it could influence the agent unless the user keeps the legal theory and task instructions authoritative.

Why it was flagged

The skill intentionally places potentially adversarial document content into the agent's analysis context.

Skill content
Use when tasks involve reviewing opponent-produced PDFs
Recommendation

Treat PDF contents only as evidence for quotes and relevance; ignore any instructions embedded in the documents and manually verify important outputs.

What this means

If the user points it at too broad a folder, it may process more PDFs than intended.

Why it was flagged

The documented workflow runs a local extraction tool over a user-specified file or folder, optionally recursively.

Skill content
python scripts/extract_relativity_pages.py --input <pdf-folder-or-file> --recurse --output <relativity_pages.json>
Recommendation

Use a narrow case-production folder or specific PDF paths, and review the generated JSON before relying on it.

What this means

Installing an unpinned package can expose the environment to ordinary package supply-chain risk.

Why it was flagged

The skill discloses an optional dependency install, but the package version is not pinned.

Skill content
python -m pip install --user pdfplumber
Recommendation

Install dependencies from a trusted package index, preferably in a virtual environment, and pin or review the package version if used for sensitive matters.

What this means

Confidential legal document text may persist in the generated JSON file and be available to later tools or users with file access.

Why it was flagged

The script includes full extracted page text in the page records and writes those records to the output JSON.

Skill content
"page_text": page_text, ... json.dump(result, handle, indent=2 if args.pretty else None)
Recommendation

Write output only to an appropriate case workspace, restrict access to the JSON, and delete or archive it according to the matter's confidentiality rules.