**Claude-Code-Development-Kit** banner
peterkrueck peterkrueck

**Claude-Code-Development-Kit**

Development community intermediate

Description

A lightweight starter kit for Claude Code subscribers. Gives your project a solid foundation — documentation structure, code review automation, image tools, and sensible defaults — that you extend as you go.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

Repository README

This is the README for peterkrueck/Claude-Code-Development-Kit, shared by 4 entries in this directory. It describes the repository, not this entry specifically.

Claude Code Development Kit

A lightweight starter kit for Claude Code subscribers. Gives your project a solid foundation — documentation structure, code review automation, image tools, and sensible defaults — that you extend as you go.

This isn't a heavy framework. It's the setup you'd build yourself after a few weeks of using Claude Code, packaged so you start with it on day one.

Who This Is For

You have a Claude Code subscription and want to hit the ground running. Maybe you're building an app, a side project, or starting something new. You want Claude to understand your project structure, review its own work, and not accidentally `git push --force` your main branch.

This kit gives you that. Install what you need, skip what you don't, extend it however you want.

Quick Start

**One command:**

curl -fsSL https://raw.githubusercontent.com/peterkrueck/Claude-Code-Development-Kit/main/install.sh | bash

**Or clone and run:**

git clone https://github.com/peterkrueck/Claude-Code-Development-Kit.git
cd Claude-Code-Development-Kit
./setup.sh

The installer walks you through what to include. Everything is optional except the core.

How It Works

**Skills** are things Claude does — automatically based on context, or when you type a `/slash-command`. **Hooks** run in the background on specific events (security checks, review nudges, notification sounds). **Commands** are manual triggers you type, like `/prime` to load your project context.

The installer gives you three paths: **full** (recommended — installs everything), **customize** (choose each feature individually), or **minimal** (core only). Re-run anytime to add more.

What You Get

Always installed (core)

  • CLAUDE.md — A template for your project's AI instruction set. This is how you tell Claude your project's rules, architecture decisions, and constraints.
  • /prime command — Loads your documentation into context. Run it at the start of a session.

...