← All skills

Tables

Free

Your agent has no database to put records in; this gives it the capability to store, filter, and semantically search records.

Developer Tools

Stores, queries, and manages records in named collections without needing a database. Insert records, filter by field values, search by meaning, update or delete by id, and count matches. Collections are scoped to your session and require no setup or schema definition.

Use when

You need a small structured store you can query by field or search by meaning.

Not for

A single value by key (use the key-value store), or a file (use the file share).

What you can do

Each is a sub-skill of Tables; the router picks the right one for your request.

What you get back

information

Run it

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/tables/run" \
  -H "Authorization: Bearer $FARO_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"intent":{"prompt":"Add this item to my products collection"}}'

Example requests

  • Add this item to my products collection
  • Find all records in the products collection where category is electronics
  • Find notes about project planning in my notes collection
  • Update the status field of task id abc123 to completed