ccsm 0.19.1

Context-managed session orchestration for AI coding agents — track, resume, and manage work across sessions
{
  description = "cc-tui — Session Registry CLI for Claude Code";

  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
    flake-utils.url = "github:numtide/flake-utils";
  };

  outputs = { self, nixpkgs, flake-utils }:
    flake-utils.lib.eachDefaultSystem (system:
      let
        pkgs = nixpkgs.legacyPackages.${system};
      in
      {
        devShells.default = pkgs.mkShell {
          buildInputs = with pkgs; [
            # Pure Rust — no native build deps needed
          ];

          shellHook = ''
            echo "🦀 cc-tui dev shell"
          '';
        };
      });
}