# DetectedFeature

**Kind:** Interface

**Source:** [`atloria-monorepo/apps/api/src/documentation/services/feature-detector.service.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/apps/api/src/documentation/services/feature-detector.service.ts#L18)

Detected feature from codebase analysis

## Properties

| Property | Type |
|---|---|
| `id` | `string` |
| `name` | `string` |
| `description` | `string` |
| `category` | `string` |
| `components` | `any[]` |
| `services` | `any[]` |
| `routes` | `string[]` |
| `stateMachines` | `any[]` |
| `uiInteractions` | `any[]` |
| `codeExamples` | `CodeExample[]` |
| `configOptions` | `{
    envVars: string[];
    settings: Record<string, any>;
  }` |
| `complexity` | `'simple' | 'moderate' | 'complex'` |
| `userRoles` | `string[]` |
| `prerequisites` | `string[]` |
| `relatedFeatures` | `string[]` |
