Fabrica
Join our DiscordFollow on X
Talk to the founders
PRIVACY

Your data stays yours.

Three guarantees. No fine print. No telemetry hiding behind a settings panel.

Runs in your browser
Your tabs. Your tools. Your account. Fabrica doesn’t move data anywhere it doesn’t need to.
No accounts. No tracking.
No sign-up. No analytics on your tasks. No data sold. Ever.
Audit anything
Open skills. You see what Fabien does, line by line, before he does it.
HOW “AUDIT” WORKS

Read the source.

Every skill is a plain markdown file. Open it. Change it. Refuse it. Nothing runs that you can't inspect.

~/.fabrica/skills/fidatora.com/customer-update.skill.md
YAML
1// fidatora.com/customer-update.skill.md
2 
3name:
4Update customer record
5trigger:
6"update {customer} {field}"
7 
8steps:
9 - find_customer({name})
10 - click(".edit-button")
11 - type("." + {field}, {value})
12 - click(".save-button")
13 
14// permissions: read+write on fidatora.com only

That's the whole skill. No backend, no model call, no surprises. Just a sequence of clicks Fabien promises to make on your behalf.