{"id":48844902,"url":"https://github.com/agentstation/neovex","last_synced_at":"2026-04-19T05:03:40.481Z","repository":{"id":348387509,"uuid":"1194812365","full_name":"agentstation/neovex","owner":"agentstation","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-08T07:24:25.000Z","size":32279,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-08T08:30:31.501Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/agentstation.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-03-28T21:03:55.000Z","updated_at":"2026-04-08T07:24:31.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/agentstation/neovex","commit_stats":null,"previous_names":["agentstation/neovex"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/agentstation/neovex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agentstation%2Fneovex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agentstation%2Fneovex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agentstation%2Fneovex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agentstation%2Fneovex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/agentstation","download_url":"https://codeload.github.com/agentstation/neovex/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agentstation%2Fneovex/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31826897,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T18:05:02.291Z","status":"online","status_checked_at":"2026-04-15T02:00:06.175Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-15T04:30:32.100Z","updated_at":"2026-04-19T05:03:40.462Z","avatar_url":"https://github.com/agentstation.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# neovex\n\n[![CI](https://github.com/agentstation/neovex/actions/workflows/ci.yml/badge.svg)](https://github.com/agentstation/neovex/actions/workflows/ci.yml)\n[![codecov](https://codecov.io/gh/agentstation/neovex/graph/badge.svg)](https://codecov.io/gh/agentstation/neovex)\n[![Release](https://img.shields.io/github/v/release/agentstation/neovex)](https://github.com/agentstation/neovex/releases/latest)\n[![Homebrew](https://img.shields.io/badge/homebrew-agentstation%2Ftap%2Fneovex-orange)](https://github.com/agentstation/homebrew-tap)\n\nSelf-hosted JavaScript backend runtime powered by V8.\n\nNeovex combines tenant-isolated embedded storage, native HTTP and WebSocket\nAPIs, scheduled work, and an optional Convex compatibility surface in a single\nRust binary.\n\n## What It Does\n\n- tenant-isolated document storage with optional per-table schemas\n- document CRUD, explicit queries, and paginated queries over HTTP\n- live query subscriptions over WebSocket\n- durable scheduled mutations and recurring cron jobs\n- an optional V8 runtime and in-repo Convex compatibility layer\n\n## Install\n\n### Homebrew (macOS and Linux)\n\n```bash\nbrew install agentstation/tap/neovex\n```\n\nHomebrew automatically verifies the SHA256 checksum of the downloaded archive.\nOn Apple Silicon macOS, the cask owns the machine helper contract:\n`slp/krunkit/krunkit` is the explicit VM dependency and `gvproxy` ships inside\nthe Neovex archive under `libexec/gvproxy`.\n\n### Download binary\n\nDownload the latest release for your platform from [GitHub Releases](https://github.com/agentstation/neovex/releases/latest).\n\n| Platform | Architecture | Archive |\n|----------|-------------|---------|\n| Linux | x86_64 | `neovex_linux_x86_64.tar.gz` |\n| Linux | ARM64 | `neovex_linux_arm64.tar.gz` |\n| macOS | Apple Silicon | `neovex_darwin_arm64.tar.gz` |\n| Windows | x86_64 | `neovex_windows_x86_64.zip` |\n\nOn macOS, the darwin archive already contains the bundled `libexec/gvproxy`\nhelper. There is no separate Neovex `gvproxy` download.\n\n```bash\n# Example: download and install on macOS Apple Silicon\n# Homebrew is the recommended path. If you install from the tarball directly,\n# preserve the bundled libexec layout so machine helper discovery still works.\ncurl -LO https://github.com/agentstation/neovex/releases/latest/download/neovex_darwin_arm64.tar.gz\ntar xzf neovex_darwin_arm64.tar.gz\nsudo mkdir -p /opt/neovex/bin /opt/neovex/libexec\nsudo install -m 0755 neovex /opt/neovex/bin/neovex\nsudo install -m 0755 libexec/gvproxy /opt/neovex/libexec/gvproxy\nsudo ln -sf /opt/neovex/bin/neovex /usr/local/bin/neovex\n```\n\nDo not move only the `neovex` binary on macOS. The supported machine contract\nexpects the bundled helper layout to stay intact beside the installed binary,\nor to be provided explicitly through `NEOVEX_MACHINE_HELPER_BINARY_DIR`.\n\n### Build from source\n\nRequires [Rust](https://rustup.rs/) stable toolchain.\n\n```bash\ngit clone https://github.com/agentstation/neovex.git\ncd neovex\ncargo install --path crates/neovex-bin\n```\n\n## Verify\n\nEvery release includes SHA256 checksums and [build provenance attestations](https://docs.github.com/en/actions/security-for-github-actions/using-artifact-attestations/using-artifact-attestations-to-establish-provenance-for-builds) signed via [Sigstore](https://www.sigstore.dev/). These provide cryptographic proof that each binary was built by our GitHub Actions CI from this repository's source code.\n\nFor local repo verification, prefer the checked-in entrypoints such as\n`make test`, `make clippy`, `make check`, and the verification-harness scripts.\nThey are guarded with a small single-flight wrapper so accidentally launching\nthe same long-running verification command twice exits quickly instead of\nstarting another full local run.\n\n### Checksum verification\n\nEach release includes a `checksums-sha256.txt` file:\n\n```bash\n# Download the binary and checksums\ncurl -LO https://github.com/agentstation/neovex/releases/latest/download/neovex_darwin_arm64.tar.gz\ncurl -LO https://github.com/agentstation/neovex/releases/latest/download/checksums-sha256.txt\n\n# Verify\nsha256sum --check --ignore-missing checksums-sha256.txt\n```\n\nOn macOS, use `shasum -a 256 --check` instead of `sha256sum`.\n\n### Build provenance attestation\n\nVerify that a binary was built by GitHub Actions from this repository:\n\n```bash\ngh attestation verify neovex_darwin_arm64.tar.gz --owner agentstation\n```\n\nThis checks the Sigstore-signed attestation against the [GitHub attestation ledger](https://github.com/agentstation/neovex/attestations). It confirms the exact workflow, commit, and runner that produced the artifact. Requires the [GitHub CLI](https://cli.github.com/).\n\n## Licensing\n\n- source-available under the [Neovex Community License](LICENSE)\n- plain-English summary in [LICENSING.md](LICENSING.md)\n- commercial terms overview in [COMMERCIAL.md](COMMERCIAL.md)\n- contributor policy in [CONTRIBUTING.md](CONTRIBUTING.md)\n- optional runtime license loading via `--license-file`, `NEOVEX_LICENSE_FILE`, or `./.neovex/license.json`\n- current in-product license status exposed at `GET /debug/license/status`\n\n## Docs\n\n- [Documentation index](docs/README.md)\n- [Architecture](ARCHITECTURE.md)\n- [Current capabilities](docs/reference/current-capabilities.md)\n- [HTTP and WebSocket API](docs/reference/http-api.md)\n- [CLI reference](docs/reference/cli.md)\n- [Convex compatibility](docs/convex/compatibility.md)\n- [Demos](demos/README.md)\n- [Plans index](docs/plans/README.md) for active execution control planes,\n  deferred design work, and archived history\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagentstation%2Fneovex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fagentstation%2Fneovex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagentstation%2Fneovex/lists"}