Run nightly latch heal with integrity sweep and contradiction resolver. Use when the user invokes $source-command-latch-heal, latch-heal, /latch-heal, or wants the Codex equivalent of Claude Code's /latch-heal command.
Scanned 9/3/2026
Install to Claude Code
npx -y skills add open-latch/latch --skill source-command-latch-heal --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Source Command Latch Heal?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/open-latch-source-command-latch-heal)More formats (shields.io, HTML) on the badges page.
---
name: source-command-latch-heal
description: Run nightly latch heal with integrity sweep and contradiction resolver. Use when the user invokes $source-command-latch-heal, latch-heal, /latch-heal, or wants the Codex equivalent of Claude Code's /latch-heal command.
---
# source-command-latch-heal
Use this skill when the user asks Codex to run the latch nightly heal pass for
the current project.
## Command Template
Resolve the active latch checkout, then run:
```bash
latch_home="${LATCH_HOME:-}"
if [ -z "$latch_home" ] && [ -n "${CLAUDE_KB_HOME:-}" ]; then
latch_home="$CLAUDE_KB_HOME"
fi
if [ -z "$latch_home" ]; then
search_dir="$PWD"
while [ "$search_dir" != "/" ]; do
if [ -f "$search_dir/AGENTS.md" ]; then
latch_home="$(sed -n 's|.*Follow `\([^`]*\)/README\.md` per-user setup.*|\1|p' "$search_dir/AGENTS.md" | head -n 1)"
[ -n "$latch_home" ] && break
fi
search_dir="$(dirname "$search_dir")"
done
fi
if [ -z "$latch_home" ]; then
candidate="$(git rev-parse --show-toplevel 2>/dev/null || pwd)"
if { [ -f "$candidate/src/latch/mcp/mcp_server.py" ] || [ -f "$candidate/src/mcp_server.py" ]; } && [ -d "$candidate/commands" ]; then
latch_home="$candidate"
fi
fi
if [ -z "$latch_home" ] || { [ ! -f "$latch_home/src/latch/mcp/mcp_server.py" ] && [ ! -f "$latch_home/src/mcp_server.py" ]; }; then
echo "Could not find latch checkout; set LATCH_HOME to your latch install." >&2
exit 1
fi
if [ -z "${LATCH_MAINTENANCE_BACKEND:-}" ] && [ -z "${CLAUDE_KB_MAINTENANCE_BACKEND:-}" ] && [ -z "${LATCH_MODEL_BACKEND:-}" ] && [ -z "${LATCH_GATE_BACKEND:-}" ] && [ -z "${CLAUDE_KB_GATE_BACKEND:-}" ]; then
export LATCH_MAINTENANCE_BACKEND=codex
fi
maintenance_script="$latch_home/src/latch/pipeline/maintenance.py"
if [ ! -f "$maintenance_script" ]; then
maintenance_script="$latch_home/src/maintenance.py"
fi
python "$maintenance_script" nightly "$(pwd)"
```
Report the JSON summary, especially `examined`, `collisions`, `superseded`,
`kept_both`, per-path counts, and `budget_blocked`. If the command fails, check
`maintenance.log` in the selected latch checkout.
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!