{"id":29586614,"url":"https://github.com/zulko/verbiage","last_synced_at":"2025-07-20T03:31:10.687Z","repository":{"id":303159223,"uuid":"1014576246","full_name":"Zulko/verbiage","owner":"Zulko","description":"A word game","archived":false,"fork":false,"pushed_at":"2025-07-15T02:23:18.000Z","size":1205,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-15T06:55:06.513Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://verbiage.cc","language":"Svelte","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Zulko.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-06T02:02:05.000Z","updated_at":"2025-07-15T02:23:22.000Z","dependencies_parsed_at":"2025-07-15T04:16:32.214Z","dependency_job_id":"b864964b-91f6-4fed-86c7-69d1962d8b23","html_url":"https://github.com/Zulko/verbiage","commit_stats":null,"previous_names":["zulko/verbiage"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Zulko/verbiage","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zulko%2Fverbiage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zulko%2Fverbiage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zulko%2Fverbiage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zulko%2Fverbiage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Zulko","download_url":"https://codeload.github.com/Zulko/verbiage/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zulko%2Fverbiage/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266063095,"owners_count":23870716,"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":[],"created_at":"2025-07-20T03:30:46.217Z","updated_at":"2025-07-20T03:31:10.675Z","avatar_url":"https://github.com/Zulko.png","language":"Svelte","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Verbiage\n\nVerbiage is a word guessing game. When you guess the wrong word, you get a clue about how your guess relates to the secret word.\n\n\u003cimg src=\"verbiage/screenshot.png\" alt=\"Verbiage screenshot\"/\u003e\n\n## Repository\n\nThis repository is organized in two folders:\n\n- `scripts` contains the scripts for generating the word lists and clues, and generating the daily puzzles.\n- `verbiage` contains the code for the app.\n\n### Scripts\n\nThe scripts can be used as follows (see `-h` for options):\n\n```bash\n# Compile the list of english words (4, 5, 6 letters)\npython scripts/word_lists/en_words.py\n\n# Play in the terminal\npython scripts/game.py play --language en --word-size 5\n\n# Run tests on predefined words\npython scripts/game.py test --language fr\n```\n\n### Verbiage web app\n\nThe web app is built using SvelteJS and can be run locally with:\n\n```bash\ncd verbiage\nnpm install\nnpm run dev\n```\n\nThe app deployed to [verbiage.cc](https://verbiage.cc) on each push to the `main` branch.\n\n## Stack\n\nVerbiage was built using\n- \u003ca\n        href=\"https://deepmind.google/technologies/gemini/\"\n        target=\"_blank\"\n        rel=\"noopener noreferrer\"\u003eGoogle Gemini\u003c/a\n      \u003e for AI-generated clues.\n- \u003ca\n        href=\"http://www.lexique.org/databases/Lexique383/\"\n        target=\"_blank\"\n        rel=\"noopener noreferrer\"\u003eLexique383\u003c/a\n      \u003e, \u003ca\n        href=\"https://www.gutenberg.org/files/3203/files/mobypos.txt\"\n        target=\"_blank\"\n        rel=\"noopener noreferrer\"\u003emobypos\u003c/a\n      \u003e,  \u003ca\n        href=\"https://github.com/zaibacu/thesaurus\"\n        target=\"_blank\"\n        rel=\"noopener noreferrer\"\u003eZaibacus' thesaurus\u003c/a\n      \u003e, \u003ca\n        href=\"https://norvig.com/ngrams/\"\n        target=\"_blank\"\n        rel=\"noopener noreferrer\"\u003ePeter Norvig's frequency list\u003c/a\n      \u003e, \u003ca\n        href=\"https://github.com/felixfischer/categorized-words\"\n        target=\"_blank\"\n        rel=\"noopener noreferrer\"\u003ecategorized-words\u003c/a\n      \u003e, for the lists of words.\n- \u003ca href=\"https://svelte.dev\" target=\"_blank\" rel=\"noopener noreferrer\"\n        \u003eSvelteJS\u003c/a\n      \u003e, \u003ca\n        href=\"https://mattboldt.com/demos/typed-js/\"\n        target=\"_blank\"\n        rel=\"noopener noreferrer\"\u003eMatt Boldt's Typed-JS\u003c/a\n      \u003e, \u003ca href=\"https://animate.style/\" target=\"_blank\" rel=\"noopener noreferrer\"\n        \u003eAnimate.css\u003c/a\n      \u003e, \u003ca\n        href=\"https://github.com/kaisermann/svelte-i18n\"\n        target=\"_blank\"\n        rel=\"noopener noreferrer\"\u003esvelte-i18n\u003c/a\n      \u003e for the website.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzulko%2Fverbiage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzulko%2Fverbiage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzulko%2Fverbiage/lists"}