> For the complete documentation index, see [llms.txt](https://docs.xenoraa.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.xenoraa.com/xenoraa-changelog-and-architecture/module-status-9.md).

# Module Status

> Auto-synced from `AGENTS.md`. Shows the 10 most recent deployments.

| Version  | Date       | Description                                                                    | Commit                                                        |
| -------- | ---------- | ------------------------------------------------------------------------------ | ------------------------------------------------------------- |
| `v8.4.0` | 2026-07-08 | Phase 3 — OPcache + Cloudflare WAF + Slack Error Monitoring                    | [9134154](https://github.com/goesscay/xenoraa/commit/9134154) |
| `v8.3.0` | 2026-07-08 | Phase 2 — CI/CD + Staging Environment                                          |                                                               |
| `v8.2.0` | 2026-07-08 | Phase 1 — Redis + Queue Workers + DB Backups                                   |                                                               |
| `v8.1.0` | 2026-07-08 | ChatGPT Integration — Tenant API Token Management                              |                                                               |
| `v8.0.0` | 2026-07-08 | ChatGPT Actions API                                                            |                                                               |
| `v7.9.0` | 2026-07-08 | Xena AI System Prompt — Maximum Knowledge Upgrade                              |                                                               |
| `v7.8.0` | 2026-07-08 | Batch 4 — 16 New Tools (Appointments/Blog/Advanced CRM)                        |                                                               |
| `v7.7.0` | 2026-07-08 | Batch 3 — 16 New Accounts/HR Tools                                             |                                                               |
| `v7.6.0` | 2026-07-08 | Batch 2 — 17 New Tools (Notes/Services/Bookings/Calendar/Todos/Settings)       |                                                               |
| `v7.5.0` | 2026-07-08 | Batch 1 — 16 New Tools (Requirements/Milestones/Issues/TimeLogs/MailTemplates) |                                                               |

***

## Current Production Stack

| Component                   | Value                                       |
| --------------------------- | ------------------------------------------- |
| **Framework**               | Laravel 11 (PHP 8.3)                        |
| **Database**                | PostgreSQL 16.14                            |
| **Frontend**                | Blade + Vanilla JS                          |
| **Cache / Queue / Session** | Redis                                       |
| **Web Server**              | Nginx 1.24.0                                |
| **Queue Workers**           | 2x Supervisor workers                       |
| **CI/CD**                   | GitHub Actions (push to main → xenoraa.com) |
| **Error Monitoring**        | Slack #xenoraa-errors                       |
| **Security**                | Cloudflare WAF (5 rules) + SSL Full         |
| **Backups**                 | Daily 2:00 AM UTC, 7-day rotation           |

***

## Design System Rules

* All pages use `crm2-*` CSS classes (`crm2-page`, `crm2-header`, `crm2-title`, `crm2-kpi-grid`, `crm2-kpi-card`, `crm2-card`, `crm2-table`, `crm2-badge`, `crm2-btn`, `crm2-btn-primary`, `crm2-filter-form`, `crm2-input`).
* CSS variables: `--accent:#6366f1`, `--bg-card:#fff`, `--bg-subtle:#f8fafc`, `--border:#e2e8f0`, `--text-primary:#1a1a2e`, `--text-muted:#64748b`, `--rail-width:56px`.
* `crm2.css` loads for `admin.crm2*`, `admin.ecommerce*`, `admin.accounts*`, `admin.pos*` routes.
* **PDF exports:** No flexbox/grid — table-based HTML only. Font: DejaVu Sans. Currency: `Rs.` (not symbol).
* **Modals:** Never use `class=hidden` in HTML — use CSS `display:none` as default.
* **PostgreSQL:** Use `EXTRACT(MONTH FROM col)`, `::text ILIKE`, `STRING_AGG` (not `GROUP_CONCAT`).
* **SMTP:** Config stored in `crm_mail_configs` table, not `.env`.
* **Post-deploy:** `php artisan view:clear && php artisan config:cache && php artisan route:cache && systemctl restart php8.3-fpm`


---

# 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://docs.xenoraa.com/xenoraa-changelog-and-architecture/module-status-9.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.
