summaryrefslogtreecommitdiff
path: root/epistemia/packages
diff options
context:
space:
mode:
authorVineet Kumar <git@vineetk.net>2026-05-28 14:33:27 -0400
committerVineet Kumar <git@vineetk.net>2026-05-28 14:33:27 -0400
commit156aec1deb96cfa7a9da80cdeae03229d9b0f677 (patch)
treee6b50a0828c09da75d99cf7613902facdbdf8449 /epistemia/packages
parent000b1f541b1a60e02800db807506df89acfdeda9 (diff)
packages/emacs: add llm-tools.el
Diffstat (limited to 'epistemia/packages')
-rw-r--r--epistemia/packages/emacs.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/epistemia/packages/emacs.scm b/epistemia/packages/emacs.scm
index fb11355..2acbac7 100644
--- a/epistemia/packages/emacs.scm
+++ b/epistemia/packages/emacs.scm
@@ -197,3 +197,27 @@ for writing LLM ineractions that suit your workflow. See `gptel-request', and
197 (synopsis "cryptography-agnostic emacs secrets manager") 197 (synopsis "cryptography-agnostic emacs secrets manager")
198 (description "This package provides an easy way to manage secrets via M-x kasi.") 198 (description "This package provides an easy way to manage secrets via M-x kasi.")
199 (license license:gpl3))) 199 (license license:gpl3)))
200
201(define-public emacs-llm-tools
202 (package
203 (name "emacs-llm-tools")
204 (version "1.0")
205 (source
206 (origin
207 (method git-fetch)
208 (uri (git-reference
209 (url "https://git.vineetk.net/llm-tools.el")
210 (commit (string-append "v" version))))
211 (file-name (git-file-name name version))
212 (sha256
213 (base32 "0zx0wkdpbabhfc1qjm78c5121v3y39njf9yz9466vz5pw8gxq9s7"))))
214 (build-system emacs-build-system)
215 (inputs (list emacs-gptel-new
216 emacs-magit))
217 (arguments
218 '(#:include '("^[^/]*.el$")
219 #:exclude '("^[^/]*.sh$")))
220 (home-page "https://git.vineetk.net/kasi.el")
221 (synopsis "cryptography-agnostic emacs secrets manager")
222 (description "This package provides an easy way to manage secrets via M-x kasi.")
223 (license license:gpl3)))