OpenHunts
  • Winners
  • Stories
  • Pricing
  • Submit

Categories

Browse Categories

APIs & Integrations82 projectsAR/VR7 projectsArtificial Intelligence1360 projectsBlockchain & Crypto29 projectsBusiness Analytics136 projectsCMS & No-Code62 projectsData Science & Analytics123 projectsDatabases27 projectsDesign Tools389 projectsDeveloper Tools467 projectsDevOps & Cloud35 projectsE-commerce124 projectsEducation Tech223 projectsFinance & FinTech133 projectsGaming Tech103 projectsGraphics & Illustration292 projectsGreen Tech8 projectsHardware10 projectsHealth Tech102 projectsInternet of Things (IoT)14 projectsMachine Learning48 projectsMarketing Tools673 projectsMobile Development62 projectsNatural Language Processing54 projectsOpen Source59 projectsPlatforms291 projectsProductivity1065 projectsPrototyping10 projectsRobotics2 projectsSaaS682 projectsSales Tools95 projectsSecurity71 projectsServerless1 projectsTesting & QA24 projectsUI/UX106 projectsWearables6 projectsWeb Development368 projects

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

  • Trending
  • Categories
  • Submit Project
  • Product Hunt Alternatives
  • Pricing
  • Sponsors
  • Blog
  • Newsletter

Resources

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

Legal

  • Terms of Service
  • Privacy Policy
  • Legal

DevOps & Cloud

Anonyx logo

1. Anonyx

Secure, realistic, and anonymized test data for developers.

Visit
6
Whimsy logo

2. Whimsy

Cloud file search and governance platform that unifies access across all your cloud storage. Search, move, and govern files from one control plane, integrating with Inbox, Telegram, or REST APIs. Key features include:Unified cloud search: Instantly find files across multiple cloud providers like Google Drive, Dropbox, and OneDrive.Cross-cloud file management: Move, copy, and organize files between different cloud services seamlessly.API and bot integration: Automate file operations and access data via Telegram bots or a REST API.Ideal for:Developers managing distributed cloud assetsTeams seeking centralized cloud file controlIndividuals needing to organize scattered cloud dataA comprehensive solution for cloud file governance and unified access.

Visit
2
OpenClaw Launch logo

3. OpenClaw Launch

OpenClaw Launch is a managed deployment service for teams that want to get OpenClaw running faster without repeating the full self-hosted setup.It helps operators move from model and channel selection to launch, payment, deployment tracking, and follow-up actions in one flow.Best for teams that want less operational overhead, a cleaner launch path, and support for Telegram, Discord, and WhatsApp.

Visit
5
DepLog logo

4. DepLog

DepLog helps developers monitor dependency updates and catch risky releases before they turn into upgrade fire drills. Import dependencies from your package manager, choose which updates matter, and get alerts by email, Slack, Teams or webhook.Each alert includes changelog context and a risk score so you can triage updates faster instead of reacting to every version bump. Start with 5 packages free forever, then pay only for extra blocks of monitored packages.

Visit
0
Rook - Your strategic AI advantage. logo

5. 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
Ping next logo

6. Ping next

PingNext monitors your Next.js applications from the outside — exactly like a real user visiting your site. It connects to your Vercel account with one click, auto-discovers all your projects and GET routes, and alerts you on Slack when something goes down.Unlike error trackers like Sentry which only work when requests reach your code, PingNext detects the failures that happen before your code even runs: DNS outages, Vercel infrastructure problems, SSL certificate expiry, and hosting-level issues. Unlike generic monitoring tools, PingNext understands Vercel deployments and suppresses false alerts during deploys.Who is it for?Solo developers and small teams building Next.js applications on Vercel who need reliable uptime monitoring without paying for expensive enterprise tools. Ideal for freelancers shipping client sites, and startups running production apps where downtime means lost revenue.What problem does it solve?Three problems that every Next.js developer eventually hits:1. Blind spots in error tracking. Sentry catches bugs inside your code. But when DNS breaks, Vercel has an outage, or your SSL expires — Sentry receives zero data because no request ever reaches your application. Your users find out before you do.2. Generic monitoring is tedious. Most of the tools require you to manually add URLs one by one. No Vercel integration. No deployment awareness.3. Simple Vercel integration. PingNext auto-discovers your project and GET routes.

Visit
5
diffray logo

7. diffray

Traditional AI code review tools use one generic model for everything and flood your PRs with noise. diffray takes a different approach: 30+ specialized agents, each focused on one thing (security, performance, bugs, best practices, SEO, and more).The result? 87% fewer false positives and 3x more real issues caught. Teams report cutting PR review time from 45 minutes to 12 minutes per week.Key features:* Multi-agent architecture: each agent is an expert in its domain* Codebase-aware: understands your repo context, not just the diff* Clean comments: no emoji spam, just actionable feedback* Works with GitHub; easy setup in minutesFree for open source. 14-day free trial for private repos.

Visit
2
CloudBurn logo

8. CloudBurn

CloudBurn is for teams using Terraform or AWS CDK who want to prevent expensive infrastructure mistakes before they reach production. Most teams discover AWS cost problems weeks later on their bill, after the infrastructure is already running and the money is spent. CloudBurn changes this by showing AWS costs during code review, when changes are easy to make.Here's how it works:1. A developer opens a pull request with infrastructure changes (Terraform or AWS CDK).2. CloudBurn automatically analyzes the changes using real-time AWS pricing.3. A cost report appears in your PR, showing exactly what each change will cost per month.4. Your team discusses costs during code review and adjusts before deployment.What you get:- Automatic cost analysis on every infrastructure PR- Real-time AWS pricing for your specific region- Resource-level breakdown showing old vs. new monthly costsStop optimizing reactively. Catch costly decisions during code review when they're easy to fix.

Visit
0
BitDive.io logo

9. BitDive.io

BitDive is a zero-code QA automation platform that transforms real application behavior into reliable, self-updating autotests. Key features include:Zero-Code Automation: Eliminate the need to write and maintain test code.Log-less Debugging: See errors, SQL, and method-level call chains.Smart Virtualization: Auto-mocks or real Testcontainers for integration.Ideal for:QA EngineersSDETsDevelopersBitDive offers instant root cause visibility and helps scale test coverage without increasing codebase complexity.

Visit
2
AutoChangelog logo

10. AutoChangelog

AutoChangelog is a tool that automatically generates changelogs from your deployments, saving you time and keeping your users informed. Key features include:Automated Changelog Generation: Automatically creates changelogs from pull requests, code changes, and commits.CI/CD Integration: Integrates seamlessly with your CI/CD pipeline via a webhook.GitHub Integration: Integrates with GitHub to track changes and pull requests.Ideal for:Software developersDevOps teamsProduct managersAutoChangelog eliminates the manual effort of writing changelogs, ensuring your users always know what's new.

Visit
2
PreviousPage 1 of 4Next