npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@mathiasdangl/vibe-studio

v0.1.6

Published

VibeStudio — dein lokaler Vibing-Agent. Beschreibe deine Idee, VibeStudio übernimmt Architektur, Versionskontrolle und Hosting.

Readme

VibeStudio

Dein lokaler Vibing-Agent. Beschreibe deine Idee — VibeStudio übernimmt Architektur, Code, Versionskontrolle (GitHub) und Hosting (Cloudflare). Komplett mit deinen eigenen Zugängen: dein LLM-Key (oder lokal via Ollama), dein GitHub, dein Cloudflare. VibeStudio hat mit Abrechnung nichts zu tun — pay as you can.

Was es macht

  • Vibing statt Coding: Du chattest, der Agent plant, baut und strukturiert die App (Vite + React + Hono auf Cloudflare Workers).
  • Automatische Versionskontrolle: Jede Änderung = ein gesicherter „Stand". Timeline in der UI, Ein-Klick-Rückkehr zu jedem Stand, automatische Sicherung in deinem GitHub-Repo.
  • Automatisches Veröffentlichen: Nach jedem grünen Build deployt VibeStudio auf deinen Cloudflare-Account (*.workers.dev). Registriert auch die workers.dev-Subdomain für frische Accounts.
  • Build-Gate mit Auto-Reparatur: Es wird nie ein kaputter Stand gespeichert oder veröffentlicht. Schlägt der Build fehl, repariert der Agent (max. 5 Versuche) oder kehrt zum letzten guten Stand zurück.
  • Provider-agnostisch: Jeder OpenAI-v1-kompatible Endpoint funktioniert — Ollama (lokal, kostenlos), Anthropic, OpenAI, OpenRouter, eigene Endpoints.

Schnellstart

Du kannst VibeStudio direkt ohne Installation starten:

npx --package @mathiasdangl/vibe-studio vibe-studio

Tipp: Der Terminal-Link enthält deinen Sitzungsschlüssel — kopiere den Link und öffne ihn im Browser.

Danach führt dich das Onboarding durch drei Schritte:

  1. KI-Modell — Ollama lokal oder API-Key (Anthropic/OpenAI/OpenRouter/eigener Endpoint). Pflicht. Es gibt einen echten Probelauf inkl. Tool-Calling-Test.
  2. GitHub — Personal Access Token (classic, repo-Scope). Optional, sichert dein Projekt als Git-Repo in die Cloud.
  3. Cloudflare — API-Token (Vorlage „Edit Cloudflare Workers" plus zusätzliche Berechtigung Account > D1 > Edit) + Account-ID. Optional, ermöglicht das automatische Hosting deiner App & Datenbank!

Sicherheit

  • Server bindet ausschließlich an 127.0.0.1, Host-Header-Validierung (DNS-Rebinding-Schutz), Session-Token pro Start für alle API-Calls.
  • Alle Schlüssel liegen nur lokal in ~/.vibe-studio/config.json (chmod 600) und werden nie an die Browser-UI gesendet.
  • Git-Push authentifiziert über GIT_ASKPASS — der Token landet nie in .git/config oder der Prozessliste.
  • Agent-Dateizugriffe sind auf den Projektordner beschränkt (Pfad-Validierung, .git/node_modules tabu); Kommandos sind auf npm begrenzt und laufen ohne Shell.

Architektur

bin/vibe-studio.js     Launcher (npx vibe-studio)
server/                Hono-Server (localhost), SSE-Events
  agent/               Vibing-Agent: Loop, Tools, System-Prompt
  gitops.ts            Commits, Timeline, konfliktfreies Restore
  github.ts            Token-Check, Repo-Erstellung
  cloudflare.ts        Token-Check, Subdomain-Registrierung, wrangler deploy
  preview.ts           vite-dev-Prozess pro Projekt (Live-Vorschau)
template/              Eingebettetes Projekt-Template (Vite+React+Hono+Wrangler, Versionen gepinnt)
ui/                    Browser-UI (React, Apple-Design)

Projekte liegen unter ~/VibeStudio/<name> — echte Git-Repos, die dir gehören. Du kannst sie jederzeit ohne VibeStudio weiterentwickeln (npm run dev / npm run deploy im Projektordner).

Voraussetzungen

  • Node.js ≥ 20, git
  • Für die Live-Veröffentlichung: kostenloses Cloudflare-Konto
  • Für die Sicherung: kostenloses GitHub-Konto