> For the complete documentation index, see [llms.txt](https://atomic-blend.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://atomic-blend.gitbook.io/docs/developers/readme.md).

# Welcome

Welcome to the Atomic Blend platform technical documentation. This guide is for **engineers who want to contribute to or understand the platform**.

## What is Atomic Blend?

Atomic Blend is an open-source, end-to-end encrypted productivity suite — a privacy-first alternative to Google Suite. It provides calendar, notes, tasks, and mail applications with all user data encrypted client-side.

## Where to Start

| I want to...                | Go to                                                                               |
| --------------------------- | ----------------------------------------------------------------------------------- |
| Understand the system       | [Architecture Overview](/docs/developers/architecture/overview.md)                  |
| Run the backend locally     | [Backend: Getting Started](/docs/developers/backend/getting-started.md)             |
| Run a Flutter app locally   | [App: Getting Started](/docs/developers/apps/getting-started.md)                    |
| Understand the git workflow | [Contributing: Workflow](/docs/developers/contributing/workflow.md)                 |
| Add a new feature           | [Contributing: Adding a Feature](/docs/developers/contributing/adding-a-feature.md) |
| Scaffold a new service      | [New Service Guide](/docs/developers/patterns/new-service.md)                       |

## Repositories

| Repository                                                                                    | Description                |
| --------------------------------------------------------------------------------------------- | -------------------------- |
| [backend/auth](https://gitlab.com/atomic-blend/backend/auth)                                  | Authentication service     |
| [backend/calendar](https://gitlab.com/atomic-blend/backend/calendar)                          | Calendar service           |
| [backend/productivity](https://gitlab.com/atomic-blend/backend/productivity)                  | Notes, tasks, habits       |
| [backend/mail](https://gitlab.com/atomic-blend/backend/mail)                                  | Mail service               |
| [backend/mail-server](https://gitlab.com/atomic-blend/backend/mail-server)                    | SMTP server                |
| [backend/shared](https://gitlab.com/atomic-blend/backend/shared)                              | Shared Go packages         |
| [apps/task](https://gitlab.com/atomic-blend/apps/task)                                        | Task Flutter app           |
| [apps/calendar](https://gitlab.com/atomic-blend/apps/calendar)                                | Calendar Flutter app       |
| [apps/mail](https://gitlab.com/atomic-blend/apps/mail)                                        | Mail Flutter app           |
| [apps/notes](https://gitlab.com/atomic-blend/apps/notes)                                      | Notes Flutter app          |
| [apps/shared](https://gitlab.com/atomic-blend/apps/shared)                                    | Shared Flutter package     |
| [flutter-packages/flutter\_age](https://gitlab.com/atomic-blend/flutter-packages/flutter_age) | Age encryption FFI package |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://atomic-blend.gitbook.io/docs/developers/readme.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
