# Decisions AI > A bilingual (EN/AR, full RTL) multi-agent decision-support API for MOEI internal apps. Built on Supabase: Postgres + Realtime + edge functions, with Anthropic Claude Opus 4.7 as the model. Create a decision, attach documents, watch a panel of agents (Research → Advocate For + Against → Judge → Counter → Chief of Staff) work through it in real time, and read the final A4-ready briefing. This is the LLM crawler index. The full reference lives at /api.md and is duplicated byte-for-byte at /llms-full.txt. ## Documentation - [Full API reference](https://decisions.heos.ae/api.md): every table, every edge function, every Realtime channel, full SDK reference, recipes, errors, glossary. - [OpenAPI 3.1 spec](https://decisions.heos.ae/openapi.yaml): the four edge functions with request/response schemas. - [SQL schema](https://decisions.heos.ae/schema.sql): `pg_dump --schema-only` of the `public` schema. - [Realtime catalog](https://decisions.heos.ae/realtime.json): channel name patterns, filters, payload shapes. ## Quickstart - [TL;DR with a 25-line working example](https://decisions.heos.ae/api.md#tldr) - [Quickstart guide](https://decisions.heos.ae/api.md#quickstart) - [SDK reference](https://decisions.heos.ae/api.md#sdk-reference) - [Recipes (end-to-end)](https://decisions.heos.ae/api.md#recipes) ## Reference - [Authentication and security posture](https://decisions.heos.ae/api.md#authentication-and-security-posture): v1 is open. Anon key is publishable. RLS demo_all on every table. - [Data model](https://decisions.heos.ae/api.md#data-model): decisions, runs, run_steps, chat_messages, documents, pipelines/nodes/edges, translation_jobs. - [Edge functions](https://decisions.heos.ae/api.md#edge-functions): run-pipeline, chat, ingest-document, suggest-followups. - [Realtime channels](https://decisions.heos.ae/api.md#realtime-channels): per-token agent output via run_steps row updates every ~1.5s. - [Errors and retries](https://decisions.heos.ae/api.md#errors-and-retries). - [Glossary](https://decisions.heos.ae/api.md#glossary). ## Project - Supabase project URL: https://lydtdudifolcdzunlvtu.supabase.co - Region: eu-central-1 - Anon key (publishable): sb_publishable_e2G3zcb5z_4hS3e3O_czxw_qxZnGHD5 - SDK package: `@moei/decisions-sdk` (TypeScript, two entrypoints: default and `/react`)