docs: add OBJECTIVE.md defining project goals and scope#1
Merged
EngineerDogIta merged 4 commits intomasterfrom Mar 15, 2026
Merged
docs: add OBJECTIVE.md defining project goals and scope#1EngineerDogIta merged 4 commits intomasterfrom
EngineerDogIta merged 4 commits intomasterfrom
Conversation
Documents the project's core purpose, gameplay objective, design goals, technical scope, and out-of-scope items in a dedicated OBJECTIVE.md file. https://claude.ai/code/session_01MQnNXtMmBiQvwoFoNdEQDb
Documents startup sequence, word list generation, attempt calculation, the letter-hint feedback system, both win/lose end states, a real session replay, config reference, and strategy tips. https://claude.ai/code/session_01MQnNXtMmBiQvwoFoNdEQDb
Phase 1 - Code quality: - Fix LENGHT_PER_WORD typo -> LENGTH_PER_WORD in config.json and code - Remove unused randomword() function - Inline trivial verifyword() equality check - Pass config dict into generate() instead of reading globals - Guard all input() calls against EOFError/KeyboardInterrupt - Consolidate win/loss into single result block, remove duplicate 'A WINNAR IS YUO' Phase 2 - Gameplay accuracy: - Fix letinword() to use positional matching (zip-based) not letter presence - Normalize word list and player input to uppercase - Add --config CLI argument via argparse Phase 3 - Fallout faithful features: - Two-column hex-dump word layout with fake memory addresses - ANSI color output (green=win, red=error/loss, yellow=hints, cyan=UI) - REMOVE command: removes a random dud word from the active list - REPLENISH command: restores attempts to max once per game https://claude.ai/code/session_01MQnNXtMmBiQvwoFoNdEQDb
- Remove extra alignment spaces in color helper definitions (E272) - Break long f-string lines in display_words() into left/right parts (E501) - Split long command hint string literal across lines (E501) - Split long error message construction into two lines (E501) https://claude.ai/code/session_01MQnNXtMmBiQvwoFoNdEQDb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Documents the project's core purpose, gameplay objective, design goals,
technical scope, and out-of-scope items in a dedicated OBJECTIVE.md file.
https://claude.ai/code/session_01MQnNXtMmBiQvwoFoNdEQDb