codex-harness: Skill for Claude Code

.codex/skills/release-har/SKILL.md

release-har is a skill for Claude Code, Codex from Chachamaru127/codex-harness. It costs 50 tokens per session (955 once invoked), scanned A, original, MIT.

A release workflow for preparing a software version, including its change log, commits, tags, and GitHub Release.

In plain words
What is it for?
Use it for patch, minor, or major version bumps, change-log updates, Git tags, and GitHub releases.
Why use it?
It reduces the manual steps and missed files involved in publishing a new version.

Skill for Claude CodeCodex

Written for Claude Code and Codex: allowed-tools in frontmatter, but also installed under .codex/.

This is Chachamaru127/codex-harness's own configuration. It tells Claude Code and Codex how to work on codex-harness itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything codex-harness configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Chachamaru127/codex-harness. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Chachamaru127/codex-harness/main/.codex/skills/release-har/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Chachamaru127/codex-harness

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for release-har

README.md
[![agentmods](https://agentmods.dev/badge/skills/chachamaru127/codex-harness/release-har.svg)](https://agentmods.dev/skills/chachamaru127/codex-harness/release-har)
Your own site
<a href="https://agentmods.dev/skills/chachamaru127/codex-harness/release-har"><img src="https://agentmods.dev/badge/skills/chachamaru127/codex-harness/release-har.svg" alt="Measured on agentmods" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 955 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00050 $0.00955
Opus 5 $0.00025 $0.00477
Sonnet 5 $0.00010 $0.00191
Haiku 4.5 $0.00005 $0.00096

Measured 6d ago against content hash 9b5ac5f168a1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

release-har scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.codex/skills/release-har/SKILL.md · 163 lines

How it starts

The opening of the file, as written. The whole thing — 163 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Release Har Skill

Universal release automation skill. Works with any project.

Quick Reference

  • "release" -> /release-har
  • "bump version" -> /release-har patch
  • "minor release" -> /release-har minor

Execution Flow

Step 1: Check Current State

Run in parallel:

# Uncommitted changes
git status

# Changed files
git diff --stat

# Recent commit history
git log --oneline -10

# Existing tags
git tag --sort=-v:refname | head -5

Step 2: Determine Version

Based on Semantic Versioning:

Version Change Type
patch (x.y.Z) Bug fixes, minor improvements
minor (x.Y.0) New features (backward compatible)
major (X.0.0) Breaking changes

Ask user: "What should the next version be? (e.g., 1.2.3)"

Step 3: Update CHANGELOG (if exists)

If project has CHANGELOG.md, update it:

## [X.Y.Z] - YYYY-MM-DD

### Added
- New feature

### Changed
- Change description

### Fixed
- Bug fix

Skip if CHANGELOG does not exist

Step 4: Update Version Files (project-dependent)

Update version files based on project configuration:

File Update Method
package.json "version": "X.Y.Z"
pyproject.toml version = "X.Y.Z"
VERSION Direct content update
Cargo.toml version = "X.Y.Z"

Skip if no applicable file exists

Step 5: Commit and Tag

# Stage
git add -A

# Commit (only if changes exist)
git commit -m "chore: release vX.Y.Z"

# Create tag
git tag -a vX.Y.Z -m "Release vX.Y.Z"

Step 6: Push

# Push branch
git push origin $(git branch --show-current)

# Push tag
git push origin vX.Y.Z

Step 7: GitHub Release (Optional)

After user confirmation, create GitHub Release:

gh release create vX.Y.Z \
  --title "vX.Y.Z - Title" \
  --notes "$(cat <<'EOF'
## What's Changed

- Change 1
- Change 2

**Full Changelog**: https://github.com/OWNER/REPO/compare/vPREV...vX.Y.Z
EOF
)"

Read the full file on GitHub · 163 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 163 lines · 50 tokens per session scan A 9b5ac5f168a1

Subscribe to this mod's changes

release-har is a skill published in the GitHub repository Chachamaru127/codex-harness (2 stars, last pushed 6mo ago), licensed MIT. It adds 50 tokens to every session and 955 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.