Deep-dive review: aislop's 6-engine AI code smell scanner #164
LAIguapi
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Last week I picked up a project where the code compiled and tests passed, but something felt off—comments longer than the code, empty catch blocks, unused imports everywhere. I tried aislop to scan for these "AI smell" patterns from source code.
Key findings:
Promise.allSettledfor concurrent scanningweight × log10(lines + 1)to prevent any single file from dominating#vs Java//vs Ruby#)Installation hiccup:
npm installfailed in my environment (network restrictions), and the published tarball doesn't bundle dependencies. If your network is fine,npx aislop scanshould work in one line.Compared to alternatives: slop-scan (223★ TS), vibecheck (14★ TS), sloppylint (82★ Python), ai-gen-code-search (31★ Python)—aislop is the only one that doesn't require an LLM API key or GPU, making it the most practical option for CI/CD integration.
Full deep-dive review (Chinese): AI写的代码有没有味道?我试了个专门闻味的工具
Great work on this tool @heavykenny — the rule design, especially the narrative comment detection module, shows serious attention to detail. 👏
All reactions