robot_lab 0.1.0 → 0.2.6

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 (180) hide show
  1. checksums.yaml +4 -4
  2. data/.architecture/AGENTS.md +32 -0
  3. data/.architecture/config.yml +8 -0
  4. data/.architecture/members.yml +60 -0
  5. data/.architecture/reviews/feature-free-will.md +490 -0
  6. data/.architecture/reviews/overall-codebase.md +427 -0
  7. data/.claude/settings.local.json +57 -0
  8. data/.codex/config.toml +2 -0
  9. data/.envrc +1 -0
  10. data/.irbrc +2 -2
  11. data/.loki +60 -0
  12. data/.quality/reek_baseline.txt +43 -0
  13. data/.rubocop.yml +10 -0
  14. data/CHANGELOG.md +126 -0
  15. data/CLAUDE.md +139 -0
  16. data/README.md +130 -73
  17. data/Rakefile +131 -9
  18. data/agent2agent_review.md +192 -0
  19. data/agentf_improvements.md +253 -0
  20. data/agents.md +14 -0
  21. data/docs/api/core/index.md +1 -0
  22. data/docs/api/core/network.md +31 -1
  23. data/docs/api/core/robot.md +91 -5
  24. data/docs/api/errors.md +47 -2
  25. data/docs/api/index.md +3 -0
  26. data/docs/architecture/core-concepts.md +40 -0
  27. data/docs/architecture/network-orchestration.md +8 -0
  28. data/docs/architecture/robot-execution.md +1 -1
  29. data/docs/examples/index.md +37 -2
  30. data/docs/getting-started/configuration.md +39 -7
  31. data/docs/guides/building-robots.md +39 -1
  32. data/docs/guides/creating-networks.md +6 -1
  33. data/docs/guides/hooks.md +997 -0
  34. data/docs/guides/index.md +19 -14
  35. data/docs/guides/knowledge.md +9 -3
  36. data/docs/guides/observability.md +206 -7
  37. data/docs/guides/using-tools.md +69 -0
  38. data/docs/index.md +31 -4
  39. data/docs/superpowers/plans/2026-05-06-agentskills.md +1303 -0
  40. data/docs/superpowers/specs/2026-05-06-agentskills-design.md +247 -0
  41. data/examples/.envrc +1 -0
  42. data/examples/01_simple_robot.rb +5 -9
  43. data/examples/02_tools.rb +5 -9
  44. data/examples/03_network.rb +18 -10
  45. data/examples/04_mcp.rb +21 -29
  46. data/examples/05_streaming.rb +12 -18
  47. data/examples/06_prompt_templates.rb +11 -19
  48. data/examples/07_network_memory.rb +16 -31
  49. data/examples/08_llm_config.rb +10 -22
  50. data/examples/09_chaining.rb +16 -27
  51. data/examples/10_memory.rb +12 -28
  52. data/examples/11_network_introspection.rb +15 -29
  53. data/examples/12_message_bus.rb +5 -12
  54. data/examples/13_spawn.rb +5 -10
  55. data/examples/14_rusty_circuit/.envrc +1 -0
  56. data/examples/14_rusty_circuit/comic.rb +2 -0
  57. data/examples/14_rusty_circuit/heckler.rb +1 -1
  58. data/examples/14_rusty_circuit/open_mic.rb +1 -3
  59. data/examples/14_rusty_circuit/scout.rb +2 -0
  60. data/examples/15_memory_network_and_bus/.envrc +1 -0
  61. data/examples/15_memory_network_and_bus/editorial_pipeline.rb +6 -3
  62. data/examples/15_memory_network_and_bus/linux_writer.rb +1 -1
  63. data/examples/15_memory_network_and_bus/output/combined_article.md +6 -6
  64. data/examples/15_memory_network_and_bus/output/final_article.md +6 -8
  65. data/examples/15_memory_network_and_bus/output/linux_draft.md +4 -2
  66. data/examples/15_memory_network_and_bus/output/mac_draft.md +3 -3
  67. data/examples/15_memory_network_and_bus/output/memory.json +6 -6
  68. data/examples/15_memory_network_and_bus/output/revision_1.md +10 -11
  69. data/examples/15_memory_network_and_bus/output/revision_2.md +6 -8
  70. data/examples/15_memory_network_and_bus/output/windows_draft.md +3 -3
  71. data/examples/16_writers_room/.envrc +1 -0
  72. data/examples/16_writers_room/writers_room.rb +2 -4
  73. data/examples/17_skills.rb +8 -17
  74. data/examples/18_rails/Gemfile +1 -0
  75. data/examples/19_token_tracking.rb +9 -15
  76. data/examples/20_circuit_breaker.rb +10 -19
  77. data/examples/21_learning_loop.rb +11 -20
  78. data/examples/22_context_compression.rb +6 -13
  79. data/examples/23_convergence.rb +6 -17
  80. data/examples/24_structured_delegation.rb +11 -15
  81. data/examples/25_history_search.rb +5 -12
  82. data/examples/26_document_store.rb +6 -13
  83. data/examples/27_incident_response/incident_response.rb +4 -5
  84. data/examples/28_mcp_discovery.rb +8 -11
  85. data/examples/29_ractor_tools.rb +4 -9
  86. data/examples/30_ractor_network.rb +10 -19
  87. data/examples/31_launch_assessment.rb +10 -23
  88. data/examples/32_newsletter_reader.rb +188 -0
  89. data/examples/33_stock_generator.rb +80 -0
  90. data/examples/33_stock_predictor.rb +306 -0
  91. data/examples/34_agentskills.rb +72 -0
  92. data/examples/35_hooks.rb +256 -0
  93. data/examples/README.md +8 -1
  94. data/examples/common.rb +80 -0
  95. data/examples/ruboruby.md +423 -0
  96. data/examples/xyzzy.rb +90 -0
  97. data/lib/robot_lab/agent_skill.rb +64 -0
  98. data/lib/robot_lab/agent_skill_catalog.rb +74 -0
  99. data/lib/robot_lab/ask_user.rb +2 -2
  100. data/lib/robot_lab/budget/ledger.rb +98 -0
  101. data/lib/robot_lab/bus_poller.rb +12 -5
  102. data/lib/robot_lab/capabilities.rb +84 -0
  103. data/lib/robot_lab/config/defaults.yml +10 -0
  104. data/lib/robot_lab/config.rb +5 -16
  105. data/lib/robot_lab/delegation_future.rb +1 -1
  106. data/lib/robot_lab/doom_loop_detector.rb +98 -0
  107. data/lib/robot_lab/error.rb +34 -4
  108. data/lib/robot_lab/errors.rb +45 -0
  109. data/lib/robot_lab/history_compressor.rb +4 -10
  110. data/lib/robot_lab/hook.rb +79 -0
  111. data/lib/robot_lab/hook_context.rb +194 -0
  112. data/lib/robot_lab/hook_registry.rb +55 -0
  113. data/lib/robot_lab/hooks.rb +87 -0
  114. data/lib/robot_lab/mcp/client.rb +1 -2
  115. data/lib/robot_lab/mcp/connection_poller.rb +5 -5
  116. data/lib/robot_lab/mcp/server.rb +1 -1
  117. data/lib/robot_lab/mcp/server_discovery.rb +0 -2
  118. data/lib/robot_lab/memory.rb +32 -27
  119. data/lib/robot_lab/memory_change.rb +2 -2
  120. data/lib/robot_lab/message.rb +4 -4
  121. data/lib/robot_lab/narrator.rb +87 -0
  122. data/lib/robot_lab/network.rb +87 -25
  123. data/lib/robot_lab/robot/agent_skill_matching.rb +99 -0
  124. data/lib/robot_lab/robot/budget.rb +89 -0
  125. data/lib/robot_lab/robot/bus_messaging.rb +79 -33
  126. data/lib/robot_lab/robot/history_search.rb +4 -1
  127. data/lib/robot_lab/robot/hooking.rb +56 -0
  128. data/lib/robot_lab/robot/mcp_management.rb +12 -12
  129. data/lib/robot_lab/robot/template_rendering.rb +62 -42
  130. data/lib/robot_lab/robot.rb +482 -242
  131. data/lib/robot_lab/robot_result.rb +6 -5
  132. data/lib/robot_lab/run_config.rb +27 -14
  133. data/lib/robot_lab/runnable.rb +51 -0
  134. data/lib/robot_lab/sandbox/null.rb +13 -0
  135. data/lib/robot_lab/sandbox/seatbelt.rb +104 -0
  136. data/lib/robot_lab/sandbox.rb +52 -0
  137. data/lib/robot_lab/script_tool.rb +134 -0
  138. data/lib/robot_lab/state_proxy.rb +7 -5
  139. data/lib/robot_lab/task.rb +26 -20
  140. data/lib/robot_lab/tool.rb +54 -13
  141. data/lib/robot_lab/tool_config.rb +1 -1
  142. data/lib/robot_lab/tool_manifest.rb +5 -7
  143. data/lib/robot_lab/user_message.rb +2 -2
  144. data/lib/robot_lab/version.rb +1 -1
  145. data/lib/robot_lab/waiter.rb +1 -1
  146. data/lib/robot_lab.rb +89 -51
  147. data/logfile +8 -0
  148. data/mkdocs.yml +3 -3
  149. data/robot_concurrency.md +38 -0
  150. data/simple_acp_review.md +298 -0
  151. data/temp.md +6 -0
  152. data/tool_manifest_plan.md +155 -0
  153. metadata +82 -83
  154. data/docs/examples/rails-application.md +0 -419
  155. data/docs/guides/ractor-parallelism.md +0 -364
  156. data/docs/guides/rails-integration.md +0 -681
  157. data/docs/superpowers/plans/2026-04-14-ractor-integration.md +0 -1538
  158. data/docs/superpowers/specs/2026-04-14-ractor-integration-design.md +0 -258
  159. data/lib/generators/robot_lab/install_generator.rb +0 -90
  160. data/lib/generators/robot_lab/job_generator.rb +0 -40
  161. data/lib/generators/robot_lab/robot_generator.rb +0 -55
  162. data/lib/generators/robot_lab/templates/initializer.rb.tt +0 -42
  163. data/lib/generators/robot_lab/templates/job.rb.tt +0 -21
  164. data/lib/generators/robot_lab/templates/migration.rb.tt +0 -32
  165. data/lib/generators/robot_lab/templates/result_model.rb.tt +0 -52
  166. data/lib/generators/robot_lab/templates/robot.rb.tt +0 -31
  167. data/lib/generators/robot_lab/templates/robot_job.rb.tt +0 -18
  168. data/lib/generators/robot_lab/templates/robot_test.rb.tt +0 -34
  169. data/lib/generators/robot_lab/templates/routing_robot.rb.tt +0 -59
  170. data/lib/generators/robot_lab/templates/thread_model.rb.tt +0 -40
  171. data/lib/robot_lab/document_store.rb +0 -155
  172. data/lib/robot_lab/ractor_boundary.rb +0 -42
  173. data/lib/robot_lab/ractor_job.rb +0 -37
  174. data/lib/robot_lab/ractor_memory_proxy.rb +0 -85
  175. data/lib/robot_lab/ractor_network_scheduler.rb +0 -154
  176. data/lib/robot_lab/ractor_worker_pool.rb +0 -117
  177. data/lib/robot_lab/rails_integration/engine.rb +0 -29
  178. data/lib/robot_lab/rails_integration/job.rb +0 -158
  179. data/lib/robot_lab/rails_integration/railtie.rb +0 -51
  180. data/lib/robot_lab/rails_integration/turbo_stream_callbacks.rb +0 -72
@@ -0,0 +1,298 @@
1
+ # Review: `simple_acp` Ruby Library
2
+
3
+ **Path:** `/Users/dewayne/sandbox/git_repos/madbomber/simple_acp`
4
+ **Version:** 0.0.1
5
+ **Protocol:** ACP (Agent Communication Protocol) — Bee AI community standard, not Google's A2A
6
+ **Reviewed:** 2026-05-05
7
+
8
+ ---
9
+
10
+ ## What It Is
11
+
12
+ A complete Ruby implementation of ACP — an HTTP+SSE protocol for communication between AI agents, applications, and humans. Provides both a server (Roda/Falcon) and a client (Faraday), with pluggable storage backends, streaming, stateful sessions, and an await/resume pattern for interactive multi-turn flows.
13
+
14
+ ---
15
+
16
+ ## Wire Protocol
17
+
18
+ | Endpoint | Purpose |
19
+ |---|---|
20
+ | `GET /ping` | Health check |
21
+ | `GET /agents` | List registered agents (params: limit, offset) |
22
+ | `GET /agents/:name` | Agent manifest (capabilities, MIME types) |
23
+ | `POST /runs` | Create a run (body: agent_name, input[], mode, session_id) |
24
+ | `GET /runs/:id` | Run status |
25
+ | `POST /runs/:id` | Resume an awaited run (body: await_resume, mode) |
26
+ | `POST /runs/:id/cancel` | Cancel a run |
27
+ | `GET /runs/:id/events` | Full SSE event history (params: limit, offset) |
28
+ | `GET /session/:id` | Session state and history |
29
+
30
+ ### Run Modes
31
+
32
+ - `SYNC` — wait for completion, return finished run
33
+ - `ASYNC` — return immediately with run ID, poll for completion
34
+ - `STREAM` — SSE event stream for real-time progress
35
+
36
+ ### Task State Machine
37
+
38
+ `CREATED → IN_PROGRESS → AWAITING → COMPLETED / FAILED / CANCELLED / CANCELLING`
39
+
40
+ ### Message Format (JSON)
41
+
42
+ ```json
43
+ {
44
+ "role": "user|agent|agent/name",
45
+ "parts": [
46
+ {
47
+ "name": "optional",
48
+ "content_type": "text/plain|application/json|image/*",
49
+ "content": "string or base64",
50
+ "content_encoding": "plain|base64",
51
+ "content_url": "https://...",
52
+ "metadata": { "kind": "citation|trajectory", ... }
53
+ }
54
+ ],
55
+ "created_at": "ISO8601",
56
+ "completed_at": "ISO8601"
57
+ }
58
+ ```
59
+
60
+ ### Run Response (JSON)
61
+
62
+ ```json
63
+ {
64
+ "run_id": "uuid",
65
+ "agent_name": "string",
66
+ "session_id": "uuid|null",
67
+ "status": "created|in-progress|awaiting|completed|failed|cancelled|cancelling",
68
+ "output": [{ "role": "agent", "parts": [...] }],
69
+ "error": { "code": "server_error|invalid_input|not_found", "message": "...", "data": null },
70
+ "await_request": { "type": "message", "message": { ... } },
71
+ "created_at": "ISO8601",
72
+ "finished_at": "ISO8601"
73
+ }
74
+ ```
75
+
76
+ ### SSE Event Types (11)
77
+
78
+ `message.created`, `message.part`, `message.completed`, `run.created`, `run.in_progress`, `run.awaiting`, `run.completed`, `run.cancelled`, `run.failed`, `generic`, `error`
79
+
80
+ ---
81
+
82
+ ## Key Classes and Their Roles
83
+
84
+ ### Server
85
+
86
+ | Class | Role |
87
+ |---|---|
88
+ | `SimpleAcp::Server::Base` | Main server; registers agents, drives all execution modes |
89
+ | `SimpleAcp::Server::App` | Roda HTTP router — maps endpoints to server methods |
90
+ | `SimpleAcp::Server::Agent` | Wraps handler block; normalizes return types (String/Message/Array/Enumerator → consistent enumerable) |
91
+ | `SimpleAcp::Server::Context` | Passed to handler blocks; provides `await_message`, `cancel!`, `history`, `state`, `log` |
92
+ | `SimpleAcp::Server::FalconRunner` | Fiber-based Falcon server runner |
93
+
94
+ ### Client
95
+
96
+ | Class | Role |
97
+ |---|---|
98
+ | `SimpleAcp::Client::Base` | Faraday-based; all endpoints as snake_case methods |
99
+ | `SimpleAcp::Client::SSE` | SSE event stream parser (event type + JSON data) |
100
+
101
+ **Client methods:** `ping`, `agents`, `agent(name)`, `run_sync`, `run_async`, `run_stream`, `run_resume_sync`, `run_resume_stream`, `run_status`, `run_events`, `run_cancel`, `wait_for_run`, `use_session`, `clear_session`, `session(id)`
102
+
103
+ ### Models
104
+
105
+ | Class | Role |
106
+ |---|---|
107
+ | `SimpleAcp::Models::Message` | Role + array of `MessagePart`s; factory: `Message.user(...)`, `Message.agent(...)` |
108
+ | `SimpleAcp::Models::MessagePart` | Content unit: text, JSON, image, URL; factory: `.text(s)`, `.json(h)`, `.image(data, mime)`, `.from_url(url, ct)` |
109
+ | `SimpleAcp::Models::Run` | Execution lifecycle with state transitions: `start!`, `await!`, `complete!`, `fail!`, `cancel!` |
110
+ | `SimpleAcp::Models::Session` | Conversation history (Message array) + arbitrary state dict; `add_to_history`, `set_state` |
111
+ | `SimpleAcp::Models::AgentManifest` | Discovery: name, description, input/output MIME types, status, metadata |
112
+ | `SimpleAcp::Models::AwaitRequest` | Prompt to display when agent pauses |
113
+ | `SimpleAcp::Models::AwaitResume` | Client's response when resuming a paused run |
114
+ | `SimpleAcp::Models::Events` | SSE event hierarchy (all 11 types); `sse_format` for wire encoding |
115
+ | `SimpleAcp::Models::Error` | Structured error: code, message, data; factory: `.server_error`, `.invalid_input`, `.not_found` |
116
+ | `SimpleAcp::Models::Metadata` | Agent metadata: citations, trajectory, authors, links, dependencies, capabilities |
117
+
118
+ ### Storage (pluggable — duck-typed interface)
119
+
120
+ | Class | Backend |
121
+ |---|---|
122
+ | `SimpleAcp::Storage::Memory` | `Concurrent::Map` — default, thread-safe |
123
+ | `SimpleAcp::Storage::Redis` | Redis backend |
124
+ | `SimpleAcp::Storage::PostgreSQL` | PostgreSQL via Sequel |
125
+
126
+ **Interface:** `get_run`, `save_run`, `delete_run`, `list_runs`, `get_session`, `save_session`, `delete_session`, `add_event`, `get_events`, `close`, `ping`
127
+
128
+ ---
129
+
130
+ ## Agent DSL
131
+
132
+ ```ruby
133
+ server = SimpleAcp::Server::Base.new
134
+
135
+ server.agent("assistant",
136
+ description: "A helpful assistant",
137
+ input_content_types: ["text/plain"],
138
+ output_content_types: ["text/plain"]
139
+ ) do |context|
140
+ input = context.input.text_content
141
+ result = my_robot.run(input).reply
142
+ SimpleAcp::Models::Message.agent(result)
143
+ end
144
+
145
+ server.run(port: 9292)
146
+ ```
147
+
148
+ ### Streaming Agent
149
+
150
+ ```ruby
151
+ server.agent("streamer", description: "Streams responses") do |context|
152
+ Enumerator.new do |yielder|
153
+ my_robot.run(context.input.text_content) do |chunk|
154
+ yielder << SimpleAcp::Models::MessagePart.text(chunk.content)
155
+ end
156
+ end
157
+ end
158
+ ```
159
+
160
+ ### Await/Resume Agent (interactive)
161
+
162
+ ```ruby
163
+ server.agent("interactive", description: "Asks for clarification") do |context|
164
+ clarification = context.await_message("Please clarify your intent:")
165
+ answer = clarification.text_content
166
+ result = my_robot.run("#{context.input.text_content} (clarification: #{answer})").reply
167
+ SimpleAcp::Models::Message.agent(result)
168
+ end
169
+ ```
170
+
171
+ ### Client Usage
172
+
173
+ ```ruby
174
+ client = SimpleAcp::Client::Base.new("http://localhost:9292")
175
+
176
+ # Synchronous
177
+ run = client.run_sync("assistant", input: "Hello")
178
+ puts run.output.first.text_content
179
+
180
+ # Streaming
181
+ client.run_stream("streamer", input: "Tell me a story") do |event|
182
+ print event.part.content if event.is_a?(SimpleAcp::Models::Events::MessagePartEvent)
183
+ end
184
+
185
+ # Async with polling
186
+ run = client.run_async("assistant", input: "Long task")
187
+ completed = client.wait_for_run(run.run_id, timeout: 60)
188
+ ```
189
+
190
+ ---
191
+
192
+ ## Dependencies
193
+
194
+ **Runtime:**
195
+ - `roda (~> 3.0)` — Rack web framework
196
+ - `falcon (~> 0.47)` — Fiber-based async HTTP server
197
+ - `async (~> 2.0)` — Async I/O primitives
198
+ - `async-http (~> 0.66)` — Async HTTP adapter
199
+ - `faraday (~> 2.0)` — HTTP client
200
+ - `concurrent-ruby (~> 1.2)` — Thread-safe data structures
201
+ - `json_schemer (~> 2.0)` — JSON schema validation
202
+ - `base64`, `uri` — stdlib backports for Ruby 3.4+
203
+
204
+ **Optional storage:**
205
+ - `redis (~> 5.0)`, `pg (~> 1.5)`, `sequel (~> 5.0)`
206
+
207
+ **Development:**
208
+ - `minitest (~> 5.0)`, `minitest-reporters`, `rack-test (~> 2.0)`, `webmock (~> 3.0)`
209
+ - `rubocop (~> 1.0)`, `rake`, `bundler`, `debug_me`, `aigcm`
210
+
211
+ ---
212
+
213
+ ## Comparison: `simple_acp` vs. `agent2agent` (GIS gem)
214
+
215
+ | Feature | `simple_acp` (yours) | `agent2agent` (GIS) |
216
+ |---|---|---|
217
+ | **Protocol** | ACP (Bee AI community) | A2A (Google) |
218
+ | **Await/Resume** | First-class — agents pause, client resumes | `INPUT_REQUIRED` state only |
219
+ | **Session state** | Arbitrary state dict + full history | Task-scoped only |
220
+ | **Storage backends** | Memory, Redis, PostgreSQL | Memory, SQLite |
221
+ | **HTTP framework** | Roda + Falcon | Pure Rack + Falcon |
222
+ | **Client** | Faraday-based, full API surface | `async-http`, fiber-only |
223
+ | **Content types** | Multimodal: text, JSON, image, URL refs | Text/JSON focused |
224
+ | **Agent DSL** | Block-based, normalized return types | Block-based |
225
+ | **Tests** | Minitest in `test/` | `scampi` inline |
226
+ | **Proto/Schema** | JSON Schema via `json_schemer` | `.proto` file + 47-type JSON schema |
227
+
228
+ ---
229
+
230
+ ## Applicability to RobotLab
231
+
232
+ ### High Value — Natural Fit
233
+
234
+ **Robot-as-ACP-Agent:**
235
+ Each `Robot` maps directly to an ACP agent registration:
236
+
237
+ ```ruby
238
+ server.agent(robot.name, description: robot.description) do |context|
239
+ result = robot.run(context.input.text_content)
240
+ SimpleAcp::Models::Message.agent(result.reply)
241
+ end
242
+ ```
243
+
244
+ **Streaming robot output:**
245
+ `run_stream` + SSE `message.part` events maps onto RubyLLM's streaming callbacks — emit one `MessagePartEvent` per chunk. Real-time progress for free.
246
+
247
+ **Await/Resume ↔ AskUser:**
248
+ `ctx.await_message(prompt)` / `ctx.resume_message` is a network-protocol equivalent of RobotLab's `AskUser` tool. Exposes interactive robot flows to web and API clients without a terminal dependency. This is the most direct protocol-level replacement for `AskUser`.
249
+
250
+ **Session ↔ Memory:**
251
+ `Session#state` (arbitrary dict) mirrors `Memory#data` (StateProxy). `Session#history` mirrors `Memory#messages`. A thin bridge adapter could keep them in sync, giving RobotLab robots persistent cross-request state without Redis.
252
+
253
+ **Async runs ↔ background jobs:**
254
+ `run_async` returns a run ID immediately; `wait_for_run` polls. Maps cleanly onto `RobotLab::Job` (ActiveJob) — the job creates the run, Turbo Streams broadcast `message.part` events as SSE.
255
+
256
+ **Network-as-single-agent:**
257
+ Expose an entire `Network` pipeline as one ACP agent — clients send one message, the network orchestrates internally across all robots, the final result comes back as one response. Callers don't need to know the internal topology.
258
+
259
+ **PostgreSQL storage:**
260
+ `SimpleAcp::Storage::PostgreSQL` aligns with RobotLab's Rails integration and existing ActiveRecord setup. No new infrastructure required.
261
+
262
+ **Multimodal inputs:**
263
+ `MessagePart` supports images, JSON blobs, and URL references out of the box — richer than plain text, useful for vision-capable robots or structured-data workflows.
264
+
265
+ ### Integration Pattern
266
+
267
+ ```ruby
268
+ # Expose a RobotLab Network as an ACP server
269
+ network = RobotLab.create_network(name: "support") { ... }
270
+
271
+ server = SimpleAcp::Server::Base.new(
272
+ storage: SimpleAcp::Storage::PostgreSQL.new(db_url)
273
+ )
274
+
275
+ server.agent("support",
276
+ description: "Multi-robot support pipeline",
277
+ input_content_types: ["text/plain"],
278
+ output_content_types: ["text/plain"]
279
+ ) do |context|
280
+ memory = RobotLab.create_memory(
281
+ data: { session_id: context.session_id }
282
+ )
283
+ result = network.run(message: context.input.text_content, memory: memory)
284
+ SimpleAcp::Models::Message.agent(result.reply)
285
+ end
286
+ ```
287
+
288
+ ---
289
+
290
+ ## Bottom Line
291
+
292
+ `simple_acp` is a cleaner fit for RobotLab than the `agent2agent` gem for three reasons:
293
+
294
+ 1. **Await/resume directly replaces `AskUser`'s terminal dependency** with a proper HTTP protocol state — robots can request human input without blocking a terminal session
295
+ 2. **PostgreSQL backend** aligns with the existing Rails integration — no SQLite impedance mismatch
296
+ 3. **Multimodal message parts** (image, JSON, URL) give RobotLab robots richer input/output than plain text
297
+
298
+ The most impactful integration would be a `RobotLab::ACPServer` adapter class that wraps any `Robot` or `Network` as an ACP agent, mapping `AskUser` calls to `await_message`, streaming callbacks to `message.part` events, and `RobotResult` to a completed `Message`.
data/temp.md ADDED
@@ -0,0 +1,6 @@
1
+
2
+ You: /llms gpt-5 openai
3
+
4
+ You: /llms gpt-5 openai 5.4
5
+
6
+ You: /llms gpt-5 openai 5.4 -openrouter
@@ -0,0 +1,155 @@
1
+ # ToolManifest Evolution Plan
2
+
3
+ ## Concept: Dynamic Tool Selection in Pipelines
4
+
5
+ There is a pattern where the total number of tools available within RobotLab numbers in the hundreds -- too many to send to any single LLM call. A pipeline uses a "selector" robot that reviews the next robot's prompt and determines which tools should be made available. The selected subset is then applied to the target robot via `with_tools(...)`.
6
+
7
+ ### Example Flow
8
+
9
+ ```
10
+ Selector Robot (step 1)
11
+ - Receives the user prompt destined for step 2
12
+ - Has access to a summary of all available tools (name + description)
13
+ - Outputs a list of tool names relevant to the task
14
+
15
+ Target Robot (step 2)
16
+ - Receives the selected tools via with_tools(...)
17
+ - Runs with only the relevant subset (e.g., 5-10 tools instead of hundreds)
18
+ ```
19
+
20
+ ## Current State
21
+
22
+ `ToolManifest` (lib/robot_lab/tool_manifest.rb, 218 lines) is a name-keyed Hash wrapper with:
23
+ - Lookup by name (`[]`, `fetch`)
24
+ - `Enumerable` support
25
+ - Merge/replace operations
26
+ - Serialization (`to_h`, `to_json`, `from_hash`)
27
+
28
+ It is not currently used by any production code path. `Robot` stores tools as plain arrays (`@local_tools`, `@mcp_tools`) and `all_tools` concatenates them.
29
+
30
+ ## What It Needs to Become
31
+
32
+ ### 1. Global Registry Entry Point
33
+
34
+ A singleton or module-level registry where all available tools accumulate:
35
+
36
+ ```ruby
37
+ RobotLab.tool_registry # => ToolManifest (global instance)
38
+ RobotLab.tool_registry.add(MyTool)
39
+ RobotLab.tool_registry.names # => ["my_tool", "weather", "calculator", ...]
40
+ ```
41
+
42
+ ### 2. Metadata for Selection
43
+
44
+ Categories, tags, or other metadata so the selector robot can reason about which tools are relevant without seeing full schemas:
45
+
46
+ ```ruby
47
+ # Registration with metadata
48
+ RobotLab.tool_registry.add(MyTool, tags: [:database, :read_only])
49
+
50
+ # Filtering
51
+ RobotLab.tool_registry.tagged(:database) # => subset manifest
52
+ ```
53
+
54
+ ### 3. Search-Friendly Summary Output
55
+
56
+ The selector robot needs a compact summary it can reason over -- name + description pairs, not full JSON schemas:
57
+
58
+ ```ruby
59
+ RobotLab.tool_registry.summary
60
+ # => [{ name: "get_weather", description: "Get current weather for a location" },
61
+ # { name: "calculate", description: "Performs basic arithmetic" }, ...]
62
+ ```
63
+
64
+ ### 4. Subset Extraction by Name
65
+
66
+ Resolve a list of tool names (the selector robot's output) into actual tool objects:
67
+
68
+ ```ruby
69
+ names = ["get_weather", "calculate"] # from selector robot
70
+ tools = RobotLab.tool_registry.select_by_names(names)
71
+ target_robot.with_tools(tools)
72
+ ```
73
+
74
+ ### 5. Integration with Robot
75
+
76
+ `Robot#all_tools` and `with_tools(...)` should accept a ToolManifest or be able to pull from the global registry.
77
+
78
+ ## Design Decisions Still Needed
79
+
80
+ - Should MCP-discovered tools auto-register in the global manifest?
81
+ - How does the selector robot receive the tool summary -- as part of its system prompt, injected into the user message, or via a tool call?
82
+ - Should categories/tags be defined on the Tool class itself (e.g., `Tool.create(name: ..., tags: [...])`), or only at registration time?
83
+ - Does the manifest need versioning or hot-reload support for long-running processes?
84
+
85
+ ---
86
+
87
+ ## Review Notes
88
+
89
+ ### The Problem Statement is Strong
90
+
91
+ The "selector robot" pattern — an LLM choosing tools from hundreds based on a compact summary — is a real need. Sending 200+ tool schemas in every API call is both expensive and degrades LLM accuracy. The plan correctly identifies that `ToolManifest` as it exists today is a passive container that nothing actually uses.
92
+
93
+ ### What's Solid
94
+
95
+ - **Global registry** (section 1) — The right call. Tools currently scatter across `@local_tools` and `@mcp_tools` per-robot with no central view. `RobotLab.tool_registry` is the obvious home.
96
+ - **Summary output** (section 3) — Essential for the selector pattern. Name + description pairs are the right granularity for LLM reasoning.
97
+ - **Subset extraction** (section 4) — `select_by_names` maps cleanly to what `ToolConfig.filter_tools` already does, but at the registry level.
98
+
99
+ ### Gaps and Concerns
100
+
101
+ **1. Tags/metadata may be premature.**
102
+
103
+ Section 2 proposes tags (`tags: [:database, :read_only]`) and `.tagged(:database)` filtering. This adds a classification system that someone has to maintain. In the selector-robot pattern, the LLM is doing the classification — that's the whole point. If you also hand-tag tools, you're duplicating the selector's job.
104
+
105
+ A simpler alternative: let `summary` be the only interface the selector sees. If you later want pre-filtering (e.g., "only show the selector database-related tools"), add it then. Right now it's YAGNI.
106
+
107
+ **2. MCP tool auto-registration is the key decision, not a footnote.**
108
+
109
+ The plan lists "Should MCP-discovered tools auto-register in the global manifest?" as an open question. This is actually the central architectural decision. Looking at `MCPManagement#discover_mcp_tools`, MCP tools are created dynamically per-robot, per-connection. They hold closures over their specific `mcp_client` instance. If you auto-register them globally, you need to handle:
110
+
111
+ - **Lifecycle** — MCP tools are only valid while their client is connected. The global registry would hold dead references after `disconnect`.
112
+ - **Duplicates** — Two robots connecting to the same MCP server would register the same tool names with different client closures.
113
+ - **Scope** — An MCP tool created for robot A shouldn't be callable by robot B unless they share the client.
114
+
115
+ Suggestion: MCP tools should **not** auto-register. The global registry should hold "tool definitions" (name, description, schema) — not live callable instances. The selector robot picks names; the target robot resolves those names against its own live tools.
116
+
117
+ **3. The plan doesn't address the split between "tool definition" and "tool instance."**
118
+
119
+ Currently `Tool` is both the definition (name, description, parameters) and the callable (the `execute` method with its closure). For a global registry, you want the definition without the closure. The selector robot doesn't need to call tools — it just needs to read summaries and output names.
120
+
121
+ This suggests `ToolManifest` should store lightweight descriptors, and `Robot#filtered_tools` continues resolving names to live instances from `all_tools`.
122
+
123
+ **4. Integration with `Robot#with_tools` needs more thought.**
124
+
125
+ The plan says "`with_tools(...)` should accept a ToolManifest." But `with_tools` currently delegates to `@chat.with_tools` from RubyLLM, which expects tool class/instance objects. Accepting a manifest means either:
126
+
127
+ - Converting manifest entries back to tool instances (requires the live tool lookup), or
128
+ - Passing tool names and letting the robot resolve internally (which is what `filtered_tools` already does)
129
+
130
+ The second path is simpler and already mostly works. The plan could just say: "The selector robot outputs tool names. Pass them to `robot.run(..., tools: names)`." That's the existing `tools:` parameter.
131
+
132
+ **5. Missing: how the selector robot itself gets built.**
133
+
134
+ The plan describes the pattern but not the API. Is this a special network task type? A built-in robot template? A method on `ToolManifest`? Something like:
135
+
136
+ ```ruby
137
+ network = RobotLab.create_network(name: "smart_pipeline") do
138
+ task :selector, selector_robot, depends_on: :none
139
+ task :worker, worker_robot, tools: :from_selector, depends_on: [:selector]
140
+ end
141
+ ```
142
+
143
+ The `tools: :from_selector` (or similar) is the glue that needs designing.
144
+
145
+ ### Suggested Simplification
146
+
147
+ Instead of evolving ToolManifest into a full registry with tags, a narrower v1:
148
+
149
+ 1. **`RobotLab.tool_registry`** — Global `ToolManifest` that accumulates tool descriptors (name + description only, no live instances)
150
+ 2. **`ToolManifest#summary`** — Returns the compact format for selector prompts
151
+ 3. **`ToolManifest#select_by_names(names)`** — Returns a sub-manifest (already close to what exists)
152
+ 4. **Auto-registration of local tools at `Robot.new`** — Push descriptors into the registry when robots are created
153
+ 5. **No auto-registration of MCP tools** — Too coupled to connection lifecycle
154
+
155
+ Skip tags, skip `with_tools(manifest)` integration, skip hot-reload. Those can come later if needed.