This repository has been rebranded and migrated to a new location.
Tolvex is now located at:
The Medi programming language has been officially rebranded to Tolvex. All development, releases, and documentation have moved to the new repository.
| Component | Old (Medi) | New (Tolvex) |
|---|---|---|
| Language Name | Medi | Tolvex |
| File Extension | .medi |
.tlvx |
| Compiler Binary | medic |
tlvxc |
| Package Manager | medipack |
tvx |
| Package Registry | medipacks.io |
formulary.tolvex.dev |
| Manifest File | medi.toml |
formula.toml |
| Lock File | medi.lock |
formula.lock |
| Packages Called | packages/crates | formulas |
| Python Bindings | pymedi |
pytolvex |
| Compiler Crates | medic_* |
tlvxc_* |
| Stdlib Crates | medi_* |
tolvex_* |
| GitHub Org | MediLang | Tolvex |
| Repository | medi | tolvex |
| Website | medi-lang.org | tolvex.dev |
| Social Media | @MediLangHQ | @TolvexLang |
git clone https://github.com/Tolvex/tolvex.git
cd tolvexcargo build --workspace --release# Compiler
cargo install --path compiler/tlvxc
# Package Manager
cargo install --path compiler/tvx- Official Website: https://tolvex.dev
- Documentation: https://tolvex.dev/docs
- GitHub: https://github.com/Tolvex/tolvex
- Changelog: CHANGELOG.md
All historical releases (v0.0.1 through v0.1.15) have been preserved and migrated to the new repository. The first official Tolvex release is:
This release marks the complete transition from Medi to Tolvex with all naming conventions, tooling, and documentation updated.
The rebrand from Medi to Tolvex reflects the evolution of the project's vision and scope. The new name better represents the language's mission to empower healthcare analytics with secure, fast, and clinician-friendly tools.
For detailed information about the rebranding process, see REBRAND.md in the new repository.
- New Repository: github.com/Tolvex/tolvex
- Issues & Discussions: github.com/Tolvex/tolvex/issues
- Contributing Guide: CONTRIBUTING.md
- Community: tolvex.dev/community
- X/Twitter: @TolvexLang
If you have existing Medi code, here's how to migrate:
# Rename all .medi files to .tlvx
find . -name "*.medi" -exec rename 's/\.medi$/.tlvx/' {} \;Rename medi.toml β formula.toml and update package references:
# Old (medi.toml)
[package]
name = "my-app"
version = "0.1.0"
# New (formula.toml)
[package]
name = "my-app"
version = "0.1.0"Replace namespace references in your code:
medi::*βtolvex::*use medi_stats::*βuse tolvex_stats::*
# Old commands
medic build
medipack add fhir-utils
# New commands
tlvxc build
tvx add fhir-utilsIf you have questions about the migration or encounter any issues:
- Open an issue in the new repository
Thank you for your support of the Medi project. We're excited to continue this journey as Tolvex and look forward to building the future of healthcare programming together!
β The Tolvex Team
Last Updated: February 18, 2026
Migration Effective: v0.1.6