Published: March 29, 2026
Category: Guides
Installing individual skills is useful. Installing the right combination creates a workflow that's greater than the sum of its parts. After testing dozens of SKILL.md skills together, these are the bundles that produce the best results when installed side by side in Claude Code, OpenClaw, or other compatible agents.
> Quick Answer: The Code Quality Bundle consists of code-reviewer, git-commit-writer, and pr-description-writer. They work together by reviewing code first, then generating a well-formatted commit message, and finally creating a PR description that incorporates review findings for better accuracy.
Skills don't operate in isolation. A git-commit-writer produces better commit messages when you've already run code-reviewer on your changes, because the review findings inform the commit description. A changelog-generator produces better release notes when your commits follow a consistent format from git-commit-writer.
The key insight is that skills can create a pipeline: the output of one becomes the input context for the next. The bundles below are organized around these natural workflows.
For developers who want consistent, high-quality output before anything gets merged.
Skills:
Install all three:
unzip code-reviewer.zip -d ~/.claude/skills/
unzip git-commit-writer.zip -d ~/.claude/skills/
unzip pr-description-writer.zip -d ~/.claude/skills/
For developers who need to keep documentation accurate and up to date.
Skills:
For teams where mistakes are expensive — production deployments, database changes, security-sensitive code.
Skills:
Everything above combined. For developers who want comprehensive coverage across their entire workflow.
Install all skills from the three bundles above — that's seven skills total. They cover code quality, documentation, and safety. Add the Claude Code starter kit essentials if you don't have them already.
# Install everything
for skill in code-reviewer git-commit-writer pr-description-writer \
readme-generator changelog-generator migration-auditor env-doctor; do
unzip "$skill.zip" -d ~/.claude/skills/
done
If your team has specific needs, create a custom bundle by writing a script that installs your chosen skills:
#!/bin/bash
team-skills-install.sh
SKILLS_DIR="$HOME/.claude/skills"
mkdir -p "$SKILLS_DIR"
for skill in code-reviewer git-commit-writer your-custom-skill; do
cp -r "/path/to/shared/$skill" "$SKILLS_DIR/"
done
echo "Installed $(ls -d $SKILLS_DIR/*/ | wc -l) skills"
Commit this script to your repo so every team member gets the same bundle.
All bundles work across Claude Code, OpenClaw, Codex CLI, and Cursor. Just change the install directory:
# Claude Code
~/.claude/skills/
OpenClaw
~/.openclaw/skills/
Codex CLI
~/.codex/skills/
Browse all available skills and build your own bundle at Agensi.
Find skills that work together at Agensi.