nowfound

Alternatives

Products that do what Nyann – Project Governance for Claude does

Stop repeating project setup. Bootstrap once, stay compliant

  1. 1PM

    I built a lightweight project management workflow to keep AI-driven development organized. The problem was that context kept disappearing between tasks. With multiple Claude agents running in parallel, I’d lose track of specs, dependencies, and history. External PM tools didn’t help because syncing them with repos always created friction. The solution was to treat GitHub Issues as the database. The "system" is ~50 bash scripts and markdown configs that: - Brainstorm with you to create a markdown PRD, spins up an epic, and decomposes it into tasks and syncs them with GitHub issues - Track…

    2025 · github.com

  2. 2
    Straion382

    Manage Rules for AI Coding Agents

    Feb 2026

  3. 3CA

    Hey Hacker News! Launching gptengineer.app into beta today. It's like Claude Artifacts, but: - you can edit the code in your fav IDE (two-way github sync) - installs npm packages - automatically picks up build and runtime errors and fixes them - very fast, built with rust The full stack capabilities are built on supabase (prefer to not have to handle auth + user data at this point so this is owned by the user) The seed for this project was an open source experiment, posted about that previously here: https://news.ycombinator.com/item?id=36422730 Would love feedback if you give…

    2024 · gptengineer.app

  4. 4

    Real-time security guardrails for your AI code assistant

    Nov 2025

  5. 5FO
  6. 6

    Pre-built agent harness on managed infrastructure

    Apr 2026 · claude.com

  7. 7

    Production-tested architecture for autonomous Claude agents

    Apr 2026 · dvdshn.com

  8. 8

    Claude Code that never stops

    May 2026 · edgee.ai

  9. 9CS

    We now write most of our code with agents. For a while, PRs piled up, causing review fatigue, and we had this sinking feeling that standards were slipping. Consistency is tough at this volume. I’m sharing the solution we found, which has become our main product. Continue (https://docs.continue.dev) runs AI checks on every PR. Each check is a source-controlled markdown file in `.continue/checks/` that shows up as a GitHub status check. They run as full agents, not just reading the diff, but able to read/write files, run bash commands, and use a browser. If it finds…

    Feb 2026 · docs.continue.dev

  10. 10
    Doing135

    Voice and visual context for AI builders. No subscription.

    Apr 2026 · doing.tools

  11. 11

    Quality control for your software factory

    Mar 2026 · continue.dev

  12. 12

    Annotate, review, and share Claude Code plans. (Plugin/Hook)

    Dec 2025

  13. 13

    Claude Code as a Tech Lead with parallel Worker Agents

    Apr 2026 · github.com

  14. 14

    Multi-project IDE with persistent terminals and 9 dev tools

    Mar 2026 · 1devtool.com

  15. 15RT

    This project (Agents Observe) started as an exploration into building automation harnesses around claude code. I needed a way to see exactly what teams of agents were doing in realtime and to filter and search their output. A few interesting learnings from building and using this: - Claude code hooks are blocking - performance degrades rapidly if you have a lot of plugins that use hooks - Hooks provide a lot more useful info than OTEL data - Claude's jsonl files provide the full picture - Lifecycle management of MCP processes started by plugins is a bit kludgy at best The biggest takeaway is…

    Apr 2026 · github.com

  16. 16

    Your AI agents team, terminals, notes: one infinite canvas

    Jul 2026 · agentgrid.sh

  17. 17

    Your Claude Code & Codex dev, now in your pocket

    Apr 2026 · kingcode.shingoirie.com

  18. 182C

    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

  19. 19FL

    Hi HN! We just launched Codacy Guardrails, an IDE extension with a CLI for code analysis and MCP server that enforces security & quality rules on AI-generated code in real-time. It hooks into AI coding assistants (like VS Code Agent Mode, Cursor, Windsurf), silently scanning and fixing AI-suggested code that has vulnerabilities or violates your coding standards, while the code it’s being generated. We built this because coding agents can be a double-edged sword. They do boost productivity, but can easily introduce insecure or non-compliant code. One recent research team at NYU found that 40%…

    2025

  20. 20HW

    A bunch of companies that I spoke to had their own claude & codex OTel dashboards that showed spend + seats per month. However, none of the dashboards actually analyzed how the engineers worked with the tools and if there were any areas for improvement! That's why I created https://www.promptster.ai. Managers get aggregate level view of code quality and how that ties with team workflows (nothing on a per-engineer level). While engineers get personalized coaching on how they can save tokens while keeping output high. We also have a tool built for individuals to test their local…

    Jul 2026

  21. 21CM

    I use Claude Code across multiple projects with different conventions and some shared repos just as it so happens to be the real world. Managing the config files (.claude/rules/, mcps.json, settings.json) by hand got tedious, so I built a local web UI for it. This one started out as claude-config but migrated to coder-config as I'm adding others (Gemini, AG, Codex, etc). Main features: - Visual editor for rules, permissions, and MCP servers - Project registry to switch between codebases - "Workstreams" to group related repos (frontend + API + shared libs) with shared context -…

    Jan 2026 · github.com

  22. 22

    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

  23. 23FS

    Permission-first config kit for Claude Code and Google Antigravity IDE. Installs CLAUDE.md + GEMINI.md + 10 specialist agents + 28 skills with one command. MIT license.

    May 2026 · github.com

  24. 24CM

    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…

    Feb 2026 · github.com

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