Skip to content

KevinBian107/vibes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vibes

What this is

vibes is a monorepo of lightweight, self-contained tools I reach for while doing research — dashboards, viewers, visualizers, small utilities. Each one lives in its own top-level directory and is independent; they just share a single conda environment so nothing is ever more than conda activate vibes away.

Inspired by @LeoMeow123/vibes — the idea being that research code accumulates a lot of little things, and they deserve a home together rather than scattered across a dozen orphan repos.

Layout

vibes/
├── README.md              # this file
├── environment.yml        # shared conda env for every vibe
├── assets/                # logos, shared static assets
├── shared/                # reusable helpers (grows as vibes overlap)
├── vibes.py               # discover / list the available vibes
│
├── gpu-access-board/      # live SSH dashboard: metrics, terminals, file explorer
│   └── README.md
├── gpu-dashboard-agent/   # Gist-backed monitor, no server, no SSH
│   └── README.md
│
└── <your next vibe>/
    └── README.md

Every vibe is a directory with its own README.md describing what it is and how to run it. The top-level vibes.py script discovers them.

Setup (once)

conda env create -f environment.yml
conda activate vibes

The vibes env is the union of dependencies across all vibes. Add what your vibe needs to environment.yml when you add a new one.

Using a vibe

List what's here:

python vibes.py

Read a specific vibe's instructions:

python vibes.py gpu-access-board

Then run it per its README.

Current vibes

vibe what it does
gpu-access-board live SSH dashboard — metrics, terminals, file explorer, Claude Code launcher for remote GPU clusters
gpu-dashboard-agent server-less GPU monitor — workstation agents push to a GitHub Gist, static dashboard reads it

Adding a new vibe

  1. Create a new top-level directory: mkdir my-vibe
  2. Drop in a README.md that explains what it does and how to run it
  3. Add any new dependencies to the root environment.yml
  4. (Optional) If it imports from a previous vibe, consider promoting the shared code to shared/

Keep vibes small and self-contained. A vibe shouldn't need a framework — it just needs to work.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors