一键导入
aislop
Static analysis linter for AI-generated code patterns — 40+ rules, 7 languages, deterministic, no LLM.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Static analysis linter for AI-generated code patterns — 40+ rules, 7 languages, deterministic, no LLM.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
In-process vector database for AI applications — embed vector search, hybrid retrieval, and full-text search directly into your application without managing a separate server.
LLM-powered knowledge extraction CLI — transform unstructured text into structured knowledge (graphs, hypergraphs, spatio-temporal graphs) with a single command.
Give your AI agent one-click internet access — Twitter, Reddit, YouTube, GitHub, Bilibili, and more. Zero API fees.
Generate token-efficient CLIs for AI agents by reading API docs and studying community patterns. Prints Go binaries + Claude Code skills + MCP servers.
Terminal AI coding agent with video input, subagents, MCP support, and ACP editor integration
AI-powered code review CLI — deterministic pipelines + LLM agent, battle-tested at Alibaba scale
| name | aislop |
| description | Static analysis linter for AI-generated code patterns — 40+ rules, 7 languages, deterministic, no LLM. |
| tags | ["code-quality","linting","ai-code","static-analysis","ci-cd"] |
| related_skills | ["hermes-agent","requesting-code-review"] |
AISlop catches the telltale patterns that AI coding agents leave in your code. 40+ rules across 7 languages. Pure pattern matching — no LLM calls.
npm install -g aislop
# Run on a project
aislop ./src/
# Run with specific languages
aislop --lang typescript,python ./src/
# CI integration (exit code 1 on violations)
aislop --format json ./src/ | jq '.violations'
# Auto-fix fixable issues
aislop --fix ./src/
data, result, temp, value as variable names# GitHub Actions
- name: Check AI slop
run: npx aislop --format json ./src/ > slop-report.json
continue-on-error: true
# Fail on high-severity violations
- name: Gate AI code quality
run: aislop --min-severity high ./src/
# Verify installation
aislop --version
# Run on test file
echo "function getData() { let data = []; return data; }" > test.js
aislop test.js