diff --git a/packages/twenty-docs/developers/extend/apps/building.mdx b/packages/twenty-docs/developers/extend/apps/building.mdx index f4fc19f6d7..9de42c30a6 100644 --- a/packages/twenty-docs/developers/extend/apps/building.mdx +++ b/packages/twenty-docs/developers/extend/apps/building.mdx @@ -4,10 +4,6 @@ description: How Twenty apps work — sandboxing, lifecycle, and the building bl icon: "sitemap" --- - - Apps are currently in alpha. The feature works but is still evolving. - - Twenty apps are TypeScript packages that extend your workspace with custom objects, logic, UI components, and AI capabilities. They run on the Twenty platform with full sandboxing and permission controls. ## How apps work diff --git a/packages/twenty-docs/developers/extend/apps/cli-and-testing.mdx b/packages/twenty-docs/developers/extend/apps/cli-and-testing.mdx index 57f2921719..5fd98f66f3 100644 --- a/packages/twenty-docs/developers/extend/apps/cli-and-testing.mdx +++ b/packages/twenty-docs/developers/extend/apps/cli-and-testing.mdx @@ -4,10 +4,6 @@ description: CLI commands, testing setup, public assets, npm packages, remotes, icon: "terminal" --- - - Apps are currently in alpha. The feature works but is still evolving. - - ## Public assets (`public/` folder) The `public/` folder at the root of your app holds static files — images, icons, fonts, or any other assets your app needs at runtime. These files are automatically included in builds, synced during dev mode, and uploaded to the server. diff --git a/packages/twenty-docs/developers/extend/apps/data-model.mdx b/packages/twenty-docs/developers/extend/apps/data-model.mdx index 17bec029b2..6c6c2f79ae 100644 --- a/packages/twenty-docs/developers/extend/apps/data-model.mdx +++ b/packages/twenty-docs/developers/extend/apps/data-model.mdx @@ -4,10 +4,6 @@ description: Define objects, fields, roles, and application metadata with the Tw icon: "database" --- - - Apps are currently in alpha. The feature works but is still evolving. - - The `twenty-sdk` package provides `defineEntity` functions to declare your app's data model. You must use `export default defineEntity({...})` for the SDK to detect your entities. These functions validate your configuration at build time and provide IDE autocompletion and type safety. diff --git a/packages/twenty-docs/developers/extend/apps/front-components.mdx b/packages/twenty-docs/developers/extend/apps/front-components.mdx index afefeab250..8b0f456a06 100644 --- a/packages/twenty-docs/developers/extend/apps/front-components.mdx +++ b/packages/twenty-docs/developers/extend/apps/front-components.mdx @@ -4,10 +4,6 @@ description: Build React components that render inside Twenty's UI with sandboxe icon: "window-maximize" --- - - Apps are currently in alpha. The feature works but is still evolving. - - Front components are React components that render directly inside Twenty's UI. They run in an **isolated Web Worker** using Remote DOM — your code is sandboxed but renders natively in the page, not in an iframe. ## Where front components can be used diff --git a/packages/twenty-docs/developers/extend/apps/getting-started.mdx b/packages/twenty-docs/developers/extend/apps/getting-started.mdx index 54c415c1f7..22ba3d2cc6 100644 --- a/packages/twenty-docs/developers/extend/apps/getting-started.mdx +++ b/packages/twenty-docs/developers/extend/apps/getting-started.mdx @@ -4,10 +4,6 @@ icon: "rocket" description: Create your first Twenty app in minutes. --- - -Apps are currently in alpha. The feature works but is still evolving. - - ## What are apps? Apps let you extend Twenty with custom objects, fields, logic functions, front components, AI skills, and more — all managed as code. Instead of configuring everything through the UI, you define your data model and logic in TypeScript and deploy it to one or more workspaces. diff --git a/packages/twenty-docs/developers/extend/apps/layout.mdx b/packages/twenty-docs/developers/extend/apps/layout.mdx index 39bc340cac..5ebf1a5819 100644 --- a/packages/twenty-docs/developers/extend/apps/layout.mdx +++ b/packages/twenty-docs/developers/extend/apps/layout.mdx @@ -4,10 +4,6 @@ description: Define views, navigation menu items, and page layouts to shape how icon: "table-columns" --- - - Apps are currently in alpha. The feature works but is still evolving. - - Layout entities control how your app surfaces inside Twenty's UI — what lives in the sidebar, which saved views ship with the app, and how a record detail page is arranged. ## Layout concepts diff --git a/packages/twenty-docs/developers/extend/apps/logic-functions.mdx b/packages/twenty-docs/developers/extend/apps/logic-functions.mdx index 9f74dcc896..c1c0f2f95f 100644 --- a/packages/twenty-docs/developers/extend/apps/logic-functions.mdx +++ b/packages/twenty-docs/developers/extend/apps/logic-functions.mdx @@ -4,10 +4,6 @@ description: Define server-side TypeScript functions with HTTP, cron, and databa icon: "bolt" --- - - Apps are currently in alpha. The feature works but is still evolving. - - Logic functions are server-side TypeScript functions that run on the Twenty platform. They can be triggered by HTTP requests, cron schedules, or database events — and can also be exposed as tools for AI agents. diff --git a/packages/twenty-docs/developers/extend/apps/publishing.mdx b/packages/twenty-docs/developers/extend/apps/publishing.mdx index 50c84a8e63..475f15d468 100644 --- a/packages/twenty-docs/developers/extend/apps/publishing.mdx +++ b/packages/twenty-docs/developers/extend/apps/publishing.mdx @@ -4,10 +4,6 @@ icon: "upload" description: Distribute your Twenty app to the marketplace or deploy it internally. --- - - Apps are currently in alpha. The feature works but is still evolving. - - ## Overview Once your app is [built and tested locally](/developers/extend/apps/building), you have two paths for distributing it: diff --git a/packages/twenty-docs/developers/extend/apps/skills-and-agents.mdx b/packages/twenty-docs/developers/extend/apps/skills-and-agents.mdx index 3b61f1ae39..cd0a969b77 100644 --- a/packages/twenty-docs/developers/extend/apps/skills-and-agents.mdx +++ b/packages/twenty-docs/developers/extend/apps/skills-and-agents.mdx @@ -5,7 +5,7 @@ icon: "robot" --- - Apps are currently in alpha. The feature works but is still evolving. + Skills and agents are currently in alpha. The feature works but is still evolving. Apps can define AI capabilities that live inside the workspace — reusable skill instructions and agents with custom system prompts.