An open API service indexing awesome lists of open source software.

https://github.com/tomeraitz/dotclaude-templates

A collection of .claude templates: custom agents, commands, hooks, and skills for Claude Code
https://github.com/tomeraitz/dotclaude-templates

cluade github opensource

Last synced: about 10 hours ago
JSON representation

A collection of .claude templates: custom agents, commands, hooks, and skills for Claude Code

Awesome Lists containing this project

README

          



dotclaude logo

dotclaude-templates

[![Status](https://img.shields.io/badge/status-active-success.svg)]()
[![GitHub Issues](https://img.shields.io/github/issues/tomeraitz/dotclaude-templates.svg)](https://github.com/tomeraitz/dotclaude-templates/issues)
[![GitHub Pull Requests](https://img.shields.io/github/issues-pr/tomeraitz/dotclaude-templates.svg)](https://github.com/tomeraitz/dotclaude-templates/pulls)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](/LICENSE)

---

Production-ready .claude templates for Claude Code: custom agents, commands, hooks, and skills to supercharge your AI-powered development workflow.


## 🧐 About the Project

**dotclaude-templates** is a production-ready collection of `.claude` templates that extend Claude Code's capabilities through the `.claude/` directory structure. Think of it as your AI development toolkit - reusable, shareable, and designed to supercharge your workflow.

Here's why you should use it:

- **Save Time**: Create production-ready custom agents in 2-5 minutes instead of hours
- **Consistency**: Share the same standards, patterns, and SOPs across your entire team
- **Safety**: Built-in constraints prevent common mistakes and security issues
- **Flexibility**: Works with any tech stack - Backend, Frontend, DevOps, ML, and more

Use this repository as a starting point - fork it, customize it, and make it your own!

## 🏁 Getting Started

### Prerequisites

[Claude Code](https://docs.claude.com/en/docs/claude-code) installed

### Installation

**Step 1: Clone the repository**

```bash
git clone https://github.com/tomeraitz/dotclaude-templates.git
cd dotclaude-templates
```

**Step 2: Copy `.claude/` to your project**

On Linux/macOS:
```bash
cp -r .claude/ /path/to/your/project/.claude/
```

On Windows:
```cmd
xcopy .claude /path/to/your/project/.claude/ /E /I
```

## 📚 Documentation

- **[Custom Agent Command Guide](docs/custom-agent.doc.md)** - Complete guide to creating custom agents with the `/custom-agent` command
- **[Hooks Guide](docs/hooks-guide.md)** - Understanding and configuring hooks in `.claude/settings.json` for automated workflows
- **[Debugger Skill Guide](docs/debugger-skill.md)** - Verify frontend changes using Playwright MCP
- **[Create Plan Command](docs/create-plan.md)** - Generate structured implementation plans with multi-agent review
- **[Run Plan Command](docs/run-plan.md)** - Execute plan files sequentially using background agents with automatic validation
- **[Beginners Workflows](docs/beginners-workflows.md)** - Beginner-friendly chain of commands taking an idea to working code: `/create-prd` → `/create-design` → `/create-plan` → `/run-plan`

---