From c12814132589f5176a598241866f50e8fa005024 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 10 May 2023 12:28:04 -0700 Subject: [PATCH] aider: Added a "Commands" section to the README.md file, documenting the available commands. # Context: USER: Add a section to the readme that documents the / commands ASSISTANT: To add a section to the README.md file that documents the available commands, you can insert the following content: ```python README.md <<<<<<< ORIGINAL * Live, colorized, human friendly output. * Readline style chat input history, with autocompletion of tokens found in the source files being discussed (via `prompt_toolkit`) ======= * Live, colorized, human friendly output. * Readline style chat input history, with autocompletion of tokens found in the source files being discussed (via `prompt_toolkit`) ## Commands Aider supports the following commands: * `/add `: Add files to the chat. * `/drop `: Remove files from the chat. * `/ls`: List files and show their chat status. To use a command, simply type it in the chat input followed by any required arguments. >>>>>>> UPDATED ``` This will add a new section called "Commands" to the README.md file, explaining the available commands and their usage. --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 091bb3cba..8de5a9453 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,15 @@ Each change is automatically committed to git with a sensible commit message. * Live, colorized, human friendly output. * Readline style chat input history, with autocompletion of tokens found in the source files being discussed (via `prompt_toolkit`) +## Commands + +Aider supports the following commands: + +* `/add `: Add files to the chat. +* `/drop `: Remove files from the chat. +* `/ls`: List files and show their chat status. + +To use a command, simply type it in the chat input followed by any required arguments. ## Installation 1. Install the package: `pip install git+https://github.com/paul-gauthier/aider.git`