Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:0
forks:0
updated:February 12, 2026 at 18:16
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | lint |
| description | Run code quality checks including linting, formatting, and type checking. |
Run code quality checks including linting, formatting, and type checking.
/lint [target] [--fix] [--strict]
target: Specific file or directory (default: src/ tests/)--fix: Auto-fix issues where possible--strict: Fail on warnings (for CI)When this skill is invoked:
Read prd/00_technology.md to find the correct commands
Run all checks in sequence:
# Linting (see prd/00_technology.md for specific command)
{lint_check_command} src/ tests/
# Formatting check
{format_check_command} src/ tests/
# Type checking
{type_check_command} src/
Report Results:
==================== Lint Results ====================
š Linting
ā
No issues found
š Formatting
ā ļø 2 files need formatting:
- src/{project}/api/routes
- tests/unit/test_config
š Type Checking
ā
No type errors
==================== Summary ====================
ā
Linting: Passed
ā ļø Formatting: 2 issues (run with --fix)
ā
Type Checking: Passed
Run '/lint --fix' to auto-fix formatting issues.
# Fix linting issues
{lint_fix_command} src/ tests/
# Fix formatting
{format_fix_command} src/ tests/
Report what was fixed:
š§ Auto-fixed issues:
Linting:
- src/{project}/api/routes: Removed unused import
- src/{project}/services/user: Sorted imports
Formatting:
- src/{project}/api/routes: Reformatted
- tests/unit/test_config: Reformatted
ā
All issues fixed!
Run individual checks (commands from prd/00_technology.md):
# Linting only
{lint_check_command} src/
# Formatting only
{format_check_command} src/
# Type checking only
{type_check_command} src/
# Security rules only (if supported)
{security_lint_command} src/
For CI pipelines, use strict mode:
From .claude/rules/code-quality.md:
$ /lint
š Running code quality checks...
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
š Linting
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā
All 15 files passed
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
š Formatting
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā
All files formatted correctly
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
š Type Checking
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
Success: no issues found in 15 source files
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā
All checks passed!
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā