Top Projects Launching Today

Plug Your Build is a permanent, human-reviewed directory for indie makers. Every listing gets a dofollow link to your site. List free in exchange for embedding our badge, or pay to skip the trade. SaaS, newsletters, courses, devtools, side projects, and everything in between. Built for makers, not launch days.
Proven delivers a powerful, flexible solution for organizations that need experienced executive leadership without the long timelines, overhead, or commitment of traditional hiring. With Proven, you gain instant access to vetted executive leaders and fully embedded teams who integrate seamlessly into your operations from day one.
Narratone is a storytelling platform that helps people preserve their life stories and memories in beautifully crafted books. Through guided prompts, voice-to-text, and an easy, supportive process, Narratone makes it simple for anyone to reflect, organize, and share the moments that shaped them. Each book becomes a meaningful legacy piece — a personal history to be read, remembered, and passed down to future generations.
Seedream 4.0AI Image StudioTransform your ideas into stunning images with cutting-edge AI technology.Create professional visuals in seconds—no design skills needed.Lightning FastHigh QualityEasy to UseStart from text or images, then browse what the community is creating.Wan AI - Create stunning AI-generated videos online for free. Transform text or images into professional-quality videos and voiceovers with our multimodal AI platform.

Meigen is an AI video generator and prompt gallery for creating short videos from text, images, and reusable creative prompts.
Rapid Inventory provides inventory management for businesses using QuickBooks Desktop (Pro, Premier, Enterprise). With more than 17+ years in the industry and over 400 satisfied customers, it enables real-time, two-way syncing of inventory, orders, and locations. It offers features such as multiple warehouse management, FIFO and FEFO stock rotation, serial and lot tracking, mobile barcode scanning, label printing, and efficient pick lists. Being web-based, it allows anywhere access and rapid onboarding. Emphasizing ease of use and value, Rapid Inventory includes clear pricing, complimentary training, QuickBooks-hosted compatibility, and support - perfect for SMBs aiming to streamline inventory operations and improve visibility.
ClicTréso est un outil de facturation et comptabilité pour association et auto-entrepreneur. EN: ClicTréso is an invoicing and accounting tool for associations and self-employed entrepreneurs.
Best Temp Mail – Deliverability-Focused Temporary Email PlatformReliable Temporary Email Built for Real Inbox DeliveryBest Temp Mail is a deliverability-first temporary email platform designed to solve one of the biggest issues users face with disposable email services: missing emails. Many temporary inbox providers fail to deliver verification codes, OTPs, and account activation emails due to poor infrastructure and weak authentication settings. Best Temp Mail addresses this problem by using properly configured email infrastructure focused on reliability, security, and consistent inbox access.The platform implements industry-standard email authentication and security technologies, including SPF, DMARC with a reject policy, TLS encryption, and reverse DNS configuration. These systems help ensure that incoming emails are securely delivered and accepted by the platform without unnecessary rejection or filtering.Instant Disposable Inboxes with Flexible AccessBest-TempMail.com allows users to create instant temporary inboxes within seconds. The service is ideal for account verification, software testing, online registrations, development workflows, and protecting personal email addresses from spam.Users can choose between:Short-Term Temporary Inboxes10-minute disposable email addressesQuick OTP and verification code accessFast sign-ups and one-time registrationsExtended Temporary InboxesInbox access for multiple daysIdeal for ongoing testing or temporary projectsAbility to extend inbox lifespan when neededCross-Device Session AccessThe platform also supports seamless cross-device access through QR-based session sharing. Users can continue using the same inbox on mobile, desktop, or tablet devices without creating accounts or managing passwords.Privacy-First Tools for Developers and TeamsIn addition to temporary email services, Best Temp Mail offers a growing collection of productivity, security, and developer-focused tools. The platform currently includes more than 45 built-in utilities, with plans to expand to over 200 tools in the future.Included Tools and FeaturesEmail authentication testingDNS analysis toolsBlacklist monitoringEmail validation utilitiesJSON formatting and beautifyingHashing and encoding toolsData conversion utilitiesDeveloper workflow helpersA major advantage of the platform is its privacy-first architecture. Many tools run entirely client-side, meaning user data is processed locally in the browser instead of being stored on external servers. This approach improves privacy, security, and overall trust.Built for Modern WorkflowsBest Temp Mail is designed for:DevelopersQA testersStartupsCybersecurity professionalsBusinesses and remote teamsPrivacy-conscious usersWhether users need secure disposable inboxes for application testing, temporary account registrations, or spam protection, the platform combines reliable email delivery, advanced security standards, and workflow efficiency into one complete solution.Why Best Temp Mail Stands OutKey BenefitsDeliverability-focused infrastructureSecure email authentication setupInstant disposable inbox creationFlexible inbox expiration optionsCross-device QR session sharingPrivacy-first client-side toolsGrowing ecosystem of developer utilitiesNo unnecessary account creationBest Temp Mail is more than just a temporary email service. It is a complete platform built around reliable email access, privacy, security, and productivity for modern users and development teams.
Ternwheel gives artists, managers, and crews a single platform to plan, budget, and run tours profitably. It connects logistics, communication, and payments so teams stay aligned in real time. With built-in tools for budgeting, settlements, and expense tracking, Ternwheel removes the chaos of spreadsheets and endless messages. It’s the smarter, faster way to manage live entertainment operations from start to finish.
Yesterday's Launches

Repo-local continuity runtime for AI coding agents. Inspectable, visual, portable, cross-agent.The problem is well known by every coder: every new Codex / Claude / Copilot and other coding agent session kept rediscovering the same repo structure, files, decisions, failed commands, current task state, and validation steps, wasting context and tokens. On the other hand if you change from an agent to another they have to start from the scratch without reusing what the previous one already learnt.First shotsI have been trying to work around that problem with different approaches: small handoffs, heavy memory systems, context engines...ContinuityI finally found it: Operational continuity for AI coding agents. I built an open-source continuity runtime so agents don’t restart from zero every session, and it already made my own AI coding workflow feel much less like restarting from scratch every time.The continuity idea is not to add more hidden memory or dump more context into the prompt. AICTX keeps operational continuity inside the repo:active Work State and next action;execution summaries and handoffs;explicit decisions;known failures and resolved failure patterns;strategy hints from successful prior work;execution contracts and contract-compliance signals;optional RepoMap structural entry points;continuity quality signals for stale, missing, demoted, obsolete, or unverified context;read-only Task Context Packs for focused task-specific context;lifecycle diagnostics for incomplete or unfinalized sessions;optional Git-portable continuity for small teams.The next agent should resume from what actually happened, not infer everything again from README + chat history.Cross-Agent continuityI’ve been switching between Codex, Claude Code and Copilot depending on the task and, honestly, sometimes depending on which one still has credits left.Every time I switch from one agent to another, or even start a new session with the same agent, I don’t just lose chat history.It feels like each agent/session starts from a different version of the project reality.And again and again I find myself repeating context.The principle I follow is:different agents, different sessions, same repo continuity.One agent leaves Work State, failures, decisions, handoffs and validation evidence in the project. Another agent (or a new session of the same one ) can pick it up later through MCP tools, with CLI fallback when needed.Execution ContractsEach resume can include a compact contract for the next agent: first action, edit scope, canonical validation command, expected evidence, and finalize instruction. The goal is not only “remember context”, but guide the next execution safely.Continuity qualityScores repo-local continuity freshness and flags stale, missing, demoted, obsolete, or unverified context so that agents can avoid trusting old memory blindly and treat weak continuity as background evidence.Continuity ViewI’m experimenting with a deterministic Mermaid continuity view generated from repo-local AICTX artifacts. It shows the current operational state of the repo visually: Work State, open handoffs, relevant failures, execution contracts, summaries, RepoMap hints, and portable continuity status.Here you can see what it looks like.The link to this view can be returned after each task, so the next session has an inspectable continuity map. I’m still working on making it easier to read.PortabilityThe continuity lives with the repository. The idea is that useful operational state should not be locked inside one chat, one vendor, one local machine, or one agent tool. If the repo moves, the continuity can move with it ... if you want it to!Easy to usepip install aictxaictx installaictx init# Then keep using your coding agent normallyMCP supportIt also provides MCP support so compatible agents can access AICTX continuity directly as tools, resources and prompts instead of only relying on repo instructions and CLI commands.The MCP server is local-first. It is not a cloud memory service, not a daemon you have to manage manually, and not a generic shell/filesystem server. Compatible agents launch it locally through stdio.I’m also packaging Claude Code and Codex plugin artifacts around the same model: MCP-first when available, CLI fallback when not. Copilot support remains best-effort through repo instructions and VS Code MCP config where supported.The medium-term benefitAgent-based development starts to feel less like a sequence of isolated chats and more like an ongoing engineering process:less rediscovery;better context managementfewer repeated failed commands;clearer handoffs;better validation discipline;less instruction boilerplate once agents can call AICTX through MCP;a cleaner path for Claude, Codex and Copilot integrations;easier switching between Codex, Claude, Copilot or other agents;and a repo that can explain its current state to the next session.Stop onboarding your coding agents like rookies every session

OnlineWhiteboard.co is a simple browser-based whiteboard tool designed for quick visual collaboration. It lets users create and share a canvas in seconds, making it useful for brainstorming, teaching, meetings, planning, and remote team discussions. The platform focuses on speed and ease of use, so users do not need a complicated setup before they start sketching ideas or working together. OnlineWhiteboard.co can be helpful for students, teachers, designers, product teams, and clients who need a lightweight space to explain concepts visually. Its main appeal is instant collaboration without the friction of heavy design or project-management tools.
Our KDP cover creator with a live KDP cover calculator and KDP cover size calculator. Start from a free KDP cover template and export print‑ready PDFs with bleed.
Ketchup AI is a 100% free AI image generator that transforms text into stunning images in 5 seconds. No registration, no limits, no watermarks.
This Month's Best
Aureli is a net worth tracking app for people who are sick of using spreadsheets. It's AI enabled and can update automatically.
EduSolver is an AI homework helper and solver for students. Upload a photo or ask any question to get instant, step-by-step solutions for math, science, writing, history and more — with clear explanations available 24/7. AI-powered homework help that actually teaches you, not just gives answers.
MirrorFly is a popular CPaaS solution that comes with al-time communication features including video, voice and chat features along with capabilities like AI Voice Agents, activity feeds and live streaming. These features come with easily embeddable APIs and SDKs that can be added to any web or mobile app. The solution is compatible with tech stacks of all kinds, traditional and modern including React, React Native, Flutter, Angular, VueJS, JavaScript, Swift and Kotlin. The extent of its flexibility is one of its key highlights, and a reason to be the most popular choice among developers.
VibeBot is an AI-powered Discord bot builder that helps users create, customize, and launch their own Discord bots without needing to write code. Instead of starting from scratch or hiring a developer, users can describe the bot they want in plain language, choose features, adjust settings, and deploy a branded bot directly to their Discord server.
2026 Statistics
Sponsors
Free AI Video Generator, Face Swap & Effects
Built something cool? Launch it properly.
AI-backed launches on a high-DR domain
Get Your Product Listed in 100+ Directories
Your new website, email address & cloud storage
Domain names for Indie Makers
Launch a job board in 5 minutes.
Translate image text instantly.
Streak Challenge
days streak
🚀 Why build streaks?
- • Products from high-streak users get featured placement
- • Automatic promotion on the main page
- • Priority visibility for all submissions
- • Exclusive community badges
🔥 Active users = More visibility = More success!


