From 30f2655c5cc212fb9052afa970d69cba88da3ee8 Mon Sep 17 00:00:00 2001 From: Hugo Nijhuis Date: Sun, 28 Dec 2025 17:16:59 +0100 Subject: [PATCH] Initial project setup for Claude Code workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add .claude/ directory for Claude Code configuration - Add prompts/ for reusable prompt templates - Add scripts/ for automation scripts - Add hooks/ for Claude Code hooks - Add CLAUDE.md with project documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .claude/commands/.gitkeep | 0 .claude/settings.json | 3 +++ .gitignore | 18 ++++++++++++++++++ CLAUDE.md | 15 +++++++++++++++ hooks/.gitkeep | 0 prompts/.gitkeep | 0 scripts/.gitkeep | 0 7 files changed, 36 insertions(+) create mode 100644 .claude/commands/.gitkeep create mode 100644 .claude/settings.json create mode 100644 .gitignore create mode 100644 CLAUDE.md create mode 100644 hooks/.gitkeep create mode 100644 prompts/.gitkeep create mode 100644 scripts/.gitkeep diff --git a/.claude/commands/.gitkeep b/.claude/commands/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/.claude/settings.json b/.claude/settings.json new file mode 100644 index 0000000..20eb959 --- /dev/null +++ b/.claude/settings.json @@ -0,0 +1,3 @@ +{ + "$schema": "https://claude.ai/claude-code/settings.schema.json" +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..169b865 --- /dev/null +++ b/.gitignore @@ -0,0 +1,18 @@ +# OS +.DS_Store + +# Editor +.vscode/ +.idea/ + +# Environment +.env +.env.local + +# Logs +*.log + +# Secrets +secrets/ +*.pem +*.key diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..f312c9d --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,15 @@ +# Claude Code AI Workflow + +This repository contains configurations, prompts, and tools to improve the Claude Code AI workflow. + +## Project Structure + +- `.claude/` - Claude Code configuration + - `commands/` - Custom slash commands (skills) +- `prompts/` - Reusable prompt templates +- `scripts/` - Automation scripts +- `hooks/` - Claude Code hooks (pre/post tool execution) + +## Usage + +This project is meant to be used alongside Claude Code to enhance productivity and maintain consistent workflows. diff --git a/hooks/.gitkeep b/hooks/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/prompts/.gitkeep b/prompts/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/scripts/.gitkeep b/scripts/.gitkeep new file mode 100644 index 0000000..e69de29