Skip to main content

A2UI in Worka

A2UI is the structured UI model Worka uses for views.

That gives the platform a portable way to:

  • create views
  • update them over time
  • bind real data into them
  • send user actions back into the runtime

Why Worka uses A2UI

The platform wants views to be governed runtime artifacts, not arbitrary frontend bundles.

That is how Worka can:

  • render across multiple clients
  • keep view updates in sync with workflow state
  • reason about data bindings and actions
  • publish or share views without inventing a different app model each time

What a good Worka view does

A good Worka view:

  • has a clear purpose
  • binds to real data paths
  • exposes actions that make sense in the workspace
  • updates as the underlying workflow or tool state changes

The goal is not only valid JSON. The goal is a view that behaves like real software.