# Changelog All notable changes to the **Brunix Assistance Engine** will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). --- ## [1.4.0] - 2026-03-10 ### Added - **Dataset Generation Suite**: Added `scripts/generate_mbpp_avap.py` to automate the creation of synthetic AVAP training data. - **MBPP-style Benchmarking**: Support for generating structured JSON datasets with code solutions and Python-based validation tests (`test_list`). - **LRM Integration**: The generator now performs grounded synthesis using the `avap.md` Language Reference Manual. - **Anthropic Claude 3.5 Sonnet Integration**: Orchestration logic for high-fidelity code generation via API. ### Changed - **README.md**: Added comprehensive documentation for the Evaluation & Dataset Generation pipeline. - **Project Structure**: Integrated `evaluation/` directory for synthetic dataset storage. ### Security - Added explicit policy to avoid committing real Anthropic API keys, enforcing the use of environment variables. ## [1.3.0] - 2026-03-05 ### Added - IMPLEMENTED: - `src/utils/emb_factory`: factory modules created for embedding model generation. - `src/utils/llm_factory`: factory modules created for LLM generation. - `src/graph.py`: workflow graph orchestration module added. - `src/prompts.py`: centralized prompt definitions added. - `src/state.py`: shared state management module added. - `pipelines/flows/elasticsearch_ingestion.py`: pipeline to populate the elasticsearch vector database. - `ingestion/docs`: folder containing all chunked AVAP documents. ### Changed - REFACTORED: `server.py` updated to integrate the new graph/state/prompt and utils-based architecture. - REFACTORED: `docker-compose.yaml` now uses fully parameterized environment variables instead of hardcoded service URLs and credentials. - DEPENDENCIES: `requirements.txt` updated with new libraries required by the new modules. ## [1.2.0] - 2026-03-03 ### Added - GOVERNANCE: Introduced `CONTRIBUTING.md` as the single source of truth for all contribution standards, covering GitFlow, infrastructure policy, repository standards, environment variables, changelog, documentation, and incident reporting. - GOVERNANCE: Added `.github/pull_request_template.md` enforcing a mandatory structured checklist on every PR — including explicit sign-off on environment variables, changelog, and documentation. - DOCS: Added Environment Variables reference table to `README.md`. All variables must be registered here. PRs introducing undocumented variables will be rejected. - DOCS: Updated project structure map in `README.md` to reflect new governance files. ### Changed - PROCESS: Pull Requests that introduce new environment variables without documentation, omit required changelog entries, or skip required documentation updates are now formally non-mergeable per `CONTRIBUTING.md`. --- ## [1.1.0] - 2026-02-16 ### Added - IMPLEMENTED: Strict repository structure enforcement to separate development environment from production runtime. - SECURITY: Added `.dockerignore` to prevent leaking sensitive source files and local configurations into the container. ### Changed - REFACTORED: Dockerfile build logic to optimize build context and reduce image footprint. - ARCHITECTURE: Moved application entry point to `/app` and eliminated the redundant root `/workspace` directory for enhanced security. ### Fixed - RESOLVED: Issue where non-production files were being bundled into the Docker image, improving deployment speed and container isolation. --- ## [1.0.0] - 2026-02-09 ### Added - **System Architecture:** Implementation of the triple-layer stack (Engine, Vector DB, Observability). - **Core Engine:** Deployment of the `brunix-assistance-engine` using **Python 3.11**, **LangChain**, and **LangGraph** for agentic workflows. - **Communication Layer:** Established **gRPC** as the primary high-performance interface (Port 50051/50052). - **Knowledge Base:** Integration of **Elasticsearch 8.12** (`brunix-vector-db`) for AVAP technology RAG support. - **Observability Framework:** Deployment of **Langfuse** and **PostgreSQL** for full trace audit and cost management. - **Security:** Initial network isolation within Docker (`avap-network`) and production-ready secret management design.