OpenHunts
  • Winners
  • Stories
  • Pricing
  • Submit

Categories

Browse Categories

APIs & Integrations93 projectsAR/VR9 projectsArtificial Intelligence1441 projectsBlockchain & Crypto31 projectsBusiness Analytics141 projectsCMS & No-Code64 projectsData Science & Analytics132 projectsDatabases41 projectsDesign Tools417 projectsDeveloper Tools498 projectsDevOps & Cloud35 projectsE-commerce126 projectsEducation Tech234 projectsFinance & FinTech139 projectsGaming Tech118 projectsGraphics & Illustration310 projectsGreen Tech9 projectsHardware10 projectsHealth Tech112 projectsInternet of Things (IoT)16 projectsMachine Learning50 projectsMarketing Tools705 projectsMobile Development66 projectsNatural Language Processing58 projectsOpen Source65 projectsPlatforms303 projectsProductivity1120 projectsPrototyping10 projectsRobotics2 projectsSaaS736 projectsSales Tools101 projectsSecurity77 projectsServerless2 projectsTesting & QA26 projectsUI/UX111 projectsWearables6 projectsWeb Development376 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

  • 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

Artificial Intelligence

LongTerMemory AI-powered tool to study everything logo

1. LongTerMemory AI-powered tool to study everything

LongTerm Memory is an AI-powered educational technology platform designed to streamline exam preparation and professional certification study. It converts passive study materials—such as PDFs, documents, and web links—into interactive learning tools.The platform is built on two primary scientific principles:AI-Powered Active Recall: The service uses generative AI to automatically transform uploaded content into comprehensive question-and-answer pairs and quizzes, forcing the brain to retrieve information rather than just re-reading it.Spaced Repetition System (SRS): It employs an intelligent algorithm that schedules reviews at strategically optimized intervals. This helps move information from short-term to long-term memory by interrupting the "forgetting curve" just before knowledge is lost.Key Features:Document & Web Import: Users can upload study materials or provide links to generate content.Automated Q&A Generation: Eliminates the manual work of creating flashcards.Personalized Study Plans: Automatically tracks performance and focuses on weak areas to maximize efficiency.Target Audience: Ideal for medical students (board exams), IT professionals (AWS, CompTIA), law students (Bar exam), and anyone preparing for high-stakes testing.

Visit
4
Comment Rocket logo

2. Comment Rocket

AI LinkedIn comment generator that helps you write thoughtful, context-aware comments to spark conversations and build authority. Key features include:AI-powered comment suggestions: Generate engaging comments in seconds, saving you time.Context-aware generation: Comments are tailored to the specific post and your profile.Authority building: Craft comments that position you as an expert in your field.Ideal for:LinkedIn users looking to increase engagementProfessionals aiming to grow their networkContent creators seeking to boost their visibilitySupercharge your LinkedIn presence with AI-driven engagement.

Visit
4
Rook - Your strategic AI advantage. logo

3. 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
SkyReels V4 logo

4. SkyReels V4

SkyReels-V4: The World’s Leading Multimodal Video Foundation Model.SkyReels-V4, developed by Skywork AI (Kunlun Tech), is the world’s first unified multimodal video foundation model that integrates video-audio co-generation, inpainting, and editing into one revolutionary architecture. Ranked #2 globally on the Artificial Analysis Text-to-Video (with Audio) Leaderboard, it outperforms industry giants and redefines what AI video creation can achieve. Official site: https://skyreels-v4.ai.Powered by a cutting-edge dual-stream MMDiT architecture with a shared MLLM text encoder, SkyReels-V4 understands and processes text, images, video clips, masks, and audio references simultaneously. It delivers cinema-quality 1080p video at 32 FPS, up to 15 seconds, with microsecond-perfect audio-visual synchronization—no more disjointed visuals and sound.From text-to-video and image-to-video to precise video inpainting and seamless extension, SkyReels-V4 unifies your entire creative workflow in one tool. It’s not just an upgrade—it’s a paradigm shift for filmmakers, marketers, and content creators worldwide.AI video generator for creating stunning 1080P videos from text or images. Key features include:Text to video generation: Transform your prompts into dynamic video content.Image to video generation: Animate static images with AI.Omni Reference: Advanced control over video output.Ideal for:Content creators seeking efficient video productionMarketers needing engaging video assetsAI enthusiasts exploring generative mediaExperience the world's #1 AI video model for cutting-edge AI filmmaking.

Visit
7
Aduvera logo

5. Aduvera

AI medical scribe for clinical documentation that automates note-taking and reduces physician burnout. Key features include:Ambient Voice Capture: Securely records patient encounters, filtering out small talk.Instant Clinical Notes: Generates SOAP, H&P, APSO, and custom note formats in seconds.EHR-Ready Output: Drafts accurate, structured notes for seamless EHR integration.Ideal for:Physicians and cliniciansHealthcare providersMedical practicesReclaim your time and enhance patient care with this secure AI medical scribe.

Visit
9
Nano Banana logo

6. Nano Banana

Free AI image generator and editor powered by Google Gemini for creating stunning visuals. Key features include:AI Image Generation: Create unique art and images from text prompts using advanced AI models.Photo Editing: Edit existing photos with natural language commands, swap objects, and change styles.Background Removal: Effortlessly remove backgrounds from images for cleaner compositions.Ideal for:Artists and designers seeking AI-powered creative toolsContent creators needing quick image generation and editingIndividuals looking for free AI art creation and photo manipulationExperience the power of AI image generation and editing with Nano Banana, a free and versatile tool.

Visit
4
OpenMAIC logo

7. 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
ZeroRank logo

8. ZeroRank

AI search visibility tracker that helps you monitor and improve your brand's presence across AI platforms. Key features include:Gap Opportunities: Discover new AI prompts where your brand can rank.Fanout Query Analytics: Understand how AI queries are distributed and where to focus.AI Ranking Tracking: Monitor your visibility in ChatGPT, Gemini, Perplexity, Grok, and AI Overviews daily.Ideal for:Marketing teams aiming for AI-first customer acquisitionSEO professionals expanding into AI searchBrands looking to gain a competitive edge in AI answersGain a competitive advantage by showing up in AI answers before your competitors.

Visit
0
Openclaw Case logo

9. Openclaw Case

Personal AI assistant skill collection for automating workflows with real-world openclaw cases. Key features include:Basic Cases: Practical examples for everyday AI skill expansion.Custom AI Assistant: Configure personality, context, and operational rules for your AI.Email Triage: Connect to Gmail API to read, prioritize, and draft email replies.Ideal for:AI developers seeking to enhance personal assistantsUsers looking to automate tasks with AI skillsIndividuals wanting to customize their AI experienceExplore the largest collection of real-world openclaw cases to build powerful AI assistants.

Visit
10
Suno Architect logo

10. Suno Architect

Master AI Music Creation with Suno Architect 🎵Suno Architect is the ultimate companion tool designed to help you craft better, more precise, and highly structured tracks using Suno AI. 🚀 Why use Suno Architect?If you've ever struggled to get the exact sound, song structure, or vibe you want out of AI music generation, we've built this just for you. Suno Architect takes the guesswork out of prompting and helps you engineer the perfect track.✨ Key Features:Advanced Prompt Structuring: Easily organise your verses, choruses, bridges, and instrumental breaks.Style & Genre Control: Discover and apply the perfect meta-tags to achieve the exact musical style you aim for.Workflow Optimisation: Save your best structures and iterate faster without starting from scratch.Whether you're a casual creator making a fun track or a professional experimenting with AI audio, Suno Architect helps you build your music from the ground up.

Visit
3
PreviousPage 18 of 145Next