Stashr.Cli 0.9.1

dotnet tool install --global Stashr.Cli --version 0.9.1
                    
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
                    
if you are setting up this repo
dotnet tool install --local Stashr.Cli --version 0.9.1
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=Stashr.Cli&version=0.9.1
                    
nuke :add-package Stashr.Cli --version 0.9.1
                    

stashr

stashr

A fully .NET, open-source secrets engine — a Vault-compatible API with native .NET integration and a built-in web UI.

Pre-audit release (0.9.0). Not yet independently security-audited. Suitable for evaluation, internal tooling, and non-critical workloads. See the repository for the full security posture.

Packages

  • Stashr.Client — .NET SDK over the HTTP API.
  • Stashr.ConfigurationAddStashr() IConfiguration provider.
  • Stashr.Configuration.Legacy — .NET Framework 4.8 ConfigurationBuilder.
  • Stashr.Cli — the stashr operator CLI (dotnet tool).

Install

dotnet add package Stashr.Client
dotnet add package Stashr.Configuration
dotnet tool install --global Stashr.Cli

Use it

// SDK
var client = new StashrClient(new Uri("https://stashr.internal:8200"), token);
var secret = await client.GetSecretAsync("app/db");
// Bind secrets straight into IConfiguration — no plaintext in appsettings.json
builder.Configuration.AddStashr(o =>
{
    o.Address = new Uri("https://stashr.internal:8200");
    o.Token   = Environment.GetEnvironmentVariable("STASHR_TOKEN");
    o.Path    = "app/db";
});

For .NET Framework apps, register Stashr.Configuration.Legacy.StashrConfigBuilder in web.config to resolve appSettings / connectionStrings from stashr.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last Updated
0.9.1 126 6/18/2026
0.9.0 122 6/18/2026