aboutsummaryrefslogtreecommitdiff
path: root/home/profiles/llm.nix (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-08-12delete LLM related stuff for nowFranck Cuny1-33/+0
2025-08-12users -> homeFranck Cuny1-0/+0
2025-07-21move user configurations to top-levelFranck Cuny1-0/+0
2025-07-21refactoring to use flake-parts and automatic imports of hostsFranck Cuny1-0/+0
This is the first step in a large refactoring to use flake-parts, and to automatically imports hosts based on paths.
2025-06-12simplify how we're managing templates for `llm`Franck Cuny1-9/+19
Add the variable `configPath` to home-manager, to map directly to the top level configuration of the current user (`./configs/users/$user'). Add a function to generate the mapping for all the templates we need for the `llm` CLI.
2025-06-12pass `self` to the home-manager modulesFranck Cuny1-4/+4
This is to avoid using relative paths, which is always annoying to get right.
2025-03-10add repomix integrationFranck Cuny1-2/+4
- Install `repomix` via homebrew - Add `llm-bundle` just command and `readme-gen` template - Configure just integration in home config
2025-03-10ensure llm templates dir existsFranck Cuny1-2/+1
2025-02-28🚀 Refactor LLM config: Move to standardized templates and improve setupFranck Cuny1-6/+12
- Migrated prompts from text files to YAML templates in `.config/llm/templates/` directory - Updated fish shell aliases to use the new template system with `-t` flag instead of reading files - Enhanced justfile's `llm` target with proper Claude model setup and 1Password integration - Added `LLM_USER_PATH` environment variable for consistent configuration path - Fixed PR prompt format to better organize content and remove issue resolution section - Updated Nix configuration to support the new file structure The changes standardize our LLM prompt system and make it more maintainable, while improving the setup experience for new users. 🧰
2025-02-24🤖 Add LLM tooling and prompts for Git workflow automationFranck Cuny1-0/+16
- Add new section in README about LLM tooling installation - Create prompts directory with templates for commit and PR messages - Add new llm.nix module with: - Configuration for prompt file locations - Fish shell aliases for generating commit and PR messages using Claude 3.5 - Add `llm` recipe in justfile to install llm CLI tool and Anthropic provider - Integrate LLM module into home-manager configuration The changes introduce automation for generating high-quality commit messages and PR descriptions using AI, while keeping the prompts configurable and version controlled.