# BusinessContext

**Kind:** Interface

**Source:** [`atloria-monorepo/packages/doc-automation/src/v2/orchestrator.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/packages/doc-automation/src/v2/orchestrator.ts#L58)

Structured business context extracted from client-provided sources
(PDF brochure, marketing website, competitor docs, markdown files).

Extracted by the agent pre-pipeline and injected into AI prompts
across Stages 4-10 to ensure generated docs use correct business
terminology, personas, and workflow descriptions.

## Properties

| Property | Type |
|---|---|
| `productName` | `string` |
| `productTagline` | `string` |
| `productDescription` | `string` |
| `domain` | `string` |
| `personas` | `{ name: string; description: string }[]` |
| `features` | `{ name: string; description: string; category?: string }[]` |
| `glossary` | `{ term: string; definition: string }[]` |
| `workflows` | `{ name: string; steps: string[]; description?: string }[]` |
| `tone` | `string` |
| `rawContext` | `string` |
| `sources` | `{ type: 'pdf' | 'url' | 'file' | 'text'; path: string }[]` |
