QuodaraBack to Quodara

Core concepts

The handful of terms that run through every screen on Quodara: apps, resident agents, chats, the app main version, test and production.

Get these straight once and the rest of the platform stops needing explanation.

App

An app is a project you want AI to build and operate for you. Every app comes with four things:

Your apps live on the Apps page, which has three tabs: Mine, Collect and Board.

Resident agent

The agent is not a code-completion model. It works inside a real container: it can read and write repository files, install dependencies, run commands, inspect logs, generate images and video, and call the skills and MCP servers you have installed.

You never deploy the agent yourself — it is provisioned when the app is created. Every message you send in a chat is executed by that app's agent.

Chat

A chat is an ongoing conversation with the agent, and it is the only way work gets done on Quodara.

The first sidebar item, new chat, starts a new conversation. Recent chats sit below it, with Recent / Collect tabs. Chats do not have to be started by hand either — a scheduled task creates one for you when it fires, see 08-schedule.md.

App main version

The app main version is the default branch of the repository, usually main. Production ships from it, but it is not necessarily what is live right now:

If you know Git, treat the app main version as your main branch.

ConceptGit equivalent
App main versionthe main branch
A chat's brancha temporary chat/xxx branch
The live versionthe commit on main that was last published

Test and production

TestProduction
Triggered byPreview under a chat messagePublish under a chat message
Domaina test. subdomainyour real subdomain
Database and storageisolated from productionisolated from test
Audienceyou, verifyingthe public
Indexed by search enginesno, crawling is fully disabledyes

The two environments share no data. Anything you create while testing stays in the test database.

Everything else

All of these live in the feature list on your profile; the sidebar no longer lists them individually.

One diagram

   you ──a request──► Chat (temp branch)
                        │
                        ├─ Preview ──► test environment (test domain)
                        │
                        └─ Merge ──► default branch ──Publish──► production

Read next: 02-apps.md

Markdown version of this page