Inspired by SenbonZakura, sen maps application code and backing services into a live TUI. It combines source analysis with runtime telemetry so you can see where time, memory, and activity are showing up across functions, files, calls, and dependencies.
Sen currently supports Go and Node.js applications plus Redis and PostgreSQL services.
- Static call-graph analysis
- Process and memory measurements
- CPU profiles and runtime traces
- Source-level mapping into a TUI-owned
RuntimeGraph
Using Nix:
# Try before installing
nix run github:briheet/sen
# Run a project in the TUI
nix run github:briheet/sen -- run ./examples/go/postgresredis
# Install
nix profile install github:briheet/senUsing Go:
# Try before installing
go run github.com/briheet/sen/cmd/sen@v0.1.0
# Run a project in the TUI
go run github.com/briheet/sen/cmd/sen@v0.1.0 run ./examples/go/postgresredis
# Install
go install github.com/briheet/sen/cmd/sen@v0.1.0Start the example PostgreSQL and Redis services:
docker compose -f examples/go/postgresredis/compose.yaml up -dBuild sen from the repository root:
go build -trimpath -ldflags='-s -w' -o bin/sen cmd/sen/main.goRun the example project:
./bin/sen run ./examples/go/postgresredisReady to use Sen with your own project? See the setup guides for Go services and Node.js services.
Sen is available under the MIT License.

