diff --git a/aider/website/docs/recordings/auto-accept-architect.md b/aider/website/docs/recordings/auto-accept-architect.md index d08272ea8..49d65ca74 100644 --- a/aider/website/docs/recordings/auto-accept-architect.md +++ b/aider/website/docs/recordings/auto-accept-architect.md @@ -1,5 +1,5 @@ --- -parent: Example chat transcripts +parent: Screen recordings nav_order: 1 layout: minimal --- @@ -43,12 +43,12 @@ const recording_url = "https://gist.githubusercontent.com/paul-gauthier/e7383fbc ## Commentary - 0:01 We're going to add a new feature to automatically accept edits proposed by the architect model. -- 0:11 First, add the new switch. +- 0:11 First, let's add the new switch. - 0:40 Aider figured out that it should be passed to the Coder class. - 0:48 Now we need to implement the functionality. - 1:00 Let's do some manual testing. - 1:28 That worked. Let's make sure we can turn it off too. -- 1:46 That worked too. Let's have aider update the HISTORY file to document the new feature. +- 1:44 That worked too. Let's have aider update the HISTORY file to document the new feature. - 2:00 Quickly tidy up the changes to HISTORY. - 2:05 All done! diff --git a/aider/website/docs/recordings/dont-drop-original-read-files.md b/aider/website/docs/recordings/dont-drop-original-read-files.md index 017902730..4bad4d7de 100644 --- a/aider/website/docs/recordings/dont-drop-original-read-files.md +++ b/aider/website/docs/recordings/dont-drop-original-read-files.md @@ -1,5 +1,5 @@ --- -parent: Example chat transcripts +parent: Screen recordings nav_order: 1 layout: minimal --- diff --git a/aider/website/docs/recordings/index.md b/aider/website/docs/recordings/index.md index b3dc2f775..cb2dcb705 100644 --- a/aider/website/docs/recordings/index.md +++ b/aider/website/docs/recordings/index.md @@ -2,20 +2,20 @@ title: Screen recordings has_children: true nav_order: 75 -toc: false +has_toc: false --- # Screen recordings -Below are a series of screen recordings of the aider developer using aider. -They contain commentary that describes how aider is being used. +Below are a series of screen recordings of the aider developer using aider +to enhance aider. +They contain commentary that describes how aider is being used, +and might provide some inspiration or new ideas for your use of aider. -## Available recordings +- [Add --auto-accept-architect feature](./auto-accept-architect.html) - See how a new command-line option is added to automatically accept edits proposed by the architect model, with implementation. Aider also updates the project's HISTORY file. -- [**Add language support via tree-sitter-language-pack**](./tree-sitter-language-pack.html) - Watch how aider adds support for numerous programming languages by integrating with tree-sitter language packs. Demonstrates fetching language definitions, downloading tags files, and ensuring compatibility with repo-map functionality. +- [Add language support via tree-sitter-language-pack](./tree-sitter-language-pack.html) - Watch how aider adds support for tons of new programming languages by integrating with tree-sitter-language-pack. Demonstrates using aider to script downloading a collection of files, and using ad-hoc bash scripts to have aider modify a collection of files. -- [**Add --auto-accept-architect feature**](./auto-accept-architect.html) - See how a new command-line option is added to automatically accept edits proposed by the architect model, with implementation and testing of the feature. - -- [**Don't /drop read-only files added at launch**](./dont-drop-original-read-files.html) - Follow along as aider is modified to preserve read-only files specified at launch when using the /drop command, with implementation and test coverage. +- [Don't /drop read-only files added at launch](./dont-drop-original-read-files.html) - Follow along as aider is modified to preserve read-only files specified at launch when using the /drop command. Aider does this implementation and adds test coverage. diff --git a/aider/website/docs/recordings/tree-sitter-language-pack.md b/aider/website/docs/recordings/tree-sitter-language-pack.md index 86cb09472..21ba2da14 100644 --- a/aider/website/docs/recordings/tree-sitter-language-pack.md +++ b/aider/website/docs/recordings/tree-sitter-language-pack.md @@ -1,5 +1,5 @@ --- -parent: Example chat transcripts +parent: Screen recordings nav_order: 0 layout: minimal --- diff --git a/scripts/jekyll_run.sh b/scripts/jekyll_run.sh index e32ca2644..da1e0a49b 100755 --- a/scripts/jekyll_run.sh +++ b/scripts/jekyll_run.sh @@ -8,7 +8,7 @@ docker run \ -e HISTFILE=/site/.bash_history \ -e JEKYLL_ENV=development \ -it \ - my-jekyll-site bundle exec jekyll serve --host 0.0.0.0 --incremental --livereload + my-jekyll-site bundle exec jekyll serve --host 0.0.0.0 $* # Additional options: # --incremental: Only rebuilds files that changed