enc is a Codex skill for turning a chat or working session into a short, clear digest.
It focuses on visible, user-relevant information:
- what changed
- what was created
- what was decided
- important commands or outputs
- open next steps
In Codex, run:
$skill-installer
Then ask:
Install the skill from GitHub repo katonCODE/enc-skill, path enc
Restart Codex after installing so the skill is picked up.
Codex global user skills are stored in:
$HOME/.agents/skills
$dest = "$HOME\.agents\skills\enc"
$tmp = "$env:TEMP\enc-skill"
Remove-Item $tmp -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item $dest -Recurse -Force -ErrorAction SilentlyContinue
git clone --depth 1 https://github.com/katonCODE/enc-skill.git $tmp
New-Item -ItemType Directory -Force "$HOME\.agents\skills" | Out-Null
Copy-Item "$tmp\enc" $dest -Recurse -Force
Test-Path "$dest\SKILL.md"DEST="$HOME/.agents/skills/enc"
TMP="/tmp/enc-skill"
rm -rf "$TMP" "$DEST"
git clone --depth 1 https://github.com/katonCODE/enc-skill.git "$TMP"
mkdir -p "$HOME/.agents/skills"
cp -R "$TMP/enc" "$DEST"
test -f "$DEST/SKILL.md"Restart Codex after installing if the skill does not appear.
Ask Codex:
use enc
or:
summarize this chat
The skill lives in:
enc/SKILL.md