Batch

AdvisoryAudited by Static analysis on Apr 30, 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 used on the wrong item list, a batch task could affect many files or records at once.

Why it was flagged

The skill anticipates potentially high-impact bulk actions such as deletion, but it frames them as requiring explicit confirmation.

Skill content
**Confirm destructive ops:** "This will delete 200 files. Proceed?"
Recommendation

Use the dry run, verify item counts and targets, and require explicit confirmation before bulk deletes or modifications.

What this means

Sensitive input data or partial results could remain in temporary checkpoint or failure files after the batch finishes.

Why it was flagged

Checkpoint and partial-result files can persist batch state, item identifiers, and possibly task data on disk.

Skill content
"results_path": "/tmp/batch_abc123_partial.json"
Recommendation

Choose safe checkpoint locations, avoid storing secrets in batch state, and clean up temporary failure or partial-result files when no longer needed.

What this means

If sub-agent delegation is used, batch items may be distributed beyond the primary agent context.

Why it was flagged

The parallel strategy can involve sub-agents, which may share batch items across agent boundaries; the artifact limits concurrency but does not define data-sharing boundaries.

Skill content
Max 5 concurrent sub-agents (avoid overload)
Recommendation

Only delegate appropriate items, and verify the permissions and data-handling behavior of any separate delegate skill before using it with sensitive data.