Personal Agent Skills for Claude Code, GitHub Copilot, and other AI coding agents.
This repository contains a collection of Agent Skills that Relu (rerelurelu) uses across machines. Skills are installable via gh skill and auto-trigger based on context, or can be invoked explicitly as slash commands.
Install all skills at user scope for Claude Code:
gh skill install rerelurelu/skillbox deslop --agent claude-code --scope user
gh skill install rerelurelu/skillbox review --agent claude-code --scope user
gh skill install rerelurelu/skillbox clean-code --agent claude-code --scope user
gh skill install rerelurelu/skillbox decomposition --agent claude-code --scope user
gh skill install rerelurelu/skillbox dig --agent claude-code --scope user
gh skill install rerelurelu/skillbox fix-ci --agent claude-code --scope user
gh skill install rerelurelu/skillbox creating-skills --agent claude-code --scope user
gh skill install rerelurelu/skillbox memo --agent claude-code --scope user
gh skill install rerelurelu/skillbox recall --agent claude-code --scope user
gh skill install rerelurelu/skillbox retro --agent claude-code --scope user
gh skill install rerelurelu/skillbox delegating-via-herdr --agent claude-code --scope userReplace --agent claude-code with --agent github-copilot (or any other supported agent) to install for that target instead.
| Skill | Purpose |
|---|---|
| deslop | Removes AI-generated slop from uncommitted changes |
| review | Unified code review using Codex CLI and optionally Cursor Agent CLI |
| clean-code | Post-implementation polish: simplify → deslop → dead-code/comment audit |
| decomposition | Decomposes complex tasks into atomic, executable todos |
| dig | Deep exploratory interview to surface hidden assumptions and risks in plans |
| fix-ci | Automatically diagnoses and fixes CI failures in the current PR |
| creating-skills | Authors new Agent Skills following the agentskills.io specification |
| memo | Records tech knowledge, design decisions, domain knowledge, and coding tendencies to a personal knowledge base (~/dev/knowledge, Obsidian vault) |
| recall | Searches the knowledge base and surfaces past knowledge relevant to the current work |
| retro | Generates a retrospective report (strengths, tendencies, weaknesses) from the knowledge base |
| delegating-via-herdr | Delegates a task to another coding agent in a visible herdr pane, waiting for completion in the background |
Update all installed skills to the latest version:
gh skill update --allPin to a specific version when installing:
gh skill install rerelurelu/skillbox review --pin v1.0.0Test a skill from a local checkout before publishing:
gh skill install /path/to/skillbox review --from-local --agent claude-code --scope userWhen authoring a new skill in this repo, the creating-skills skill auto-triggers on prompts like "create a skill" or "add a new skill" and walks through the full process. Repository-level conventions are documented in AGENTS.md, and the full Anthropic authoring guide is mirrored at best-practices/create-skill.md.
GNU General Public License v3.0