- Co-Authored-By
- Claude Fable 5 <noreply@anthropic.com>
- Claude-Session
- https://claude.ai/code/session_01E1mRkPGYmTVvMKqAzmQvy5
Match forum search against authors as well as text
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 366 · 2026-08-25T12:09:38.252003Z
Changed files
-
modified
.agents/skills/openagents-forum-posting/SKILL.md -
modified
docs/openagents-cli/command-reference.md -
modified
lib/openagents/forum.ex -
modified
test/openagents_web/controllers/forum_api_controller_test.exs
Diff
4 files changed, +55 -13
.agents/skills/openagents-forum-posting/SKILL.md modified +1 -1
@@ -103,7 +103,7 @@ Reads are public and need no credential:
| 103 | 103 |
|
| 104 | 104 |
|
| 105 | 105 |
|
| 106 |
|
|
| 106 |
|
|
| 107 | 107 |
|
| 108 | 108 |
|
| 109 | 109 |
|
docs/openagents-cli/command-reference.md modified +9 -8
@@ -167,20 +167,21 @@ than one topic answers `ambiguous_id`; add more of the id and retry.
| 167 | 167 |
|
| 168 | 168 |
|
| 169 | 169 |
|
| 170 |
|
|
| 171 |
|
|
| 172 |
|
|
| 173 | 170 |
|
| 174 | 171 |
|
| 175 |
|
|
| 172 |
|
|
| 176 | 173 |
|
| 177 | 174 |
|
| 178 |
|
|
| 175 |
|
|
| 179 | 176 |
|
| 180 | 177 |
|
| 181 |
|
|
| 182 |
|
|
| 183 |
|
|
| 178 |
|
|
| 179 |
|
|
| 180 |
|
|
| 181 |
|
|
| 182 |
|
|
| 183 |
|
|
| 184 |
|
|
| 184 | 185 |
|
| 185 | 186 |
|
| 186 | 187 |
|
lib/openagents/forum.ex modified +9 -4
@@ -247,8 +247,11 @@ defmodule OpenAgents.Forum do
| 247 | 247 |
|
| 248 | 248 |
|
| 249 | 249 |
|
| 250 |
|
|
| 251 |
|
|
| 250 |
|
|
| 251 |
|
|
| 252 |
|
|
| 253 |
|
|
| 254 |
|
|
| 252 | 255 |
|
| 253 | 256 |
|
| 254 | 257 |
|
@@ -284,12 +287,14 @@ defmodule OpenAgents.Forum do
| 284 | 287 |
|
| 285 | 288 |
|
| 286 | 289 |
|
| 287 |
|
|
| 290 |
|
|
| 291 |
|
|
| 288 | 292 |
|
| 289 | 293 |
|
| 290 | 294 |
|
| 291 | 295 |
|
| 292 |
|
|
| 296 |
|
|
| 297 |
|
|
| 293 | 298 |
|
| 294 | 299 |
|
| 295 | 300 |
|
test/openagents_web/controllers/forum_api_controller_test.exs modified +36
@@ -307,6 +307,42 @@ defmodule OpenAgentsWeb.ForumApiControllerTest do
| 307 | 307 |
|
| 308 | 308 |
|
| 309 | 309 |
|
| 310 |
|
|
| 311 |
|
|
| 312 |
|
|
| 313 |
|
|
| 314 |
|
|
| 315 |
|
|
| 316 |
|
|
| 317 |
|
|
| 318 |
|
|
| 319 |
|
|
| 320 |
|
|
| 321 |
|
|
| 322 |
|
|
| 323 |
|
|
| 324 |
|
|
| 325 |
|
|
| 326 |
|
|
| 327 |
|
|
| 328 |
|
|
| 329 |
|
|
| 330 |
|
|
| 331 |
|
|
| 332 |
|
|
| 333 |
|
|
| 334 |
|
|
| 335 |
|
|
| 336 |
|
|
| 337 |
|
|
| 338 |
|
|
| 339 |
|
|
| 340 |
|
|
| 341 |
|
|
| 342 |
|
|
| 343 |
|
|
| 344 |
|
|
| 345 |
|
|
| 310 | 346 |
|
| 311 | 347 |
|
| 312 | 348 |
|