Spell Checker
Automating and improving the efficiency of proofreading documents is a common need among developers and writers. This script addresses this need by checking and correcting spelling and grammar in Markdown files.
Code Explanation
Starting at the top of the script, we see that it’s a GenAI script, which is evident from the .mts
extension and the script
function call.
This block sets the title of the script to “Spell checker” and specifies that it uses several system prompts, such as file operations and diff generation. The temperature
is set to 0.1
, indicating that the script will generate output with low creativity, favoring precision.
Fetching Files for Checking
Next, we check for files to process, first from the environment and then from Git if none are provided.
In this block, we’re assigning files from the env
variable, which would contain any files passed to the script. If no files are provided, we execute a Git command to get a list of all cached (staged) modified files and filter them to include only .md
and .mdx
files. We then read the content of these files for processing.
Defining the File Types to Work on
Following this, there’s a def
call:
This line defines FILES
to be the array of files we gathered. The options object { endsWith: [".md", ".mdx"] }
tells GenAI that we’re only interested in files ending with .md
or .mdx
.
The $
-prefixed backtick notation is used to write the prompt template:
This prompt instructs GenAI to fix spelling and grammar in the content of the defined FILES
, outputting small changes in diff format. It also specifies constraints, such as not fixing the frontmatter, code regions, inline code in markdown, and inline TypeScript code in MDX files.
Finally, there is a defFileOutput
call:
This call declares the intent that the script will generate “fixed markdown or mdx files” based on the input files.
How to Run the Script with GenAIScript CLI
Running this spell checker script is straightforward with the GenAIScript CLI. First, ensure you have the CLI installed by following the instructions in the GenAIScript documentation.
Once you have the CLI installed, navigate to your local copy of the script in your terminal or command line interface. Run the following command to execute the spell checker:
Remember, you do not need to specify the .genai.mts
extension when using the run
command.
And there you have it—a detailed walkthrough of a GenAI spell checker script for markdown files. Happy coding and perfecting your documents!