🛠️ All DevTools
Showing 2961–2980 of 3122 tools
Last Updated
January 26, 2026 at 12:00 PM
Meetstream.ai
Product Hunt[API/SDK] A unified API for meeting bots. meetstream.ai is an unified API & infrastructure platform that provides a single API for meeting bots to join, record, analyze & push meeting data to CRMs, PMSs - helping your team focus on the actual AI development
RepoRead.AI
Product Hunt[Other] Generate Instant AI-Powered GitHub READMEs in One Click RepoRead.AI is your AI-powered README autopilot! Instantly generate clean, professional, and customizable READMEs straight from your GitHub repo. Save hours, impress users, and ship polished projects faster. Perfect for devs, teams, and open-source pros!
AutoBoostSEO
Product Hunt[Other] Enchance Your Wordpress Content With AI Enhance your WordPress content with AI-powered SEO optimization tools. AutoBoostSEO helps optimize your blogs, pages, and products for better search rankings.
Bubbl3r
Product Hunt[Other] Advanced solana bundler & mev trading bot Bubbl3r is the most advanced Solana bundler and MEV trading bot. Bundle transactions, manage multiple wallets, trade memecoins with privacy protection. Lightning-fast Solana trading automation.
Board Assistant for Trello
Product Hunt[Other] Control cards, members & fields across Trello boards Set global and per-card rules in Trello to automate member management. Post automatic comments showing changes in custom fields, labels, dates, and checklists. Copy fields, labels, and lists between boards. No code needed.
RESUME REFINER
Product Hunt[API/SDK] Resume builder AI Resume Refiner: Upload your resume & job description to our AI-powered site. Using Open API, it tailors your resume with job-specific keywords, ATS-friendly formatting, & polished content. Get instant feedback & a refined resume
CV Sifting Tool by Quecto AI
Product Hunt[Other] Automate CV / Resume Screening With automated compatibility scoring, recruiters can build a workflow that screens CVs instantly, then: ✅ sends an interview-scheduling link to matching candidates ✅ triggers a polite rejection email to those who don’t meet criteria
OneNode
Product Hunt[Other] Simplest backend for AI coding - Open source OneNode is the simplest backend for AI coding. The backend development doesn't have to be complicated anymore.
Iconize Folder
Product Hunt[Other] Customize folder color & icon & text Iconize Folder is a tool that lets you easily customize folder colors, icons, and text to enhance visual appeal and improve file management efficiency.
TensorBlock Forge
Product Hunt[API/SDK] One API for all AI models Forge is the fast, secure way to connect and run AI models across providers—no more fragmented tools or infrastructure headaches. Just 3 lines of code to switch. OpenAI-compatible. Privacy-first.
Voicebun
Product Hunt[API/SDK] Build voice agents in seconds Build smart voice agents in minutes — no code needed. Automate calls, support, and scheduling with powerful AI workflows.
Bank logos API
Product Hunt[API/SDK] High-resolution logos for banks with a single API call. High-resolution logos for over 1,000+ banks worldwide with a single API call. Perfect for financial apps and fintech solutions.
Just Canvass
Product Hunt[Other] Doorknocking app for municipal elections in Canada Professional digital canvassing app for Alberta municipal elections. Door-to-door campaign tools, voter outreach, and real-time analytics for independent candidates in Edmonton, Calgary, and surrounding areas.
EDGAR Analyzer
Product Hunt[Other] Analyze sec filings in seconds, right when they come out Instantly analyze SEC filings with AI. Save hours of research time with our Chrome extension that provides comprehensive analysis of 10-K, 10-Q, and 8-K reports.
SimpleClientHQ
Product Hunt[Other] Automate client communication and project updates with ease. SimpleClientHQ is a sleek tool for freelancers to automate client updates, project tracking, and file sharing—freeing up time and reducing repetitive communication. Built to save hours of back-and-forth.
PandaView
Product Hunt[Database] Database schema visualization & security Transform your database workflow with PandaView. Generate ERD diagrams, detect vulnerabilities, analyze performance, and optimize your database schema with our beautiful visualization tool.
Show HN: CXXStateTree – A modern C++ library for hierarchical state machines
Hacker News (score: 21)[Other] Show HN: CXXStateTree – A modern C++ library for hierarchical state machines Hi HN!<p>I've built [CXXStateTree](<a href="https://github.com/ZigRazor/CXXStateTree">https://github.com/ZigRazor/CXXStateTree</a>), a modern C++ header-only library to create hierarchical state machines with clean, intuitive APIs.<p>It supports: - Deeply nested states - Entry/exit handlers - State transitions with guards and actions - Asynchronous transitions with `co_await` (C++20 coroutines) - Optional runtime type identification for flexibility<p>It's ideal for complex control logic, embedded systems, games, robotics, and anywhere you'd use a finite state machine.<p>I’d love feedback, use cases, or contributions from the community!<p>Repo: <a href="https://github.com/ZigRazor/CXXStateTree">https://github.com/ZigRazor/CXXStateTree</a>
Show HN: I built a website to summarize Tech Twitter each day
Show HN (score: 5)[Other] Show HN: I built a website to summarize Tech Twitter each day Hey folks, I built this as a nightly job that pulls the tweets from a burner account I made, then passes it to GPT-4.1 to summarize alongside some recent headlines: <a href="https://github.com/neelsomani/tweet-insight-daily/blob/main/scripts/lambda_function.py">https://github.com/neelsomani/tweet-insight-daily/blob/main/...</a>
Backlog.md – CLI that auto-generates task files (took my Claude success to 95 %)
Hacker News (score: 70)[CLI Tool] Backlog.md – CLI that auto-generates task files (took my Claude success to 95 %)
Show HN: Simple wrapper for Chrome's built-in local LLM (Gemini Nano)
Show HN (score: 5)[Other] Show HN: Simple wrapper for Chrome's built-in local LLM (Gemini Nano) Chrome now includes a native on-device LLM (Gemini Nano) starting in version 138. I've been building with it since it was in origin trials, it's powerful but the official Prompt API is still a bit awkward:<p>- Enforces sessions even for basic usage<p>- Requires user-triggered downloads<p>- Lacks type safety or structured error handling<p>So I open-sourced a small TypeScript wrapper I originally built for other projects to smooth over the rough edges:<p>github: <a href="https://github.com/kstonekuan/simple-chromium-ai">https://github.com/kstonekuan/simple-chromium-ai</a><p>npm: <a href="https://www.npmjs.com/package/simple-chromium-ai" rel="nofollow">https://www.npmjs.com/package/simple-chromium-ai</a><p>- Stateless prompt() method inspired by Anthropic's SDK<p>- Built-in error handling and Result-based .Safe.* variants with neverthrow<p>- Token usage checks<p>- Simple initialization that provides a helper to trigger downloads (must be triggered by user action)<p>It’s intentionally minimal for hacking and prototyping. If you need fine-grained control (e.g. streaming, memory control), use the native API directly:<p><a href="https://developer.chrome.com/docs/ai/prompt-api" rel="nofollow">https://developer.chrome.com/docs/ai/prompt-api</a><p>Would love to hear what people build with it or any feedback!