nowfound

Alternatives

Products that do what Claude.md templates based on Boris Cherny's advice does

Boris Cherny (Claude Code creator) recently dropped a threads on how his team at Anthropic uses Claude Code. The key insight: they don't treat it as a static config. After every correction, they tell Claude "Update your CLAUDE.md so you don't make that mistake again." Claude writes a rule for itself. They review it, commit it to git. The mistake never happens again. I cross-referenced his tweets with Anthropic's official docs and other best practices for CLAUDE.md and then packaged it into a starter kit: - Fill-in-the-blank templates for Next.js/TypeScript, Python/FastAPI, and a…

  1. 1

    Our most intelligent model to date

    2025 · anthropic.com

  2. 2

    Put Claude Code tasks on autopilot with smart routines

    Apr 2026 · anthropic.com

  3. 3

    Make prototypes, slides & one-pagers by talking to Claude

    Apr 2026 · claude.com

  4. 4
    Claude 4571

    Anthropic's next leap in coding, reasoning & AI agents

    2025

  5. 5CC

    Hi all! I normally work on the PyTorch project but I've been on baby leave for the past month, so I've been playing around with AI as a user rather than a framework implementor. I really liked the agent experience with Claude Code, but I couldn't really justify spending so many dollars on API costs for random side projects. I already pay for a Claude Pro subscription though, and it turns out you can simulate many of Claude Code's features with an MCP. If you have a Pro subscription, check this out! I think it really captures the Claude Code experience quite well, without forcing you to pay…

    2025 · github.com

  6. 6FO
  7. 7CC

    In the nature of Open Source, I am releasing something I'm actively working on but is insanely simple and will likely be made anyways. It is an SDK for scripting Claude Code. It's a lightweight (155 lines) and free wrapper around claude code This is a big deal because it seems that using claude code and cursor has become largly repitive. My workflow typically goes like this: Plan out my task into a file, then have claude code implement the plan into my code. I'm actively building a product with this, but still wanted to make it OSS! Use it now with `pip install codesys`

    2025 · github.com

  8. 8CS

    I built a collection of professional slash commands for Anthropic's Claude Code that provide structured workflows for common software development tasks. These commands are directly inspired by and adapted from Anthropic's own claude-code-best-practices (https://www.anthropic.com/engineering/claude-code-best-practices) documentation, translating their recommendations into executable workflows. The suite includes commands for: • Comprehensive code reviews with security and performance analysis • End-to-end feature development with planning, implementation, and testing •…

    2025 · github.com

  9. 9

    Claude Code that never stops

    May 2026 · edgee.ai

  10. 10SC

    Hey HN. I built this because my Anthropic API bills were getting out of hand (spoiler: they remain high even with this, batch is not a magic bullet). I use Claude Code daily for software design and infra work (terraform, code reviews, docs). Many Terminal tabs, many questions. I realised some questions are ok to wait on and with that comes some cost savings. So here is a small MCP that lets you send work directly to Anthropic's Batch API from inside Claude Code, for the same quality responses just 50% cheaper, results come back in ~30min-1hr. How it works: you type /batch review this…

    Feb 2026 · github.com

  11. 11FC

    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

  12. 12
    Sipcode148

    Keep Claude Code's context clean for sharper answers

    Jun 2026 · anuj7411.github.io

  13. 13OS
  14. 14AM

    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

  15. 15CC

    Have you ever wondered if Claude Code could be rewritten as a bash script? Me neither, yet here we are. Just for kicks I decided to try and strip down the source, removing all the packages.

    Mar 2026 · github.com

  16. 16

    25 battle-tested CLAUDE.md templates for every techstack

    Jun 2026 · alfredolance.gumroad.com

  17. 17IB

    I got frustrated with Claude's official platform limitations - conversations disappearing, no customization options, and clunky file handling. So I built my own interface over a weekend! GitHub: https://github.com/chihebnabil/claude-ui What it does: - Saves all conversations locally (SQLite + Drizzle ORM) - Lets you customize Claude's personality per chat - Handles file attachments properly + caching input tokens - Dark/light mode - No conversation limits - Markdown & code syntax highlighting Tech stack is pretty simple: - Nuxt 3 for the frontend - Anthropic's SDK…

    2024 · github.com

  18. 18CC

    VS Code and JetBrains have official Claude Code IDE integration, but Visual Studio doesn't. There's an open GitHub issue with a lot of +1s so I built it myself (check out the gif in the GitHub repo for a visual example). It implements the same protocol the official plugins use, so the Claude CLI connects to it automatically. You don't configure anything, just install the extension and click Launch. The main thing it adds over running Claude in a terminal is that edits open in Visual Studio's native diff viewer instead of auto-applying or prompting you in the terminal. You click Accept or…

    Jun 2026 · github.com

  19. 19SP

    Hey HN, My cofounder and I have gotten tired of CC ignoring our markdown files so we spent 4 days and built a plugin that automatically steers CC based on our previous sessions. The problem is usually post plan-mode. What we've tried: Heavily use plan mode (works great) CLAUDE.md, AGENTS.md, MEMORY.md Local context folder (upkeep is a pain) Cursor rules (for Cursor) claude-mem (OSS) -> does session continuity, not steering We use fusion search to find your CC steering corrections. - user prompt embeddings + bm25 - correction embeddings + bm25 - time decay - target query embeddings -…

    Mar 2026 · gopeek.ai

  20. 20IF

    The answer is simple: the more "prescriptive" you are with instructions for Claude, the worse your output. The reason is that Claude tries to pattern match - it's been trained on thousands of safe UI patterns, which is why when you ask for "a modern dashboard" it doesn't really think about the problem space; it just defaults to whatever safe design pattern it can whip up at the time. I've been working on a Claude Code skill to combat generic UI output, and I tried different approaches like being very detailed with my personal visual style, e.g., the type of alpha values to use for borders,…

    Jan 2026 · interface-design.dev

  21. 21PL

    Hi, I’ve been exploring Claude 3.5 code generation abilities for a while and it looks like it can generate more consistent code than other models. However it would still be unmaintainable if you ask it to write a lot of code and it still sucks at system design. So, I’ve been playing around the idea of using the code repository with a template for directory layout and infrastructure, then adding the repository information to Claude and asking it to generate code. It seems that it works, if I pass the structure of some OpenAPI based backend it can update the API definition and implementation…

    2024 · github.com

  22. 22

    The Claude Code creator's workflow, all 53 tips, installable

    Mar 2026

  23. 23

    Hi y'all. Been working on something that should've been made a long time ago imo. It compiles codebases into O(1) hashmaps that the agent queries to discover the structure of your code/answer questions/write code. It also does complete static analysis checks on any writes the agent makes. Don't take my word for it though. Here are the benchmarks: https://benzi.fly.dev/benchmark. on 2/20 tests, Claude Code (mostly Sonnet on one task) regressed or timed out. Benzi didn't because of course, it has a map it can query and not get lost in the sauce. On the other 18 it…

    29d ago · benzi.fly.dev

  24. 24CP

    Anthropic announced today that starting June 15, paid Claude plans get a separate monthly credit pool for programmatic usage (claude -p, Agent SDK). Seems OK at first glance but it turns out the monthly credit pool is charged at API rates, which effectively kills any serious programmatic usage for hobbyists. This is a small Claude Code wrapper which runs claude in a PTY, injecting input, finding the session transcript jsonl file, and using a stop hook to determine when claude is done. It's a drop-in replacement for claude code. All arguments except the "-p" argument are forwarded as-is.…

    May 2026 · github.com

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