AI & Agents

How to Design Repeatable Workflows in a Company Brain

A repeatable company brain workflow is a sequence of document events, metadata checks, and human handoffs that runs directly on shared storage, without anyone manually checking folders for new files. This guide covers designing these systems with webhooks, a live activity feed, and Metadata Views, then routing human review through version history and ownership transfer instead of a separate approvals product.

Fast.io Editorial Team 9 min read
The Fast.io workspace activity feed showing live file events, version history, and metadata extraction status.

The Silo Problem in Document Automation

Most organizations separate document storage from the systems that act on those documents. Files live in one repository, and the scripts, spreadsheets, or chat threads that process them live somewhere else. Human teams and AI agents spend their time bridging that gap: checking folders for new uploads, copying data between systems, and re-explaining context that already exists in a file no one thought to share.

When evaluating storage systems, teams face three main options:

  • Generic Object Storage: Platforms like Amazon S3 or Google Cloud Storage offer cheap storage but lack user interfaces, built-in search, or a way to know when something new has arrived.
  • Traditional Cloud Drives: Services like Google Drive or Microsoft OneDrive provide sharing and editing but treat documents as static files, offering minimal developer APIs or event notifications.
  • Fastio Workspaces: Fastio shared workspaces combine files, previews, and a live activity feed, allowing humans and AI agents to collaborate directly on files and shares while getting notified the moment something changes.

By embedding indexing and event notifications directly into the storage layer, you eliminate the need for a separate polling script or sync job. Instead of checking a folder every few minutes, you can react the moment a document arrives.

What Is a Company Brain Workflow?

A company brain workflow is a repeatable sequence: a document lands in shared storage, its content and metadata get indexed, interested people or agents are notified, and a human eventually reviews and finalizes the result. This builds on the concept of a company brain, which acts as a centralized repository that automates the indexing and processing of unstructured files, according to the Sentra 2026 Company Brain Guide. In this model, the storage system is not a passive folder structure; it is an active environment that tells you when something worth acting on has happened.

In a traditional system, a human must manually check a folder, review a new document, extract the key data, and then copy that data into a database or spreadsheet before anyone else can act on it. If an AI agent participates, it must download the file, process it locally, and upload the output back to the drive. This process introduces latency, missed updates, and version conflicts.

In an intelligent workspace, files are indexed on arrival for keyword and meaning-based search, and every file event is recorded and surfaced immediately. This means both human team members and AI agents work from the same unified memory layer, and no one has to remember to go looking for what changed.

How to React to New Documents Without Polling

To build a repeatable process, you need a way to know the instant something changes, instead of checking a folder on a schedule. Fastio surfaces this through two complementary mechanisms: native webhooks and a live activity feed.

  • Webhooks: When a file is created, modified, or deleted in a workspace, Fastio can send a webhook notification to an external endpoint. An agent runner, a CI pipeline, or a notification bot can listen for these events and kick off whatever process depends on the new file, such as running a Metadata View extraction or posting a message to a team channel.
  • Live Activity Feed: Inside the workspace, a real-time feed shows every upload, edit, comment, and version change as it happens. Human team members can glance at the feed to see exactly what an agent (or a colleague) has done, without opening every file individually.
  • MCP Access for Agents: AI agents connected via the Fastio Model Context Protocol (MCP) server can poll the same event history, search for newly indexed files, or subscribe to webhook notifications directly, so agent-driven processes stay in sync with human activity.

Using these two mechanisms together, you can build a system where AI agents and humans react to the same signal. For example, a webhook can notify an extraction agent the moment an invoice lands in an /incoming-invoices folder, and the live activity feed lets a finance team member watch that extraction happen in real time.

Example webhook payload:

{
  "event": "file.created",
  "workspace_id": "ws_finance_ops",
  "path": "/incoming-invoices/invoice-2291.pdf",
  "actor": "agent:invoice-extractor",
  "timestamp": "2026-07-29T14:02:11Z"
}
Fastio features

Organize your team's intelligence and react to new documents automatically

Set up workspaces, index files, design document extraction schemas, and get notified the moment something changes. Every organization begins with a 14-day free trial.

How to Extract Structured Document Data with Metadata Views

Traditional document indexing relies on keyword search, which fails when you need to extract specific fields like invoice amounts, contract dates, or policy numbers. While search engines can find files containing a specific term, they cannot format that information into a queryable database. Fastio solves this problem with Metadata Views, which turn unstructured documents into a structured spreadsheet.

You can read more about document data extraction on the Metadata Views product page. Differentiate this feature from general Intelligence Mode: while Intelligence Mode provides semantic search and summaries over files, Metadata Views provide a structured extraction layer that maps document contents to typed schemas.

To set up a Metadata View, you describe the fields you want extracted in natural language. The system then designs a typed schema (supporting Text, Integer, Decimal, Boolean, URL, JSON, and Date & Time), scans the folder, and extracts the corresponding values from PDFs, images, Word docs, and scanned pages.

For example, in a legal contract review process, a Metadata View can extract the counterparty name, renewal date, and governing law. When an AI agent or a human uploads a new contract, the system extracts this data and populates the spreadsheet. AI agents can then query these results via the MCP server to identify contracts expiring in the next thirty days and flag them for review.

Handing Off Review to Humans with Version History and Ownership Transfer

A repeatable process must still handle human review gracefully, even without a dedicated approvals product. In Fastio, per-file version history is the core primitive for human-in-the-loop review. When an AI agent completes a task, such as drafting a client onboarding packet or compiling a financial report, it writes the output into a shared folder rather than publishing it directly.

A practical review pattern looks like this:

  1. Draft: The agent (or human) writes the document into a shared, clearly named folder such as pending-review/.
  2. Notify: A webhook or the live activity feed alerts the assigned reviewer that a new draft is ready.
  3. Review: The reviewer opens the file, checks the version history to see exactly what the agent changed, and reads any notes left alongside it.
  4. Finalize or Revert: The reviewer either leaves the draft as-is, edits it directly, or restores an earlier version if the agent's output isn't usable.

Because every edit is preserved in version history, a reviewer never has to trust an agent's output on faith. They can always compare versions and roll back a bad change, which gives teams the same safety net a formal approval step would, without needing a separate review product.

Once a workspace or client portal is fully set up and the initial review is complete, the agent can hand off the organization to a human. This ownership transfer process allows developers and autonomous agents to build workspaces for clients or internal teams, invite the final human owners, and transfer the subscription.

To run these processes, teams can choose from three subscription tiers:

  • Starter: The Starter tier, priced at twenty-nine dollars per month, includes one terabyte of storage and three hundred thousand credits, suitable for individual professionals.
  • Business: The Business tier, priced at ninety-nine dollars per month, provides twenty seats, ten terabytes of storage, and one point two million credits, designed for growing teams.
  • Growth: The Growth tier, priced at two hundred ninety-nine dollars per month, offers fifty seats, fifty terabytes of storage, and four point five million credits, built for large-scale operations.

Every organization starts with a fourteen-day free trial, which requires a credit card. An agent can sign up free, construct the workspaces, and then transfer ownership to a human who completes the signup and starts the fourteen-day trial.

Frequently Asked Questions

How do you automate document workflows in a company brain?

You automate document workflows by combining event notifications with structured extraction. Configure a webhook that fires when a new file lands in a folder, use a Metadata View to extract the key fields from that file automatically, and let the live activity feed surface the update to the right person. A human reviewer then checks the result against version history before it's treated as final. This eliminates manual folder-checking while still keeping a person in the loop.

How does Fast.io notify teams and agents about new documents?

Fast.io notifies teams and agents through native webhooks, which fire when a file is created, modified, or deleted, and through a live activity feed inside the workspace that shows every upload, edit, and comment in real time. AI agents connected via the MCP server can also query recent activity directly, so nothing requires manual polling of a folder.

Can AI agents act on new files in a company brain automatically?

Yes. AI agents can connect via the Fastio MCP server or the developer API to read new files, run Metadata View extractions, write drafts to a shared folder, and update metadata fields as soon as a webhook or activity feed event tells them a document has arrived. This allows agents to operate alongside human team members without either side polling for changes.

How does ownership transfer work for an agent-built workspace?

An AI agent or a developer can sign up for a free user account and build the workspaces, folders, and shares needed for a project. Once the setup is complete, the agent can generate a claim link to transfer ownership of the organization to a human owner. The human then joins, associates a credit card, and starts the fourteen-day free trial. The agent can retain admin access if needed, but billing and control transfer to the human.

Related Resources

Fastio features

Organize your team's intelligence and react to new documents automatically

Set up workspaces, index files, design document extraction schemas, and get notified the moment something changes. Every organization begins with a 14-day free trial.