{"id":16295909,"url":"https://github.com/raklaptudirm/mess","last_synced_at":"2025-03-20T04:31:10.121Z","repository":{"id":65115693,"uuid":"500158649","full_name":"raklaptudirm/mess","owner":"raklaptudirm","description":"A Messy Chess Engine","archived":false,"fork":false,"pushed_at":"2024-09-14T13:15:06.000Z","size":4868,"stargazers_count":21,"open_issues_count":1,"forks_count":3,"subscribers_count":3,"default_branch":"0.x.x","last_synced_at":"2025-02-28T23:10:35.564Z","etag":null,"topics":["chess","chess-engine"],"latest_commit_sha":null,"homepage":"https://laptudirm.com/x/mess","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/raklaptudirm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-06-05T17:00:59.000Z","updated_at":"2025-02-22T08:30:42.000Z","dependencies_parsed_at":"2024-10-27T21:48:20.782Z","dependency_job_id":"4b1e35ce-3dc5-4230-b607-a6826d99e665","html_url":"https://github.com/raklaptudirm/mess","commit_stats":{"total_commits":280,"total_committers":2,"mean_commits":140.0,"dds":0.4821428571428571,"last_synced_commit":"ae07987272fd36e2b4e308854bc11a73178cb3d9"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raklaptudirm%2Fmess","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raklaptudirm%2Fmess/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raklaptudirm%2Fmess/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raklaptudirm%2Fmess/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/raklaptudirm","download_url":"https://codeload.github.com/raklaptudirm/mess/tar.gz/refs/heads/0.x.x","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244051871,"owners_count":20389979,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chess","chess-engine"],"created_at":"2024-10-10T20:20:14.094Z","updated_at":"2025-03-20T04:31:09.504Z","avatar_url":"https://github.com/raklaptudirm.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003ca href=\".\"\u003e\n    \u003cimg src=\"./assets/logo.png\" alt=\"mess logo\" height=\"200\"/\u003e\n  \u003c/a\u003e\n  \n  \u003cbr\u003e\n  \n  \u003ca href=\"./LICENSE\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/license/rakarchive/mess?style=for-the-badge\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/raklaptudirm/mess/actions/workflows/ci.yml\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/actions/workflow/status/rakarchive/mess/ci.yml?style=for-the-badge\"\u003e\n  \u003c/a\u003e\n  \u003cbr\u003e\n  \u003ca href=\"https://github.com/raklaptudirm/mess/releases\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/v/release/rakarchive/mess?style=for-the-badge\"\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\n# Overview\n\nMess is an open source, UCI-compliant chess engine. Mess is not a complete chess program\nand requires an UCI-compliant chess graphical user interface(e.g. XBoard with PolyGlot,\nScid, Cute Chess, eboard, Arena, Sigma Chess, Shredder, Chess Partner or Fritz) to be\nused comfortably.\n\nMess's code structure is extremely modular and thus it may be used as a library for\ndeveloping chess engines in go. The [`./pkg`](./pkg) directory will contain all the\npackages that are available for use publicly.\n\n# Mess on Lichess\n\n\u003e The MessChessEngine Bot is currently hosted on my laptop, and therefore might not\nalways be online. The most reliable way to play against mess is to download the engine\nand use it with an UCI-compliant graphical user interface.\n\n- 🖥️ [Watch Mess Play on Lichess](https://lichess.org/@/MessChessEngine/tv)\n- 🎮 [Challange Mess on Lichess](https://lichess.org/@/MessChessEngine)\n\n# Installation\n\n### Prebuilt Binaries\n\nPrebuilt binaries for mess can be found in the releases section of this repository.\nBinaries are only provided for release versions of Mess. Binaries have been provided for\nall the major operating systems, including Windows, Linux, and Darwin.\n\nA list of all of Mess's releases can be found [here](https://github.com/raklaptudirm/mess/releases).\n\n### Prerequisites\n\nThe following need to be installed before you can install Mess:\n- [The Go Programming Language](https://go.dev/dl/)\n- [Git](https://git-scm.com/downloads) (for building from source)\n\n### Install Globally\n\n```bash\ngo install laptudirm.com/x/mess@latest\n```\n\n### Build from source\n```bash\n# downloard mess (other methods also work)\ngit clone https://github.com/rakarchive/mess.git\ncd mess\n\n# building mess binary\nmake EXE=path # creates binary in path\n```\n\n# License\n\nMess is licensed under the [Apache 2.0 License](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraklaptudirm%2Fmess","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraklaptudirm%2Fmess","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraklaptudirm%2Fmess/lists"}