# Deterministic Bulk Work

> Replace repeated mechanical edits or checks with a scoped, reproducible script. Use for bulk renames, migrations, file transforms or log processing.

- Skill: `noumenonnn/deterministic-bulk-work` (Agent Skill)
- Install (CLI): `npx skillmds@latest add noumenonnn/deterministic-bulk-work`
- Raw SKILL.md: https://api.skillmd.com/api/skills/noumenonnn/deterministic-bulk-work/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: noumenonnn (https://skillmd.com/u/noumenonnn)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/noumenonnn/deterministic-bulk-work

---


# Deterministic Bulk Work

Move repeated mechanical work into code when extra model/tool round-trips add little reasoning value.

1. Define the exact target set and exclusions, preserving user changes.
2. Dry-run and inspect representative changes before applying.
3. Use literal argument arrays, safe paths and deterministic ordering. Do not interpolate untrusted data into shell commands.
4. Preserve formats/encoding and support backup or reversible changes where feasible.
5. Bound runtime, output and memory. Stream large inputs; never buffer an unbounded log merely to shorten its final display.
6. Run regression checks and report counts, anomalous paths and evidence locations.

Parallelize independent reads, not conflicting writes. Scripts execute with ordinary OS permissions; a dry-run or prompt policy is not a sandbox.

