feat: Refactor Anthropic/OpenAI driver, streaming protocols and more#16
Merged
tymondesigns merged 54 commits intomainfrom Feb 28, 2026
Merged
feat: Refactor Anthropic/OpenAI driver, streaming protocols and more#16tymondesigns merged 54 commits intomainfrom
tymondesigns merged 54 commits intomainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces significant improvements to the project's configuration, dependencies, and developer tooling, with a focus on supporting a modern frontend stack (React, TypeScript, Tailwind), enhancing static analysis and formatting workflows, and updating LLM backend configuration. Below are the most important changes grouped by theme.
Frontend and Tooling Modernization
package.jsonwith React, TypeScript, Tailwind, Vite, and related dependencies, as well as scripts for build, lint, format, and type checking.eslint.config.jsfor linting JavaScript/TypeScript and React code, integrating Prettier and React Hooks rules.resources/css/app.cssfile with Tailwind CSS, custom variants, themes, and color variables for improved styling and dark mode support.Static Analysis and Formatting Workflow Enhancements
.github/workflows/static-analysis.ymlto run Rector and ECS with GitHub-friendly output, replacing the previous format check step..gitattributesto streamline package exports..editorconfigto apply 2-space indentation to.tsxand.tsfiles, aligning with frontend conventions.LLM Configuration and Dependency Updates
config/cortex.phpto update LLM backend configuration, add caching options, reorder providers, and introduce a default streaming protocol setting. [1] [2] [3]composer.jsondependencies and scripts to add new packages for JSON repair, caching, YAML front matter, and frontend development, and switched to parallel test execution. [1] [2] [3]CI/CD and Static Analysis Configuration
Miscellaneous