docs: update README and add video to aidermacs post
This commit is contained in:
committed by
Evrard Van Espen (aider)
parent
5ea2bd364f
commit
098627f2dd
@@ -51,6 +51,7 @@ This is a personal blog built with Go, using the go-org library to parse Org-mod
|
|||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
- [X] code documentation
|
- [X] code documentation
|
||||||
|
- [ ] footer
|
||||||
- [ ] resume page
|
- [ ] resume page
|
||||||
- [ ] contact page
|
- [ ] contact page
|
||||||
- [ ] responsive
|
- [ ] responsive
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
#+DRAFT: false
|
#+DRAFT: false
|
||||||
#+AUTHOR: Evrard Van Espen
|
#+AUTHOR: Evrard Van Espen
|
||||||
#+DESCRIPTION: Présentation et installation d'un assistant de code IA dans Emacs : aider.
|
#+DESCRIPTION: Présentation et installation d'un assistant de code IA dans Emacs : aider.
|
||||||
#+SLUG: agent-ia-emacs
|
#+SLUG: agent-ia-emacs-bases
|
||||||
#+TAGS: ai, emacs
|
#+TAGS: ai, emacs
|
||||||
#+HERO: ./aider.jpg
|
#+HERO: ./aider.jpg
|
||||||
|
|
||||||
@@ -69,19 +69,22 @@ J'ai donc ajouté cette configuration à mon fichier =~/.zshrc=.
|
|||||||
|
|
||||||
Ajoutez ce bloc à votre fichier de configuration /Emacs/ :
|
Ajoutez ce bloc à votre fichier de configuration /Emacs/ :
|
||||||
#+BEGIN_SRC elisp
|
#+BEGIN_SRC elisp
|
||||||
(use-package aidermacs
|
(use-package aidermacs
|
||||||
:ensure t
|
:ensure t
|
||||||
:bind (("C-c a" . aidermacs-transient-menu))
|
:bind (("C-c a" . aidermacs-transient-menu))
|
||||||
:config
|
:config
|
||||||
(exec-path-from-shell-initialize)
|
(exec-path-from-shell-initialize)
|
||||||
(setq exec-path-from-shell-variables '("CODESTRAL_API_KEY"))
|
(setq exec-path-from-shell-variables '("CODESTRAL_API_KEY"))
|
||||||
(setq aider-args '("--model" "codestral/codestral-latest" "--no-auto-accept-architect" "--no-auto-commits"))
|
(setq aider-args '("--model" "codestral/codestral-latest"
|
||||||
(setq aidermacs-program (expand-file-name "~/.local/bin/aider"))
|
"--no-auto-accept-architect"
|
||||||
(setq aidermacs-show-diff-after-change t)
|
"--no-auto-commits"))
|
||||||
:custom
|
(setq aidermacs-program (expand-file-name "~/.local/bin/aider"))
|
||||||
(aidermacs-default-chat-mode 'architect)
|
(setq aidermacs-show-diff-after-change t)
|
||||||
(aidermacs-default-model "codestral/codestral-latest")
|
(setq aidermacs-watch-files t)
|
||||||
)
|
:custom
|
||||||
|
(aidermacs-default-chat-mode 'architect)
|
||||||
|
(aidermacs-default-model "codestral/codestral-latest")
|
||||||
|
)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
Explications :
|
Explications :
|
||||||
@@ -94,7 +97,9 @@ Explications :
|
|||||||
Ces lignes permettent de charger la variable d'environnement =CODESTRAL_API_KEY= dans /Emacs/ afin que ce dernier puisse lire sa valeur.
|
Ces lignes permettent de charger la variable d'environnement =CODESTRAL_API_KEY= dans /Emacs/ afin que ce dernier puisse lire sa valeur.
|
||||||
|
|
||||||
#+BEGIN_SRC elisp
|
#+BEGIN_SRC elisp
|
||||||
(setq aider-args '("--model" "codestral/codestral-latest" "--no-auto-accept-architect" "--no-auto-commits"))
|
(setq aider-args '("--model" "codestral/codestral-latest"
|
||||||
|
"--no-auto-accept-architect"
|
||||||
|
"--no-auto-commits"))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
Cette ligne indique le modèle à utiliser par défaut.
|
Cette ligne indique le modèle à utiliser par défaut.
|
||||||
@@ -138,6 +143,17 @@ Enfin, faites =C-c a= afin d'ouvrir le menu de =aidermacs=.
|
|||||||
|
|
||||||
** Démonstration
|
** Démonstration
|
||||||
|
|
||||||
|
#+ATTR_HTML: :style width: 100% :controls ""
|
||||||
|
[[./aidermacs.mp4]]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
* Conclusion
|
* Conclusion
|
||||||
|
|
||||||
|
Vous aimez l’idée d’un outil comme /Cursor/, mais vous ne voulez pas quitter /Emacs/ ? Aidermacs vous offre le meilleur des deux mondes : une assistance IA avancée, directement intégrée à votre éditeur préféré.
|
||||||
|
Grâce à =aider=, vous bénéficiez d’un agent de code capable d’écrire, analyser et corriger votre code, avec la puissance de modèles comme /Codestral/ ou /Claude/, le tout sans quitter /Emacs/.
|
||||||
|
|
||||||
|
|
||||||
|
Avec une configuration simple et un accès rapide via =C-c a=, vous disposez d’un véritable pair-programmeur IA, tout en restant dans l’environnement que vous maîtrisez.
|
||||||
|
|
||||||
|
Dans le prochain article, nous irons plus en profondeur dans les fonctionnalités d'=aidermacs= et ses différents modes.
|
||||||
|
|||||||
BIN
posts/aidermacs.mp4
Normal file
BIN
posts/aidermacs.mp4
Normal file
Binary file not shown.
@@ -1,9 +0,0 @@
|
|||||||
#+TITLE: TEST
|
|
||||||
#+DATE: 2025-10-29T18:29:56Z
|
|
||||||
#+DRAFT: false
|
|
||||||
#+AUTHOR: Evrard Van Espen
|
|
||||||
#+DESCRIPTION: There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form
|
|
||||||
#+SLUG: test
|
|
||||||
#+TAGS: test, ai
|
|
||||||
|
|
||||||
There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.
|
|
||||||
Reference in New Issue
Block a user