Allow projects to track cross-repository issues
Deploy story
What this commit did to the running system — joined from the forge receipt chain, the part a commit page elsewhere cannot show.
- pushed
- by user · WAL seq 94 · 2026-08-22T15:47:02.909382Z
Changed files
-
modified
docs/github-api-issues-projects-assessment.md -
modified
docs/openagents-cli/api.md -
modified
lib/openagents/project_items.ex -
modified
lib/openagents/project_items/project_item.ex -
modified
lib/openagents/projects.ex -
modified
lib/openagents_web/controllers/project_controller.ex -
modified
lib/openagents_web/controllers/project_json.ex -
modified
lib/openagents_web/live/project_show_live.ex -
modified
lib/openagents_web/live/project_workspace_live.ex -
modified
priv/migration_lineages/prior-2026-08-19.json -
added
priv/repo/migrations/20260822153929_allow_cross_repository_project_items.exs -
modified
test/openagents/repositories_test.exs -
modified
test/openagents_web/controllers/project_controller_test.exs
Diff
13 files changed, +243 -29
docs/github-api-issues-projects-assessment.md modified +8 -1
@@ -71,12 +71,19 @@ These are current measured behaviors:
| 71 | 71 |
|
| 72 | 72 |
|
| 73 | 73 |
|
| 74 |
|
|
| 74 |
|
|
| 75 |
|
|
| 76 |
|
|
| 75 | 77 |
|
| 76 | 78 |
|
| 77 | 79 |
|
| 78 | 80 |
|
| 79 | 81 |
|
| 82 |
|
|
| 83 |
|
|
| 84 |
|
|
| 85 |
|
|
| 86 |
|
|
| 80 | 87 |
|
| 81 | 88 |
|
| 82 | 89 |
|
docs/openagents-cli/api.md modified +13
@@ -160,6 +160,19 @@ printf '%s' '{"issue_number":11,"values":{"Status":"To Do"}}' | \
| 160 | 160 |
|
| 161 | 161 |
|
| 162 | 162 |
|
| 163 |
|
|
| 164 |
|
|
| 165 |
|
|
| 166 |
|
|
| 167 |
|
|
| 168 |
|
|
| 169 |
|
|
| 170 |
|
|
| 171 |
|
|
| 172 |
|
|
| 173 |
|
|
| 174 |
|
|
| 175 |
|
|
| 163 | 176 |
|
| 164 | 177 |
|
| 165 | 178 |
|
lib/openagents/project_items.ex modified +5 -1
@@ -58,7 +58,11 @@ defmodule OpenAgents.ProjectItems do
| 58 | 58 |
|
| 59 | 59 |
|
| 60 | 60 |
|
| 61 |
|
|
| 61 |
|
|
| 62 |
|
|
| 63 |
|
|
| 64 |
|
|
| 65 |
|
|
| 62 | 66 |
|
| 63 | 67 |
|
| 64 | 68 |
|
lib/openagents/project_items/project_item.ex modified +6 -4
@@ -7,8 +7,9 @@ defmodule OpenAgents.ProjectItems.ProjectItem do
| 7 | 7 |
|
| 8 | 8 |
|
| 9 | 9 |
|
| 10 |
|
|
| 11 | 10 |
|
| 11 |
|
|
| 12 |
|
|
| 12 | 13 |
|
| 13 | 14 |
|
| 14 | 15 |
|
@@ -16,12 +17,13 @@ defmodule OpenAgents.ProjectItems.ProjectItem do
| 16 | 17 |
|
| 17 | 18 |
|
| 18 | 19 |
|
| 19 |
|
|
| 20 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 21 | 23 |
|
| 22 | 24 |
|
| 23 | 25 |
|
| 24 | 26 |
|
| 25 |
|
|
| 27 |
|
|
| 26 | 28 |
|
| 27 | 29 |
|
lib/openagents/projects.ex modified +44 -5
@@ -216,18 +216,48 @@ defmodule OpenAgents.Projects do
| 216 | 216 |
|
| 217 | 217 |
|
| 218 | 218 |
|
| 219 |
|
|
| 220 |
|
|
| 219 |
|
|
| 220 |
|
|
| 221 |
|
|
| 222 |
|
|
| 223 |
|
|
| 224 |
|
|
| 225 |
|
|
| 226 |
|
|
| 227 |
|
|
| 228 |
|
|
| 229 |
|
|
| 230 |
|
|
| 231 |
|
|
| 232 |
|
|
| 233 |
|
|
| 221 | 234 |
|
| 235 |
|
|
| 222 | 236 |
|
| 223 | 237 |
|
| 224 | 238 |
|
| 225 | 239 |
|
| 226 |
|
|
| 240 |
|
|
| 241 |
|
|
| 227 | 242 |
|
| 228 | 243 |
|
| 229 | 244 |
|
| 230 | 245 |
|
| 246 |
|
|
| 247 |
|
|
| 248 |
|
|
| 249 |
|
|
| 250 |
|
|
| 251 |
|
|
| 252 |
|
|
| 253 |
|
|
| 254 |
|
|
| 255 |
|
|
| 256 |
|
|
| 257 |
|
|
| 258 |
|
|
| 259 |
|
|
| 260 |
|
|
| 231 | 261 |
|
| 232 | 262 |
|
| 233 | 263 |
|
@@ -236,6 +266,7 @@ defmodule OpenAgents.Projects do
| 236 | 266 |
|
| 237 | 267 |
|
| 238 | 268 |
|
| 269 |
|
|
| 239 | 270 |
|
| 240 | 271 |
|
| 241 | 272 |
|
@@ -244,6 +275,7 @@ defmodule OpenAgents.Projects do
| 244 | 275 |
|
| 245 | 276 |
|
| 246 | 277 |
|
| 278 |
|
|
| 247 | 279 |
|
| 248 | 280 |
|
| 249 | 281 |
|
@@ -251,7 +283,7 @@ defmodule OpenAgents.Projects do
| 251 | 283 |
|
| 252 | 284 |
|
| 253 | 285 |
|
| 254 |
|
|
| 286 |
|
|
| 255 | 287 |
|
| 256 | 288 |
|
| 257 | 289 |
|
@@ -260,6 +292,7 @@ defmodule OpenAgents.Projects do
| 260 | 292 |
|
| 261 | 293 |
|
| 262 | 294 |
|
| 295 |
|
|
| 263 | 296 |
|
| 264 | 297 |
|
| 265 | 298 |
|
@@ -272,7 +305,7 @@ defmodule OpenAgents.Projects do
| 272 | 305 |
|
| 273 | 306 |
|
| 274 | 307 |
|
| 275 |
|
|
| 308 |
|
|
| 276 | 309 |
|
| 277 | 310 |
|
| 278 | 311 |
|
@@ -312,6 +345,12 @@ defmodule OpenAgents.Projects do
| 312 | 345 |
|
| 313 | 346 |
|
| 314 | 347 |
|
| 348 |
|
|
| 349 |
|
|
| 350 |
|
|
| 351 |
|
|
| 352 |
|
|
| 353 |
|
|
| 315 | 354 |
|
| 316 | 355 |
|
| 317 | 356 |
|
lib/openagents_web/controllers/project_controller.ex modified +34 -5
@@ -50,7 +50,10 @@ defmodule OpenAgentsWeb.ProjectController do
| 50 | 50 |
|
| 51 | 51 |
|
| 52 | 52 |
|
| 53 |
|
|
| 53 |
|
|
| 54 |
|
|
| 55 |
|
|
| 56 |
|
|
| 54 | 57 |
|
| 55 | 58 |
|
| 56 | 59 |
|
@@ -66,12 +69,15 @@ defmodule OpenAgentsWeb.ProjectController do
| 66 | 69 |
|
| 67 | 70 |
|
| 68 | 71 |
|
| 69 |
|
|
| 72 |
|
|
| 70 | 73 |
|
| 71 | 74 |
|
| 72 | 75 |
|
| 73 |
|
|
| 74 |
|
|
| 76 |
|
|
| 77 |
|
|
| 78 |
|
|
| 79 |
|
|
| 80 |
|
|
| 75 | 81 |
|
| 76 | 82 |
|
| 77 | 83 |
|
@@ -100,7 +106,13 @@ defmodule OpenAgentsWeb.ProjectController do
| 100 | 106 |
|
| 101 | 107 |
|
| 102 | 108 |
|
| 103 |
|
|
| 109 |
|
|
| 110 |
|
|
| 111 |
|
|
| 112 |
|
|
| 113 |
|
|
| 114 |
|
|
| 115 |
|
|
| 104 | 116 |
|
| 105 | 117 |
|
| 106 | 118 |
|
@@ -188,6 +200,23 @@ defmodule OpenAgentsWeb.ProjectController do
| 188 | 200 |
|
| 189 | 201 |
|
| 190 | 202 |
|
| 203 |
|
|
| 204 |
|
|
| 205 |
|
|
| 206 |
|
|
| 207 |
|
|
| 208 |
|
|
| 209 |
|
|
| 210 |
|
|
| 211 |
|
|
| 212 |
|
|
| 213 |
|
|
| 214 |
|
|
| 215 |
|
|
| 216 |
|
|
| 217 |
|
|
| 218 |
|
|
| 219 |
|
|
| 191 | 220 |
|
| 192 | 221 |
|
| 193 | 222 |
|
lib/openagents_web/controllers/project_json.ex modified +12
@@ -34,9 +34,21 @@ defmodule OpenAgentsWeb.ProjectJSON do
| 34 | 34 |
|
| 35 | 35 |
|
| 36 | 36 |
|
| 37 |
|
|
| 38 |
|
|
| 39 |
|
|
| 40 |
|
|
| 37 | 41 |
|
| 38 | 42 |
|
| 39 | 43 |
|
| 44 |
|
|
| 45 |
|
|
| 46 |
|
|
| 47 |
|
|
| 48 |
|
|
| 49 |
|
|
| 50 |
|
|
| 51 |
|
|
| 40 | 52 |
|
| 41 | 53 |
|
| 42 | 54 |
|
lib/openagents_web/live/project_show_live.ex modified +9 -7
@@ -14,7 +14,7 @@ defmodule OpenAgentsWeb.ProjectShowLive do
| 14 | 14 |
|
| 15 | 15 |
|
| 16 | 16 |
|
| 17 |
|
|
| 17 |
|
|
| 18 | 18 |
|
| 19 | 19 |
|
| 20 | 20 |
|
@@ -47,7 +47,7 @@ defmodule OpenAgentsWeb.ProjectShowLive do
| 47 | 47 |
|
| 48 | 48 |
|
| 49 | 49 |
|
| 50 |
|
|
| 50 |
|
|
| 51 | 51 |
|
| 52 | 52 |
|
| 53 | 53 |
|
@@ -56,10 +56,10 @@ defmodule OpenAgentsWeb.ProjectShowLive do
| 56 | 56 |
|
| 57 | 57 |
|
| 58 | 58 |
|
| 59 |
|
|
| 60 |
|
|
| 59 |
|
|
| 60 |
|
|
| 61 | 61 |
|
| 62 |
|
|
| 62 |
|
|
| 63 | 63 |
|
| 64 | 64 |
|
| 65 | 65 |
|
@@ -127,14 +127,16 @@ defmodule OpenAgentsWeb.ProjectShowLive do
| 127 | 127 |
|
| 128 | 128 |
|
| 129 | 129 |
|
| 130 |
|
|
| 130 |
|
|
| 131 |
|
|
| 132 |
|
|
| 131 | 133 |
|
| 132 | 134 |
|
| 133 | 135 |
|
| 134 | 136 |
|
| 135 | 137 |
|
| 136 | 138 |
|
| 137 |
|
|
| 139 |
|
|
| 138 | 140 |
|
| 139 | 141 |
|
| 140 | 142 |
|
lib/openagents_web/live/project_workspace_live.ex modified +5 -3
@@ -70,11 +70,13 @@ defmodule OpenAgentsWeb.ProjectWorkspaceLive do
| 70 | 70 |
|
| 71 | 71 |
|
| 72 | 72 |
|
| 73 |
|
|
| 74 |
|
|
| 73 |
|
|
| 74 |
|
|
| 75 |
|
|
| 76 |
|
|
| 75 | 77 |
|
| 76 | 78 |
|
| 77 |
|
|
| 79 |
|
|
| 78 | 80 |
|
| 79 | 81 |
|
| 80 | 82 |
|
priv/migration_lineages/prior-2026-08-19.json modified +2 -1
priv/repo/migrations/20260822153929_allow_cross_repository_project_items.exs added +45
@@ -0,0 +1,45 @@
| 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 |
|
test/openagents/repositories_test.exs modified +3 -2
@@ -122,7 +122,7 @@ defmodule OpenAgents.RepositoriesTest do
| 122 | 122 |
|
| 123 | 123 |
|
| 124 | 124 |
|
| 125 |
|
|
| 125 |
|
|
| 126 | 126 |
|
| 127 | 127 |
|
| 128 | 128 |
|
@@ -136,7 +136,8 @@ defmodule OpenAgents.RepositoriesTest do
| 136 | 136 |
|
| 137 | 137 |
|
| 138 | 138 |
|
| 139 |
|
|
| 139 |
|
|
| 140 |
|
|
| 140 | 141 |
|
| 141 | 142 |
|
| 142 | 143 |
|
test/openagents_web/controllers/project_controller_test.exs modified +57
@@ -175,6 +175,63 @@ defmodule OpenAgentsWeb.ProjectControllerTest do
| 175 | 175 |
|
| 176 | 176 |
|
| 177 | 177 |
|
| 178 |
|
|
| 179 |
|
|
| 180 |
|
|
| 181 |
|
|
| 182 |
|
|
| 183 |
|
|
| 184 |
|
|
| 185 |
|
|
| 186 |
|
|
| 187 |
|
|
| 188 |
|
|
| 189 |
|
|
| 190 |
|
|
| 191 |
|
|
| 192 |
|
|
| 193 |
|
|
| 194 |
|
|
| 195 |
|
|
| 196 |
|
|
| 197 |
|
|
| 198 |
|
|
| 199 |
|
|
| 200 |
|
|
| 201 |
|
|
| 202 |
|
|
| 203 |
|
|
| 204 |
|
|
| 205 |
|
|
| 206 |
|
|
| 207 |
|
|
| 208 |
|
|
| 209 |
|
|
| 210 |
|
|
| 211 |
|
|
| 212 |
|
|
| 213 |
|
|
| 214 |
|
|
| 215 |
|
|
| 216 |
|
|
| 217 |
|
|
| 218 |
|
|
| 219 |
|
|
| 220 |
|
|
| 221 |
|
|
| 222 |
|
|
| 223 |
|
|
| 224 |
|
|
| 225 |
|
|
| 226 |
|
|
| 227 |
|
|
| 228 |
|
|
| 229 |
|
|
| 230 |
|
|
| 231 |
|
|
| 232 |
|
|
| 233 |
|
|
| 234 |
|
|
| 178 | 235 |
|
| 179 | 236 |
|
| 180 | 237 |
|