docs: Expand mechanics documentation and add logging infrastructure (Issues #465, #464)#496
Merged
PipFoweraker merged 2 commits intomainfrom Dec 24, 2025
Merged
Conversation
…465) Create Priority 1 mechanics documentation: - docs/mechanics/funding.md - Starting resources, fundraising options, costs - docs/mechanics/doom.md - P(Doom) mechanics, momentum system, sources - docs/mechanics/personnel.md - Hiring, specializations, traits, burnout Updates: - README.md - Updated status table, fixed victory/loss conditions - reputation.md - Regenerated with updated game data - .mechanics_data.json - Updated data cache All values extracted from godot/scripts/core/game_state.gd and related game files. Documentation follows the existing reputation.md pattern with auto-generated game data tables. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
- Create logs/ directory structure with subdirectories: - logs/quality/ for pre-commit hooks and linting - logs/release/ for build and version operations - logs/testing/ for test runs and validation - logs/docs/ for documentation generation - logs/dev/ for general development logs - Add logs/README.md documenting the logging system - Update .gitignore to preserve logs/README.md and .gitkeep files - Add logging documentation section to scripts/README.md The existing logging_system.py provides PDoomLogger class with structured JSON output, timed operations, and log categories. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
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.
Summary
Issue #465: Mechanics Documentation
docs/mechanics/funding.md- fundraising, investors, money sinks, computedocs/mechanics/doom.md- P(Doom) mechanics, momentum system, doom sourcesdocs/mechanics/personnel.md- hiring, specializations, traits, burnoutdocs/mechanics/README.md- fix status table, victory/loss conditionsgenerate_mechanics_docs.pyIssue #464: Build Logging Infrastructure
logs/directory structure with categorized subdirectories (quality, release, testing, docs, dev)logs/README.mddocumenting the logging system, file naming conventions, and retention policies.gitignoreto preservelogs/README.mdand.gitkeepfilesscripts/README.mdwith quick start examplesDetails
All mechanics documentation values extracted from game source code (
game_state.gd,doom_system.gd,researcher.gd,actions.gd). Documentation follows the existingreputation.mdpattern with auto-generated game data tables.The existing
logging_system.pyprovides aPDoomLoggerclass with structured JSON output, timed operations, and log categories. This PR adds the directory structure and documentation.Test plan
logs/directory structure created correctly.gitignorepreserves README and .gitkeep filesCloses #465
Closes #464
🤖 Generated with Claude Code