Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
99 commits
Select commit Hold shift + click to select a range
eedc001
feat(providers): add Anthropic OAuth subscription support with CLI de…
TheDarkSkyXD Mar 14, 2026
ec7f86e
fix: use Tauri shell plugin for external URLs, fix unused variable
TheDarkSkyXD Mar 22, 2026
fabbed3
feat: improve model routing selector with searchable dropdown and fix…
TheDarkSkyXD Mar 22, 2026
abbb3ea
fix: address PR review — align provider IDs, mirror OAuth in /provide…
TheDarkSkyXD Mar 23, 2026
9e0dd31
fix: define missing anthropic_oauth_configured variable in get_providers
TheDarkSkyXD Mar 23, 2026
ddd4b8b
feat: add Tauri Windows desktop icons, schema, config, and sidecar bu…
TheDarkSkyXD Mar 23, 2026
d519e35
fix: resolve worker tool call errors (browser_evaluate, browser_close…
TheDarkSkyXD Mar 23, 2026
5903c7b
fix: resolve worker tool call errors (browser_evaluate, browser_close…
TheDarkSkyXD Mar 23, 2026
5aa3def
feat: add directory browse button to Create Project dialog
TheDarkSkyXD Mar 23, 2026
248967e
fix: prevent workers from getting stuck in timeout-retry loops
TheDarkSkyXD Mar 23, 2026
2e07d75
fix: resolve chat input lag caused by SSE-driven React re-renders
TheDarkSkyXD Mar 25, 2026
1b3bd60
fix: address remaining PR review — onBlur commit for custom model IDs…
TheDarkSkyXD Mar 25, 2026
f8b1429
fix: suppress double onChange on blur, add ollama routing defaults
TheDarkSkyXD Mar 25, 2026
9d33013
fix: remove all hardcoded models, use catalog for minimax-cn and moon…
TheDarkSkyXD Mar 25, 2026
5d7c980
style: fix cargo fmt formatting
TheDarkSkyXD Mar 25, 2026
d0aa883
style: collapse nested if per clippy::collapsible_if
TheDarkSkyXD Mar 25, 2026
49ac1ed
Merge branch 'feat/project-directory-browser'
TheDarkSkyXD Mar 25, 2026
d436ee5
Merge branch 'fix/worker-tool-call-errors'
TheDarkSkyXD Mar 25, 2026
8f15c4b
Merge branch 'feat/model-select-dropdown'
TheDarkSkyXD Mar 25, 2026
2a1fb89
Merge branch 'fix/worker-timeout-retry-loop'
TheDarkSkyXD Mar 25, 2026
adde59d
Merge branch 'feat/anthropic-oauth-cli-detection'
TheDarkSkyXD Mar 25, 2026
f597def
fix: reduce dashboard polling frequency and prevent topology graph re…
TheDarkSkyXD Mar 25, 2026
12c700b
fix: move TopBar content update out of render phase
TheDarkSkyXD Mar 25, 2026
042c82d
feat: add global shortcut plugin, auto-start sidecar, and open devtoo…
TheDarkSkyXD Mar 25, 2026
56960bf
fix: suppress avatar 404s in topology graph and chart dimension warnings
TheDarkSkyXD Mar 25, 2026
c66bb79
feat: add rebuild scripts and pipe backend logs to Tauri debug console
TheDarkSkyXD Mar 27, 2026
dbbf43b
chore: add reference/ to .gitignore
TheDarkSkyXD Mar 30, 2026
99cb613
fix: enable custom-protocol feature so rebuild scripts serve static f…
TheDarkSkyXD Mar 30, 2026
112fddd
chore: update Tauri schemas and add code graph PRD v2.0
TheDarkSkyXD Mar 30, 2026
bb14c98
feat: add Code Graph Memory System — full-stack implementation
TheDarkSkyXD Mar 30, 2026
02a7c85
feat(codegraph): walker hardening + Wave 1 extraction depth
TheDarkSkyXD Apr 8, 2026
cbdd2a4
feat(codegraph): wave 2 — extract_accesses for 9 languages
TheDarkSkyXD Apr 8, 2026
2f4aff0
feat(codegraph): wave 3a — Parameter nodes for Python/TS/Rust/Java
TheDarkSkyXD Apr 8, 2026
4916cd5
fix(codegraph): clippy doc_lazy_continuation in collect_rust_params
TheDarkSkyXD Apr 8, 2026
bed11af
feat(codegraph): wave 3b — populate OVERRIDES edges via parent-chain …
TheDarkSkyXD Apr 8, 2026
ae020cf
feat(codegraph): wave 3a-cont — Parameter nodes for remaining 9 langu…
TheDarkSkyXD Apr 9, 2026
9ab4277
feat(codegraph): wave 4 — cross-file type environment for call resolu…
TheDarkSkyXD Apr 9, 2026
8805ee0
feat(codegraph): wave 5 — USES edges from declared types
TheDarkSkyXD Apr 9, 2026
4273c25
feat(codegraph): wave 6 — symbol-level import resolution
TheDarkSkyXD Apr 9, 2026
903f64e
feat(codegraph): wave 6b — explicit-symbol-import call resolution tier
TheDarkSkyXD Apr 9, 2026
20b02c9
feat(codegraph): wave 7 — local variable type tracking
TheDarkSkyXD Apr 9, 2026
ebefe3e
feat(codegraph): wave 8 — TESTED_BY edges from test functions
TheDarkSkyXD Apr 9, 2026
f280fea
feat(codegraph): wave 9 — constructor and instantiation recognition
TheDarkSkyXD Apr 10, 2026
2bf8318
fix(codegraph): persist implements list so heritage emits IMPLEMENTS …
TheDarkSkyXD Apr 10, 2026
53212a5
fix(codegraph): auto-migrate stale schemas so new columns take effect
TheDarkSkyXD Apr 10, 2026
9dbae79
fix(codegraph): treat missing schema sentinel as stale, bump to v4
TheDarkSkyXD Apr 10, 2026
b221463
fix(codegraph): normalize path separators in calls.rs on Windows
TheDarkSkyXD Apr 10, 2026
038a03b
feat(codegraph): wave 10 — DECORATES edges via line-proximity linking
TheDarkSkyXD Apr 10, 2026
c2e706a
feat(codegraph): wave 11 — chained-call return-type flow
TheDarkSkyXD Apr 10, 2026
f0ef38e
feat(codegraph): wave 12 — routes, sections, FETCHES, ENTRY_POINT_OF,…
TheDarkSkyXD Apr 10, 2026
fee1c07
feat(codegraph): wave 13 — FTS, wildcard imports, QUERIES edges
TheDarkSkyXD Apr 10, 2026
0a7b3c8
feat(codegraph): wave 14 — HANDLES_TOOL edges for MCP tool detection
TheDarkSkyXD Apr 10, 2026
cb89201
feat(codegraph): wave 15 — staleness detection via git commit hash
TheDarkSkyXD Apr 10, 2026
398a2f3
fix(codegraph): wave 16 — resolve aliased imports via original name
TheDarkSkyXD Apr 10, 2026
e9fc695
chore(codegraph): remove dead INHERITS edge type
TheDarkSkyXD Apr 10, 2026
04364ef
feat(codegraph): interactive graph canvas UI with GitNexus-style 4-zo…
TheDarkSkyXD Apr 12, 2026
4176067
feat(codegraph): pipeline improvements — search, parsing, embeddings,…
TheDarkSkyXD Apr 12, 2026
6cd37e3
feat(codegraph): enhance GlobalProjects page
TheDarkSkyXD Apr 12, 2026
cb6ddf3
feat(codegraph): node color picker, hover colors, and layout fixes
TheDarkSkyXD Apr 12, 2026
7d8cafb
feat(codegraph): show file sizes on graph nodes, inspector, and search
TheDarkSkyXD Apr 13, 2026
64a6b24
feat(codegraph): auto-fill project name from folder when adding a pro…
TheDarkSkyXD Apr 13, 2026
f4d8c4f
feat(codegraph): pipeline cleanup — delete noise nodes, fix count dis…
TheDarkSkyXD Apr 13, 2026
75238af
feat(codegraph): add context, impact, and detect_changes tools for wo…
TheDarkSkyXD Apr 13, 2026
e486f78
feat(codegraph): register graph tools in worker and cortex chat servers
TheDarkSkyXD Apr 13, 2026
8443d10
feat(codegraph): add cypher and rename tools for workers
TheDarkSkyXD Apr 13, 2026
c5d637d
feat(codegraph): add route_map, tool_map, and api_impact tools
TheDarkSkyXD Apr 13, 2026
c142a89
feat(codegraph): real-time graph updates via SSE on file changes
TheDarkSkyXD Apr 13, 2026
eaa88d1
feat(codegraph): multiple graph layout modes — Force, Solar, Cluster,…
TheDarkSkyXD Apr 13, 2026
a1c6ee6
feat(codegraph): mermaid diagram view + hierarchy layout, drop arc/sp…
TheDarkSkyXD Apr 13, 2026
ecf930f
feat(codegraph): add zoom/pan to mermaid view, remove hierarchy layout
TheDarkSkyXD Apr 13, 2026
6c46158
fix(codegraph): prevent server crash on LadybugDB open with stale/cor…
TheDarkSkyXD Apr 17, 2026
e7a2970
chore(codegraph): fix all clippy warnings
TheDarkSkyXD Apr 17, 2026
9f056ab
feat(codegraph): match GitNexus filter icons + show folder item counts
TheDarkSkyXD Apr 17, 2026
1afd4b5
fix(codegraph): prevent reindex crash on existing projects with stale…
TheDarkSkyXD Apr 17, 2026
5a9b913
feat(codegraph): replace mermaid view with React Flow relationship gr…
TheDarkSkyXD Apr 22, 2026
b1039c4
feat(codegraph): redesign filter color picker with Swatches/Spectrum …
TheDarkSkyXD Apr 22, 2026
d630d23
chore(build): windows zstd linker fix, streaming-iterator dep, .gitig…
TheDarkSkyXD Apr 22, 2026
ccc054b
feat(desktop): allocate debug console on Windows for sidecar logs
TheDarkSkyXD Apr 22, 2026
fff8bc7
feat(codegraph): auto-generated language map from GitHub linguist
TheDarkSkyXD Apr 22, 2026
2eea872
feat(codegraph): add HTML, Prisma, JCL, and COBOL mainframe support
TheDarkSkyXD Apr 22, 2026
497cbb7
feat(codegraph): externalize tree-sitter queries, add AST cache + par…
TheDarkSkyXD Apr 22, 2026
319af57
feat(codegraph): add config-manifest + semantic-extractor subsystems
TheDarkSkyXD Apr 22, 2026
85ea634
feat(codegraph): phase-based pipeline orchestration
TheDarkSkyXD Apr 22, 2026
b9b0ab9
feat(codegraph): real vector embeddings + native LadybugDB FTS
TheDarkSkyXD Apr 22, 2026
8d76fdd
feat(codegraph): schema v12, new node labels, BM25 search fast-path
TheDarkSkyXD Apr 22, 2026
b10685a
feat(codegraph): manager threads new phases, file-walk language break…
TheDarkSkyXD Apr 22, 2026
414eead
feat(api): schema_alias layer for GitNexus compat + streaming graph e…
TheDarkSkyXD Apr 22, 2026
1306ab3
chore: misc clippy cleanup + thread codegraph_manager through test bo…
TheDarkSkyXD Apr 22, 2026
f5b6faf
feat(projects): language breakdown, re-index action, drop stale tabs
TheDarkSkyXD Apr 22, 2026
4ae4acb
feat(codegraph-ui): NDJSON streaming + canonical label taxonomy + rin…
TheDarkSkyXD Apr 22, 2026
95dd18d
test(codegraph): parity harness with per-language fixtures
TheDarkSkyXD Apr 22, 2026
192386e
feat(codegraph-ui): alpha slider + HSV-stable spectrum picker
TheDarkSkyXD Apr 22, 2026
5278fe5
fix(projects): live language breakdown + drop "0.0%" rows
TheDarkSkyXD Apr 22, 2026
e272601
fix(codegraph): auto-recover from native crash during LadybugDB open
TheDarkSkyXD Apr 23, 2026
fc338af
fix(interface): tolerate sidecar warmup and plug SSE/health lifecycle…
TheDarkSkyXD Apr 23, 2026
e7b7f62
refactor(codegraph-ui): folder-based layer clustering with portal/bre…
TheDarkSkyXD Apr 23, 2026
af55bdf
fix(codegraph-ui): disable connection handles on node cards
TheDarkSkyXD Apr 23, 2026
880153f
feat(codegraph-ui): mermaid-aware search + filters + navigation
TheDarkSkyXD Apr 23, 2026
1edc2d1
fix(codegraph-ui): edge filter actually hides edges, no dangling lines
TheDarkSkyXD Apr 23, 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
9 changes: 9 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
[alias]
bump = "run --quiet --bin cargo-bump --"

# Debug builds use larger stack frames (no optimizations) and overflow
# the default 8 MB stack on deep call chains. Bump to 16 MB.
[target.x86_64-pc-windows-msvc]
# /STACK:16MB for deep call chains in debug mode.
# /FORCE:MULTIPLE resolves duplicate zstd symbols between lbug's bundled
# zstd and the zstd-sys crate (used by lance). Both provide identical
# symbols; the linker picks the first definition.
rustflags = ["-C", "link-args=/STACK:16777216 /FORCE:MULTIPLE"]
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@ docs/phases/
docs/specs/
PROJECT-STATUS.md
.worktrees/
reference/
.gitnexus
Loading