From 938c4d0539033ecb08b88028a495ebe41230a84a Mon Sep 17 00:00:00 2001 From: Cayetano Santos Date: Mon, 11 Aug 2025 12:04:32 +0200 Subject: [PATCH] gnu: Add emacs-llm-tool-collection. * gnu/packages/emacs-xyz.scm (emacs-llm-tool-collection): New variable. Change-Id: Ibc9846cdef8aff24e3ee76ac8b857c38bac9aabb Signed-off-by: Liliana Marie Prikler --- gnu/packages/emacs-xyz.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 20d035c14a42b2eb27102a4293fb7630145a0c92..d7b918fb1143b8edfe7a0cb5dbc3fe56c430a4d7 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -2224,6 +2224,33 @@ language model}s out in the world. To respect user freedom, it will warn you before interacting with non-free LLMs.") (license license:gpl3+))) +(define-public emacs-llm-tool-collection + (let ((commit "6d2765a16dc10af2e1d1911bcabf6d7f287e0434") + (revision "0")) + (package + (name "emacs-llm-tool-collection") + (version (git-version "0.1.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/skissue/llm-tool-collection/") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1rddjhm5jrl5a32bzmhrjfyh54y6ibrsj5pb5hrp3h93iwp16vwk")))) + (build-system emacs-build-system) + (arguments + (list #:emacs emacs ;for cl-lib + #:tests? #f)) ;no tests + (home-page "https://github.com/skissue/llm-tool-collection/") + (synopsis "Collection of Emacs Lisp LLM tools") + (description + "This package provides a collection of tools to be used by +@acronym{Large Language Models, LLM} clients in Emacs.") + (license license:gpl3+)))) + (define-public emacs-magit (package (name "emacs-magit")