Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
335608f
This major release introduces professional audio processing capabilit…
Feb 13, 2026
7311aa8
feat: implement roadmap release with AI/runtime UX, transport preview…
Feb 15, 2026
a6b7173
feat: complete v2 follow-up with native ONNX runtime, profile/trust w…
Feb 15, 2026
aea6c68
feat: add HF model hub workflows, metadata policy controls, and ops a…
Feb 16, 2026
284d09e
feat: complete B4+B5 expansion with HF hub, metadata policy, batch AP…
Feb 16, 2026
c1d72da
refactor: split MainComponent orchestration into backend/controller m…
Feb 17, 2026
67bdde9
fix: normalize .gitignore formatting and keep docs ignored
Feb 18, 2026
f9fd185
docs: restore README formatting from pre-rebase snapshot
Feb 18, 2026
701342d
docs: refresh README visual layout and structure
Feb 18, 2026
30afb78
Initial plan
Copilot Feb 18, 2026
03b5119
Initial plan
Copilot Feb 18, 2026
66083f2
Update src/ai/ModelManager.cpp
soficis Feb 18, 2026
3a11196
Update src/analysis/ArtifactRiskEstimator.cpp
soficis Feb 18, 2026
cb118d5
Update src/ai/MasteringCompliance.cpp
soficis Feb 18, 2026
9cf3cdf
Define named constants for preferredStemCount limits with documentation
Copilot Feb 18, 2026
f1182f8
Initial plan
Copilot Feb 18, 2026
2eec35b
Initial plan
Copilot Feb 18, 2026
c797662
feat: implement semantic version comparison for FeatureSchemaV1
Copilot Feb 18, 2026
414a0a6
Merge pull request #2 from soficis/copilot/sub-pr-1
soficis Feb 18, 2026
260c470
Format JSON metadata in AiExtensionTests.cpp for better readability
Copilot Feb 18, 2026
679756d
fix: require strict semver format (major.minor.patch) and reject part…
Copilot Feb 18, 2026
1c1761a
Merge pull request #3 from soficis/copilot/sub-pr-1-again
soficis Feb 18, 2026
cdcb40b
Merge pull request #4 from soficis/copilot/sub-pr-1-another-one
soficis Feb 18, 2026
0209507
Merge pull request #5 from soficis/copilot/sub-pr-1-yet-again
soficis Feb 18, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions .github/workflows/nightly_golden_eval.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Nightly Golden Eval

on:
schedule:
- cron: '0 2 * * *'
workflow_dispatch:

jobs:
golden-eval:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Configure
run: cmake -S . -B build-codex -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=ON -DBUILD_TOOLS=ON

- name: Build
run: cmake --build build-codex --parallel

- name: Run Unit + Regression Tests
run: ctest --test-dir build-codex --output-on-failure -j4

- name: Update Eval Trend
run: |
./build-codex/automix_dev_tools eval-trend \
--baseline tests/regression/baselines.json \
--work-dir artifacts/ci_eval \
--trend artifacts/eval/golden_trend.json \
--out artifacts/eval/nightly_summary.json \
--json

- name: Upload Eval Artifacts
uses: actions/upload-artifact@v4
with:
name: nightly-golden-eval
path: |
artifacts/eval/golden_trend.json
artifacts/eval/nightly_summary.json
artifacts/ci_eval
98 changes: 56 additions & 42 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,65 +1,79 @@
# Build artifacts
build/
build_clean/
# === Build & Output ===
build*/
out/
bin/
_deps/
*.exe
*.dll
*.lib
*.pdb
*.ilk
*.obj
*.o
*.exp
artefacts/
*artefacts/
ntml
docs/

# CMake generated files
# === CMake ===
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
CTestTestfile.cmake
DartConfiguration.tcl
CMakeUserPresets.json

# IDE and editor files
.vscode/
# === IDE & Editors ===
.vs/
.vscode/
.idea/
*.vcxproj.user
*.slnx.user

# Analysis and cache files
*.suo
*.db
*.opendb
.cache/
.clangd/

# === Python ===
__pycache__/
*.pyc
*.pyo
*.pyd
.pytest_cache/
.venv/
venv/

# === Logs & Temporary ===
*.log
*.tmp
tmp/
tmpclaude*
build_config_output*.txt
changed_files.txt
current_diff.txt
local_commits.txt
full_status.txt
nul

# === Analysis & Data ===
*.sarif
*.analysis
assets/**/analysis_data/
.DS_Store
Thumbs.db
Desktop.ini

# Documentation
docs/
# === Testing ===
Testing/
*.xml
tests/regression/output/

# Personal data and sensitive files
# === Personal & Security ===
.env
personal/
*.key
*.pem
.ssh/
*.id_rsa
*.id_dsa
config.ini

# Temporary files and directories
tmp/
*.tmp
*.log

# Operating system files
Thumbs.db
.DS_Store
Desktop.ini

# Compiled binaries and libraries
*.exe
*.dll
*.lib
*.pdb
*.ilk
*.obj
*.o

# Test artifacts
Testing/
*.xml

# Dependencies (if any)
_deps/

# Artifacts directory (if exists)
artefacts/
Loading