Live data from Hacker News

Show HN: AISlop, a CLI for catching AI generated code smells

github.com

11–20 of 70 posts

Re: Show HN: AISlop, a CLI for catching AI generated code smells

#11

A linter with rules for AI-specific weirdness is absolutely a great idea, thank you! Are there any plans to support other languages besides javascript?

Thank you. I currently support up to 8 languages: php, go, rust, python, js and ts

Re: Show HN: AISlop, a CLI for catching AI generated code smells

#14
post #10

The intent is good, but frankly, credibility is lost by using "slop" words imo, OP you might seriously want to re-evaluate who is the target market, probably users that leverage high automation 24/7, startups and so-on, they don't want to incorporate products that talks about the modern way (and somehow only way to compete) of development as "slop" imo because soon enough, it's not true anymore (it's already not true…

Yeah, to be honest, it really is a bit weird to incorporate a tool called slop into a corporate CICD flow. Anubis fixed a similar problem by creating a corp-safe version without the anime mascot.

> Anubis fixed a similar problem by creating a corp-safe version without the anime mascot.

I wouldn’t say they fixed it. Rather it was an intentional choice to put an anime girl on websites unless you paid for the product.

Re: Show HN: AISlop, a CLI for catching AI generated code smells

#15
post #9

Earlier quoted context omitted.

Thanks, I actually concentrated on improving code quality, the patterns I flagged are poor design choices that humans wouldn’t write. Examples are duplicated functions doing same thing, dead or redundant codes etc. These builds up and degrade the codebase over time.

> ...are poor design choices that humans wouldn’t write. They certainly do in my experience. Maybe you've been lucky and haven't worked with really messy programmers.

I have worked and seen these in code reviews but the issue now is code reviews are overwhelming and non existent in some cases.

Re: Show HN: AISlop, a CLI for catching AI generated code smells

#17

A linter with rules for AI-specific weirdness is absolutely a great idea, thank you! Are there any plans to support other languages besides javascript?

Thank you. I currently support up to 8 languages: php, go, rust, python, js and ts

thats 6?

Re: Show HN: AISlop, a CLI for catching AI generated code smells

#18
I tried it on my codebase. There's a lot of overlap with tools like Oxlint / ESLint, I'm not sure that's too valuable vs. a more focused tool that actually focuses solely on 'slop' signals. These lint rules tend to get very opinionated which is why those tools expose so many configuration options.

One real bug tho:

> [ERROR] Imports "mdast" but it's not declared in package.json

A type-only import like `import type { Blockquote, RootContent } from 'mdast';` is actually acceptable if `"@types/mdast": "^4.0.4"` is included in the package.json.

Re: Show HN: AISlop, a CLI for catching AI generated code smells

#20

The intent is good, but frankly, credibility is lost by using "slop" words imo, OP you might seriously want to re-evaluate who is the target market, probably users that leverage high automation 24/7, startups and so-on, they don't want to incorporate products that talks about the modern way (and somehow only way to compete) of development as "slop" imo because soon enough, it's not true anymore (it's already not true…

Imagine an operating system company making a product called “quick and dirty”.
Post reply on HN