My personal collection of agent skills, installable through the
skills CLI. The skills use the portable Agent
Skills format and are designed for both Codex and Claude Code.
-
git-fatality — Finalize Git work through an exact combination of branch creation, scoped commits, pushes, and pull requests. Direct commands execute after inspection without a redundant approval round; preview-first requests still pause before mutation.
npx skills@latest add exsesx/skills --skill git-fatality
The skill can activate implicitly for commit, push, PR, and explicit Git finalization requests. Pull, merge, rebase, conflict-resolution, and branch management tasks do not activate it implicitly unless the same request also contains a covered finalization action.
Explicit invocation is always supported:
# Codex
$git-fatality commit and push to this branch
# Claude Code
/git-fatality create a new branch, commit and push, then create a PR
npx skills@latest add exsesx/skillsThe CLI detects installed agents and prompts for global or project-scoped installation and target clients.
Install one skill non-interactively:
npx skills@latest add exsesx/skills --skill git-fatalityInstall from a local path:
npx skills@latest add /path/to/skills --skill git-fatalityManage installed skills:
npx skills list
npx skills update <skill-name>
npx skills remove <skill-name>.
├── .claude-plugin/
│ └── plugin.json
├── git-fatality/
│ ├── SKILL.md
│ ├── agents/
│ ├── evals/
│ ├── references/
│ └── scripts/
└── LICENSE