Documentation Index
Fetch the complete documentation index at: https://mintlify.com/tobibytes/Vault/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Theadd command stores a new key-value pair in the vault. Each key must be unique - attempting to add a duplicate key will result in an error.
Syntax
Parameters
The unique identifier for the stored value. Must not already exist in the vault.
The value to store. Can contain spaces and special characters (use quotes for values with spaces).
Examples
Basic Usage
Expected Output
Implementation Details
Under the Hood
Theadd command executes the following SQL query (KVSTORE.cs:49-52):
UNIQUE constraint on the key column.
Validation
The command validates that exactly 2 arguments are provided (KVSTORE.cs:164-167):Error Cases
Invalid ArgumentsProviding the wrong number of arguments will result in: