Shelf - Dotconf Manager
Shelf is a command-line tool for managing dotconf files and generating git commit messages using AI. It provides a simple interface to track dotfiles across your system and integrates with multiple AI providers to automatically generate meaningful commit messages through git hooks. With support for local and cloud-based AI models, Shelf makes both dotfile management and git commits effortless.
Features
- Track dotconf files from anywhere in your file system recursively
- List all tracked dotfiles
- Remove dotconf files recursively from database
- AI-powered git commit message generation with multiple providers:
- Ollama (default, local)
- OpenAI
- Anthropic Claude
- Google Gemini
- Git hooks integration for automatic commit message generation
Installation
To install Shelf, you need to have Rust and Cargo installed on your system. If you don't have them, you can install them from rustup.rs.
Once you have Rust and Cargo installed, you can build and install Shelf using the following command:
cargo install --path .
Usage
Shelf provides commands for both dotfile management and git integration:
Dotfile Management
# Add a new dotfile to track
# List all tracked dotfiles
# Remove a dotfile from tracking
# Interactive selection of dotfiles to track
# Show help
Each command can be run with -h or --help for more information.
Git AI Integration
The gitai subcommand provides AI-powered git commit message generation:
# Generate commit message for staged changes
# Install git hook for automatic message generation
# Remove git hook
# Configure AI provider
# Use specific provider for one commit
# List current configuration
The GitAI features support multiple AI providers:
- Ollama (default): Local, privacy-friendly AI using models like Qwen
- OpenAI: Cloud-based using GPT models
- Anthropic Claude: Cloud-based using Claude models
- Google Gemini: Cloud-based using Gemini models
The git hook integrates seamlessly with your normal git workflow:
# Hook will automatically generate message if none provided
# Your message takes precedence
# AI helps with amending
Shell Completion
Shelf supports generating shell completion scripts for various shells. You can generate these scripts using the completion subcommand:
# Generate completion script for Bash
# Generate completion script for Zsh
# Generate completion script for Fish
To use the completion scripts:
-
For Bash, add the following line to your
~/.bashrc: -
For Zsh, place the
_slffile in~/.zfunc, then addsource ~/.zfunc/_slfin~/.zshrc. -
For Fish, place the
slf.fishfile in~/.config/fish/completions.
After setting up the completion script, restart your shell or source the respective configuration file to enable completions for the slf command.
Configuration
GitAI settings are stored in ~/.config/shelf/gitai.json (or $XDG_CONFIG_HOME/shelf/gitai.json if set). You can configure:
provider: AI provider to use (ollama,openai,anthropic,gemini)ollama_host: Ollama server URL (default:http://localhost:11434)ollama_model: Ollama model to use (default:qwen2.5-coder)openai_api_key: OpenAI API key for GPT modelsproject_context: Optional project-specific context for better commits
Example configuration:
Development
To build the project locally:
cargo build
To run tests:
cargo test
To run the project directly without installing:
cargo run -- [SUBCOMMAND]
Replace [SUBCOMMAND] with the command you want to run, such as cp, ls, or rm.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
This project is licensed under the MIT License - see the LICENSE file for details.