Practical agent workflows, skills, and small helpers I actually use.
This repo is the canonical home for my public-facing agent material:
skills/: reusable agent skillsscripts/: small validation and listing helpersdocs/: notes about the repo's philosophy and conventionsAGENTS.md: repo-local instructions for agents working here
The goal is not to collect every prompt. The goal is to keep useful workflows small, inspectable, reusable, and grounded in real sessions.
List available skills:
scripts/list-skillsValidate skill frontmatter:
scripts/validate-skillsInstall a skill into local Codex:
scripts/install-codex-skill career-profile-overhaulInstall all skills into local Codex:
scripts/install-all-codex-skillsSkills live under category folders:
skills/<category>/<skill-name>/SKILL.md
Current skills:
- career-profile-overhaul — Human-in-loop LinkedIn and CV overhaul workflow.
- code-simplifier — Behavior-preserving anti-slop implementation cleanup.
- slopper — Read-only docs/code drift and cleanup-candidate audit.
- surface-proof — Prove browser-visible changes with real targets, snapshots, and flow receipts.
- session-bootstrap — Start a repo session by reading maps, task truth, and relevant context.
- session-closeout — End work with verification, git, docs, task, coordination, and commit-note receipts.
Install a selected skill into:
~/.codex/skills/
Example:
scripts/install-codex-skill career-profile-overhaulThe installer copies the skill folder by name. It does not symlink, so local Codex usage stays stable even while this repo changes.
For manual install, copy a skill folder into:
~/.codex/skills/
For Claude-style plugin use, see:
.claude-plugin/plugin.json
The repo shape is inspired by public agent-skill repositories such as steipete/agent-scripts and mattpocock/skills. The skills here are my own workflows, distilled from real sessions.
Optional local pre-commit hook:
git config core.hooksPath hooksThis runs scripts/validate-skills before commits.
- Keep skill descriptions short and useful for routing.
- Keep
SKILL.mdoperational; move heavier detail into references. - Prefer real folders first. Add symlinks/install machinery only when needed.
- Validate after editing skills.
- Public copy should be useful without exposing private session context.
More detail: Skill Conventions.