nowfound

Alternatives

Products that do what ghexplainer does

In the vibe-coding era, know what your code actually does.

  1. 1
    VibeScan320

    Ship AI code with confidence.

    2025

  2. 2

    Deploy your AI vibe coding platform on Cloudflare in 1 click

    Sep 2025

  3. 3
    VibeSec249

    Find and Fix Code Vulnerabilities Instantly!

    2025

  4. 4
    GitHired360

    Find your next 10x Engineer by proof of work, not keywords

    Dec 2025

  5. 5

    Talk with AI to build products—in VS Code, Cursor, Windsurf

    2025

  6. 6IB

    I created vibescaffold.dev. It is a wizard-style AI tool that will guide you from idea → vision → tech spec → implementation plan. It will generate all the documents necessary for AI coding agents to understand & iteratively execute on your vision. How it works: - Step 1: Define your product vision and MVP - Step 2: AI helps create technical architecture and data models - Step 3: Generate a staged development plan - Step 4: Create an AGENTS.md for automated workflows I've used AI coding tools for awhile. Before this workflow (and now, this tool), I kept getting "close but not quite" results…

    Nov 2025 · vibescaffold.dev

  7. 7
    Komment378

    Make sense of messy code

    2025

  8. 8
    Fusion305

    Vibe code at any scale

    2025

  9. 9IP

    This started as a hard requirement for my TUI-based editor application, it ended up going in a few different directions. A suite of tools that help with semantic code entities: https://github.com/odvcencio/gts-suite A next-gen version control system called Got: https://github.com/odvcencio/got I think this has some pretty big potential! I think there's many classes of application (particularly legacy architecture) that can benefit from these kinds of analysis tooling. My next post will be about composing all these together, an exciting project I call…

    Feb 2026 · github.com

  10. 10PP

    Hi HN! I built pyscn for Python developers in the vibe coding era. If you're using Cursor, Claude, or ChatGPT to ship Python code fast, you know the feeling: features work, tests pass, but the codebase feels... messy. Common vibe coding artifacts: • Code duplication (from copy-pasted snippets) • Dead code from quick iterations • Over-engineered solutions for simple problems • Inconsistent patterns across modules pyscn performs structural analysis: • APTED tree edit distance + LSH • Control-Flow Graph (CFG) analysis • Coupling Between Objects (CBO) • Cyclomatic Complexity Try it without…

    Oct 2025 · github.com

  11. 11IV

    GitDiagram is an open-source micro dev-tool that I made this past week Given any public GitHub repository it generates diagrams in Mermaid.js with Claude 3.5 Sonnet I extract information from the file tree and README for details and interactivity (you can click components to be taken to relevant files and directories) Also, you can replace "hub" with "diagram" in any repository URL to access its diagram I created this because I wanted to contribute to open-source projects but quickly realized their codebases are too massive for me to dig through manually, so this helps me get started I do…

    2024 · gitdiagram.com

  12. 12
    VibeKit139

    Run coding agents in a secure sandbox

    2025

  13. 13GI
  14. 14

    10x your vibe-coding workflow writing visual annotations

    2025

  15. 15

    The ultimate AI for code documentation

    2023

  16. 16IB

    Hey HN After years working in software engineering and helping with hiring, I noticed a frustrating pattern: Companies often rely on résumés and LinkedIn titles to find developers instead of looking at what they've actually built. So I built GitMatcher. It analyzes GitHub profiles to surface developers based on: Their public repos Commit history Originality and usefulness of code Patterns that show consistency and real skill No keywords. No job titles. Just code. GitMatcher is useful if you're: - A recruiter tired of resume roulette - A founder looking for a technical co-founder - An OSS…

    2025 · gitmatcher.com

  17. 17VP

    Like a lot of people I got the $250 Claude Code credit and didn't use it up. I decided to try to use it up over the weekend using (mostly) my phone and vibe coded a Prolog interpreter. Now I'm seeing how far I can push it.

    Nov 2025 · github.com

  18. 18MS

    Author here! Some context: I published this 48 hours ago and it was auto-listed on MCPMarket (the MCP tools directory). Got 700+ organic downloads with zero marketing—developers were actively searching for exactly this solution. The "Git Accelerator" optimization story: Initially used a file walker that took 6.6s on Chromium. Profiling showed 90% was filesystem I&#x2F;O. The fix: git ls-files returns 480k paths in ~200ms. Added smart heuristics for untracked files (only scan dirs <50k files), bringing total to 0.46s. Why this matters: Agents can't wait 10 seconds for search. Sub-500ms makes…

    Jan 2026 · github.com

  19. 19

    Let's focus on what's important

    2018

  20. 20GA

    Ghore is a simple cli tool to preview markdown files like they would appear on Github. It doesn't rely on Github's API and can be used completely offline. It also supports live preview of mermaid code blocks (Github's API doesn't process mermaid codeblocks).

    2024 · github.com

  21. 21VF

    If you are concerned about AI replacing your coding job, fear not! Just level up and get very good at vibecoding. "Vibe coding is the art of leveraging AI tools to their fullest potential in software development, creating a seamless fusion between human creativity and machine intelligence. It represents a paradigm shift where developers orchestrate AI systems rather than writing every line manually." The big tools out there are cursor, cline, aider, and Claude Code. https:&#x2F;&#x2F;andrewarrow.dev&#x2F; This site was made with Claude Code from just 1 prompt. Go ahead and register and give…

    2025

  22. 22GC

    It has been almost 10 years since I started the opencv-python packaging project. Scaling it to more than 100 million downloads as a side project showed me how much ease of installation and proper package distribution matter to users. It gave the computer vision ecosystem a noticeable boost. Now I have a new idea that I hope can help even more people across the broader software engineering world. A while ago, I realized I kept giving the same advice to teammates and friends when they ran into a programming issue they couldn't easily solve: go to GitHub and look at how others solved it. There…

    Dec 2025 · githits.com

  23. 23FL

    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

  24. 24VL

    I built a CLI that detects patterns AI coding tools leave behind: empty catch blocks, hardcoded secrets, as any everywhere, comments that restate the code, god functions, SQL concatenation. 24 rules across JS&#x2F;TS and Python. Zero config, runs offline, regex-based so it's fast. npx @yuvrajangadsingh&#x2F;vibecheck . Also ships as a GitHub Action for inline PR annotations and standalone binaries (no Node required). Why: CodeRabbit found AI-generated PRs have 1.7x more issues than human PRs. Veracode says 45% of AI code samples have security vulnerabilities. "Vibe coding" is everywhere now…

    Mar 2026 · github.com

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