HN user

dearilos

11 karma

co-founder @ wispbit.com

email - ilya (at) wispbit.com

Posts8
Comments33
View on HN
Claude Memory 9 months ago

We’re trying to solve a similar problem, but using linters instead over at wispbit.com

Claude Skills 9 months ago

We're trying to solve a similar problem at wispbit - this is an interesting way to do it!

We combine determinism + LLMs to catch things a human would normally have to. If the LLM finds a violation, it generates a comment.

Big agree on the CLI being open and letting you bring your own inference provider. We’re holding off on it until we get more feedback from some of our hardcore users.

i'm taking an approach where we scan your codebase and keep rules up to date

you can enforce these rules in code review after CC finishes writing code

email ilya (at) wispbit.com and ill send you a link to set this up

I'm actually building something like this.

A code review tool that can be ran by Claude Code (and other tools like cursor, kiro, windsurf) where it does the first pass.

You can also define the rules on how code should be reviewed, and we have a free library of prompts for common code review checks.

I didn't see a way to contact you in your bio so please reach out - ilya (at) wispbit.com - and I can give you access.

How has that worked out so far?

I'm building something similar and I found that code review with LLMs is really good when:

- You give it specific rules. I built a directory for these because they made the reviewer so much better [1]

- The rules you write are things your team already looks for during review (proper exception handling, ensuring documentation, proper comments, etc.)

[1] https://wispbit.com/rules

There's a lot of arguments being made here that background agents aren't effective because code review is the bottleneck.

I built a tool that understands the codebase and can give the agent the first pass. So you don't need to spend mental bandwidth to review mountains of code.

If anyone is open to trying - email is in profile

I'm actually building something to fix this.

The biggest bottleneck for background agents is code review.

I'm building a tool that can give the first pass so the result of the background agent isn't garbage most of the time.

I'm thinking about this a little differently.

You have to catch most issues at code review.

You can have an agent spit out code, but on PR open you should have another agent verify rules based on rules you define as a team.

It's what I'm building at wispbit.