dstack-cli 0.1.0

Development stack for AI-assisted multi-repo work — CLI binary
Documentation

dstack — Development stack for AI-assisted multi-repo work.

This crate provides both a CLI binary (dstack) and a library for:

  • Persistent memory (file-based or Eruka-backed)
  • Multi-repo git sync
  • Service deployment with smoke tests
  • Pre-commit quality gates

Example

use dstack::config::Config;

let cfg = Config::load().unwrap();
println!("Memory backend: {}", cfg.memory.backend);