# Kv Store Skill

> A skill for interacting with a simple key-value store. Use this skill to get, set, and delete values from the store.

- Skill: `whamp/kv-store-skill` (Agent Skill, multi-file: 4 files)
- Install (CLI): `npx skillmds@latest add whamp/kv-store-skill`
- Raw SKILL.md: https://api.skillmd.com/api/skills/whamp/kv-store-skill/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: whamp (https://skillmd.com/u/whamp)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/whamp/kv-store-skill

---


# 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:

```bash
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:

```bash
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:

```bash
python scripts/delete.py <key>
```

