hyperweave 0.3.0__tar.gz → 0.3.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (426) hide show
  1. {hyperweave-0.3.0 → hyperweave-0.3.2}/CHANGELOG.md +41 -0
  2. {hyperweave-0.3.0 → hyperweave-0.3.2}/PKG-INFO +102 -76
  3. {hyperweave-0.3.0 → hyperweave-0.3.2}/README.md +101 -75
  4. {hyperweave-0.3.0 → hyperweave-0.3.2}/scripts/generate_proofset.py +222 -4
  5. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/_version.py +2 -2
  6. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/cli.py +21 -3
  7. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/compose/assembler.py +59 -27
  8. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/compose/context.py +134 -0
  9. hyperweave-0.3.2/src/hyperweave/compose/reasoning.py +77 -0
  10. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/compose/resolver.py +55 -5
  11. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/compose/validate_paradigms.py +145 -0
  12. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/core/paradigm.py +50 -0
  13. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/core/schema.py +28 -0
  14. hyperweave-0.3.2/src/hyperweave/data/fonts/barlow-condensed-700.b64 +1 -0
  15. hyperweave-0.3.2/src/hyperweave/data/fonts/barlow-condensed-700.meta.json +1 -0
  16. hyperweave-0.3.2/src/hyperweave/data/fonts/barlow-condensed-900.b64 +1 -0
  17. hyperweave-0.3.2/src/hyperweave/data/fonts/barlow-condensed-900.meta.json +1 -0
  18. hyperweave-0.3.2/src/hyperweave/data/genomes/brutalist.json +493 -0
  19. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/genomes/telemetry-voltage.json +0 -10
  20. hyperweave-0.3.2/src/hyperweave/data/paradigms/brutalist.yaml +134 -0
  21. hyperweave-0.3.2/src/hyperweave/data/reasoning/__init__.py +8 -0
  22. hyperweave-0.3.2/src/hyperweave/data/reasoning/brutalist.yaml +275 -0
  23. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/render/chart_engine.py +58 -17
  24. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/telemetry/codex_parser.py +15 -1
  25. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/telemetry/contract.py +1 -1
  26. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/telemetry/models.py +10 -0
  27. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/telemetry/parser.py +25 -2
  28. hyperweave-0.3.2/src/hyperweave/telemetry/receipt_paths.py +73 -0
  29. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/components/chart-area.svg.j2 +2 -2
  30. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/components/chart-polyline.svg.j2 +2 -2
  31. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/components/metadata.svg.j2 +23 -17
  32. hyperweave-0.3.2/src/hyperweave/templates/frames/badge/brutalist-content.j2 +13 -0
  33. hyperweave-0.3.0/src/hyperweave/templates/frames/badge/brutalist-content.j2 → hyperweave-0.3.2/src/hyperweave/templates/frames/badge/brutalist-dark-content.j2 +5 -4
  34. hyperweave-0.3.2/src/hyperweave/templates/frames/badge/brutalist-defs.j2 +22 -0
  35. hyperweave-0.3.2/src/hyperweave/templates/frames/badge/brutalist-light-content.j2 +81 -0
  36. hyperweave-0.3.2/src/hyperweave/templates/frames/chart/brutalist-content.j2 +9 -0
  37. hyperweave-0.3.2/src/hyperweave/templates/frames/chart/brutalist-dark-content.j2 +159 -0
  38. hyperweave-0.3.2/src/hyperweave/templates/frames/chart/brutalist-defs.j2 +141 -0
  39. hyperweave-0.3.2/src/hyperweave/templates/frames/chart/brutalist-light-content.j2 +174 -0
  40. hyperweave-0.3.2/src/hyperweave/templates/frames/stats/brutalist-content.j2 +10 -0
  41. hyperweave-0.3.2/src/hyperweave/templates/frames/stats/brutalist-dark-content.j2 +169 -0
  42. hyperweave-0.3.2/src/hyperweave/templates/frames/stats/brutalist-defs.j2 +89 -0
  43. hyperweave-0.3.2/src/hyperweave/templates/frames/stats/brutalist-light-content.j2 +167 -0
  44. hyperweave-0.3.2/src/hyperweave/templates/frames/strip/brutalist-content.j2 +15 -0
  45. hyperweave-0.3.2/src/hyperweave/templates/frames/strip/brutalist-dark-content.j2 +129 -0
  46. hyperweave-0.3.2/src/hyperweave/templates/frames/strip/brutalist-defs.j2 +67 -0
  47. hyperweave-0.3.2/src/hyperweave/templates/frames/strip/brutalist-light-content.j2 +119 -0
  48. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/strip.svg.j2 +14 -0
  49. hyperweave-0.3.2/tests/fixtures/synthetic_session.jsonl +18 -0
  50. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/snapshots/url_stability/divider_band_chrome_static.svg +6 -6
  51. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/snapshots/url_stability/icon_github_chrome_static.svg +6 -6
  52. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_assembler.py +18 -0
  53. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_chart_engine.py +143 -0
  54. hyperweave-0.3.2/tests/test_chromatic_coverage_validator.py +107 -0
  55. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_codex_parser.py +19 -0
  56. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_core.py +8 -2
  57. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_divider_genome_specific.py +5 -2
  58. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_marquee_v0_2_16.py +10 -5
  59. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_paradigm_cellular.py +9 -2
  60. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_paradigm_dispatch.py +7 -5
  61. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_proofset.py +27 -9
  62. hyperweave-0.3.2/tests/test_receipt_paths.py +129 -0
  63. hyperweave-0.3.2/tests/test_strip_brutalist_grammar.py +118 -0
  64. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_telemetry.py +84 -0
  65. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_url_stability.py +21 -4
  66. hyperweave-0.3.0/src/hyperweave/data/genomes/brutalist.json +0 -97
  67. hyperweave-0.3.0/src/hyperweave/data/paradigms/brutalist.yaml +0 -84
  68. hyperweave-0.3.0/src/hyperweave/templates/frames/badge/brutalist-defs.j2 +0 -9
  69. hyperweave-0.3.0/src/hyperweave/templates/frames/chart/brutalist-content.j2 +0 -124
  70. hyperweave-0.3.0/src/hyperweave/templates/frames/chart/brutalist-defs.j2 +0 -47
  71. hyperweave-0.3.0/src/hyperweave/templates/frames/stats/brutalist-content.j2 +0 -115
  72. hyperweave-0.3.0/src/hyperweave/templates/frames/stats/brutalist-defs.j2 +0 -28
  73. hyperweave-0.3.0/src/hyperweave/templates/frames/strip/brutalist-content.j2 +0 -10
  74. hyperweave-0.3.0/src/hyperweave/templates/frames/strip/brutalist-defs.j2 +0 -29
  75. {hyperweave-0.3.0 → hyperweave-0.3.2}/.dockerignore +0 -0
  76. {hyperweave-0.3.0 → hyperweave-0.3.2}/.github/workflows/ci.yml +0 -0
  77. {hyperweave-0.3.0 → hyperweave-0.3.2}/.github/workflows/deploy.yml +0 -0
  78. {hyperweave-0.3.0 → hyperweave-0.3.2}/.github/workflows/publish.yml +0 -0
  79. {hyperweave-0.3.0 → hyperweave-0.3.2}/.gitignore +0 -0
  80. {hyperweave-0.3.0 → hyperweave-0.3.2}/.pre-commit-config.yaml +0 -0
  81. {hyperweave-0.3.0 → hyperweave-0.3.2}/Dockerfile +0 -0
  82. {hyperweave-0.3.0 → hyperweave-0.3.2}/LICENSE +0 -0
  83. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/buttons/button-liquid.svg +0 -0
  84. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/cards/card-butterfly.svg +0 -0
  85. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/cards/card-python.svg +0 -0
  86. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/cards/card-sunflower.svg +0 -0
  87. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/cards/card-waves.svg +0 -0
  88. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/brutalist-emerald/badge_critical.svg +0 -0
  89. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/brutalist-emerald/badge_passing.svg +0 -0
  90. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/brutalist-emerald/badge_warning.svg +0 -0
  91. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/brutalist-emerald/banner.svg +0 -0
  92. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/brutalist-emerald/icons/discord.svg +0 -0
  93. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/brutalist-emerald/icons/notion.svg +0 -0
  94. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/brutalist-emerald/icons/reddit.svg +0 -0
  95. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/brutalist-emerald/icons/spotify.svg +0 -0
  96. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/brutalist-emerald/icons/youtube.svg +0 -0
  97. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/brutalist-emerald/marquee_counter.svg +0 -0
  98. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/brutalist-emerald/marquee_horizontal.svg +0 -0
  99. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/brutalist-emerald/marquee_vertical.svg +0 -0
  100. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/brutalist-emerald/profile-cards/chart_stars_full.svg +0 -0
  101. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/brutalist-emerald/profile-cards/stats.svg +0 -0
  102. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/brutalist-emerald/strip.svg +0 -0
  103. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/chrome-horizon/badge_critical.svg +0 -0
  104. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/chrome-horizon/badge_passing.svg +0 -0
  105. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/chrome-horizon/badge_warning.svg +0 -0
  106. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/chrome-horizon/banner.svg +0 -0
  107. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/chrome-horizon/icons/bluesky.svg +0 -0
  108. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/chrome-horizon/icons/github.svg +0 -0
  109. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/chrome-horizon/icons/instagram.svg +0 -0
  110. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/chrome-horizon/icons/mastodon.svg +0 -0
  111. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/chrome-horizon/icons/x.svg +0 -0
  112. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/chrome-horizon/marquee_counter.svg +0 -0
  113. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/chrome-horizon/marquee_horizontal.svg +0 -0
  114. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/chrome-horizon/marquee_vertical.svg +0 -0
  115. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/chrome-horizon/profile-cards/chart_stars_full.svg +0 -0
  116. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/chrome-horizon/profile-cards/stats.svg +0 -0
  117. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/chrome-horizon/strip.svg +0 -0
  118. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/telemetry/master_card.svg +0 -0
  119. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/telemetry/receipt.svg +0 -0
  120. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/telemetry/receipt_claude-code_medium.svg +0 -0
  121. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/telemetry/receipt_codex_large.svg +0 -0
  122. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/telemetry/receipt_voltage_xlarge.svg +0 -0
  123. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/telemetry/rhythm_strip.svg +0 -0
  124. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/examples/telemetry/rhythm_strip_voltage_xlarge.svg +0 -0
  125. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/footers/inneraura-footer-liquid.svg +0 -0
  126. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/footers/inneraura-footer-purple.svg +0 -0
  127. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/footers/inneraura-footer.svg +0 -0
  128. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/hyperweave-banner.svg +0 -0
  129. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/icons/cobalt-sapphire-discord.svg +0 -0
  130. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/icons/cobalt-sapphire-docs.svg +0 -0
  131. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/icons/cobalt-sapphire-github.svg +0 -0
  132. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/icons/cobalt-sapphire-instagram.svg +0 -0
  133. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/icons/cobalt-sapphire-linkedin.svg +0 -0
  134. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/icons/cobalt-sapphire-tiktok.svg +0 -0
  135. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/icons/cobalt-sapphire-x.svg +0 -0
  136. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/icons/cobalt-sapphire-youtube.svg +0 -0
  137. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/marquees/badge-showcase-triple.svg +0 -0
  138. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/marquees/genome-marquee-triple.svg +0 -0
  139. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/marquees/sample-badges.svg +0 -0
  140. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/mintlify-assets/404.svg +0 -0
  141. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/mintlify-assets/callout-icons.svg +0 -0
  142. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/mintlify-assets/divider.svg +0 -0
  143. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/mintlify-assets/favicon.svg +0 -0
  144. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/mintlify-assets/hero-banner.svg +0 -0
  145. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/mintlify-assets/hyperweave-banner-v2.svg +0 -0
  146. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/mintlify-assets/hyperweave-navbar-logo.svg +0 -0
  147. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/mintlify-assets/loader.svg +0 -0
  148. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/mintlify-assets/og-image.svg +0 -0
  149. {hyperweave-0.3.0 → hyperweave-0.3.2}/assets/timelines/hyperweave-roadmap.svg +0 -0
  150. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/assets/favicon.svg +0 -0
  151. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/assets/hyperweave-banner.svg +0 -0
  152. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/assets/hyperweave-navbar-logo.svg +0 -0
  153. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/assets/og-image.svg +0 -0
  154. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/explanation/architecture.mdx +0 -0
  155. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/explanation/camo-compatibility.mdx +0 -0
  156. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/explanation/cim-compliance.mdx +0 -0
  157. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/explanation/genome-profile-system.mdx +0 -0
  158. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/explanation/metadata-tiers.mdx +0 -0
  159. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/how-to/add-motion-to-badges.mdx +0 -0
  160. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/how-to/create-session-receipts.mdx +0 -0
  161. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/how-to/set-up-claude-code-hooks.mdx +0 -0
  162. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/how-to/use-live-data-badges.mdx +0 -0
  163. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/introduction.mdx +0 -0
  164. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/mint.json +0 -0
  165. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/quickstart.mdx +0 -0
  166. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/reference/cli.mdx +0 -0
  167. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/reference/compose-spec.mdx +0 -0
  168. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/reference/genomes.mdx +0 -0
  169. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/reference/http-api.mdx +0 -0
  170. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/reference/mcp-tools.mdx +0 -0
  171. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/reference/motions.mdx +0 -0
  172. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/reference/telemetry-contract.mdx +0 -0
  173. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/spec/hyperweave-protocol.mdx +0 -0
  174. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/tutorials/build-an-artifact-kit.mdx +0 -0
  175. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/tutorials/compose-your-first-badge.mdx +0 -0
  176. {hyperweave-0.3.0 → hyperweave-0.3.2}/docs/tutorials/install-session-telemetry.mdx +0 -0
  177. {hyperweave-0.3.0 → hyperweave-0.3.2}/fly.toml +0 -0
  178. {hyperweave-0.3.0 → hyperweave-0.3.2}/hooks/install.py +0 -0
  179. {hyperweave-0.3.0 → hyperweave-0.3.2}/hooks/session_end.sh +0 -0
  180. {hyperweave-0.3.0 → hyperweave-0.3.2}/justfile +0 -0
  181. {hyperweave-0.3.0 → hyperweave-0.3.2}/pyproject.toml +0 -0
  182. {hyperweave-0.3.0 → hyperweave-0.3.2}/scripts/extract_font_metrics.py +0 -0
  183. {hyperweave-0.3.0 → hyperweave-0.3.2}/scripts/extract_glyphs.py +0 -0
  184. {hyperweave-0.3.0 → hyperweave-0.3.2}/scripts/probe_live_stats.py +0 -0
  185. {hyperweave-0.3.0 → hyperweave-0.3.2}/scripts/probe_star_history.py +0 -0
  186. {hyperweave-0.3.0 → hyperweave-0.3.2}/scripts/stress_test.py +0 -0
  187. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/__init__.py +0 -0
  188. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/__main__.py +0 -0
  189. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/compose/__init__.py +0 -0
  190. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/compose/bar_chart.py +0 -0
  191. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/compose/engine.py +0 -0
  192. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/compose/lanes.py +0 -0
  193. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/compose/layout.py +0 -0
  194. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/compose/palette.py +0 -0
  195. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/compose/resolvers/__init__.py +0 -0
  196. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/compose/resolvers/chart.py +0 -0
  197. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/compose/resolvers/stats.py +0 -0
  198. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/compose/rhythm.py +0 -0
  199. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/compose/rhythm_strip.py +0 -0
  200. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/compose/treemap.py +0 -0
  201. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/config/__init__.py +0 -0
  202. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/config/genome_validator.py +0 -0
  203. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/config/loader.py +0 -0
  204. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/config/registry.py +0 -0
  205. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/config/settings.py +0 -0
  206. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/connectors/__init__.py +0 -0
  207. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/connectors/arxiv.py +0 -0
  208. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/connectors/base.py +0 -0
  209. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/connectors/cache.py +0 -0
  210. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/connectors/github.py +0 -0
  211. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/connectors/rest.py +0 -0
  212. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/core/__init__.py +0 -0
  213. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/core/cell_layout.py +0 -0
  214. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/core/color.py +0 -0
  215. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/core/contracts.py +0 -0
  216. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/core/enums.py +0 -0
  217. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/core/font_metrics.py +0 -0
  218. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/core/models.py +0 -0
  219. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/core/state.py +0 -0
  220. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/core/text.py +0 -0
  221. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/core/thresholds.py +0 -0
  222. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/badge_modes.yaml +0 -0
  223. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/css/accessibility.css +0 -0
  224. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/css/bridge.css +0 -0
  225. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/css/expression.css +0 -0
  226. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/css/status.css +0 -0
  227. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/font-metrics/chakra-petch.json +0 -0
  228. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/font-metrics/inter.json +0 -0
  229. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/font-metrics/jetbrains-mono.json +0 -0
  230. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/font-metrics/orbitron.json +0 -0
  231. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/fonts/chakra-petch.b64 +0 -0
  232. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/fonts/chakra-petch.meta.json +0 -0
  233. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/fonts/jetbrains-mono.b64 +0 -0
  234. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/fonts/jetbrains-mono.meta.json +0 -0
  235. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/fonts/orbitron.b64 +0 -0
  236. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/fonts/orbitron.meta.json +0 -0
  237. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/genomes/automata.json +0 -0
  238. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/genomes/chrome.json +0 -0
  239. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/genomes/telemetry-claude-code.json +0 -0
  240. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/genomes/telemetry-codex.json +0 -0
  241. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/genomes/telemetry-cream.json +0 -0
  242. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/glyphs.json +0 -0
  243. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/motions/border/chromatic-pulse.yaml +0 -0
  244. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/motions/border/corner-trace.yaml +0 -0
  245. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/motions/border/dual-orbit.yaml +0 -0
  246. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/motions/border/entanglement.yaml +0 -0
  247. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/motions/border/rimrun.yaml +0 -0
  248. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/motions/static.yaml +0 -0
  249. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/paradigms/cellular.yaml +0 -0
  250. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/paradigms/chrome.yaml +0 -0
  251. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/paradigms/default.yaml +0 -0
  252. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/policies/normal.json +0 -0
  253. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/policies/permissive.json +0 -0
  254. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/policies/ungoverned.json +0 -0
  255. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/profiles/brutalist.contract.json +0 -0
  256. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/profiles/brutalist.yaml +0 -0
  257. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/profiles/chrome.contract.json +0 -0
  258. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/profiles/chrome.yaml +0 -0
  259. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/specimens.yaml +0 -0
  260. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/telemetry/model-pricing.yaml +0 -0
  261. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/telemetry/runtimes/claude-code.yaml +0 -0
  262. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/telemetry/runtimes/codex.yaml +0 -0
  263. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/telemetry/stage-config.yaml +0 -0
  264. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/telemetry/stage-labels.yaml +0 -0
  265. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/telemetry/tool-colors.yaml +0 -0
  266. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/terminals/arrow.json +0 -0
  267. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/terminals/aurora.json +0 -0
  268. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/terminals/beacon.json +0 -0
  269. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/terminals/bracket3d.json +0 -0
  270. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/terminals/chevron.json +0 -0
  271. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/terminals/crosshair.json +0 -0
  272. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/terminals/diamond.json +0 -0
  273. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/terminals/rocket.json +0 -0
  274. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/terminals/rules/bar.json +0 -0
  275. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/terminals/rules/dashed.json +0 -0
  276. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/terminals/rules/five-wave.json +0 -0
  277. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/terminals/rules/spectral.json +0 -0
  278. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/terminals/rules/straight.json +0 -0
  279. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/terminals/rules/wave.json +0 -0
  280. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/data/terminals/stijl.json +0 -0
  281. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/kit.py +0 -0
  282. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/mcp/__init__.py +0 -0
  283. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/mcp/__main__.py +0 -0
  284. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/mcp/server.py +0 -0
  285. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/py.typed +0 -0
  286. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/render/__init__.py +0 -0
  287. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/render/fonts.py +0 -0
  288. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/render/glyphs.py +0 -0
  289. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/render/motion.py +0 -0
  290. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/render/templates.py +0 -0
  291. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/serve/__init__.py +0 -0
  292. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/serve/app.py +0 -0
  293. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/serve/data_tokens.py +0 -0
  294. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/telemetry/__init__.py +0 -0
  295. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/telemetry/capture.py +0 -0
  296. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/telemetry/corrections.py +0 -0
  297. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/telemetry/cost.py +0 -0
  298. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/telemetry/runtimes.py +0 -0
  299. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/telemetry/stages.py +0 -0
  300. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/components/chart-axes.svg.j2 +0 -0
  301. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/components/chart-empty-state.svg.j2 +0 -0
  302. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/components/chart-gridlines.svg.j2 +0 -0
  303. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/components/chart-markers/circle.svg.j2 +0 -0
  304. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/components/chart-markers/diamond.svg.j2 +0 -0
  305. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/components/chart-markers/endpoint-diamond.svg.j2 +0 -0
  306. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/components/chart-markers/endpoint-rect.svg.j2 +0 -0
  307. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/components/chart-markers/rect.svg.j2 +0 -0
  308. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/components/chart-milestone.svg.j2 +0 -0
  309. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/components/filter.svg.j2 +0 -0
  310. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/components/glyph-inline.svg.j2 +0 -0
  311. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/components/glyph.svg.j2 +0 -0
  312. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/components/gradient.svg.j2 +0 -0
  313. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/components/metric.svg.j2 +0 -0
  314. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/components/phase-segment.svg.j2 +0 -0
  315. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/components/rule.svg.j2 +0 -0
  316. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/components/status.svg.j2 +0 -0
  317. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/components/terminal.svg.j2 +0 -0
  318. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/document.svg.j2 +0 -0
  319. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/error-badge.svg.j2 +0 -0
  320. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/badge/cellular-content.j2 +0 -0
  321. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/badge/cellular-defs.j2 +0 -0
  322. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/badge/chrome-content.j2 +0 -0
  323. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/badge/chrome-defs.j2 +0 -0
  324. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/badge/default-content.j2 +0 -0
  325. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/badge/default-defs.j2 +0 -0
  326. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/badge.svg.j2 +0 -0
  327. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/catalog.svg.j2 +0 -0
  328. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/chart/cellular-content.j2 +0 -0
  329. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/chart/cellular-defs.j2 +0 -0
  330. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/chart/chrome-content.j2 +0 -0
  331. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/chart/chrome-defs.j2 +0 -0
  332. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/chart.svg.j2 +0 -0
  333. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/divider/brutalist-seam.svg.j2 +0 -0
  334. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/divider/chrome-band.svg.j2 +0 -0
  335. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/divider.svg.j2 +0 -0
  336. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/icon/brutalist-content.j2 +0 -0
  337. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/icon/brutalist-defs.j2 +0 -0
  338. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/icon/cellular-content.j2 +0 -0
  339. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/icon/cellular-defs.j2 +0 -0
  340. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/icon/chrome-content.j2 +0 -0
  341. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/icon/chrome-defs.j2 +0 -0
  342. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/icon/default-content.j2 +0 -0
  343. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/icon/default-defs.j2 +0 -0
  344. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/icon.svg.j2 +0 -0
  345. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/marquee-horizontal/brutalist-content.j2 +0 -0
  346. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/marquee-horizontal/brutalist-defs.j2 +0 -0
  347. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/marquee-horizontal/brutalist-overlay.j2 +0 -0
  348. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/marquee-horizontal/cellular-content.j2 +0 -0
  349. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/marquee-horizontal/cellular-defs.j2 +0 -0
  350. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/marquee-horizontal/cellular-overlay.j2 +0 -0
  351. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/marquee-horizontal/chrome-content.j2 +0 -0
  352. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/marquee-horizontal/chrome-defs.j2 +0 -0
  353. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/marquee-horizontal/chrome-overlay.j2 +0 -0
  354. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/marquee-horizontal/default-content.j2 +0 -0
  355. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/marquee-horizontal/default-defs.j2 +0 -0
  356. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/marquee-horizontal.svg.j2 +0 -0
  357. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/master-card.svg.j2 +0 -0
  358. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/receipt.svg.j2 +0 -0
  359. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/rhythm-strip.svg.j2 +0 -0
  360. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/stats/cellular-content.j2 +0 -0
  361. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/stats/cellular-defs.j2 +0 -0
  362. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/stats/chrome-content.j2 +0 -0
  363. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/stats/chrome-defs.j2 +0 -0
  364. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/stats.svg.j2 +0 -0
  365. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/strip/brutalist-status.j2 +0 -0
  366. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/strip/cellular-content.j2 +0 -0
  367. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/strip/cellular-defs.j2 +0 -0
  368. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/strip/cellular-status.j2 +0 -0
  369. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/strip/chrome-content.j2 +0 -0
  370. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/strip/chrome-defs.j2 +0 -0
  371. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/strip/chrome-status.j2 +0 -0
  372. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/strip/default-content.j2 +0 -0
  373. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/strip/default-defs.j2 +0 -0
  374. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/frames/strip/default-status.j2 +0 -0
  375. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/motions/border/chromatic-pulse.svg.j2 +0 -0
  376. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/motions/border/corner-trace.svg.j2 +0 -0
  377. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/motions/border/dual-orbit.svg.j2 +0 -0
  378. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/motions/border/entanglement.svg.j2 +0 -0
  379. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/motions/border/rimrun.svg.j2 +0 -0
  380. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/partials/provider-glyphs.svg.j2 +0 -0
  381. {hyperweave-0.3.0 → hyperweave-0.3.2}/src/hyperweave/templates/partials/state-signal-cascade.j2 +0 -0
  382. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/__init__.py +0 -0
  383. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/conftest.py +0 -0
  384. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/fixtures/codex_session.jsonl +0 -0
  385. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/fixtures/codex_session_patches.jsonl +0 -0
  386. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/fixtures/github_contributions/synthetic.html +0 -0
  387. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/fixtures/session.json +0 -0
  388. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/fixtures/session.jsonl +0 -0
  389. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/helpers.py +0 -0
  390. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_badge_cellular.py +0 -0
  391. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_badge_layout.py +0 -0
  392. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_badge_mode.py +0 -0
  393. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_chart_frame.py +0 -0
  394. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_chrome_variants.py +0 -0
  395. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_compose_bar_chart.py +0 -0
  396. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_compose_rhythm_strip.py +0 -0
  397. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_compose_treemap.py +0 -0
  398. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_compose_variant_field.py +0 -0
  399. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_connectors.py +0 -0
  400. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_data_tokens.py +0 -0
  401. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_divider_cellular.py +0 -0
  402. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_font_gating.py +0 -0
  403. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_font_metrics_chakra.py +0 -0
  404. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_genome_automata.py +0 -0
  405. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_github_scrape.py +0 -0
  406. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_kit.py +0 -0
  407. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_mcp.py +0 -0
  408. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_paradigm_extensibility.py +0 -0
  409. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_parse_transcript_auto.py +0 -0
  410. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_receipt_token_compliance.py +0 -0
  411. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_render.py +0 -0
  412. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_resolver_rhythm.py +0 -0
  413. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_runtime_registries.py +0 -0
  414. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_serve.py +0 -0
  415. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_serve_live_state.py +0 -0
  416. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_slot_metric_state.py +0 -0
  417. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_state_inference.py +0 -0
  418. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_stats_card.py +0 -0
  419. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_strip_cellular.py +0 -0
  420. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_strip_status_toggle.py +0 -0
  421. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_telemetry_contract_per_stage.py +0 -0
  422. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_telemetry_integration.py +0 -0
  423. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_telemetry_skin_dispatch.py +0 -0
  424. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_tool_class_completeness.py +0 -0
  425. {hyperweave-0.3.0 → hyperweave-0.3.2}/tests/test_variant_default_resolution.py +0 -0
  426. {hyperweave-0.3.0 → hyperweave-0.3.2}/uv.lock +0 -0
@@ -5,6 +5,47 @@ All notable changes to HyperWeave are documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.3.2] - 2026-05-11
9
+
10
+ Brutalist gets 12 variants split by substrate: 6 dark monochromes (celadon, carbon, alloy, temper, pigment, ember) and 6 light scholars (archive, signal, pulse, depth, afterimage, primer). Metadata pipeline wires 12 fields that were silently hardcoded. Per-frame reasoning populates `hw:reasoning` from per-genome YAML.
11
+
12
+ ### Added
13
+
14
+ - Brutalist 12 variants with substrate dispatch (dark | light template routing).
15
+ - Per-frame reasoning architecture — `data/reasoning/{genome}.yaml` loader; brutalist authored, chrome/automata follow.
16
+ - `hw:variant` and `hw:stratum` metadata fields.
17
+ - Barlow Condensed 700/900 embedded for display typography.
18
+ - Semantic chart CSS vars (`--dna-chart-main`, `--dna-chart-highlight`) decouple data color from accent signal across substrates.
19
+
20
+ ### Fixed
21
+
22
+ - Metadata pipeline: 12 context variables now wired from genome/variant config (version, series, platform, theme, palette, fonts, rhythm, material, form language, contrast, motion compliance).
23
+ - Version string reflects current release (was 0.2.4).
24
+ - `hw:reasoning` fields populate (were always empty).
25
+
26
+ ### Notes
27
+
28
+ - Chrome and automata reasoning YAML queued for follow-up.
29
+
30
+ ## [0.3.1] - 2026-05-10
31
+
32
+ Receipt user-turn count and filenames now reflect actual session content. Voltage receipts always render dark regardless of viewer color scheme. Star chart x-axis labels no longer collide on short-history repos.
33
+
34
+ ### Fixed
35
+
36
+ - **Receipt user-turn count** — the footer "N user turns" now reports actual prompt count; slash commands and tool results no longer skew the number.
37
+ - **Star chart x-axis labels on short histories** — "Apr 2026" / "May 2026" no longer overlap on charts spanning under two years. Spacing now accounts for actual label width and drops middle labels when their bounding boxes would touch.
38
+
39
+ ### Changed
40
+
41
+ - **Receipt filenames are human-readable** — saved as `{date}_{time}_{session-name}.svg` (was UUID-only). Session name comes from Claude Code's auto-titled session or Codex's thread name; UUID stays in the SVG metadata.
42
+ - **Voltage receipts always render dark** — the light-mode adaptation block is removed; voltage stays dark across all viewers.
43
+ - **Codex receipts carry git branch and thread name** — both are now extracted from Codex transcripts and surfaced in receipt provenance and filenames.
44
+
45
+ ### Notes
46
+
47
+ - 1067 tests (was 1035).
48
+
8
49
  ## [0.3.0] - 2026-05-10
9
50
 
10
51
  Chrome ships five named variants. Automata ships sixteen tones with a pairing grammar that composes any two into a bifamily strip or divider. Stat cards, star charts, marquees, and icons redesigned. Per-frame font filtering cuts artifact payloads.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hyperweave
3
- Version: 0.3.0
3
+ Version: 0.3.2
4
4
  Summary: Headless visual output layer for AI agents. One API call → self-contained SVG.
5
5
  Project-URL: Repository, https://github.com/InnerAura/hyperweave
6
6
  Project-URL: Issues, https://github.com/InnerAura/hyperweave/issues
@@ -151,121 +151,129 @@ Why genome and not theme? Because brand isn't a design problem, it's an infrastr
151
151
  -->
152
152
 
153
153
  <p align="center">
154
- <a href="#chrome"><kbd>chrome</kbd></a>
154
+ <a href="#brutalist"><kbd>brutalist</kbd></a>
155
155
  &middot;
156
156
  <a href="#automata"><kbd>automata</kbd></a>
157
157
  &middot;
158
- <a href="#brutalist"><kbd>brutalist</kbd></a>
158
+ <a href="#chrome"><kbd>chrome</kbd></a>
159
159
  </p>
160
160
 
161
- <h3 id="chrome">chrome</h3>
161
+ <h3 id="brutalist">brutalist</h3>
162
162
 
163
163
  <p align="center">
164
- <img src="https://hyperweave.app/v1/badge/BUILD/passing/chrome.static?state=passing&variant=horizon" alt="BUILD passing horizon variant"/>
165
- <img src="https://hyperweave.app/v1/badge/DEPLOY/live/chrome.static?state=passing&variant=abyssal" alt="DEPLOY live abyssal variant"/>
166
- <img src="https://hyperweave.app/v1/badge/COVERAGE/94%25/chrome.static?state=passing&variant=lightning" alt="COVERAGE 94% lightning variant"/>
167
- <img src="https://hyperweave.app/v1/badge/CRITICAL/0/chrome.static?state=warning&variant=graphite" alt="CRITICAL 0 graphite variant"/>
168
- <img src="https://hyperweave.app/v1/badge/TESTS/142/chrome.static?state=passing&variant=moth" alt="TESTS 142 moth variant"/>
164
+ <img src="https://hyperweave.app/v1/badge/PYPI/brutalist.static?data=pypi:hyperweave.version&glyph=python&variant=celadon" alt="PYPIceladon variant"/>
165
+ <img src="https://hyperweave.app/v1/badge/PYPI/brutalist.static?data=pypi:hyperweave.version&glyph=python&variant=carbon" alt="PYPIcarbon variant"/>
166
+ <img src="https://hyperweave.app/v1/badge/PYPI/brutalist.static?data=pypi:hyperweave.version&glyph=python&variant=alloy" alt="PYPIalloy variant"/>
167
+ <img src="https://hyperweave.app/v1/badge/PYPI/brutalist.static?data=pypi:hyperweave.version&glyph=python&variant=temper" alt="PYPItemper variant"/>
168
+ <img src="https://hyperweave.app/v1/badge/PYPI/brutalist.static?data=pypi:hyperweave.version&glyph=python&variant=pigment" alt="PYPIpigment variant"/>
169
+ <img src="https://hyperweave.app/v1/badge/PYPI/brutalist.static?data=pypi:hyperweave.version&glyph=python&variant=ember" alt="PYPI — ember variant"/>
170
+ <br/>
171
+ <img src="https://hyperweave.app/v1/badge/PYPI/brutalist.static?data=pypi:hyperweave.version&glyph=python&variant=archive" alt="PYPI — archive variant"/>
172
+ <img src="https://hyperweave.app/v1/badge/PYPI/brutalist.static?data=pypi:hyperweave.version&glyph=python&variant=signal" alt="PYPI — signal variant"/>
173
+ <img src="https://hyperweave.app/v1/badge/PYPI/brutalist.static?data=pypi:hyperweave.version&glyph=python&variant=pulse" alt="PYPI — pulse variant"/>
174
+ <img src="https://hyperweave.app/v1/badge/PYPI/brutalist.static?data=pypi:hyperweave.version&glyph=python&variant=depth" alt="PYPI — depth variant"/>
175
+ <img src="https://hyperweave.app/v1/badge/PYPI/brutalist.static?data=pypi:hyperweave.version&glyph=python&variant=afterimage" alt="PYPI — afterimage variant"/>
176
+ <img src="https://hyperweave.app/v1/badge/PYPI/brutalist.static?data=pypi:hyperweave.version&glyph=python&variant=primer" alt="PYPI — primer variant"/>
169
177
  </p>
170
178
 
171
179
  <p align="center">
172
- <sub>5 variants: <code>horizon</code> &middot; <code>abyssal</code> &middot; <code>lightning</code> &middot; <code>graphite</code> &middot; <code>moth</code></sub>
180
+ <sub>12 variants: <code>celadon</code> &middot; <code>carbon</code> &middot; <code>alloy</code> &middot; <code>temper</code> &middot; <code>pigment</code> &middot; <code>ember</code> &middot; <code>archive</code> &middot; <code>signal</code> &middot; <code>pulse</code> &middot; <code>depth</code> &middot; <code>afterimage</code> &middot; <code>primer</code></sub>
173
181
  </p>
174
182
 
175
183
  <table>
176
184
  <tr>
177
185
  <th align="left" width="160">Signals<br/><sub>state machine</sub></th>
178
186
  <td>
179
- <img src="https://hyperweave.app/v1/badge/BUILD/passing/chrome.static?state=passing&variant=horizon" alt="passing"/>
180
- <img src="https://hyperweave.app/v1/badge/BUILD/warning/chrome.static?state=warning&variant=horizon" alt="warning"/>
181
- <img src="https://hyperweave.app/v1/badge/BUILD/critical/chrome.static?state=critical&variant=horizon" alt="critical"/>
187
+ <img src="https://hyperweave.app/v1/badge/BUILD/passing/brutalist.static?state=passing&variant=celadon" alt="passing"/>
188
+ <img src="https://hyperweave.app/v1/badge/BUILD/warning/brutalist.static?state=warning&variant=celadon" alt="warning"/>
189
+ <img src="https://hyperweave.app/v1/badge/BUILD/critical/brutalist.static?state=critical&variant=celadon" alt="critical"/>
182
190
  <br/>
183
191
  <ul>
184
- <li><sub><code>/v1/badge/{title}/{value}/{genome}.static?state={state}&variant={horizon|abyssal|lightning|graphite|moth}</code></sub></li>
185
- <li><sub><code>hyperweave.app/v1/badge/BUILD/passing/chrome.static?state=passing&variant=horizon</code></sub></li>
192
+ <li><sub><code>/v1/badge/{title}/{value}/{genome}.static?state={state}&variant={celadon|carbon|alloy|temper|pigment|ember|archive|signal|pulse|depth|afterimage|primer}</code></sub></li>
193
+ <li><sub><code>hyperweave.app/v1/badge/BUILD/passing/brutalist.static?state=passing&variant=celadon</code></sub></li>
186
194
  </ul>
187
195
  </td>
188
196
  </tr>
189
197
  <tr>
190
198
  <th align="left">Dashboard<br/><sub>strip</sub></th>
191
199
  <td>
192
- <img src="https://hyperweave.app/v1/strip/readme-ai/chrome.static?data=gh:eli64s/readme-ai.stars,gh:eli64s/readme-ai.forks,pypi:readmeai.version&subtitle=eli64s/readme-ai&glyph=github&variant=horizon" alt="strip"/>
200
+ <img src="https://hyperweave.app/v1/strip/readme-ai/brutalist.static?data=gh:eli64s/readme-ai.stars,gh:eli64s/readme-ai.forks,pypi:readmeai.version&subtitle=eli64s/readme-ai&glyph=github&variant=celadon" alt="strip"/>
193
201
  <br/>
194
202
  <ul>
195
203
  <li><sub><code>/v1/strip/{title}/{genome}.static?data={tokens}&subtitle={text}&glyph={glyph}&variant={variant}</code></sub></li>
196
- <li><sub><code>hyperweave.app/v1/strip/readme-ai/chrome.static?data=gh:eli64s/readme-ai.stars,gh:eli64s/readme-ai.forks,pypi:readmeai.version&subtitle=eli64s/readme-ai&glyph=github&variant=horizon</code></sub></li>
204
+ <li><sub><code>hyperweave.app/v1/strip/readme-ai/brutalist.static?data=gh:eli64s/readme-ai.stars,gh:eli64s/readme-ai.forks,pypi:readmeai.version&subtitle=eli64s/readme-ai&glyph=github&variant=celadon</code></sub></li>
197
205
  </ul>
198
206
  </td>
199
207
  </tr>
200
208
  <tr>
201
209
  <th align="left">Profile<br/><sub>stats card</sub></th>
202
210
  <td>
203
- <img src="https://hyperweave.app/v1/stats/eli64s/chrome.static?variant=horizon" alt="stats" width="100%"/>
211
+ <img src="https://hyperweave.app/v1/stats/eli64s/brutalist.static?variant=celadon" alt="stats" width="100%"/>
204
212
  <br/>
205
213
  <ul>
206
214
  <li><sub><code>/v1/stats/{username}/{genome}.static?variant={variant}</code></sub></li>
207
- <li><sub><code>hyperweave.app/v1/stats/eli64s/chrome.static?variant=horizon</code></sub></li>
215
+ <li><sub><code>hyperweave.app/v1/stats/eli64s/brutalist.static?variant=celadon</code></sub></li>
208
216
  </ul>
209
217
  </td>
210
218
  </tr>
211
219
  <tr>
212
220
  <th align="left">Star Chart<br/><sub>star history</sub></th>
213
221
  <td>
214
- <img src="https://hyperweave.app/v1/chart/stars/eli64s/readme-ai/chrome.static?variant=horizon" alt="star chart" width="100%"/>
222
+ <img src="https://hyperweave.app/v1/chart/stars/eli64s/readme-ai/brutalist.static?variant=celadon" alt="star chart" width="100%"/>
215
223
  <br/>
216
224
  <ul>
217
225
  <li><sub><code>/v1/chart/stars/{owner}/{repo}/{genome}.static?variant={variant}</code></sub></li>
218
- <li><sub><code>hyperweave.app/v1/chart/stars/eli64s/readme-ai/chrome.static?variant=horizon</code></sub></li>
226
+ <li><sub><code>hyperweave.app/v1/chart/stars/eli64s/readme-ai/brutalist.static?variant=celadon</code></sub></li>
219
227
  </ul>
220
228
  </td>
221
229
  </tr>
222
230
  <tr>
223
231
  <th align="left">Marquee<br/><sub>horizontal ticker</sub></th>
224
232
  <td>
225
- <img src="https://hyperweave.app/v1/marquee/readme-ai/chrome.static?data=gh:eli64s/readme-ai.stars,gh:eli64s/readme-ai.forks,pypi:readmeai.version,pypi:readmeai.downloads,docker:zeroxeli/readme-ai.pull_count&variant=horizon" alt="marquee"/>
233
+ <img src="https://hyperweave.app/v1/marquee/readme-ai/brutalist.static?data=gh:eli64s/readme-ai.stars,gh:eli64s/readme-ai.forks,pypi:readmeai.version,pypi:readmeai.downloads,docker:zeroxeli/readme-ai.pull_count&variant=celadon" alt="marquee"/>
226
234
  <br/>
227
235
  <ul>
228
236
  <li><sub><code>/v1/marquee/{title}/{genome}.static?data={tokens}&variant={variant}</code></sub></li>
229
- <li><sub><code>hyperweave.app/v1/marquee/readme-ai/chrome.static?data=gh:eli64s/readme-ai.stars,gh:eli64s/readme-ai.forks,pypi:readmeai.version,pypi:readmeai.downloads,docker:zeroxeli/readme-ai.pull_count&variant=horizon</code></sub></li>
237
+ <li><sub><code>hyperweave.app/v1/marquee/readme-ai/brutalist.static?data=gh:eli64s/readme-ai.stars,gh:eli64s/readme-ai.forks,pypi:readmeai.version,pypi:readmeai.downloads,docker:zeroxeli/readme-ai.pull_count&variant=celadon</code></sub></li>
230
238
  </ul>
231
239
  </td>
232
240
  </tr>
233
241
  <tr>
234
242
  <th align="left">Icons<br/><sub>circle + square</sub></th>
235
243
  <td>
236
- <img src="https://hyperweave.app/v1/icon/youtube/chrome.static?shape=circle&variant=horizon" alt="youtube" width="56"/>
237
- <img src="https://hyperweave.app/v1/icon/notion/chrome.static?shape=circle&variant=horizon" alt="notion" width="56"/>
238
- <img src="https://hyperweave.app/v1/icon/npm/chrome.static?shape=square&variant=horizon" alt="npm" width="56"/>
239
- <img src="https://hyperweave.app/v1/icon/instagram/chrome.static?shape=square&variant=horizon" alt="instagram" width="56"/>
244
+ <img src="https://hyperweave.app/v1/icon/github/brutalist.static?shape=circle&variant=celadon" alt="github — celadon" width="56"/>
245
+ <img src="https://hyperweave.app/v1/icon/discord/brutalist.static?shape=circle&variant=carbon" alt="discord — carbon" width="56"/>
246
+ <img src="https://hyperweave.app/v1/icon/docker/brutalist.static?shape=circle&variant=alloy" alt="docker — alloy" width="56"/>
247
+ <img src="https://hyperweave.app/v1/icon/npm/brutalist.static?shape=square&variant=temper" alt="npm — temper" width="56"/>
248
+ <img src="https://hyperweave.app/v1/icon/spotify/brutalist.static?shape=square&variant=pigment" alt="spotify — pigment" width="56"/>
249
+ <img src="https://hyperweave.app/v1/icon/anthropic/brutalist.static?shape=square&variant=ember" alt="anthropic — ember" width="56"/>
240
250
  <br/>
241
251
  <ul>
242
252
  <li><sub><code>/v1/icon/{glyph}/{genome}.static?shape={circle|square}&variant={variant}</code></sub></li>
243
- <li><sub><code>hyperweave.app/v1/icon/youtube/chrome.static?shape=circle&variant=horizon</code></sub></li>
253
+ <li><sub><code>hyperweave.app/v1/icon/github/brutalist.static?shape=circle&variant=celadon</code></sub></li>
244
254
  </ul>
245
255
  </td>
246
256
  </tr>
247
257
  <tr>
248
- <th align="left">Divider<br/><sub>band</sub></th>
258
+ <th align="left">Divider<br/><sub>seam</sub></th>
249
259
  <td>
250
- <img src="https://hyperweave.app/v1/divider/band/chrome.static?variant=horizon" alt="chrome band divider"/>
260
+ <img src="https://hyperweave.app/v1/divider/seam/brutalist.static?variant=celadon" alt="brutalist seam divider"/>
251
261
  <br/>
252
262
  <ul>
253
- <li><sub><code>/v1/divider/band/{genome}.static?variant={variant}</code></sub></li>
254
- <li><sub><code>hyperweave.app/v1/divider/band/chrome.static?variant=horizon</code></sub></li>
263
+ <li><sub><code>/v1/divider/seam/{genome}.static?variant={variant}</code></sub></li>
264
+ <li><sub><code>hyperweave.app/v1/divider/seam/brutalist.static?variant=celadon</code></sub></li>
255
265
  </ul>
256
266
  </td>
257
267
  </tr>
258
268
  </table>
259
-
260
269
  <h3 id="automata">automata</h3>
261
270
 
262
271
  <p align="center">
263
- <img src="https://hyperweave.app/v1/badge/DISCORD/JOIN/automata.static?glyph=discord&variant=indigo" alt="DISCORD JOINindigo variant"/>
264
- <img src="https://hyperweave.app/v1/badge/DOCKER/PULL/automata.static?glyph=docker&variant=cobalt" alt="DOCKER PULLcobalt variant"/>
265
- <img src="https://hyperweave.app/v1/badge/STARS/automata.static?data=gh:InnerAura/hyperweave.stars&glyph=github&variant=bone" alt="STARS — bone variant"/>
266
- <img src="https://hyperweave.app/v1/badge/FOLLOW/automata.static?glyph=x&variant=steel" alt="FOLLOW — steel variant"/>
272
+ <img src="https://hyperweave.app/v1/badge/DOCKER/PULL/automata.static?glyph=docker&variant=teal" alt="DOCKER PULLteal variant"/>
273
+ <img src="https://hyperweave.app/v1/badge/DISCORD/JOIN/automata.static?glyph=discord&variant=violet" alt="DISCORD JOINviolet variant"/>
274
+ <img src="https://hyperweave.app/v1/badge/STARS/automata.static?data=gh:eli64s/readme-ai.stars&glyph=github&variant=amber" alt="STARS — amber variant"/>
267
275
  <img src="https://hyperweave.app/v1/badge/HF/MODELS/automata.static?glyph=huggingface&variant=sulfur" alt="HF MODELS — sulfur variant"/>
268
- <img src="https://hyperweave.app/v1/badge/LISTEN/automata.static?glyph=spotify&variant=jade" alt="LISTEN — jade variant"/>
276
+ <img src="https://hyperweave.app/v1/badge/SPOTIFY/LISTEN/automata.static?glyph=spotify&variant=jade" alt="SPOTIFY LISTEN — jade variant"/>
269
277
  </p>
270
278
 
271
279
  <p align="center">
@@ -289,7 +297,7 @@ Why genome and not theme? Because brand isn't a design problem, it's an infrastr
289
297
  <tr>
290
298
  <th align="left">Dashboard<br/><sub>strip</sub></th>
291
299
  <td>
292
- <img src="https://hyperweave.app/v1/strip/readme-ai/automata.static?data=gh:eli64s/readme-ai.stars,gh:eli64s/readme-ai.forks,pypi:readmeai.version&subtitle=eli64s/readme-ai&variant=bone&pair=steel&glyph=github" alt="strip"/>
300
+ <img src="https://hyperweave.app/v1/strip/readme-ai/automata.static?data=gh:eli64s/readme-ai.stars,gh:eli64s/readme-ai.forks,pypi:readmeai.version&subtitle=eli64s/readme-ai&variant=bone&glyph=github" alt="strip"/>
293
301
  <br/>
294
302
  <ul>
295
303
  <li><sub><code>/v1/strip/{title}/automata.static?data={tokens}&variant={tone}&pair={tone}&subtitle={text}&glyph={glyph}</code></sub></li>
@@ -300,7 +308,7 @@ Why genome and not theme? Because brand isn't a design problem, it's an infrastr
300
308
  <tr>
301
309
  <th align="left">Profile<br/><sub>stats card</sub></th>
302
310
  <td>
303
- <img src="https://hyperweave.app/v1/stats/eli64s/automata.static?variant=bone" alt="stats" width="100%"/>
311
+ <img src="https://hyperweave.app/v1/stats/eli64s/automata.static?variant=bone&v=2" alt="stats" width="100%"/>
304
312
  <br/>
305
313
  <ul>
306
314
  <li><sub><code>/v1/stats/{username}/{genome}.static?variant={tone}</code></sub></li>
@@ -311,7 +319,7 @@ Why genome and not theme? Because brand isn't a design problem, it's an infrastr
311
319
  <tr>
312
320
  <th align="left">Star Chart<br/><sub>star history</sub></th>
313
321
  <td>
314
- <img src="https://hyperweave.app/v1/chart/stars/eli64s/readme-ai/automata.static?variant=bone" alt="star chart" width="100%"/>
322
+ <img src="https://hyperweave.app/v1/chart/stars/eli64s/readme-ai/automata.static?variant=bone&v=2" alt="star chart" width="100%"/>
315
323
  <br/>
316
324
  <ul>
317
325
  <li><sub><code>/v1/chart/stars/{owner}/{repo}/{genome}.static?variant={tone}</code></sub></li>
@@ -331,12 +339,15 @@ Why genome and not theme? Because brand isn't a design problem, it's an infrastr
331
339
  </td>
332
340
  </tr>
333
341
  <tr>
334
- <th align="left">Icons<br/><sub>square brand-matched tones</sub></th>
342
+ <th align="left">Icons<br/><sub>square</sub></th>
335
343
  <td>
336
344
  <img src="https://hyperweave.app/v1/icon/docker/automata.static?shape=square&variant=cobalt" alt="docker cobalt" width="56"/>
337
345
  <img src="https://hyperweave.app/v1/icon/discord/automata.static?shape=square&variant=indigo" alt="discord indigo" width="56"/>
346
+ <img src="https://hyperweave.app/v1/icon/github/automata.static?shape=square&variant=bone" alt="github bone" width="56"/>
338
347
  <img src="https://hyperweave.app/v1/icon/huggingface/automata.static?shape=square&variant=sulfur" alt="huggingface sulfur" width="56"/>
348
+ <img src="https://hyperweave.app/v1/icon/anthropic/automata.static?shape=square&variant=solar" alt="anthropic solar" width="56"/>
339
349
  <img src="https://hyperweave.app/v1/icon/youtube/automata.static?shape=square&variant=crimson" alt="youtube crimson" width="56"/>
350
+ <img src="https://hyperweave.app/v1/icon/spotify/automata.static?shape=square&variant=jade" alt="spotify jade" width="56"/>
340
351
  <br/>
341
352
  <ul>
342
353
  <li><sub><code>/v1/icon/{glyph}/automata.static?shape=square&variant={tone}</code></sub></li>
@@ -347,7 +358,7 @@ Why genome and not theme? Because brand isn't a design problem, it's an infrastr
347
358
  <tr>
348
359
  <th align="left">Divider<br/><sub>dissolve</sub></th>
349
360
  <td>
350
- <img src="https://hyperweave.app/v1/divider/dissolve/automata.static?variant=bone&pair=steel" alt="automata dissolve divider"/>
361
+ <img src="https://hyperweave.app/v1/divider/dissolve/automata.static?variant=bone" alt="automata dissolve divider"/>
351
362
  <br/>
352
363
  <ul>
353
364
  <li><sub><code>/v1/divider/dissolve/{genome}.static?variant={tone}&pair={tone}</code></sub></li>
@@ -356,100 +367,115 @@ Why genome and not theme? Because brand isn't a design problem, it's an infrastr
356
367
  </td>
357
368
  </tr>
358
369
  </table>
370
+ <h3 id="chrome">chrome</h3>
359
371
 
360
- <h3 id="brutalist">brutalist</h3>
372
+ <p align="center">
373
+ <img src="https://hyperweave.app/v1/badge/BUILD/chrome.static?data=gh:InnerAura/hyperweave.build&glyph=githubactions&variant=horizon" alt="BUILD — horizon variant"/>
374
+ <img src="https://hyperweave.app/v1/badge/BLUESKY/POST/chrome.static?glyph=bluesky&variant=abyssal" alt="BLUESKY POST — abyssal variant"/>
375
+ <img src="https://hyperweave.app/v1/badge/DOCKER/chrome.static?data=docker:zeroxeli/readme-ai.pull_count&glyph=docker&variant=lightning" alt="DOCKER pulls — lightning variant"/>
376
+ <img src="https://hyperweave.app/v1/badge/STARS/chrome.static?data=gh:eli64s/readme-ai.stars&glyph=github&variant=graphite" alt="STARS — graphite variant"/>
377
+ <img src="https://hyperweave.app/v1/badge/ANTHROPIC/CLAUDE/chrome.static?glyph=anthropic&variant=moth" alt="ANTHROPIC CLAUDE — moth variant"/>
378
+ </p>
379
+
380
+ <p align="center">
381
+ <sub>5 variants: <code>horizon</code> &middot; <code>abyssal</code> &middot; <code>lightning</code> &middot; <code>graphite</code> &middot; <code>moth</code></sub>
382
+ </p>
361
383
 
362
384
  <table>
363
385
  <tr>
364
386
  <th align="left" width="160">Signals<br/><sub>state machine</sub></th>
365
387
  <td>
366
- <img src="https://hyperweave.app/v1/badge/BUILD/passing/brutalist.static?state=passing" alt="passing"/>
367
- <img src="https://hyperweave.app/v1/badge/BUILD/warning/brutalist.static?state=warning" alt="warning"/>
368
- <img src="https://hyperweave.app/v1/badge/BUILD/critical/brutalist.static?state=critical" alt="critical"/>
388
+ <img src="https://hyperweave.app/v1/badge/BUILD/passing/chrome.static?state=passing&variant=horizon" alt="passing"/>
389
+ <img src="https://hyperweave.app/v1/badge/BUILD/warning/chrome.static?state=warning&variant=horizon" alt="warning"/>
390
+ <img src="https://hyperweave.app/v1/badge/BUILD/critical/chrome.static?state=critical&variant=horizon" alt="critical"/>
369
391
  <br/>
370
392
  <ul>
371
- <li><sub><code>/v1/badge/{title}/{value}/{genome}.static?state={state}</code></sub></li>
372
- <li><sub><code>hyperweave.app/v1/badge/BUILD/passing/brutalist.static?state=passing</code></sub></li>
393
+ <li><sub><code>/v1/badge/{title}/{value}/{genome}.static?state={state}&variant={horizon|abyssal|lightning|graphite|moth}</code></sub></li>
394
+ <li><sub><code>hyperweave.app/v1/badge/BUILD/passing/chrome.static?state=passing&variant=horizon</code></sub></li>
373
395
  </ul>
374
396
  </td>
375
397
  </tr>
376
398
  <tr>
377
399
  <th align="left">Dashboard<br/><sub>strip</sub></th>
378
400
  <td>
379
- <img src="https://hyperweave.app/v1/strip/readme-ai/brutalist.static?data=gh:eli64s/readme-ai.stars,gh:eli64s/readme-ai.forks,pypi:readmeai.version&subtitle=eli64s/readme-ai&glyph=github" alt="strip"/>
401
+ <img src="https://hyperweave.app/v1/strip/readme-ai/chrome.static?data=gh:eli64s/readme-ai.stars,gh:eli64s/readme-ai.forks,pypi:readmeai.version&subtitle=eli64s/readme-ai&glyph=github&variant=horizon" alt="strip"/>
380
402
  <br/>
381
403
  <ul>
382
- <li><sub><code>/v1/strip/{title}/{genome}.static?data={tokens}&subtitle={text}&glyph={glyph}</code></sub></li>
383
- <li><sub><code>hyperweave.app/v1/strip/readme-ai/brutalist.static?data=gh:eli64s/readme-ai.stars,gh:eli64s/readme-ai.forks,pypi:readmeai.version&subtitle=eli64s/readme-ai&glyph=github</code></sub></li>
404
+ <li><sub><code>/v1/strip/{title}/{genome}.static?data={tokens}&subtitle={text}&glyph={glyph}&variant={variant}</code></sub></li>
405
+ <li><sub><code>hyperweave.app/v1/strip/readme-ai/chrome.static?data=gh:eli64s/readme-ai.stars,gh:eli64s/readme-ai.forks,pypi:readmeai.version&subtitle=eli64s/readme-ai&glyph=github&variant=horizon</code></sub></li>
384
406
  </ul>
385
407
  </td>
386
408
  </tr>
387
409
  <tr>
388
410
  <th align="left">Profile<br/><sub>stats card</sub></th>
389
411
  <td>
390
- <img src="https://hyperweave.app/v1/stats/eli64s/brutalist.static" alt="stats" width="100%"/>
412
+ <img src="https://hyperweave.app/v1/stats/eli64s/chrome.static?variant=horizon" alt="stats" width="100%"/>
391
413
  <br/>
392
414
  <ul>
393
- <li><sub><code>/v1/stats/{username}/{genome}.static</code></sub></li>
394
- <li><sub><code>hyperweave.app/v1/stats/eli64s/brutalist.static</code></sub></li>
415
+ <li><sub><code>/v1/stats/{username}/{genome}.static?variant={variant}</code></sub></li>
416
+ <li><sub><code>hyperweave.app/v1/stats/eli64s/chrome.static?variant=horizon</code></sub></li>
395
417
  </ul>
396
418
  </td>
397
419
  </tr>
398
420
  <tr>
399
421
  <th align="left">Star Chart<br/><sub>star history</sub></th>
400
422
  <td>
401
- <img src="https://hyperweave.app/v1/chart/stars/eli64s/readme-ai/brutalist.static" alt="star chart" width="100%"/>
423
+ <img src="https://hyperweave.app/v1/chart/stars/eli64s/readme-ai/chrome.static?variant=horizon" alt="star chart" width="100%"/>
402
424
  <br/>
403
425
  <ul>
404
- <li><sub><code>/v1/chart/stars/{owner}/{repo}/{genome}.static</code></sub></li>
405
- <li><sub><code>hyperweave.app/v1/chart/stars/eli64s/readme-ai/brutalist.static</code></sub></li>
426
+ <li><sub><code>/v1/chart/stars/{owner}/{repo}/{genome}.static?variant={variant}</code></sub></li>
427
+ <li><sub><code>hyperweave.app/v1/chart/stars/eli64s/readme-ai/chrome.static?variant=horizon</code></sub></li>
406
428
  </ul>
407
429
  </td>
408
430
  </tr>
409
431
  <tr>
410
432
  <th align="left">Marquee<br/><sub>horizontal ticker</sub></th>
411
433
  <td>
412
- <img src="https://hyperweave.app/v1/marquee/readme-ai/brutalist.static?data=gh:eli64s/readme-ai.stars,gh:eli64s/readme-ai.forks,pypi:readmeai.version,pypi:readmeai.downloads,docker:zeroxeli/readme-ai.pull_count" alt="marquee"/>
434
+ <img src="https://hyperweave.app/v1/marquee/readme-ai/chrome.static?data=gh:eli64s/readme-ai.stars,gh:eli64s/readme-ai.forks,pypi:readmeai.version,pypi:readmeai.downloads,docker:zeroxeli/readme-ai.pull_count&variant=horizon" alt="marquee"/>
413
435
  <br/>
414
436
  <ul>
415
- <li><sub><code>/v1/marquee/{title}/{genome}.static?data={tokens}</code></sub></li>
416
- <li><sub><code>hyperweave.app/v1/marquee/readme-ai/brutalist.static?data=gh:eli64s/readme-ai.stars,gh:eli64s/readme-ai.forks,pypi:readmeai.version,pypi:readmeai.downloads,docker:zeroxeli/readme-ai.pull_count</code></sub></li>
437
+ <li><sub><code>/v1/marquee/{title}/{genome}.static?data={tokens}&variant={variant}</code></sub></li>
438
+ <li><sub><code>hyperweave.app/v1/marquee/readme-ai/chrome.static?data=gh:eli64s/readme-ai.stars,gh:eli64s/readme-ai.forks,pypi:readmeai.version,pypi:readmeai.downloads,docker:zeroxeli/readme-ai.pull_count&variant=horizon</code></sub></li>
417
439
  </ul>
418
440
  </td>
419
441
  </tr>
420
442
  <tr>
421
443
  <th align="left">Icons<br/><sub>circle + square</sub></th>
422
444
  <td>
423
- <img src="https://hyperweave.app/v1/icon/discord/brutalist.static?shape=circle" alt="discord" width="56"/>
424
- <img src="https://hyperweave.app/v1/icon/github/brutalist.static?shape=circle" alt="github" width="56"/>
425
- <img src="https://hyperweave.app/v1/icon/x/brutalist.static?shape=square" alt="x" width="56"/>
426
- <img src="https://hyperweave.app/v1/icon/spotify/brutalist.static?shape=square" alt="spotify" width="56"/>
445
+ <img src="https://hyperweave.app/v1/icon/youtube/chrome.static?shape=circle&variant=horizon" alt="youtube" width="56"/>
446
+ <img src="https://hyperweave.app/v1/icon/notion/chrome.static?shape=circle&variant=horizon" alt="notion" width="56"/>
447
+ <img src="https://hyperweave.app/v1/icon/npm/chrome.static?shape=square&variant=horizon" alt="npm" width="56"/>
448
+ <img src="https://hyperweave.app/v1/icon/instagram/chrome.static?shape=square&variant=horizon" alt="instagram" width="56"/>
427
449
  <br/>
428
450
  <ul>
429
- <li><sub><code>/v1/icon/{glyph}/{genome}.static?shape={circle|square}</code></sub></li>
430
- <li><sub><code>hyperweave.app/v1/icon/discord/brutalist.static?shape=circle</code></sub></li>
451
+ <li><sub><code>/v1/icon/{glyph}/{genome}.static?shape={circle|square}&variant={variant}</code></sub></li>
452
+ <li><sub><code>hyperweave.app/v1/icon/youtube/chrome.static?shape=circle&variant=horizon</code></sub></li>
431
453
  </ul>
432
454
  </td>
433
455
  </tr>
434
456
  <tr>
435
- <th align="left">Divider<br/><sub>seam</sub></th>
457
+ <th align="left">Divider<br/><sub>band</sub></th>
436
458
  <td>
437
- <img src="https://hyperweave.app/v1/divider/seam/brutalist.static" alt="brutalist seam divider"/>
459
+ <img src="https://hyperweave.app/v1/divider/band/chrome.static?variant=horizon" alt="chrome band divider"/>
438
460
  <br/>
439
461
  <ul>
440
- <li><sub><code>/v1/divider/seam/{genome}.static</code></sub></li>
441
- <li><sub><code>hyperweave.app/v1/divider/seam/brutalist.static</code></sub></li>
462
+ <li><sub><code>/v1/divider/band/{genome}.static?variant={variant}</code></sub></li>
463
+ <li><sub><code>hyperweave.app/v1/divider/band/chrome.static?variant=horizon</code></sub></li>
442
464
  </ul>
443
465
  </td>
444
466
  </tr>
445
467
  </table>
446
468
 
447
- | | chrome | brutalist | automata |
469
+ <br />
470
+
471
+ | | brutalist | automata | chrome |
448
472
  |---|---|---|---|
449
- | Aesthetic | Metallic precision | Raw material | Living cellular grid |
450
- | Variants | 5 named | &mdash; | 16 tones, any two pair |
451
- | Motion | Animated border SMIL | Animated border SMIL | Animated cell grid |
452
- | Divider | `band` | `seam` | `dissolve` |
473
+ | Aesthetic | Raw material | Living cellular grid | Metallic precision |
474
+ | Variants | 12 (6 dark, 6 light) | 16 tones, any two pair | 5 named |
475
+ | Motion | Animated border SMIL | Animated cell grid | Animated border SMIL |
476
+ | Divider | `seam` | `dissolve` | `band` |
477
+
478
+ <br />
453
479
 
454
480
  <h3 id="dividers"><code>/a/inneraura/dividers/</code></h3>
455
481