بنقرة واحدة
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": "..."}