| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A Graphical Vibe Coding Environment (VCE) for Claude Code
Join our Discord • View All Releases • 📥 Download
⚠️ Note: This project is forked from another codebase and is under rapid development. You may encounter remnants from the original project that need improvement, and things may break as we iterate quickly. We appreciate your patience and welcome contributions to help improve the codebase!
Action Bar - Command Center
Home - Light Mode
Home - Dark Mode |
Claude Code Working |
Watching TBPN while coding |
Reading Mode |
Settings and Usage |
Playtime |
Game Mode |
MCP Integration |
Slide Code is a intuitive desktop application that ideally makes it a bit easier to run multiple Claude Code agents at once
# Clone the repository
git clone https://github.com/longtail-labs/slide.code
cd slide-code
# Install dependencies
npm install
# Start the Electron app
npm run start:appslide-code/
├── apps/ # Electron main & preload processes
├── packages/
│ ├── clients/ # API clients & React hooks
│ ├── core/ # Core business logic with Effect-TS
│ ├── db/ # Database layer with Drizzle ORM
│ └── schema/ # Type definitions & schemas
├── widgets/app/ # React frontend (main UI)
├── game/ # Go game server (BitSplat)
└── bundled_modules/ # Native dependencies (LibSQL)This Electron app setup provides several developer experience advantages:
Built with Effect.ts for robust cross-process communication:
npm install # Install all dependencies
npm run start:app # Start Electron app in development
npm run build # Build for productioncd game
make setup # Install Go tools and dependencies
make dev # Start development server with hot reload
make build # Build production binary
make clean # Clean build artifactsnpm run db:migrate:generate # Generate new migration
npm run db:migrate:apply # Apply migrations
npm run studio # Open Drizzle StudioInstall Dependencies
npm installBuild the Application
# For production build
npm run build:prod
# For beta build
npm run build:betaProcess the build
# For production build
npm run make:prod
# For beta build
npm run make:betaBuild with Conveyor
# Build for local testing (uses conveyor.local.conf)
npm run compile:local
# The built application will be in /output. Move the app to your Applications folder to testThe project supports automated nightly beta releases via GitHub Actions:
Contributing to Slide Code is straightforward thanks to our strongly-typed architecture:
The entire codebase is strongly typed across all boundaries, making it hard to introduce runtime errors:
The strong typing means if your code compiles, it's likely to work correctly!
This project is licensed under the MIT License - see the LICENSE file for details
| Back | FazBrowse Home | New Git URL |