git-camus transforms your Git commit messages into philosophical reflections inspired by the works of Albert Camus. Instead of mundane messages, each commit becomes a thoughtful meditation on absurdity, rebellion, and the human condition.
# Install from PyPI
pip install git-camus
# Or install from source
git clone https://github.com/rachlenko/git-camus.git
cd git-camus
pip install -e .
Set your Anthropic API key as an environment variable:
# For Linux/macOS
export ANTHROPIC_API_KEY="your-api-key-here"
# For Windows (Command Prompt)
set ANTHROPIC_API_KEY=your-api-key-here
# For Windows (PowerShell)
$env:ANTHROPIC_API_KEY="your-api-key-here"
You can add this to your shell profile for persistence.
# Stage your changes first
git add .
# Then use git-camus instead of git commit
git-camus
This will analyze your staged changes, generate a philosophical commit message inspired by Camus, and commit the changes.
# Show message without committing
git-camus --show
# Provide context with your own message
git-camus --message "Fix authentication bug"
Embrace the absurdity of development with philosophical git commits
Transform routine coding updates into existential reflections on the human condition.
Draws from Albert Camus' works including The Myth of Sisyphus, The Stranger, and The Rebel.
Analyzes your original commit message to generate a contextually appropriate philosophical insight.
Works alongside your existing Git workflow with minimal configuration required.
Spark meaningful conversations in code reviews and inspire your team with unexpected wisdom.
Adjust the level of philosophical depth from "mild contemplation" to "full existential crisis."
Here are some example commit messages generated by git-camus:
Git-Camus uses sensible defaults, but you can customize it by creating a .git-camus.toml
file in your project root or home directory:
[api]
model = "claude-3-5-sonnet-20240620" # Claude model to use
max_tokens = 150 # Maximum tokens in response
temperature = 0.7 # Creativity level (0.0-1.0)
[style]
philosopher = "camus" # Currently only supports "camus"