docs + fix: improve llms.txt and fix canonical formula#81
Merged
rororowyourboat merged 8 commits intomainfrom Mar 4, 2026
Merged
docs + fix: improve llms.txt and fix canonical formula#81rororowyourboat merged 8 commits intomainfrom
rororowyourboat merged 8 commits intomainfrom
Conversation
Merge pull request #79 from BlockScience/dev
Remove gds-deepdive, v0.2-design, and entity-redesign proposal from mkdocs nav — these pre-implementation design docs diverge from the actual codebase and would confuse LLMs reading llms-full.txt. Add package names to llmstxt section headers and descriptions to key entry points (overviews, getting-started, guides) for better LLM navigation.
Plotly rejects 8-character hex colors (#RRGGBBAA). Convert to rgba() format which is universally supported.
CanonicalGDS.formula() previously always returned h = f ∘ g regardless of whether mechanism or policy blocks were present. Now correctly returns h = g (policy-only), h = f (mechanism-only), or h = id (empty). This fixes the canonical spectrum tables in the Rosetta Stone notebook where Game Theory incorrectly showed h = f ∘ g instead of h = g.
Standalone workspace package (pydantic>=2.10 only, no gds-framework dep) providing a cadCAD-compatible execution engine with native and compat function signatures, param sweeps, and optional parallel execution.
Update stockflow canonical test to expect degenerate formula (h = f) for orphan stocks, matching the recent canonical formula fix. Wrap long rgba() f-strings in evolution_of_trust notebook to satisfy E501.
…book New example with game-theoretic model for prisoner's dilemma and interactive marimo notebook for Nash equilibrium analysis.
Add mkdocs-marimo plugin and replace plain notebook links with interactive marimo-embed-file directives across all guide pages.
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
CanonicalGDS.formula()now correctly returnsh = g(policy-only),h = f(mechanism-only), orh = id(empty) instead of always returningh = f ∘ g. Fixes the Rosetta Stone notebook's canonical spectrum tables.Test plan
mkdocs build --strictpasses