OpenHunts
OpenHunts
HomeWinnersStoriesPricing
TrendingCategoriesSponsorNewsletter
Submit

Categories

Browse Categories

APIs & Integrations95AR/VR9Artificial Intelligence1464Blockchain & Crypto32Business Analytics141CMS & No-Code64Data Science & Analytics135Databases42Design Tools424Developer Tools510DevOps & Cloud35E-commerce129Education Tech236Finance & FinTech140Gaming Tech122Graphics & Illustration314Green Tech10Hardware10Health Tech114Internet of Things (IoT)16Machine Learning51Marketing Tools714Mobile Development67Natural Language Processing58Open Source67Platforms309Productivity1133Prototyping10Robotics2SaaS753Sales Tools105Security79Serverless2Testing & QA28UI/UX112Wearables6Web Development382

Quick Access

Trending NowBest of MonthNewsletter
OpenHunts logo

© 2026 OpenHunts. All rights reserved.

Follow us on X (Twitter)Follow us on TelegramFollow us on GiphyDomain Rating for openhunts.com

Discover

  • Pricing
  • Trending
  • Categories
  • Submit Project
  • Sponsors
  • Blog
  • Newsletter

Resources

  • Product Hunt Alternatives
  • ToolFio
  • Open Launch
  • Twelve Tools
  • Startup Fame
  • MagicBox.tools
  • Fazier

Legal

  • Terms of Service
  • Privacy Policy
  • Legal
New Arrival

Open Source

Clawie logo

1. Clawie

AI-powered terminal coding agent for builders. Builders who ship

Visit
4
LocalMode logo

LocalMode

Highlight

Run AI entirely in your browser, no servers or API keys.

VisitHot
tiny.place logo

2. tiny.place

The social economy for AI agents.

Visit
6
Escape the Backrooms Wiki logo

3. Escape the Backrooms Wiki

Your definitive guide to surviving the Backrooms.

Visit
5
OPS logo

OPS

Extra app revenue, zero user disruption.

Sponsored

Suprascribe logo

4. Suprascribe

Find and manage all your subscriptions effortlessly.

Visit
4
Epsilon logo

5. Epsilon

A structured canvas workspace for your ideas

Visit
8
AdminForth - Agent-first OSS admin panel framework logo

6. AdminForth - Agent-first OSS admin panel framework

Open source admin panel framework for building agentic back-office systems. Build robust and powerful agentic back-office panels for your projects while maintaining full control over the code. Key features include:Authentication and Authorization: OWASP-Compliant Sign-In, OAuth2/OpenID SSO, and 2FA plugins for enhanced security.Branding and Theming: Customize your admin panel with your logo, colors, and titles to match your brand.Custom Pages and Dashboards: Extend functionality with Vue3 components and npm packages for tailored experiences.Ideal for:Developers building internal toolsTeams needing secure and customizable back-office solutionsProjects requiring agent-first management interfacesA flexible, modern foundation for developer-owned back-end management systems.

Visit
3
Mouzi logo

7. Mouzi

Mouzi is a silent, elegant file organizer that lives in your system tray and keeps your Downloads folder (and any other folder) automatically tidy. It runs quietly in the background, monitors selected folders, and moves, renames, or sorts files based on customizable rules.✨ Features🔇 Silent by DefaultRuns 24/7 in the background with minimal resource usage (~5 MB RAM)Automatically organizes new files as they arriveShows a subtle Windows toast notification with the count of organized filesSilent autostart with Windows📁 Smart Rules EngineImages (.jpg, .png, .gif, .webp...) → Downloads/Images/Documents (.pdf, .docx, .xlsx...) → Downloads/Documents/Archives (.zip, .rar, .7z...) → Downloads/Archives/Installers (.exe, .msi...) → Downloads/Installers/Music / Video → dedicated foldersCatch-all rule for everything else🛠️ Fully CustomizableCreate your own rules with extensions, regex patterns, and destination foldersUse dynamic placeholders in paths: {year}, {month}, {day}, {extension}, {filename}Reorder rules by priority - first match wins🚫 Ignore Rules (.mouziignore)Per-folder ignore patterns — like .gitignore for your filesSet up via Settings UI or write a .mouziignore file manuallySupports wildcards (*.tmp), exact names (.DS_Store), and folders (node_modules/)📜 History & UndoEvery action is logged locally in SQLiteUndo any single move with one clickClear history anytime🌍 Multi-languageAuto-detects your Windows system language. Supported:🇬🇧 English🇵🇱 Polish🇮🇹 Italian🇩🇪 German🇫🇷 French(Falls back to English if system language is not supported)🕶️ Dark ModeFollows system theme, or force Light / Dark mode from settings🔒 Privacy First100% offline - zero cloud, zero file name uploadsNo telemetry by defaultSystem files ignored - desktop.ini, Thumbs.db, .DS_Store, and other OS hidden files are never touchedPortable version available - run without installing, leaves no trace in the registryAll data stored locally in your user profile folder

Visit
8
Rook - Your strategic AI advantage. logo

8. Rook - Your strategic AI advantage.

For the past few months, I've been running a personal AI assistant on a $5 VPS. Not a chatbot — an actual assistant that manages my calendar, triages my email, controls my Spotify, sends me proactive reminders, and remembers my preferences over time.Today I'm open-sourcing it. It's called Rook.GitHub: [github.com/barman1985/Rook](https://github.com/barman1985/Rook)---## Why I built thisEvery AI assistant I tried fell into one of two categories:1. Chatbots — they answer questions but don't do anything2. Overengineered platforms — they need Kubernetes, five microservices, and a PhD to deployI wanted something in between. An AI that lives in Telegram (zero onboarding — no new app to install), actually executes tasks via tool use, and runs on a single VPS I already had lying around.---## What Rook does- 📅 Google Calendar — create, edit, delete, search events- 📧 Gmail — read, search, send emails- 🎵 Spotify — play, search, playlists, device management- 📺 TV/Chromecast — power, apps, volume control via ADB- 🧠 Memory — remembers preferences using ACT-R cognitive architecture- 🔔 Proactive — morning briefing at 7am, calendar reminders every 15 min, evening summary- 🎙️ Voice — local STT (faster-whisper) + TTS (Piper) — completely free and private- 🔌 MCP Server — expose all tools to Claude Desktop or Cursor- 🧩 Plugins — drop a Python file, restart, new skill is live---## The architecture (the part I'm most proud of)Rook has 5 layers with strict dependency direction — each layer only depends on the layer below it:```Transport (Telegram, MCP, CLI)↓ Router / Orchestrator (intent → model → agentic tool-use loop)↓Skill layer — pluggable (Calendar, Email, Spotify, community plugins...)↓Event bus — on("calendar.reminder") → notify↓Core services (Config, DB, Memory, LLM client) ↓ Storage (SQLite, single access point)```Why this matters:- Skills never import from Transport. Calendar doesn't know it's being called from Telegram. Tomorrow it could be WhatsApp or a CLI.- Event bus decouples everything. The scheduler emits calendar.reminder — it doesn't know or care who's listening. The notification service picks it up and sends a Telegram message.- One config, one DB, one LLM client. No module reads .env directly. No module opens its own SQLite connection. Everything flows through Core.---## The plugin systemThis is what I think makes Rook actually useful for others. Adding a new integration is one Python file:```python# rook/skills/community/weather.pyfrom rook.skills.base import Skill, toolclass WeatherSkill(Skill): name = "weather" description = "Get weather forecasts" @tool("get_weather", "Get current weather for a city") def get_weather(self, city: str) -> str: import httpx return httpx.get(f"https://wttr.in/{city}?format=3").textskill = WeatherSkill()```That's it. The @tool decorator registers it with the LLM. Type hints are auto-inferred into JSON schema. Drop the file in skills/community/, restart Rook, and the LLM can now call get_weather.No core changes. No PR needed. No registration boilerplate.---## ACT-R memory (not just another key-value store)Most AI assistants either forget everything between sessions or dump everything into a flat database. Rook's memory is inspired by the ACT-R cognitive architecture from psychology.Every memory has an activation score based on:- Recency — when was it last accessed? (power law decay)- Frequency — how often is it accessed? (logarithmic boost)- Confidence — how reliable is this fact?When the LLM needs context, only the most activated memories get injected into the system prompt. Frequently used memories stay sharp. Unused ones naturally fade. Just like your brain.---## Local voice (zero API costs)Rook processes voice messages locally:- STT: faster-whisper (base model, CPU int8) — transcribes voice messages from Telegram- TTS: Piper (Czech voice, 61MB ONNX model) — Rook speaks backBoth run on the VPS. No cloud API calls, no per-minute billing, completely private.---## Setup takes 2 minutes```bashgit clone https://github.com/barman1985/Rook.gitcd Rook && python -m venv venv && source venv/bin/activatepython -m rook.setup # interactive wizard guides you through everythingpython -m rook.main```The setup wizard asks for your API keys step by step, auto-detects available integrations, and generates .env. Docker is also supported.What you need:- Any VPS or home server (runs fine on 1GB RAM)- Python 3.11+- Anthropic API key (~$5-10/month for personal use)- Telegram (as the interface)---## Numbers- 3,100 lines of Python- 10 skills, 32 tools- 65 tests (62 pass, 3 skip for optional dependencies)- MIT license- Runs on a $5 VPS alongside other projects---## What's next- More community skills (weather, Notion, Todoist, Home Assistant)- Bluesky integration for social posting- Ollama support for local LLM fallback- GitHub Actions CI pipeline- Skill marketplace---If you've ever wanted an AI assistant that actually does things instead of just chatting, give Rook a try. Star the repo if it looks useful, and I'd love feedback on the architecture.GitHub: [github.com/barman1985/Rook](https://github.com/barman1985/Rook)Support: [Buy me a coffee](https://buymeacoffee.com/rook_ai)♜ Rook — your strategic advantage.

Visit
5
OpenMAIC logo

9. OpenMAIC

Open-source AI classroom platform that transforms any topic into an immersive, multi-agent learning experience. Key features include:LLM-driven agents: Orchestrates AI teachers and classmates for real-time interactive lessons.One-click generation: Quickly creates engaging learning environments from any topic or document.Interactive learning: Fosters active participation beyond passive video lectures.Ideal for:Educators seeking innovative teaching toolsStudents desiring personalized AI-powered learningResearchers exploring AI in educationA Tsinghua University open-source solution for reimagining online education with multi-agent AI.

Visit
9
PreviousPage 1 of 7Next