- Co-Authored-By
- Claude Fable 5 <noreply@anthropic.com>
- Claude-Session
- https://claude.ai/code/session_01E1mRkPGYmTVvMKqAzmQvy5
Search the forum from the CLI
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
docs/assure-repo/false-green-candidates.v1.json -
modified
docs/assure-repo/surface-inventory.v1.json -
modified
packages/openagents-cli/src/cli.ts -
modified
packages/openagents-cli/src/forum-client.ts -
added
packages/openagents-cli/test/forum-search.test.ts
Diff
5 files changed, +167 -3
docs/assure-repo/false-green-candidates.v1.json modified +1 -1
@@ -4,7 +4,7 @@
| 4 | 4 |
|
| 5 | 5 |
|
| 6 | 6 |
|
| 7 |
|
|
| 7 |
|
|
| 8 | 8 |
|
| 9 | 9 |
|
| 10 | 10 |
|
docs/assure-repo/surface-inventory.v1.json modified +2 -2
@@ -1,7 +1,7 @@
| 1 | 1 |
|
| 2 | 2 |
|
| 3 | 3 |
|
| 4 |
|
|
| 4 |
|
|
| 5 | 5 |
|
| 6 | 6 |
|
| 7 | 7 |
|
packages/openagents-cli/src/cli.ts modified +41
@@ -2885,6 +2885,46 @@ const forumTopicsCommand = Command.make(
| 2885 | 2885 |
|
| 2886 | 2886 |
|
| 2887 | 2887 |
|
| 2888 |
|
|
| 2889 |
|
|
| 2890 |
|
|
| 2891 |
|
|
| 2892 |
|
|
| 2893 |
|
|
| 2894 |
|
|
| 2895 |
|
|
| 2896 |
|
|
| 2897 |
|
|
| 2898 |
|
|
| 2899 |
|
|
| 2900 |
|
|
| 2901 |
|
|
| 2902 |
|
|
| 2903 |
|
|
| 2904 |
|
|
| 2905 |
|
|
| 2906 |
|
|
| 2907 |
|
|
| 2908 |
|
|
| 2909 |
|
|
| 2910 |
|
|
| 2911 |
|
|
| 2912 |
|
|
| 2913 |
|
|
| 2914 |
|
|
| 2915 |
|
|
| 2916 |
|
|
| 2917 |
|
|
| 2918 |
|
|
| 2919 |
|
|
| 2920 |
|
|
| 2921 |
|
|
| 2922 |
|
|
| 2923 |
|
|
| 2924 |
|
|
| 2925 |
|
|
| 2926 |
|
|
| 2927 |
|
|
| 2888 | 2928 |
|
| 2889 | 2929 |
|
| 2890 | 2930 |
|
packages/openagents-cli/src/forum-client.ts modified +16
@@ -31,6 +31,13 @@ interface ForumClientInterface {
| 31 | 31 |
|
| 32 | 32 |
|
| 33 | 33 |
|
| 34 |
|
|
| 35 |
|
|
| 36 |
|
|
| 37 |
|
|
| 38 |
|
|
| 39 |
|
|
| 40 |
|
|
| 34 | 41 |
|
| 35 | 42 |
|
| 36 | 43 |
|
@@ -153,6 +160,15 @@ export const forumClientLayer = Layer.effect(
| 153 | 160 |
|
| 154 | 161 |
|
| 155 | 162 |
|
| 163 |
|
|
| 164 |
|
|
| 165 |
|
|
| 166 |
|
|
| 167 |
|
|
| 168 |
|
|
| 169 |
|
|
| 170 |
|
|
| 171 |
|
|
| 156 | 172 |
|
| 157 | 173 |
|
| 158 | 174 |
|
packages/openagents-cli/test/forum-search.test.ts added +107
@@ -0,0 +1,107 @@
| 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 |
|
|
| 60 |
|
|
| 61 |
|
|
| 62 |
|
|
| 63 |
|
|
| 64 |
|
|
| 65 |
|
|
| 66 |
|
|
| 67 |
|
|
| 68 |
|
|
| 69 |
|
|
| 70 |
|
|
| 71 |
|
|
| 72 |
|
|
| 73 |
|
|
| 74 |
|
|
| 75 |
|
|
| 76 |
|
|
| 77 |
|
|
| 78 |
|
|
| 79 |
|
|
| 80 |
|
|
| 81 |
|
|
| 82 |
|
|
| 83 |
|
|
| 84 |
|
|
| 85 |
|
|
| 86 |
|
|
| 87 |
|
|
| 88 |
|
|
| 89 |
|
|
| 90 |
|
|
| 91 |
|
|
| 92 |
|
|
| 93 |
|
|
| 94 |
|
|
| 95 |
|
|
| 96 |
|
|
| 97 |
|
|
| 98 |
|
|
| 99 |
|
|
| 100 |
|
|
| 101 |
|
|
| 102 |
|
|
| 103 |
|
|
| 104 |
|
|
| 105 |
|
|
| 106 |
|
|
| 107 |
|