A collection of practical agent skills for software engineering workflows.
| Skill | What it does |
|---|---|
| code-review | Automated code review from git diffs — markdown / HTML reports with severity ratings |
| git-skill | Conventional Commits, push, history rewrite, merge to main/dev, and merged-branch cleanup |
| long-task | Autonomous orchestrator for multi-milestone projects — parallel worktree subagents + reviews |
Install all skills globally with one command (recommended):
npx skills add -y -g chann/skillsPer-skill or non-global installs (and manual setup) are documented in each skill's README:
code-review → details
| Command | Output |
|---|---|
/code-review |
Show findings in conversation (no file) |
/code-review-md |
Write markdown report to .reviews/ |
/code-review-html |
Write markdown + HTML reports to .reviews/ |
git-skill → details
| Command | Action |
|---|---|
/git-commit |
Group working-tree changes into Conventional Commits |
/git-commit-push |
Same, then git push (no --force) |
/git-commit-rewrite |
Rewrite recent non-Conventional commit subjects |
/git-merge-to-main |
Merge current branch into main, then git branch -d the source |
/git-merge-to-dev |
Merge current branch into dev (fallback develop), then git branch -d the source |
/git-branch-cleanup |
Delete every local branch already merged into a protected branch |
long-task → details
| Command | Action |
|---|---|
/long-task |
Autonomously build a project end-to-end with parallel worktree subagents + milestone reviews |
Also triggers on phrases like "build this whole project", "do this autonomously", "run a long task".
All SKILL.md files in this repo follow the standard skill format and reference no Claude-Code-only tools, so they run on any agent platform that supports skills:
| Platform | How to install |
|---|---|
| Claude Code | npx skills add chann/skills — installs the full plugin (skill + slash commands) |
| Codex | Symlink <plugin>/skills/<name>/ into your Codex skills directory (e.g. ~/.agents/skills/) |
| opencode | Drop the skill directory into your opencode skills path |
| Copilot CLI / Gemini CLI / others | Point your platform's skill loader at <plugin>/skills/<name>/SKILL.md per its docs |
What is and isn't portable:
- Portable — every
SKILL.mdbody and itsreferences/. The skills trigger on natural-language phrases on any platform. - Claude Code only — the
.claude-plugin/plugin.jsonwrapper, thenpx skillsinstaller, and the slash commands (/code-review,/git-commit,/long-task, ...). Other platforms invoke the skill via natural language or their own activation mechanism.
- An agent platform that supports skills (Claude Code, Codex, opencode, Copilot CLI, Gemini CLI, etc.)
- Git repository
- Python 3.10+ (for
code-review-htmlandgit-commit-rewrite)
MIT