Use when verifying outcomes with code instead of LLM judgment, versioning prompts with hashes, or ensuring reproducible agent behavior. Load for any critical verification. Scripts return boolean exit codes, not subjective assessments. Prompts use semantic versioning with SHA256 validation.
Scanned 2/12/2026
Install to Claude Code
npx -y skills add ingpoc/SKILLS --skill determinism --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Determinism?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/ingpoc-determinism)More formats (shields.io, HTML) on the badges page.
---
name: determinism
description: "Use when verifying outcomes with code instead of LLM judgment, versioning prompts with hashes, or ensuring reproducible agent behavior. Load for any critical verification. Scripts return boolean exit codes, not subjective assessments. Prompts use semantic versioning with SHA256 validation."
keywords: verification, deterministic, hash, version, reproducible, code-not-judgment
---
# Determinism
Reproducible outcomes through code verification and prompt versioning.
## Core Principle
> "Claude can run scripts without loading either the script or the PDF into context. And because code is deterministic, this workflow is consistent and repeatable." - Anthropic Engineering
## Instructions
1. Replace LLM judgment with script verification
2. Version prompts with semantic versioning
3. Hash-validate critical prompts: `scripts/validate-prompt.sh`
4. Use exit codes (0 = pass, 1 = fail), not text
## LLM Judgment vs Code Verification
| Task | LLM (Bad) | Code (Good) |
|------|-----------|-------------|
| Tests passed? | "The tests appear to pass" | `pytest; echo $?` → 0 or 1 |
| Valid JSON? | "This looks like valid JSON" | `python -c "json.load(f)"` |
| Server running? | "The server should be up" | `curl -s localhost/health` |
## References
| File | Load When |
|------|-----------|
| references/code-verification.md | Writing verification scripts |
| references/prompt-versioning.md | Versioning/hashing prompts |
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!