shouldivibecodeit

Should I vibe codeFibery?

Flexible databases, documents, whiteboards, and workflows for teams

A no-code platform is not an app, it is a type system with a formula engine bolted on. You are building a compiler.

?

Their verdict, the Standard price and the build-time estimate come from their entry, MIT-licensed. Checked 2026-08-04.

Can you build it?asked by canivibecodeit.com ↗YESone-shottable · one sitting
?

Our verdict, the regret score and everything below it. Editorial and unsponsored — nobody can pay to be moved.

Should you ship it?asked by usDEMO ONLYvibe the v0, throw it away.

The honest answer

why the verdict is what it is

You will get something that looks like Fibery in an afternoon, and that is the problem with this whole category. Kanban board, a table view, a rich-text document, a couple of relations — an agent produces all of it fast and it demos beautifully. What Fibery actually is, though, is a user-definable type system: your team invents entities at runtime, links them bidirectionally, writes formulas that reference fields across those links, and expects the whiteboard, the reports and the automations to keep up. That is a schema engine, an expression language with a dependency graph, and a permissions model over user-defined types, which is three products with three separate ways to break. And the failure here is not dramatic, it is gravitational: eight months in, four people have quietly moved their real work into it, every view is one you wrote, and the export you never built is now a migration nobody has time for. Build it as a demo, learn what your team actually needs, then buy the tool that already survived those questions.

What actually breaks

not "if". the specific failures.

  • Schema migration, which is the whole game — a user renames a field or changes its type at four in the afternoon and every formula, view, filter and automation referencing it has to be found and updated or invalidated
  • The formula engine, once formulas reference fields across relations: you now own a dependency graph, cycle detection, and a recalculation strategy that does not lock the table for everyone
  • Bidirectional relations, which mean every write is two writes, and a half-applied change leaves a link that exists from one side only
  • Permissions over user-defined types, because the rules have to be expressed against entities that did not exist when you wrote the rules
  • Real-time collaborative editing, which looks free until two people type in the same paragraph and you discover you needed CRDTs rather than last-write-wins
  • The whiteboard, which is an entire separate application wearing a tab
  • Views at scale, where a grouped, filtered, sorted board over forty thousand entities with computed columns turns into a query nobody can index for
  • Automations, which are a rules engine that will eventually trigger itself in a loop and needs depth limits and an execution log before it does
  • Your attention, which is the actual cost: this is not a project you finish, it is a product you now maintain for the people using it

Is that you?

the verdict is a default, not a law

ship it if
  • It is one team, one fixed schema you defined in code, and nobody can add a field from the UI
  • The whole thing is a throwaway prototype for working out what your team actually needs before you buy something
  • Export to CSV and markdown works before the second view does
  • You are the only user and losing it would cost you an afternoon of retyping
don’t ship it if
  • Colleagues are about to put their real work into it and you are the only one who can restart the server
  • Users can define their own entity types and fields, which is the feature that makes it Fibery and the feature that makes it a compiler
  • There is no export yet
  • Anyone has said the phrase "we could also track our customers in here"

If you build it anyway

the checklist, then the prompt that enforces it

  1. Write the export before the second view. CSV per entity type, markdown per document, and a JSON dump of the schema including relations — this is the difference between an abandoned side project and a hostage situation.
  2. Fix the schema in code for v1. User-definable types are the feature that turns this from a weekend into a platform, and you can add them later with far more information.
  3. Version every schema change and make migrations replayable. A rename that silently breaks nine saved views is the characteristic failure of this category.
  4. Cap the formula language deliberately: no cross-entity aggregation in v1, an explicit dependency graph, cycle detection, and a hard evaluation timeout. An unbounded expression language is a denial-of-service vector your own users will find by accident.
  5. Automations need an execution log, a depth limit and a global rate ceiling before they need a trigger UI. A rule that fires a rule that fires the first rule is a Tuesday.
  6. Back up daily, restore from the backup once, and write down how long it took. An untested restore is a hope, and this is a data-loss category above all else.
  7. Decide up front whether documents are collaborative in real time. Retrofitting concurrent editing onto last-write-wins means losing somebody's paragraph in front of them.
the guardrail prompt
I want to build a flexible work-management tool: databases, documents, views and
automations. Assume I will underestimate this. Constrain me in this order.

1. Export first, before any UI. CSV per entity type, markdown per document, JSON for the
   schema and relations, and a script that reproduces the whole workspace from those
   files. Prove the round trip works.
2. Then backup and restore. Daily dump, one documented restore into a clean environment,
   and tell me how long it took. Do not move on until a restore has actually happened.
3. Fix the schema in code for v1. Do not build user-definable entity types or fields yet.
   If I ask for them, explain that runtime-defined types mean I own schema migration,
   formula invalidation and permissions over types that did not exist when the rules were
   written — and make me say yes twice.
4. When schema changes do arrive, make them versioned and replayable, and enumerate every
   view, filter, formula and automation that references a changed field. A rename must
   either update or explicitly invalidate all of them, never fail silently.
5. Keep the formula language small on purpose: no cross-entity aggregation in v1, an
   explicit dependency graph, cycle detection, and a hard evaluation timeout. Say plainly
   that an unbounded expression language is a self-inflicted denial-of-service.
6. Automations get an execution log, a recursion depth limit and a global rate ceiling
   before they get a trigger builder.
7. Decide real-time collaboration explicitly. If documents are concurrently editable, use a
   CRDT library rather than inventing merge rules; if not, lock at paragraph level and tell
   me the tradeoff.
8. Build one view type well — a table with filtering and sorting — before boards, timelines
   or calendars. Paginate server-side from the start.
9. Do not build a whiteboard. It is a separate application and I am not asking for one.
10. Out of scope for v1: AI features, public sharing, guest access, integrations with other
    trackers.
11. Before we start, tell me honestly whether Vikunja, Plane or NocoDB already covers what
    I described, because self-hosting one of those is often the correct answer.
paste this before you build — not after something breaks30 lines · 2198 chars

That one keeps you out of trouble. For the prompt that actually builds it, canivibecodeit.com has one.

their build prompt ↗

Or don’t build it

the boring option, and the way back out

just pay for it

As soon as somebody who is not you depends on it. Twelve dollars a seat a month buys a schema engine that already survived users renaming fields on a Friday, a formula language with real semantics, permissions over user-defined types, backups you did not configure, and an export that exists. The genuinely good reason to build first is to discover what your team actually needs — but that is what a prototype is for, and a prototype is allowed to be deleted.

$12/mo is cheaper than your weekend.

your exit plan, if you already built it

The exit is the reason this is DEMO ONLY rather than something worse, and it is entirely within your control: CSV per entity type, markdown per document with attachments beside them, and a JSON dump of the schema including relation definitions. Write it in week one. The part that never survives is the connective tissue — the relations, the computed fields, the saved views — so accept that migrating out means flattening the graph and rebuilding views by hand in whatever you move to. Knowing that up front is what keeps the prototype a prototype.

prior art · someone already did this
NocoDB

Open-source no-code database layer over Postgres or MySQL, closest to Fibery's flexible-database core.

Plane

Self-hosted issue and project tracker with cycles, modules and multiple views.

Vikunja

Open-source task manager with lists, boards and collaboration, easy to run for a small team.

Questions

canivibecodeit says YES, one sitting. Why the disagreement?

Because they are answering whether an agent can build it and we are answering whether you should run it. They are right — a sitting gets you something convincing. The gap is between a workspace that demos and a workspace four colleagues have moved their real work into, and that gap is made of schema migration, formula invalidation, permissions over user-defined types, and backups you tested. None of that shows up in the demo.

Why is maintenance tax the highest number here?

Because a no-code platform is not a finished artefact, it is a runtime for other people's ideas. Every field your users invent is code you did not write but now have to keep working. A tracker with a fixed schema you control is a normal application; the moment the schema is user-editable you have taken on the job of a database vendor, forever, for a team of six.

Should I self-host something instead?

Usually, yes. NocoDB covers the flexible-database half, Plane covers structured project tracking, and either is an evening to stand up and somebody else's problem to maintain. Build your own only when you have a specific workflow no existing tool models — and even then, build it as a fixed-schema app rather than as a platform that can express every workflow, because the second one is the compiler.

did you build it?

Every week, someone ships something they shouldn’t have.

New verdicts, the worst thing that landed in the trap, and the occasional incident report. No other email, ever.

also on the regret index
CodaDEMO ONLY

You'll have a block editor by Sunday and be maintaining a formula language by Christmas.

NuclinoDEMO ONLY

Last-write-wins is not an error you will ever see. It is a paragraph a colleague typed that quietly never existed.

SliteDEMO ONLY

A search box says "here are three pages". An answer box says "this is true". Only one of those can be wrong.

last reviewed 2026-08-05 · verdict is editorial and unsponsored · shared entry data from canivibecodeit under MIT · not legal advice