A stateless agent forgets everything between calls; this stores values it can read back later.
Developer Tools
A simple persistent key-value store: save, retrieve, and delete named values across requests. Values can optionally expire after a set number of hours. Useful for agents and applications that need to remember small pieces of data between calls, such as a session state, a counter, or a cached result.
You need to stash a small value between calls and read it back later by key.
Large blobs or files (use the file share), or structured records you query (use tables).
Each is a sub-skill of Key-Value Store; the router picks the right one for your request.
information
Skills run through one gateway with your Faro token. Hand it an intent in plain language; Faro routes to the right sub-skill, runs it, and bills per call.
curl -X POST "https://skill.askfaro.com/skills/kv/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"prompt":"Remember that my session token is abc123"}}'Example requests