diff --git a/README.md b/README.md
index cd768f4f34df10f91d42042d9b5d64d8add67e73..3fe6f2db2df8301b89e7f1aa9a563db881ff5f90 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # NoƩmi Shell X (NoshX) - A Simple Custom Shell for UNIX-like systems
 
-NoshX is a simple, customizable command-line shell designed for UNIX-like systems. Inspired by other UNIX-like shells, Nosh provides a variety of basic commands and functionalities, with a few fun additions. It is meant to emulate many of the standard shell operations, as well as offer a unique user experience. This project is open-source, and you are welcome to contribute.(Read about licensing below)
+NoshX is a simple, customizable command-line shell designed for UNIX-like systems. Inspired by other UNIX-like shells, NoshX provides a variety of basic commands and functionalities, with a few fun additions. It is meant to emulate many of the standard shell operations, as well as offer a unique user experience. This project is open-source, and you are welcome to contribute.(Read about licensing below)
 
 
 ## Features (implemented):
@@ -21,6 +21,8 @@ NoshX is a simple, customizable command-line shell designed for UNIX-like system
 
 `now`: Gets and prints out the current date and tame.
 
+`snatch`: Install additional available commands for NoshX.
+
 `store`: Save a string of maximum 100 characters during runtime.
 
 `store -g`: Show the string saved with `store`.
diff --git a/noshx.cpp b/noshx.cpp
index 900869c32950ec9748ad8c512ba754b839a97b7e..792349867d336144db6d561431ff12a75d328642 100644
--- a/noshx.cpp
+++ b/noshx.cpp
@@ -210,6 +210,7 @@ void handle_help(const vector<string>& args){
          << "noemi -l: Draw a heart shape made of # characters with more delay\n"
          << "now: Gets and prints out the curent date and time\n"
          //<< "rn: rename a file or a directory\n"
+         << "snatch: Install additional available commands for NoshX\n"
          << "store: Save a string of maximum 100 characters during runtime\n"
          << "store -g: Show the string saved with store\n\n";
 }