Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
A highly customizable way to play chess in your terminal. Supports playing online (via Lichess.org) and offline against the Fairy-Stockfish engine. All Lichess variants are supported.
pip install cli-chess
cli-chess
to startIn order to play online using your Lichess account you will need to create an API token for cli-chess to authenticate with. Follow the steps below to create the token and register it with cli-chess. Generally, these steps will only need to be run once as cli-chess will remember the API token.
cli-chess --token ****
(replace *'s with your API token)Nearly every component of cli-chess can be styled by overriding parts of the
default style elements
in the custom_style.py
file. This file will be located at $HOME/.config/cli-chess/
for Linux and macOS and
$APPDATA/cli-chess/
for Windows.
Colors are expected to be HTML color names (e.g. seagreen
)
or HTML hex colors (e.g. #2E8B57
). The display of selected
colors is dependent on the terminal supporting true colors and the Terminal Color Depth
option in cli-chess program
settings being set to True Colors
). If the terminal does not support true colors, the colors selected will be mapped
to the closest supported color.
Restarting cli-chess, or pressing Ctrl+R
on any screen will force a style refresh. If this custom style sheet is
invalid in any way, the default cli-chess style will be applied. This file must be kept in dictionary format.
Example custom_style.py
to override board and piece colors:
{
"light-square": "bg:wheat",
"light-square.light-piece": "fg:white",
"light-square.dark-piece": "fg:black",
"dark-square": "bg:#2E8B57",
"dark-square.light-piece": "fg:white",
"dark-square.dark-piece": "fg:black",
"last-move": "bg:slateblue",
"last-move.light-piece": "fg:white",
"last-move.dark-piece": "fg:black",
"in-check": "bg:#FFA500",
"in-check.light-piece": "fg:white",
"in-check.dark-piece": "fg:black"
}
Moves are case-sensitive and must be made in SAN, LAN, or UCI. Moves cannot be made using the mouse.
Pawn promotions must specify the promotion piece type (e.g. e8=Q
or e7e8q
).
Moves that are ambiguous must specify the from square when using SAN (e.g. Ncd6
).
To drop a piece in Crazyhouse, use the @
symbol (e.g. Q@g4
).
If you need more information on move notation, see Appendix C of FIDE Laws of Chess.
The only way to increase the size of the board is to increase the size of the
font you're using. Many terminals also support Ctrl +
to increase the terminal size.
As cli-chess is a terminal based program, it has been designed to be used
with a monospace type font. A monospace font should always be used in order for
character alignment to be consistent. The display of cli-chess can change drastically
depending on the font being used, so it's important to choose a font that works best
for your terminal and display preferences. The fonts that I have found to work best with
cli-chess for piece alignment are Ubuntu Mono
, MS Gothic
, and NSimSun
.
Linux, Windows, and macOS. Development is mainly focused and will be prioritized for Linux as it's readily available for me to test on. Regardless of operating system, please report any issues found and I will do my best to support.
Playing offline vs the computer is currently only directly compatible with the Fairy-Stockfish engine. For simplicity, the Fairy-Stockfish binaries come pre-built with cli-chess for Linux, Windows, and macOS (x86-64 (and arm64 for macOS) architecture).
FAQs
A highly customizable way to play chess in your terminal
We found that cli-chess demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.