- What rules does it check?
- ShellCheck's common rules: unquoted variables (word splitting), `[ "$x" = y ]` vs `[[ ]]`, backticks vs $(), `ls | grep` antipattern. The usual shell footguns.
- Which shell dialects?
- Bash, sh (POSIX), and dash. Bashisms in POSIX-targeted scripts get flagged; POSIX-strict features in bash scripts might be called overly-cautious.
- Does it fix issues?
- Reports only. Many shell fixes are subjective (quoting style, $(()) vs `expr`) so the tool suggests without auto-applying.
- Is it as comprehensive as ShellCheck?
- Covers ~80% of ShellCheck's rules. For CI pipelines use ShellCheck directly — this tool is for quick one-off checks in the browser.