Claude Code Templates banner
altmemy altmemy

Claude Code Templates

Development community

Description

Project templates for Claude Code — Next.js, Spring Boot, and Flutter, each with preconfigured agents, skills, rules, and hooks

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/.

README

Claude Code Templates
Production-grade project templates for Claude Code

English | العربية


Claude Code Templates

Production-grade project templates for [Claude Code](https://claude.ai/code), each packed with **7 specialized AI agents**, **5 reusable skills**, **5 path-specific rules**, and **4 automated hooks**.

Pick a template, clone the folder, and let Claude Code build your app.

Available Templates

Template Stack Description
claude-ai-frontend React 19.2, Next.js 16, TypeScript 6, Tailwind v4 Modern frontend apps with Server Components, Turbopack, Biome
claude-spring-boot Spring Boot 4, Java 25, Spring Security 7, JPA Production backend APIs with JWT, Flyway, Testcontainers, OpenTelemetry
claude-flutter Flutter 3.41, Dart 3.11, Riverpod 3, Material 3 Cross-platform apps (iOS, Android, Web, Desktop) with GoRouter, Freezed, Dio

Quick Start

Option 1: Clone and copy

# Clone the repo
git clone https://github.com/altmemy/claude-code-templates.git

# Copy the template you want
cp -r claude-code-templates/claude-ai-frontend  ~/my-awesome-app
# or
cp -r claude-code-templates/claude-spring-boot   ~/my-api-service
# or
cp -r claude-code-templates/claude-flutter        ~/my-mobile-app

# Navigate into your project
cd ~/my-awesome-app

# Initialize a fresh git repo
git init

# Open Claude Code and start building
claude

Option 2: Download only one folder (sparse-checkout)

# Create your project folder
mkdir my-awesome-app && cd my-awesome-app
git init

# Add the remote
git remote add origin https://github.com/altmemy/claude-code-templates.git

# Enable sparse-checkout and pick a template
git sparse-checkout init --cone
git sparse-che