nowfound

Alternatives

Products that do what OpenLimits does

Code all day. No cooldowns. Ever.

  1. 1

    Put Claude Code tasks on autopilot with smart routines

    Apr 2026 · anthropic.com

  2. 2
    CUStats79

    Never hit limit unexpectedly again - on macOS, iOS, Android

    Jan 2026

  3. 3

    13,000+ MCP servers, skills & plugins for AI coding agents

    Jul 2026 · codexmarketplaces.com

  4. 4
    opencode395

    Your terminal's AI agent, with any model you want

    2025

  5. 5

    Extend Claude Pro's limit by 26.2%

    Mar 2026 · edgee.ai

  6. 6

    Make Claude Code faster and cheaper without losing context

    Mar 2026

  7. 7

    Claude Code that never stops

    May 2026 · edgee.ai

  8. 8

    AI models recommended for developers by the opencode team

    Sep 2025

  9. 92C

    Single-agent LLMs suck at long-running complex tasks. We’ve open-sourced a multi-agent orchestrator that we’ve been using to handle long-running LLM tasks. We found that single LLM agents tend to stall, loop, or generate non-compiling code, so we built a harness for agents to coordinate over shared context while work is in progress. How it works: 1. Orchestrator agent that manages task decomposition 2. Sub-agents for parallel work 3. Subscriptions to task state and progress 4. Real-time sharing of intermediate discoveries between agents We tested this on a Putnam-level math problem, but the…

    Feb 2026 · github.com

  10. 10

    Turn your work activity into structured AI context.

    Feb 2026

  11. 11

    Turn CLI / AI agents into McGyver

    Apr 2026 · github.com

  12. 12

    Local semantic search for AI agents

    Aug 2026 · tryreference.com

  13. 13

    Specialist AI engineering team for Claude Code

    Apr 2026 · github.com

  14. 141O

    Hi, we're Sergey and Serafim. We've been building dev tools at 21st.dev and recently open-sourced 1Code (https://1code.dev), a local UI for Claude Code. Here's a video of the product: https://www.youtube.com/watch?v=Sgk9Z-nAjC0 Claude Code has been our go-to for 4 months. When Opus 4.5 dropped, parallel agents stopped needing so much babysitting. We started trusting it with more: building features end to end, adding tests, refactors. Stuff you'd normally hand off to a developer. We started running 3-4 at once. Then the CLI became annoying: too many terminals, hard to…

    Jan 2026 · github.com

  15. 15

    Best Coding Plans with open source models. No lock-in.

    Mar 2026 · openadapter.dev

  16. 16RA

    Hey HN! I built Retain as the evolution of claude-reflect (github.com/BayramAnnakov/claude-reflect). The original problem: I use Claude Code/Codex daily for coding, plus claude.ai and ChatGPT occasionally. Every conversation contains decisions, corrections, and patterns I forget existed weeks later. I kept re-explaining the same preferences. claude-reflect was a CLI tool that extracted learnings from Claude Code sessions. Retain takes this further with a native macOS app that: - Aggregates conversations from Claude Code, claude.ai, ChatGPT, and Codex CLI - Instant full-text…

    Jan 2026 · github.com

  17. 17AT

    I recently built a small open-source tool to benchmark different LLM API endpoints — including OpenAI, Claude, and self-hosted models (like llama.cpp). It runs a configurable number of test requests and reports two key metrics: • First-token latency (ms): How long it takes for the first token to appear • Output speed (tokens/sec): Overall output fluency Demo: https://llmapitest.com/ Code: https://github.com/qjr87/llm-api-test The goal is to provide a simple, visual, and reproducible way to evaluate performance across different LLM providers, including…

    2025 · llmapitest.com

  18. 18OM

    Hey Hackernews! In the last few days I've dug up some work I was working on last year but never was able to ship due to perfectionism. But with my new attitude, here it is: I also immediately got it in MCP-form so you can use it in Claude and Cursor as well. Enable Claude / Cursor to know ANY API!! Video and links here: https://x.com/janwilmake/status/1903497808134496583 P.S. Expect bugs. Building in public. I've tested it with a few apis so far, and so far it worked really well as MCP every time. P.P.S. It's all Open source!…

    2025 · openapisearch.com

  19. 19FC

    Just to clarify the background a bit. This project wasn’t planned as a big standalone release at first. On January 16, Ollama added support for an Anthropic-compatible API, and I was curious how far this could be pushed in practice. I decided to try plugging local Ollama models directly into a Claude Code-style workflow and see if it would actually work end to end. Here is the release note from Ollama that made this possible: https://ollama.com/blog/claude Technically, what I do is pretty straightforward: - Detect which local models are available in Ollama. - When…

    Jan 2026 · github.com

  20. 20AM

    Hi all, I’m hacking on new features for the ClickHouse native client and wanted the same “just call the model” ergonomics JavaScript and Python now enjoy. It didn’t exist for modern C++, so I wrote one. ai‑sdk‑cpp (Apache‑2.0) gives you: - Unified calls to OpenAI (GPT‑4o) and Anthropic (Claude 3.5) with a single C++20 API. - Streaming, multi‑turn chat, error handling—all std::optional/std::variant, no macros. - Tool calling (function‑calling) so the model can hit real APIs; sync or async, runs in parallel. The tricky bit: C++ still lacks real reflection, so mapping plain functions →…

    2025

  21. 21IA

    1. Headless mode Headless mode allows you to use the AI as a command-line utility for automation and scripting. In Claude Code you run it with the -p flag: claude -p, in codex - exec, opencode - run. 2. Ask human The traditional communication channel with the operator won't work in headless mode - we need to implement a dedicated tool. Here is an example of how this can be done https://github.com/sermakarevich/claude/tree/main/mcp/ask_hu... 3. Tasks queue Beads is a lightweight distributed graph issue tracker for AI agents, powered by Dolt. You can…

    Jun 2026

  22. 22HN

    I built Hydra because I kept losing my flow when Claude Code hit usage limits mid-task. I would copy context, open another tool, and then re-explain everything. This would be super annoying for me. Hydra wraps your AI coding CLIs (Claude Code, Codex, OpenCode, Pi, or any terminal-based tool) in a single command. It monitors terminal output for rate limit patterns, and when one provider runs out, you switch to another with one keypress. Your conversation history, git diff, and recent commits are automatically copied to your clipboard so you can paste and keep going. The fallback chain is…

    Apr 2026 · github.com

  23. 23OS

    Hello HN, I’ve been building AI agents lately and ran into a common "Context Bloat" problem. When an agent has 20+ skills, stuffing every system prompt, reference doc, and tool definition into a single request quickly hits token limits and degrades model performance (the "lost in the middle" problem). To solve this, I built OpenSkills, an open-source SDK that implements a Progressive Disclosure Architecture for agent skills. The Core Concept: Instead of loading everything upfront, OpenSkills splits a skill into three layers: Layer 1 (Metadata): Light-weight tags and triggers (always loaded…

    Jan 2026

  24. 24IT

    I hit my Claude Code usage limit yesterday in the middle of regular work. Not doing anything unusual - just a couple of coding sessions. It felt like it came out of nowhere. Then today Anthropic announced they're tightening 5-hour limits during peak hours. It feels like a rug pull is coming and we're all just supposed to accept "you've used too much" with no explanation of what "too much" means. Usage limits have always been opaque. A vague percentage bar. No dollar figure. No formula. No way to plan your work around it. So I built a proxy that captures the rate-limit headers Anthropic sends…

    Mar 2026 · github.com

Ranked by how close each launch is in meaning, then by votes. Refine with a description →