A Free Directory for Apps Built with OpenClaw & Vibe Coding - Clawsource.AI
What if there was a place to discover, share, and showcase every app, extension, and tool built using OpenClaw? Welcome to ClawSource.ai — a community-driven directory for vibe-coded projects. Essentially Our Community in WebApp Form! Join it or Build your own! All Projects will also be uploaded here now! What Is It? A web platform where developers share: 🧩 Chrome Extensions 📱 Mobile Apps 🤖 AI Agents ⚡ Productivity Tools 🎨 UI Components & Templates 🔌 Integrations & Plugins Built with OpenClaw? Vibe coded? It goes here. ✨ Features 📂 Submit Your App Repo link, description, screenshots Tags: extension, mobile, web, ai, automation One-click submit via GitHub or direct URL 🔍 Discover Search by name, tag, or technology Trending / Recent / Featured sections Filter by: Open Source, Free, Paid ⭐ Rate & Review Community ratings User reviews & feedback Favorite apps collection 🏆 Leaderboard Most starred Most reviewed "Trending This Week" 🔗 Direct Integration Link to live demo GitHub repo Installation guide 🏗️ Tech Stack Frontend Framework: Next.js 14 (App Router) Language: TypeScript Styling: Tailwind CSS + shadcn/ui State: Zustand Icons: Lucide React Backend API: Next.js API Routes / Server Actions Database: PostgreSQL (via Prisma) Auth: NextAuth.js (GitHub OAuth) Storage: AWS S3 (screenshots, logos) Additional Search: Algolia or PostgreSQL full-text Analytics: Vercel Analytics Deployment: Vercel 🗄️ Database Schema prismaCopyCopied! model User { id String @id @default(cuid()) name String? email String @unique image String? githubId String @unique apps App[] reviews Review[] createdAt DateTime @default(now()) } model App { id String @id @default(cuid()) name String slug String @unique description String longDescription String? logo String? screenshots String[] // Links demoUrl String? repoUrl String? websiteUrl String? // Metadata tags String[] techStack String[] pricing String @default("free") // free, paid, freemium // Stats stars Int @default(0)