Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
21f91ad
feat(postgres, server): add studio models and get account by ID endpoint
martsokha Jan 15, 2026
07e0669
feat(postgres, server): add file versioning, chat handler, docs, remo…
martsokha Jan 16, 2026
f7a6503
feat(runtime): add nvisy-runtime crate with archive service
martsokha Jan 19, 2026
1edc1e9
feat(runtime, opendal): rename workflow to runtime, add cloud storage…
martsokha Jan 19, 2026
a632410
feat(opendal, vector): add nvisy-vector crate, reorganize backend con…
martsokha Jan 19, 2026
b17f131
Merge branch 'main' into feature/studio
martsokha Jan 19, 2026
1f12f0b
chore: move opendal, runtime, vector to integrations/, remove chrono
martsokha Jan 19, 2026
f139015
feat(integrations): add nvisy-data crate, move nvisy-rig, remove pipe…
martsokha Jan 19, 2026
c490e92
feat(nats): refactor kv, object, stream modules with marker trait pat…
martsokha Jan 20, 2026
81f33c3
chore: sort workspace members and move nvisy-vector deps to workspace
martsokha Jan 20, 2026
8ec4935
feat(dal, runtime): add nvisy-dal crate, provider params/credentials …
martsokha Jan 20, 2026
2cc3aed
docs: add crates README
martsokha Jan 20, 2026
04bcd36
feat(runtime): reorganize provider module structure and fix webhook s…
martsokha Jan 21, 2026
93e2aaf
feat(rig): refactor provider module with type-safe models and feature…
martsokha Jan 21, 2026
0d35063
feat(rig): add agent module, refactor providers with Arc for cheap cl…
martsokha Jan 21, 2026
b101728
feat(runtime): add AI providers, IntoProvider trait, and refactor gra…
martsokha Jan 22, 2026
2629c38
feat(runtime): split graph module into definition and compiled types
martsokha Jan 22, 2026
7f4d8fa
refactor(runtime): reorganize graph module structure
martsokha Jan 22, 2026
6e63670
refactor(runtime): reorganize module structure with definition/graph …
martsokha Jan 22, 2026
a02d121
feat(runtime): reorganize graph module with definition/compiled separ…
martsokha Jan 22, 2026
2fbaa4f
refactor(dal): reorganize core traits with associated types and split…
martsokha Jan 23, 2026
e0b354b
feat(rig): implement IntoProvider trait for CompletionProvider and Em…
martsokha Jan 23, 2026
e69b297
refactor(rig): add shared credential types and remove runtime backend…
martsokha Jan 23, 2026
92b2bf4
refactor(rig): reorganize agent module with typed tools and memory
martsokha Jan 24, 2026
e44e82f
docs: standardize crate documentation and metadata
martsokha Jan 26, 2026
cbf1349
feat: fix github actions and remove security vulnerabilities
martsokha Jan 26, 2026
e655424
feat: add Python packages (nvisy-dal, nvisy-rig) and update dependabot
martsokha Jan 26, 2026
ca20700
refactor(dal): restructure datatypes, contexts, and params
martsokha Jan 26, 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
  •  
  •  
  •  
45 changes: 43 additions & 2 deletions .github/dependabot.yaml → .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ updates:
prefix-development: "chore(deps-dev)"
rebase-strategy: "auto"
versioning-strategy: "auto"
# Group patch and minor updates together to reduce PR noise
groups:
rust-dependencies:
patterns:
Expand All @@ -38,8 +37,50 @@ updates:
- "chore"
commit-message:
prefix: "chore(actions)"
# Group all GitHub Actions updates together to reduce PR noise
groups:
github-actions:
patterns:
- "*"

# Version updates for Python packages
- package-ecosystem: "pip"
directory: "/packages/nvisy-dal"
schedule:
interval: "weekly"
timezone: "Europe/Berlin"
day: "monday"
time: "04:00"
open-pull-requests-limit: 5
labels:
- "chore"
- "python"
commit-message:
prefix: "chore(deps)"
groups:
python-dependencies:
patterns:
- "*"
update-types:
- "minor"
- "patch"

- package-ecosystem: "pip"
directory: "/packages/nvisy-rig"
schedule:
interval: "weekly"
timezone: "Europe/Berlin"
day: "monday"
time: "04:00"
open-pull-requests-limit: 5
labels:
- "chore"
- "python"
commit-message:
prefix: "chore(deps)"
groups:
python-dependencies:
patterns:
- "*"
update-types:
- "minor"
- "patch"
11 changes: 9 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ target/
**/*.rs.bk
*.pdb

# Python
__pycache__/
*.py[cod]
.venv/
*.egg-info/
.ruff_cache/
.pytest_cache/

# Generated files
*.pem
*.backup
Expand All @@ -28,7 +36,6 @@ crates/nvisy-postgres/src/schema.rs.bak
# Build output
dist/
build/
output/

# Environment files
.env*
Expand All @@ -50,4 +57,4 @@ temp/
.ignore*/
LLM.md
.claude
pgtrgm/
CLAUDE.md
Loading
Loading