Prerequisites

All Code Katz tools are designed for Claude Code, Anthropic's agentic coding tool. You'll need:

Claude Code installed via VS Code extension or CLI
An active Anthropic subscription (Pro, Max, or API key)
A terminal — macOS, Linux, or WSL on Windows

Quick Install — Custom Skills

Most Code Katz tools are Claude Code custom skills — drop-in folders that extend what Claude Code can do. Installation is the same for all of them:

bash Install any skill
# Clone the skill into your project's .claude directory
git clone https://github.com/code-katz/<skill-name> \
  .claude/skills/<skill-name>

# Example: install the Devlog skill
git clone https://github.com/code-katz/claude-devlog-skill \
  .claude/skills/claude-devlog-skill

That's it. Claude Code will automatically detect the SKILL.md file and the skill becomes available in your next session.

Quick Install — CLI Tools

The CLI tools (claude-team-cli and claude-conductor) have their own install scripts:

bash Team CLI
git clone https://github.com/code-katz/claude-team-cli
cd claude-team-cli
./install.sh
bash Conductor
git clone https://github.com/code-katz/claude-conductor
cd claude-conductor
./install.sh

What's Next?

Each tool's GitHub repo has its own detailed README and SKILL.md. Here are some good starting points: