Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
5fbe757
Checkpoint: Post-V29 validation pass - 71 files changed (+9281/-2126)
RecursiveIntell May 29, 2026
12ac36f
baseline: current state before audit
RecursiveIntell May 29, 2026
8782760
close pass: all gates green, backend/frontend hardening, receipt cons…
RecursiveIntell May 30, 2026
6b55777
add hostile auditor handoff for close pass
RecursiveIntell May 30, 2026
90a4458
push: audit recovery, studio widgets, streaming fixes, SM vendor patc…
RecursiveIntell May 31, 2026
e75ccd9
wip: audit recovery checkpoint — 9 modified files, streaming fixes, v…
RecursiveIntell May 31, 2026
4392292
fix: pass None to chunk_text_with_title test for audit fix
RecursiveIntell May 31, 2026
d17a5f2
chore: commit final audit delta
RecursiveIntell May 31, 2026
6def5f4
[verified] harden Gloss retrieval and RC gates
RecursiveIntell Jun 10, 2026
6a1845e
perf(slowdown-fix-batch-a): embed default→Ollama, LRU cache, batch ca…
RecursiveIntell Jun 11, 2026
c872573
perf(slowdown-fix-batch-b): pool routing, batched DB, embedder Arc, s…
RecursiveIntell Jun 11, 2026
a078a8d
perf(slowdown-fix-batch-cd): eager embedder warmup, ErrorBoundary rem…
RecursiveIntell Jun 11, 2026
1b61fc7
docs: hostile-auditor findings + handoff for perf-slowdown-fix-20260610
RecursiveIntell Jun 11, 2026
21a2be9
perf(slowdown-fix-batch-e): react-virtuoso, individual selectors, mem…
RecursiveIntell Jun 11, 2026
fd0e256
docs: record that React perf (B5/B6/D6) shipped in bonus batch E
RecursiveIntell Jun 11, 2026
28aaf82
perf(batch-f-partial): F3 bounded error body, C4 model-change log, C5…
RecursiveIntell Jun 11, 2026
1add5b9
docs: record Batch F-partial (4 items) and update remaining deferred …
RecursiveIntell Jun 11, 2026
67b35d7
perf(batch-g): C2 IndexChunks job stub, F3 Ollama+LlamaCpp error body…
RecursiveIntell Jun 11, 2026
b5b38c8
perf(batch-h): D7 keyboard shortcuts, D8 light theme verified
RecursiveIntell Jun 11, 2026
ee9e099
perf(batch-i): D11 collapsible strict-import, D12 jargon fix, D14 not…
RecursiveIntell Jun 11, 2026
26208eb
docs: final close-out — record Batches G/H/I, 2 items remain deferred
RecursiveIntell Jun 11, 2026
f4d1b74
perf(finish-2026-06-11): close-out pass — make program fixed and stable
RecursiveIntell Jun 11, 2026
2a466b8
docs: hostile-audit handoff for finish-2026-06-11 close-out
RecursiveIntell Jun 11, 2026
9c71821
fix(embedder+chat): tokio panic, dim probe, JS rollback from localSto…
RecursiveIntell Jun 11, 2026
65bad43
fix(studio): hard 60s timeout on studio LLM call; deterministic fallback
RecursiveIntell Jun 12, 2026
ad7ab5c
style: rustfmt cleanup after embedder+studio fixes
RecursiveIntell Jun 12, 2026
9386483
docs: hostile-auditor handoff for perf-slowdown-fix-20260610 close-out
RecursiveIntell Jun 12, 2026
dd578d1
fix: complete Gloss recovery and release verification
RecursiveIntell Jul 12, 2026
75a2a0c
chore: commit remaining dirty files before push
RecursiveIntell Jul 15, 2026
88083cb
fix(clippy): allow deprecated quick_xml, too_many_arguments on tauri …
RecursiveIntell Jul 15, 2026
0087087
docs: hostile council audit 2026-07-15 — 5-agent audit with 17 findin…
RecursiveIntell Jul 15, 2026
0f2b5ba
fix: hostile council audit — update vendored deps to 0.5.11, add cust…
RecursiveIntell Jul 15, 2026
c4c0e2c
docs: rebuild README around verified product truth
RecursiveIntell Jul 17, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
17 changes: 7 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
with:
components: rustfmt

- name: Cache Rust build artifacts
uses: Swatinem/rust-cache@v2

- name: Install Linux dependencies
run: |
sudo apt-get update
Expand All @@ -44,14 +47,8 @@ jobs:
- name: Install frontend dependencies
run: npm ci

- name: Frontend build
run: npm run build

- name: Rust format check
run: |
find src-tauri -path 'src-tauri/vendor' -prune -o -name '*.rs' -print0 \
| xargs -0 rustfmt --edition 2021 --check
- name: Install cargo-deny
run: cargo install cargo-deny --version 0.19.8 --locked

- name: Rust tests
working-directory: src-tauri
run: cargo test
- name: Canonical release verification
run: npm run verify
Loading
Loading