Move game spec and cards to separate meta repository#32
Merged
Conversation
The game spec and card catalog now live in the letsbuilda/mundane meta/spec repo, so remove game-docs/ here and point the README at the new location. Flesh out the Sphinx docs with backend-specific content (engine + API architecture and an endpoint table) and fix two issues the docs depend on: - conf.py: `except OSError, TypeError:` is invalid Python 3 syntax and broke the Sphinx build outright; parenthesize the exception tuple. - pyproject.toml: point `repository` at mundane-backend so autoapi's "view source" (linkcode) and the releases changelog links resolve to the repo that actually holds the source. https://claude.ai/code/session_01KtjeZXxEzk51k5dWs3rxpe
Signed-off-by: Bradley Reynolds <bradley.reynolds@tailstory.dev>
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.
This PR reorganizes documentation by moving the game specification and card catalog to a separate meta/spec repository (
mundane), while updating all references in the backend repository accordingly.Summary
The game rules (
SPEC.md) and card catalog (CARDS.md) have been moved out of the backend repository into a dedicated meta/spec repository. The backend now references these documents from their new location, and documentation has been updated to clarify the separation between the rules specification and the implementation.Key Changes
game-docs/SPEC.mdandgame-docs/CARDS.mdfrom the backend repositorydocs/index.rst):mundanemeta repository instead of local filesdocs/changelog.rst): Added initial feature entries documenting the engine and APIdocs/conf.py: Changedexcept OSError, TypeError:toexcept (OSError, TypeError):pyproject.toml: Changed frommundane/tomundane-backendto reflect the splitRationale
This separation allows the game specification to be maintained independently from the implementation, making it easier for multiple implementations (in different languages/frameworks) to reference the same authoritative rules and card definitions.
https://claude.ai/code/session_01KtjeZXxEzk51k5dWs3rxpe