Skip to main content

Overview

A Resource is a persistent data store that lives within a Space. Resources let your automations store, query, and update data across runs — so your Spaces can remember results, accumulate information over time, and connect to external data sources. Resources support several types of content:

How Resources are created

Resources can be created in three ways:
When you describe an automation that needs to store data, Friday automatically creates the necessary Resources as part of the Space setup. For example:
Every day at 9am, research AI startup funding news and add the results to a tracking table.
Friday will create a Resource in the Space to store the funding data and add new rows each time the automation runs.

Viewing Resources

1

Open the Space

Open the Space from the left sidebar.
2

Go to the Resources tab

Click on the Resources tab in the Space detail page.
Each Resource shows:
  • The resource name and type
  • The number of rows and columns (for tables)
  • The current version number
  • When it was last updated

Working with Resources

Reading data

You can ask Friday to read data from a Resource in natural language:
  • “Show me all rows in the Leads resource where status is Active.”
  • “How many entries are in the Inventory resource?”
  • “What does the Meeting Notes resource say about the Q1 roadmap?”

Writing data

Friday can add or update data in a Resource as part of an automation:
  • “Add a new row to the Contacts resource with name John and email john@example.com.”
  • “Update the status column to Completed for row 5 in the Tasks resource.”
  • “Append today’s summary to the Weekly Report resource.”
File and external reference Resources are read-only — Friday can read their contents but cannot modify files or external data through the Resource itself. To update an external resource like a Google Sheet, ask Friday to interact with that service directly.

Querying with SQL

For more complex queries, you can use syntax:
  • “Run a SQL query on the Sales resource to find the top 10 deals by value.”
  • “Query the Events resource for all entries from the last 7 days grouped by category.”

Versioning

Resources use a draft-and-publish model:
  1. When an automation modifies a Resource, changes are made to a draft — a mutable working copy.
  2. At the end of each automation run, the draft is automatically published as a new immutable version.
  3. Published versions are permanent snapshots that cannot be changed.
This means you can:
  • View the full history of changes to a Resource
  • Compare any two versions to see what changed
  • Reference a specific version of the data
Versions are created automatically — you don’t need to manually save or publish. If an automation run doesn’t modify a Resource, no new version is created.

Limits

ConstraintLimit
Data size per Resource5 MB (larger content is stored as a file reference)
Resource name length500 characters
Description length5,000 characters

Next steps