Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기lint
스타1
포크0
업데이트2026년 5월 6일 11:01
代码质量检查工具集
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
代码质量检查工具集
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
分析 Python 项目的代码品位 — 6 维度评分(极简度/一致性/可读性/防御性/工程化/Agent Engineering),输出诊断 + 处方 + SVG 雷达图报告
Awwwards 设计灵感侦察 — 按奖项/分类/技术栈/UI元素/配色采集前端设计参考
行为驱动开发(BDD)流程助手
Python 代码冗余检测清单
活文档维护
优雅编码与重构规范
| name | lint |
| description | 代码质量检查工具集 |
| user-invocable | true |
| version | 0.0.1 |
| tags | lint, quality, check |
| dependencies | {} |
快速检查代码质量。
| 语言 | 工具 | 命令 |
|---|---|---|
| Shell | shellcheck | shellcheck file.sh |
| YAML | yamllint | yamllint file.yaml |
| Python | ruff | ruff check file.py |
| Python | mypy | mypy file.py |
| JS/TS | eslint | eslint file.js |
| Markdown | markdownlint | markdownlint file.md |
| Git | gitlint | gitlint |
/lint # 自动检测并检查
/lint shell # 检查 Shell 脚本
/lint yaml # 检查 YAML 文件
/lint python # 检查 Python 代码
/lint js # 检查 JavaScript/TypeScript
/lint all # 检查所有
# 安装
sudo apt install shellcheck
# 检查
shellcheck script.sh
常见问题:
use "$var"set -e#!/bin/bash vs #!/bin/sh# 安装
pip install yamllint
# 检查
yamllint file.yaml
常见问题:
# 安装
pip install ruff mypy
# 检查
ruff check file.py
mypy file.py
ruff: 代码风格、潜在问题 mypy: 类型检查
常见问题:
# 安装
npm install -g eslint
# 检查
eslint file.js
# 安装
npm install -g markdownlint-cli
# 检查
markdownlint file.md
# 安装
pip install gitlint
# 检查最近的 commit
gitlint
# 所有 Shell 文件
find . -name "*.sh" -exec shellcheck {} \;
# 所有 Python 文件
ruff check .
# 所有 YAML 文件
find . -name "*.yaml" -o -name "*.yml" | xargs yamllint
在项目根目录创建配置:
Shell: .shellcheckrc
YAML: .yamllint
Python: ruff.toml / pyproject.toml
ESLint: .eslintrc.json
先检查,再提交。