๐Ÿ› ๏ธ All DevTools

Showing 2941–2960 of 6284 tools

Last Updated
July 25, 2026 at 08:43 AM

[Other] The local-first, lightning-fast Gantt chart for JIRA. TrackLens is a tool that pulls your Epics and lets you manage them locally with a real-time Gantt view. Tech Stack: React 19, Tailwind, Node.js (Proxy). Key highlights: ๐Ÿš€ Local-first architecture with instant performance ๐Ÿ“… Smart, non-destructive date autogeneration ๐Ÿง  Built-in RAG risk intelligence ๐Ÿงช Safe what-if planning with local edits ๐ŸŒ— Dark and light themes ๐Ÿ”’ Privacy-first, no vendor lock-in Stop fighting Jiraโ€™s UI. Keep the database. Upgrade the view.

Found: February 19, 2026 ID: 3346

[Other] Ready-made Microsoft Power Apps templates for businesses Powerapps-template.com offers a growing library of professional, ready-to-deploy Microsoft Power Apps templates. Whether you need HR tools, project trackers, inventory systems, or approval workflows โ€” download, customize, and launch in minutes. Built for business users and IT teams who want to move fast without building from scratch.

Found: February 19, 2026 ID: 3347

Ai1

Product Hunt

[Other] Ask Claude, GPT-4o, Gemini, Llama & Grok at once Ai1 lets you ask all 5 major AIs the same question simultaneously and compare their answers side by side. Instead of switching between ChatGPT, Claude, Gemini, and others โ€” just type once and get every perspective at once.

Found: February 19, 2026 ID: 3348

[Other] Show HN: A Lisp where each function call runs a Docker container

Found: February 19, 2026 ID: 3351

[Build/Deploy] Electrobun v1: Build fast, tiny, and cross-platform desktop apps with TypeScript I&#x27;m building a commercial macOS app with Electrobun [1]. I have previously written the same app with Tauri. I&#x27;ll say that, while I love Tauri, using Electrobun has been an absolute breeze. I got the same app done in roughly 70% of the time [2]. It&#x27;s a very productive stack. In no small part due to Electrobun, but also the fact that Bun has tons of DX niceties and a builtin bundler.<p>Electrobun lets you open&#x2F;manipulate&#x2F;close webview windows and communicate with them using typed rpc. It also handles building, code signing, and notarization.<p>And because I&#x27;m using Bun, running an HMR + React + Tailwind server is just one command (`bun .&#x2F;index.html`) or like 5 lines of code. Pass --console and the webview&#x27;s console.log()s get streamed to your Terminal too.<p>There&#x27;s tons of other things Electrobun does that I haven&#x27;t even mentioned, because I haven&#x27;t interacted much with them yet. E.g. I know that it lets you show platform-native notifications, prompts&#x2F;popups, etc.<p>There also is a very impressive updating mechanism that relies on a bsdiff implementation written in Zig. You just ship the deltas, so updates to very large apps are just a few KBs most of the time.<p>It&#x27;s genuinely a very productive stack and impressive piece of tech.<p>[1] Not affiliated - I just like the project.<p>[2]: The API and implementation was clear, so I&#x27;ll cautiously say this is not a case of &quot;rewrites are always faster&quot;. In fact, the Tauri version was a rewrite too :)

Found: February 19, 2026 ID: 3334

[Other] Show HN: Echo, an iOS SSH+mosh client built on Ghostty

Found: February 18, 2026 ID: 3331

[Package Manager] Reproducible and traceable configuration for Conan C and C++ package manager

Found: February 18, 2026 ID: 3383

[API/SDK] Show HN: Trust Protocols for Anthropic/OpenAI/Gemini Much of my work right now involves complex, long-running, multi-agentic teams of agents. I kept running into the same problem: โ€œHow do I keep these guys in line?โ€ Rules werenโ€™t cutting it, and we needed a scalable, agentic-native STANDARD I could count on. There wasnโ€™t one. So I built one.<p>Here are two open-source protocols that extend A2A, granting AI agents behavioral contracts and runtime integrity monitoring:<p>- Agent Alignment Protocol (AAP): What an agent can do &#x2F; has done. - Agent Integrity Protocol (AIP): What an agent is thinking about doing &#x2F; is allowed to do.<p>The problem: AI agents make autonomous decisions but have no standard way to declare what they&#x27;re allowed to do, prove they&#x27;re doing it, or detect when they&#x27;ve drifted. Observability tools tell you what happened. These protocols tell you whether what happened was okay.<p>Here&#x27;s a concrete example. Say you have an agent who handles customer support tickets. Its Alignment Card declares:<p>{ &quot;permitted&quot;: [&quot;read_tickets&quot;, &quot;draft_responses&quot;, &quot;escalate_to_human&quot;], &quot;forbidden&quot;: [&quot;access_payment_data&quot;, &quot;issue_refunds&quot;, &quot;modify_account_settings&quot;], &quot;escalation_triggers&quot;: [&quot;billing_request_over_500&quot;], &quot;values&quot;: [&quot;accuracy&quot;, &quot;empathy&quot;, &quot;privacy&quot;] }<p>The agent gets a ticket: &quot;Can you refund my last three orders?&quot; The agent&#x27;s reasoning trace shows it considering a call to the payments API. AIP reads that thinking, compares it to the card, and produces an Integrity Checkpoint:<p>{ &quot;verdict&quot;: &quot;boundary_violation&quot;, &quot;concerns&quot;: [&quot;forbidden_action: access_payment_data&quot;], &quot;reasoning&quot;: &quot;Agent considered payments API access, which is explicitly forbidden. Should escalate to human.&quot;, &quot;confidence&quot;: 0.95 }<p>The agent gets nudged back before it acts. Not after. Not in a log you review during a 2:00 AM triage. Between this turn and the next.<p>That&#x27;s the core idea. AAP defines what agents should do (the contract). AIP watches what they&#x27;re actually thinking and flags when those diverge (the conscience). Over time, AIP builds a drift profile โ€” if an agent that was cautious starts getting aggressive, the system notices.<p>When multiple agents work together, it gets more interesting. Agents exchange Alignment Cards and verify value compatibility before coordination begins. An agent that values &quot;move fast&quot; and one that values &quot;rollback safety&quot; registers low coherence, and the system surfaces that conflict before work starts. Live demo with four agents handling a production incident: <a href="https:&#x2F;&#x2F;mnemom.ai&#x2F;showcase" rel="nofollow">https:&#x2F;&#x2F;mnemom.ai&#x2F;showcase</a><p>The protocols are Apache-licensed, work with any Anthropic&#x2F;OpenAI&#x2F;Gemini agent, and ship as SDKs on npm and PyPI. A free gateway proxy (smoltbot) adds integrity checking to any agent with zero code changes.<p>GitHub: <a href="https:&#x2F;&#x2F;github.com&#x2F;mnemom" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;mnemom</a> Docs: docs.mnemom.ai Demo video: <a href="https:&#x2F;&#x2F;youtu.be&#x2F;fmUxVZH09So" rel="nofollow">https:&#x2F;&#x2F;youtu.be&#x2F;fmUxVZH09So</a>

Found: February 18, 2026 ID: 3332

Hyp

Product Hunt

[Build/Deploy] 1-click deploy for popular open-source apps Deploy WordPress, n8n, AnythingLLM, NocoDB, and more in seconds โ€” at half the cost of major cloud providers. Hyp.app lets you install popular open-source applications with one click, including a freehyp.app subdomain, custom domains, and SSL.

Found: February 18, 2026 ID: 3327

[IDE/Editor] Show HN: VectorNest responsive web-based SVG editor Iโ€™ve just released VectorNest โ€” an open-source, browser-based SVG editor.<p>If you have an SVG and need quick edits (paths, alignment, small fixes, animations, LLM assistance) without installing software, this is for you.<p>Try the demo: <a href="https:&#x2F;&#x2F;ekrsulov.github.io&#x2F;vectornest&#x2F;" rel="nofollow">https:&#x2F;&#x2F;ekrsulov.github.io&#x2F;vectornest&#x2F;</a> GitHub repo: <a href="https:&#x2F;&#x2F;github.com&#x2F;ekrsulov&#x2F;vectornest" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;ekrsulov&#x2F;vectornest</a><p>Feedback, issues and contributions are welcome.

Found: February 18, 2026 ID: 3326

[DevOps] Show HN: I built a fuse box for microservices Hey HN! I&#x27;m Rodrigo, I run distributed systems across a few countries. I built Openfuse because of something that kept bugging me about how we all do circuit breakers.<p>If you&#x27;re running 20 instances of a service and Stripe starts returning 500s, each instance discovers that independently. Instance 1 trips its breaker after 5 failures. Instance 14 just got recycled and hasn&#x27;t seen any yet. Instance 7 is in half-open, probing a service you already know is dead. For some window of time, part of your fleet is protecting itself and part of it is still hammering a dead dependency and timing out, and all you can do is watch.<p>Libraries can&#x27;t fix this. Opossum, Resilience4j, Polly are great at the pattern, but they make per-instance decisions with per-instance state. Your circuit breakers don&#x27;t talk to each other.<p>Openfuse is a centralized control plane. It aggregates failure metrics from every instance in your fleet and makes the trip decision based on the full picture. When the breaker opens, every instance knows at the same time.<p>It&#x27;s a few lines of code:<p><pre><code> const result = await openfuse.breaker(&#x27;stripe&#x27;).protect( () =&gt; chargeCustomer(payload) ); </code></pre> The SDK is open source, anyone can see exactly what runs inside their services.<p>The other thing I couldn&#x27;t let go of: when you get paged at 3am, you shouldn&#x27;t have to find logs across 15 services to figure out what&#x27;s broken. Openfuse gives you one dashboard showing every breaker state across your fleet: what&#x27;s healthy, what&#x27;s degraded, what tripped and when. And, you shouldn&#x27;t need a deploy to act. You can open a breaker from the dashboard and every instance stops calling that dependency immediately. Planned maintenance window at 3am? Open beforehand. Fix confirmed? Close it instantly. Thresholds need adjusting? Change them in the dashboard, takes effect across your fleet in seconds. No PRs, no CI, no config files.<p>It has a decent free tier for trying it out, then $99&#x2F;mo for most teams, $399&#x2F;mo with higher throughput and some enterprise features. Solo founder, early stage, being upfront.<p>Would love to hear from people who&#x27;ve fought cascading failures in production. What am I missing?

Found: February 18, 2026 ID: 3336

QwenLM/qwen-code

GitHub Trending

[Other] An open-source AI agent that lives in your terminal.

Found: February 18, 2026 ID: 3308

steipete/summarize

GitHub Trending

[CLI Tool] Point at any URL/YouTube/Podcast or file. Get the gist. CLI and Chrome Extension.

Found: February 18, 2026 ID: 3307

steipete/gogcli

GitHub Trending

[CLI Tool] Google Suite CLI: Gmail, GCal, GDrive, GContacts.

Found: February 18, 2026 ID: 3306

Sonnet 4.6

Product Hunt

[Other] The most capable Sonnet model yet Claude Sonnet 4.6 is a full upgrade across coding, computer use, long-context reasoning, agent planning, knowledge work, and design. It also features a 1M token context window in beta. Sonnet 4.6 has improved on benchmarks across the board. It approaches Opus-level intelligence at a price point that makes it practical for far more tasks. It also shows a major improvement in computer use skills.

Found: February 18, 2026 ID: 3318

[Monitoring/Observability] Real-time observability dashboard for OpenClaw AI agents ClawMetry is a free, open-source observability dashboard for OpenClaw AI agents. Think Grafana, but purpose-built for AI. One command install (pip install clawmetry), zero config. Monitor token costs, sub-agent activity, cron jobs, memory changes, and session history. All in real-time with a beautiful live flow visualization. Works on macOS, Linux, Windows, even Raspberry Pi

Found: February 18, 2026 ID: 3319

Baseline Core

Product Hunt

[Other] Open-source skills system that wires your business into AI Baseline Core is an open-source skills system for AI agents. Run one command and your AI tools can research markets, write PRDs, plan sprints, and design user flows -- all grounded in your business context. 12 skills, 14 frameworks, 34 reference files. Works with Claude Code, Cursor, Codex, ChatGPT, Gemini, Windsurf, and GitHub Copilot. Free forever.

Found: February 18, 2026 ID: 3320

Motionode

Product Hunt

[Other] Cursor for technical project planning. Code is easy; context is hard! Motionode gives your dev team the ultimate blueprint. Paste raw requirements and in 60s, our engine maps dependencies, calculates timelines, and outputs a complete delivery plan. Itโ€™s the structured context layer devs (and future AI agents) need to write brilliant code without getting lost. First run is free!

Found: February 18, 2026 ID: 3321

Murutools

Product Hunt

[Other] All-in-One Free Tools to Simplify Your Digital Work. Murutools is an all-in-one free digital toolbox designed to simplify your workflow. Compress images, convert files, resize assets, and optimize documents instantly โ€” all from your browser with no downloads required. Built for creators, marketers, developers, and founders who want fast, simple, and reliable tools. We're continuously adding new features as we move toward becoming the ultimate workspace for everyday digital tasks.

Found: February 18, 2026 ID: 3322

[Other] Sell by weight in WooCommerce โ€” the way it should work WooCommerce was built for fixed-price products. If you sell meat, spices, gold, or anything priced per gram, you've been stuck creating dozens of variations as a workaround. By-Weight Pricing fixes this properly: customers type a weight, and the price updates live.

Found: February 18, 2026 ID: 3323
Previous Page 148 of 315 Next