Open-LaunchOpen-Launch

Categories

Browse Categories

APIs & Integrations235 projectsAR/VR25 projectsArtificial Intelligence1337 projectsBlockchain & Crypto61 projectsBusiness Analytics146 projectsCMS & No-Code88 projectsCross-Platform Development27 projectsData Science & Analytics83 projectsDatabases78 projectsDesign Tools434 projectsDevOps & Cloud44 projectsDeveloper Tools356 projectsDirectory191 projectsE-commerce147 projectsEducation Tech204 projectsFinance & FinTech136 projectsGame Development80 projectsGaming Tech108 projectsGraphics & Illustration118 projectsGreen Tech8 projectsHardware15 projectsHealth Tech106 projectsInternet of Things (IoT)26 projectsLaunch Platform65 projectsMachine Learning27 projectsMarketing Tools508 projectsMobile Development70 projectsNatural Language Processing24 projectsOnline Community120 projectsOpen Source87 projectsPlatforms221 projectsProductivity942 projectsPrototyping19 projectsRobotics4 projectsSaaS1200 projectsSales Tools122 projectsSecurity64 projectsServerless11 projectsTesting & QA22 projectsUI/UX87 projectsWearables5 projectsWeb Development273 projects

Quick Access

Trending NowBest of Month

Streak Challenge

0

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!

Sign in to start earning rewards
logoOpen-Launch

© 2026 Open-Launch. All rights reserved.

Open source project by Simon

Discover

  • Trending
  • Categories
  • Submit Project
  • Alternatives

Resources

  • Pricing
  • Sponsors
  • Blog

Legal

  • Terms of Service
  • Privacy Policy
  • Attribution Badges

Connect

  • GitHub
  • Twitter / X

Free Tools

Bet Calculator

Earned Badges

Featured on Startup Fame

Developer Tools

FleetProxy logo

1. FleetProxy

FleetProxy delivers proxy infrastructure built for developers and data teams who need requests that get through. Choose residential, rotating mobile LTE, static ISP, or datacenter proxies across 200+ locations worldwide. Mobile proxies anchor the lineup with carrier-grade IP reputation that hard targets respect, while datacenter options handle high-volume jobs at low cost. You get country-level targeting, flexible session control, and simple authentication that has your first request routed in minutes. Plans scale from a single project to enterprise workloads, covering web scraping, ad verification, price monitoring, and market research.

APIs & IntegrationsDeveloper ToolsSecurity
0
98
Agents Directory logo

2. Agents Directory

Agents Directory is a curated repository of skills, MCP servers for AI agents including Claude, Codex, Hermes, and others.The platform lets developers and AI enthusiasts discover, compare, and install plugins, MCP servers, skills, and workflows to enhance their AI agent functionality. Whether you're building with Claude or any other agent framework, find the tools and integrations you need in one centralized location.

Artificial IntelligenceDeveloper ToolsDirectory
0
109
ChattyBox logo

3. ChattyBox

ChattyBox is a simple AI chatbot for websites, docs, CMS sites, and help centers.Create a project, scrape your website content, test the chatbot, and add it to your site. ChattyBox answers visitor questions using your own content and includes source citations so users can see where each answer came from.It is built for SaaS sites, documentation sites, and support-heavy websites that want a self-serve setup without booking a demo or building a custom AI pipeline.

Developer ToolsSaaSWeb Development
0
76
The Tool Empire logo

4. The Tool Empire

Tools should be free, fast, and privateWe started The Tool Empire because we were tired of tools that require sign-ups, slow down with server round-trips, or — worse — quietly harvest your data.Every tool we build runs entirely in your browser. There is no server receiving your JSON, your text, or your financial data. What you type stays on your device. Always.We believe utility software should be a public good. No paywalls, no "pro" tiers, no email required. Just open the tool and get to work.

Design ToolsDeveloper ToolsWeb Development
0
104
UtilVox logo

5. UtilVox

UtilVox is a privacy-first suite of 170+ free browser utilities for PDF, image, and developer workflows. All tools run locally inside your browser via WebAssembly with zero server uploads, ads, or sign-ups.

Developer ToolsProductivitySaaS
0
116
Plug Your Build logo

6. Plug Your Build

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.

Developer ToolsDirectoryMarketing Tools
0
119
Tekyous logo

7. Tekyous

Tekyous helps developers and founders plan their tech stack in one place. Browse a curated tools catalogue, drag tools onto an interactive canvas, and get real-time hints on compatibility and gaps as you build.What you can do:Start from a questionnaire for tailored recommendations, or explore freely in sandbox modeGet instant feedback on tool relationships and conflictsSwap tools and compare alternatives on the canvasExport your stack as JSONThe catalogue covers web development, data tooling, automation, and infrastructure — over one hundred tools in total, and that number will keep growing.Currently in beta. Visual builder and catalogue are fully functional. User accounts, saved stacks, and AI recommendations — built on the rule-based engine already in place — are on the roadmap.

Design ToolsDeveloper ToolsDirectory
0
80
aictx logo

8. aictx

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

Artificial IntelligenceDeveloper ToolsOpen Source
0
115
FloopFloop logo

9. FloopFloop

FloopFloop is an AI-powered platform that turns a plain-English idea into a live web app in minutes. You describe what you want, and it generates the code, sets up the project, tests it, deploys it, and hosts it on a custom subdomain. It supports websites, web apps, bots, APIs, and internal tools, so you can go from prompt to production without dealing with infrastructure or setup. You can keep projects private or public, add files to your prompt, and keep refining the app after it goes live. It is built for people who want to move fast and ship real projects without coding from scratch.

CMS & No-CodeDeveloper ToolsWeb Development
0
111
CtxSift logo

10. CtxSift

In agentic workflows, raw command outputs and state recollection after compaction contribute to major token waste. Agents often pull raw terminal output into context even when they only need a few anchors, then pay the same cost again later when compaction forces them to reread files or rerun commands.CtxSift was built to cut that loop down to two operations: keep only the signal that matters now, then recover it later without rebuilding the whole state trail.It was inspired by the original Distill project and extends that direction toward local execution, file rereads, and read-after-compression state recovery for coding agents.How it worksWith CtxSift, your agents use two steps to keep minimal token footprint:1. Extract and cache only what they need from raw outputs2. Look up context later instead of repeatedly re-running commands or dragging raw terminal output back into the session.That's it. Unlike other token savers, which can get heavy can confuse the agent with multiple tools, CtxSift keeps it simple and light. No multiple tools, MCP servers or sandbox spin-up dependencies.

Developer ToolsOpen SourceProductivity
0
116
PreviousPage 1 of 36Next