Key-Value Store Skill
This skill allows you to interact with a simple key-value store. You can use the provided scripts to perform the following operations:
Get a value
To get a value from the store, use the get.py script with the desired key as an argument:
python scripts/get.py <key>
Set a value
To set a value in the store, use the set.py script with the key and value as arguments:
python scripts/set.py <key> <value>
Delete a value
To delete a value from the store, use the delete.py script with the key as an argument:
python scripts/delete.py <key>
