원클릭으로
kv-store
Persistent key/value store for tracking state, counters, flags, and arbitrary data across conversations
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Persistent key/value store for tracking state, counters, flags, and arbitrary data across conversations
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Google Workspace CLI — Gmail, Calendar, Drive, Contacts, Sheets, Docs.
Manage Railway infrastructure - deploy services, manage environment variables, and monitor deployments using the Railway CLI.
Manage Supabase projects - databases, migrations, edge functions, storage, and secrets using the Supabase CLI.
Monitor ETH wallets for on-chain activity, detect whale trades, and track transaction history on Ethereum Mainnet and Base
Autonomous DeFi spot trader — scans DexScreener and Bankr signals, makes trade decisions, executes swaps on Base
Swap ERC20 tokens on Base using 0x DEX aggregator via quoter.defirelay.com
| name | kv_store |
| description | Persistent key/value store for tracking state, counters, flags, and arbitrary data across conversations |
| version | 0.3.6 |
| author | starkbot |
| requires_tools | ["local_rpc"] |
This module stores string key-value pairs that persist across conversations. Use it for counters, flags, notes, config values, or any state the user wants to remember.
After reading these instructions, call local_rpc directly to fulfill the user's request. Do NOT call use_skill again.
Use module="kv_store" — the port is resolved automatically.
local_rpc(module="kv_store", path="/rpc/kv", method="POST", body={
"action": "set",
"key": "TEST",
"value": "ABCD"
})
local_rpc(module="kv_store", path="/rpc/kv", method="POST", body={
"action": "get",
"key": "TEST"
})
local_rpc(module="kv_store", path="/rpc/kv", method="POST", body={
"action": "delete",
"key": "TEST"
})
local_rpc(module="kv_store", path="/rpc/kv", method="POST", body={
"action": "increment",
"key": "LOGIN_COUNT",
"amount": 1
})
Amount is optional (default 1), can be negative to decrement.
local_rpc(module="kv_store", path="/rpc/kv", method="POST", body={
"action": "list"
})
With prefix filter:
local_rpc(module="kv_store", path="/rpc/kv", method="POST", body={
"action": "list",
"prefix": "USER_"
})
| User says | action | key | value |
|---|---|---|---|
| "add/save/store/set X to Y" | set | X | Y |
| "add a record X => Y" | set | X | Y |
| "remember X is Y" | set | X | Y |
| "what is X" / "get X" | get | X | — |
| "delete/remove X" | delete | X | — |
| "increment/count X" | increment | X | — |
| "show all keys" / "list" | list | — | — |
test → TEST{"success": true, "data": ...} or {"success": false, "error": "..."}