- Co-Authored-By
- Claude Opus 5 (1M context) <noreply@anthropic.com>
- Claude-Session
- https://claude.ai/code/session_016o8HwTaqLKEWCHTjsjFtrB
Take the card off disk, not off the pipe
Deploy story
What this commit did to the running system — joined from the forge receipt chain, the part a commit page elsewhere cannot show.
Not deployed through the forge lane
No push, promotion, build, or deploy receipt references this commit (receipts are scanned over a bounded recent window). Changes shipped by full node replacement carry their proof in the release gate receipt instead.
Changed files
-
modified
lib/openagents_web/og/rasterizer.ex -
added
test/openagents_web/og/rasterizer_noise_test.exs
Diff
2 files changed, +116 -5
lib/openagents_web/og/rasterizer.ex modified +57 -5
@@ -19,6 +19,10 @@ defmodule OpenAgentsWeb.OG.Rasterizer do
| 19 | 19 |
|
| 20 | 20 |
|
| 21 | 21 |
|
| 22 |
|
|
| 23 |
|
|
| 24 |
|
|
| 25 |
|
|
| 22 | 26 |
|
| 23 | 27 |
|
| 24 | 28 |
|
@@ -85,15 +89,22 @@ defmodule OpenAgentsWeb.OG.Rasterizer do
| 85 | 89 |
|
| 86 | 90 |
|
| 87 | 91 |
|
| 92 |
|
|
| 88 | 93 |
|
| 89 | 94 |
|
| 90 | 95 |
|
| 91 | 96 |
|
| 92 |
|
|
| 97 |
|
|
| 98 |
|
|
| 99 |
|
|
| 100 |
|
|
| 101 |
|
|
| 102 |
|
|
| 103 |
|
|
| 93 | 104 |
|
| 94 | 105 |
|
| 95 |
|
|
| 96 |
|
|
| 106 |
|
|
| 107 |
|
|
| 97 | 108 |
|
| 98 | 109 |
|
| 99 | 110 |
|
@@ -110,11 +121,52 @@ defmodule OpenAgentsWeb.OG.Rasterizer do
| 110 | 121 |
|
| 111 | 122 |
|
| 112 | 123 |
|
| 124 |
|
|
| 125 |
|
|
| 126 |
|
|
| 127 |
|
|
| 128 |
|
|
| 129 |
|
|
| 130 |
|
|
| 131 |
|
|
| 132 |
|
|
| 133 |
|
|
| 134 |
|
|
| 135 |
|
|
| 136 |
|
|
| 137 |
|
|
| 138 |
|
|
| 139 |
|
|
| 140 |
|
|
| 141 |
|
|
| 142 |
|
|
| 143 |
|
|
| 144 |
|
|
| 145 |
|
|
| 146 |
|
|
| 147 |
|
|
| 148 |
|
|
| 149 |
|
|
| 150 |
|
|
| 151 |
|
|
| 152 |
|
|
| 113 | 153 |
|
| 114 | 154 |
|
| 115 | 155 |
|
| 116 |
|
|
| 117 |
|
|
| 156 |
|
|
| 157 |
|
|
| 158 |
|
|
| 159 |
|
|
| 160 |
|
|
| 161 |
|
|
| 162 |
|
|
| 163 |
|
|
| 164 |
|
|
| 165 |
|
|
| 166 |
|
|
| 167 |
|
|
| 168 |
|
|
| 169 |
|
|
| 118 | 170 |
|
| 119 | 171 |
|
| 120 | 172 |
|
test/openagents_web/og/rasterizer_noise_test.exs added +59
@@ -0,0 +1,59 @@
| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 24 |
|
|
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 31 |
|
|
| 32 |
|
|
| 33 |
|
|
| 34 |
|
|
| 35 |
|
|
| 36 |
|
|
| 37 |
|
|
| 38 |
|
|
| 39 |
|
|
| 40 |
|
|
| 41 |
|
|
| 42 |
|
|
| 43 |
|
|
| 44 |
|
|
| 45 |
|
|
| 46 |
|
|
| 47 |
|
|
| 48 |
|
|
| 49 |
|
|
| 50 |
|
|
| 51 |
|
|
| 52 |
|
|
| 53 |
|
|
| 54 |
|
|
| 55 |
|
|
| 56 |
|
|
| 57 |
|
|
| 58 |
|
|
| 59 |
|