What they do
A permission rule decides whether your coworker may do something. An automatic check runs something at the moment it happens. Three moments are available:
The distinction that matters: a before check can prevent the action. The other two happen alongside the work.
When you’d use one
- Log every outbound email to a shared record, so there’s an audit trail
- Block anything that mentions a customer name you’ve flagged as sensitive
- Tidy up temporary files at the end of every task
- Notify a channel whenever a task finishes, so nobody has to check
- Run your own validation before anything is filed
- Stop an action that would touch a system outside working hours
Checks or permission rules?
Reach for the simpler one first.
Most people never need checks. Permission rules cover the common cases, and they’re far easier to reason about. Checks are for when you have your own logic — something that has to look at the content of what’s happening rather than just its type.
Where they live
On the coworker’s Files tab, in the file labelled Automation.Good to know
Checks belong to a coworker, so each can have its own. A coworker handling customer data can carry checks that a research coworker has no need for.
Common questions
Do I need these at all?
Do I need these at all?
Most people don’t. Permission rules cover the usual needs. Checks earn their place when you have a rule with your own logic in it, or a compliance requirement to log something.
Will a check slow my coworker down?
Will a check slow my coworker down?
A little, because something extra runs. A before check on a frequent action is the one to keep light.
What happens if a check fails?
What happens if a check fails?
A before check that fails stops the action. The others don’t halt the task — your coworker carries on and the failure is visible in the conversation.
Can a check see what my coworker is about to do?
Can a check see what my coworker is about to do?
Yes — that’s the point of a before check. It inspects the action and can refuse it.
Why did my check stop working?
Why did my check stop working?
Usually the file can no longer be understood after an edit, which switches checks off silently. Check the Automation file first.
Next steps
Permission rules
Try this first.
Approvals
What pauses by default.
Thorough review
Quality rather than policy.
Files overview
Where the Automation file lives.
