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.
- checksums.yaml +4 -4
- data/.architecture/AGENTS.md +32 -0
- data/.architecture/config.yml +8 -0
- data/.architecture/members.yml +60 -0
- data/.architecture/reviews/feature-free-will.md +490 -0
- data/.architecture/reviews/overall-codebase.md +427 -0
- data/.claude/settings.local.json +57 -0
- data/.codex/config.toml +2 -0
- data/.envrc +1 -0
- data/.irbrc +2 -2
- data/.loki +60 -0
- data/.quality/reek_baseline.txt +43 -0
- data/.rubocop.yml +10 -0
- data/CHANGELOG.md +126 -0
- data/CLAUDE.md +139 -0
- data/README.md +130 -73
- data/Rakefile +131 -9
- data/agent2agent_review.md +192 -0
- data/agentf_improvements.md +253 -0
- data/agents.md +14 -0
- data/docs/api/core/index.md +1 -0
- data/docs/api/core/network.md +31 -1
- data/docs/api/core/robot.md +91 -5
- data/docs/api/errors.md +47 -2
- data/docs/api/index.md +3 -0
- data/docs/architecture/core-concepts.md +40 -0
- data/docs/architecture/network-orchestration.md +8 -0
- data/docs/architecture/robot-execution.md +1 -1
- data/docs/examples/index.md +37 -2
- data/docs/getting-started/configuration.md +39 -7
- data/docs/guides/building-robots.md +39 -1
- data/docs/guides/creating-networks.md +6 -1
- data/docs/guides/hooks.md +997 -0
- data/docs/guides/index.md +19 -14
- data/docs/guides/knowledge.md +9 -3
- data/docs/guides/observability.md +206 -7
- data/docs/guides/using-tools.md +69 -0
- data/docs/index.md +31 -4
- data/docs/superpowers/plans/2026-05-06-agentskills.md +1303 -0
- data/docs/superpowers/specs/2026-05-06-agentskills-design.md +247 -0
- data/examples/.envrc +1 -0
- data/examples/01_simple_robot.rb +5 -9
- data/examples/02_tools.rb +5 -9
- data/examples/03_network.rb +18 -10
- data/examples/04_mcp.rb +21 -29
- data/examples/05_streaming.rb +12 -18
- data/examples/06_prompt_templates.rb +11 -19
- data/examples/07_network_memory.rb +16 -31
- data/examples/08_llm_config.rb +10 -22
- data/examples/09_chaining.rb +16 -27
- data/examples/10_memory.rb +12 -28
- data/examples/11_network_introspection.rb +15 -29
- data/examples/12_message_bus.rb +5 -12
- data/examples/13_spawn.rb +5 -10
- data/examples/14_rusty_circuit/.envrc +1 -0
- data/examples/14_rusty_circuit/comic.rb +2 -0
- data/examples/14_rusty_circuit/heckler.rb +1 -1
- data/examples/14_rusty_circuit/open_mic.rb +1 -3
- data/examples/14_rusty_circuit/scout.rb +2 -0
- data/examples/15_memory_network_and_bus/.envrc +1 -0
- data/examples/15_memory_network_and_bus/editorial_pipeline.rb +6 -3
- data/examples/15_memory_network_and_bus/linux_writer.rb +1 -1
- data/examples/15_memory_network_and_bus/output/combined_article.md +6 -6
- data/examples/15_memory_network_and_bus/output/final_article.md +6 -8
- data/examples/15_memory_network_and_bus/output/linux_draft.md +4 -2
- data/examples/15_memory_network_and_bus/output/mac_draft.md +3 -3
- data/examples/15_memory_network_and_bus/output/memory.json +6 -6
- data/examples/15_memory_network_and_bus/output/revision_1.md +10 -11
- data/examples/15_memory_network_and_bus/output/revision_2.md +6 -8
- data/examples/15_memory_network_and_bus/output/windows_draft.md +3 -3
- data/examples/16_writers_room/.envrc +1 -0
- data/examples/16_writers_room/writers_room.rb +2 -4
- data/examples/17_skills.rb +8 -17
- data/examples/18_rails/Gemfile +1 -0
- data/examples/19_token_tracking.rb +9 -15
- data/examples/20_circuit_breaker.rb +10 -19
- data/examples/21_learning_loop.rb +11 -20
- data/examples/22_context_compression.rb +6 -13
- data/examples/23_convergence.rb +6 -17
- data/examples/24_structured_delegation.rb +11 -15
- data/examples/25_history_search.rb +5 -12
- data/examples/26_document_store.rb +6 -13
- data/examples/27_incident_response/incident_response.rb +4 -5
- data/examples/28_mcp_discovery.rb +8 -11
- data/examples/29_ractor_tools.rb +4 -9
- data/examples/30_ractor_network.rb +10 -19
- data/examples/31_launch_assessment.rb +10 -23
- data/examples/32_newsletter_reader.rb +188 -0
- data/examples/33_stock_generator.rb +80 -0
- data/examples/33_stock_predictor.rb +306 -0
- data/examples/34_agentskills.rb +72 -0
- data/examples/35_hooks.rb +256 -0
- data/examples/README.md +8 -1
- data/examples/common.rb +80 -0
- data/examples/ruboruby.md +423 -0
- data/examples/xyzzy.rb +90 -0
- data/lib/robot_lab/agent_skill.rb +64 -0
- data/lib/robot_lab/agent_skill_catalog.rb +74 -0
- data/lib/robot_lab/ask_user.rb +2 -2
- data/lib/robot_lab/budget/ledger.rb +98 -0
- data/lib/robot_lab/bus_poller.rb +12 -5
- data/lib/robot_lab/capabilities.rb +84 -0
- data/lib/robot_lab/config/defaults.yml +10 -0
- data/lib/robot_lab/config.rb +5 -16
- data/lib/robot_lab/delegation_future.rb +1 -1
- data/lib/robot_lab/doom_loop_detector.rb +98 -0
- data/lib/robot_lab/error.rb +34 -4
- data/lib/robot_lab/errors.rb +45 -0
- data/lib/robot_lab/history_compressor.rb +4 -10
- data/lib/robot_lab/hook.rb +79 -0
- data/lib/robot_lab/hook_context.rb +194 -0
- data/lib/robot_lab/hook_registry.rb +55 -0
- data/lib/robot_lab/hooks.rb +87 -0
- data/lib/robot_lab/mcp/client.rb +1 -2
- data/lib/robot_lab/mcp/connection_poller.rb +5 -5
- data/lib/robot_lab/mcp/server.rb +1 -1
- data/lib/robot_lab/mcp/server_discovery.rb +0 -2
- data/lib/robot_lab/memory.rb +32 -27
- data/lib/robot_lab/memory_change.rb +2 -2
- data/lib/robot_lab/message.rb +4 -4
- data/lib/robot_lab/narrator.rb +87 -0
- data/lib/robot_lab/network.rb +87 -25
- data/lib/robot_lab/robot/agent_skill_matching.rb +99 -0
- data/lib/robot_lab/robot/budget.rb +89 -0
- data/lib/robot_lab/robot/bus_messaging.rb +79 -33
- data/lib/robot_lab/robot/history_search.rb +4 -1
- data/lib/robot_lab/robot/hooking.rb +56 -0
- data/lib/robot_lab/robot/mcp_management.rb +12 -12
- data/lib/robot_lab/robot/template_rendering.rb +62 -42
- data/lib/robot_lab/robot.rb +482 -242
- data/lib/robot_lab/robot_result.rb +6 -5
- data/lib/robot_lab/run_config.rb +27 -14
- data/lib/robot_lab/runnable.rb +51 -0
- data/lib/robot_lab/sandbox/null.rb +13 -0
- data/lib/robot_lab/sandbox/seatbelt.rb +104 -0
- data/lib/robot_lab/sandbox.rb +52 -0
- data/lib/robot_lab/script_tool.rb +134 -0
- data/lib/robot_lab/state_proxy.rb +7 -5
- data/lib/robot_lab/task.rb +26 -20
- data/lib/robot_lab/tool.rb +54 -13
- data/lib/robot_lab/tool_config.rb +1 -1
- data/lib/robot_lab/tool_manifest.rb +5 -7
- data/lib/robot_lab/user_message.rb +2 -2
- data/lib/robot_lab/version.rb +1 -1
- data/lib/robot_lab/waiter.rb +1 -1
- data/lib/robot_lab.rb +89 -51
- data/logfile +8 -0
- data/mkdocs.yml +3 -3
- data/robot_concurrency.md +38 -0
- data/simple_acp_review.md +298 -0
- data/temp.md +6 -0
- data/tool_manifest_plan.md +155 -0
- metadata +82 -83
- data/docs/examples/rails-application.md +0 -419
- data/docs/guides/ractor-parallelism.md +0 -364
- data/docs/guides/rails-integration.md +0 -681
- data/docs/superpowers/plans/2026-04-14-ractor-integration.md +0 -1538
- data/docs/superpowers/specs/2026-04-14-ractor-integration-design.md +0 -258
- data/lib/generators/robot_lab/install_generator.rb +0 -90
- data/lib/generators/robot_lab/job_generator.rb +0 -40
- data/lib/generators/robot_lab/robot_generator.rb +0 -55
- data/lib/generators/robot_lab/templates/initializer.rb.tt +0 -42
- data/lib/generators/robot_lab/templates/job.rb.tt +0 -21
- data/lib/generators/robot_lab/templates/migration.rb.tt +0 -32
- data/lib/generators/robot_lab/templates/result_model.rb.tt +0 -52
- data/lib/generators/robot_lab/templates/robot.rb.tt +0 -31
- data/lib/generators/robot_lab/templates/robot_job.rb.tt +0 -18
- data/lib/generators/robot_lab/templates/robot_test.rb.tt +0 -34
- data/lib/generators/robot_lab/templates/routing_robot.rb.tt +0 -59
- data/lib/generators/robot_lab/templates/thread_model.rb.tt +0 -40
- data/lib/robot_lab/document_store.rb +0 -155
- data/lib/robot_lab/ractor_boundary.rb +0 -42
- data/lib/robot_lab/ractor_job.rb +0 -37
- data/lib/robot_lab/ractor_memory_proxy.rb +0 -85
- data/lib/robot_lab/ractor_network_scheduler.rb +0 -154
- data/lib/robot_lab/ractor_worker_pool.rb +0 -117
- data/lib/robot_lab/rails_integration/engine.rb +0 -29
- data/lib/robot_lab/rails_integration/job.rb +0 -158
- data/lib/robot_lab/rails_integration/railtie.rb +0 -51
- data/lib/robot_lab/rails_integration/turbo_stream_callbacks.rb +0 -72
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: robot_lab
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dewayne VanHoozer
|
|
@@ -55,16 +55,16 @@ dependencies:
|
|
|
55
55
|
name: ruby_llm-mcp
|
|
56
56
|
requirement: !ruby/object:Gem::Requirement
|
|
57
57
|
requirements:
|
|
58
|
-
- - "
|
|
58
|
+
- - "~>"
|
|
59
59
|
- !ruby/object:Gem::Version
|
|
60
|
-
version: '0'
|
|
60
|
+
version: '1.0'
|
|
61
61
|
type: :runtime
|
|
62
62
|
prerelease: false
|
|
63
63
|
version_requirements: !ruby/object:Gem::Requirement
|
|
64
64
|
requirements:
|
|
65
|
-
- - "
|
|
65
|
+
- - "~>"
|
|
66
66
|
- !ruby/object:Gem::Version
|
|
67
|
-
version: '0'
|
|
67
|
+
version: '1.0'
|
|
68
68
|
- !ruby/object:Gem::Dependency
|
|
69
69
|
name: prompt_manager
|
|
70
70
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -83,44 +83,30 @@ dependencies:
|
|
|
83
83
|
name: ruby_llm-schema
|
|
84
84
|
requirement: !ruby/object:Gem::Requirement
|
|
85
85
|
requirements:
|
|
86
|
-
- - "
|
|
86
|
+
- - "~>"
|
|
87
87
|
- !ruby/object:Gem::Version
|
|
88
|
-
version: '0'
|
|
88
|
+
version: '0.3'
|
|
89
89
|
type: :runtime
|
|
90
90
|
prerelease: false
|
|
91
91
|
version_requirements: !ruby/object:Gem::Requirement
|
|
92
92
|
requirements:
|
|
93
|
-
- - "
|
|
93
|
+
- - "~>"
|
|
94
94
|
- !ruby/object:Gem::Version
|
|
95
|
-
version: '0'
|
|
95
|
+
version: '0.3'
|
|
96
96
|
- !ruby/object:Gem::Dependency
|
|
97
97
|
name: ruby_llm-semantic_cache
|
|
98
98
|
requirement: !ruby/object:Gem::Requirement
|
|
99
99
|
requirements:
|
|
100
|
-
- - "
|
|
101
|
-
- !ruby/object:Gem::Version
|
|
102
|
-
version: '0'
|
|
103
|
-
type: :runtime
|
|
104
|
-
prerelease: false
|
|
105
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
106
|
-
requirements:
|
|
107
|
-
- - ">="
|
|
108
|
-
- !ruby/object:Gem::Version
|
|
109
|
-
version: '0'
|
|
110
|
-
- !ruby/object:Gem::Dependency
|
|
111
|
-
name: fastembed
|
|
112
|
-
requirement: !ruby/object:Gem::Requirement
|
|
113
|
-
requirements:
|
|
114
|
-
- - ">="
|
|
100
|
+
- - "~>"
|
|
115
101
|
- !ruby/object:Gem::Version
|
|
116
|
-
version: '0'
|
|
102
|
+
version: '0.1'
|
|
117
103
|
type: :runtime
|
|
118
104
|
prerelease: false
|
|
119
105
|
version_requirements: !ruby/object:Gem::Requirement
|
|
120
106
|
requirements:
|
|
121
|
-
- - "
|
|
107
|
+
- - "~>"
|
|
122
108
|
- !ruby/object:Gem::Version
|
|
123
|
-
version: '0'
|
|
109
|
+
version: '0.1'
|
|
124
110
|
- !ruby/object:Gem::Dependency
|
|
125
111
|
name: async
|
|
126
112
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -139,58 +125,44 @@ dependencies:
|
|
|
139
125
|
name: typed_bus
|
|
140
126
|
requirement: !ruby/object:Gem::Requirement
|
|
141
127
|
requirements:
|
|
142
|
-
- - "
|
|
128
|
+
- - "~>"
|
|
143
129
|
- !ruby/object:Gem::Version
|
|
144
|
-
version:
|
|
130
|
+
version: 0.0.1
|
|
145
131
|
type: :runtime
|
|
146
132
|
prerelease: false
|
|
147
133
|
version_requirements: !ruby/object:Gem::Requirement
|
|
148
134
|
requirements:
|
|
149
|
-
- - "
|
|
135
|
+
- - "~>"
|
|
150
136
|
- !ruby/object:Gem::Version
|
|
151
|
-
version:
|
|
137
|
+
version: 0.0.1
|
|
152
138
|
- !ruby/object:Gem::Dependency
|
|
153
139
|
name: simple_flow
|
|
154
140
|
requirement: !ruby/object:Gem::Requirement
|
|
155
141
|
requirements:
|
|
156
142
|
- - "~>"
|
|
157
143
|
- !ruby/object:Gem::Version
|
|
158
|
-
version: 0.4
|
|
144
|
+
version: '0.4'
|
|
159
145
|
type: :runtime
|
|
160
146
|
prerelease: false
|
|
161
147
|
version_requirements: !ruby/object:Gem::Requirement
|
|
162
148
|
requirements:
|
|
163
149
|
- - "~>"
|
|
164
150
|
- !ruby/object:Gem::Version
|
|
165
|
-
version: 0.4
|
|
151
|
+
version: '0.4'
|
|
166
152
|
- !ruby/object:Gem::Dependency
|
|
167
153
|
name: ractor_queue
|
|
168
154
|
requirement: !ruby/object:Gem::Requirement
|
|
169
155
|
requirements:
|
|
170
|
-
- - "
|
|
171
|
-
- !ruby/object:Gem::Version
|
|
172
|
-
version: '0'
|
|
173
|
-
type: :runtime
|
|
174
|
-
prerelease: false
|
|
175
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
176
|
-
requirements:
|
|
177
|
-
- - ">="
|
|
178
|
-
- !ruby/object:Gem::Version
|
|
179
|
-
version: '0'
|
|
180
|
-
- !ruby/object:Gem::Dependency
|
|
181
|
-
name: ractor-wrapper
|
|
182
|
-
requirement: !ruby/object:Gem::Requirement
|
|
183
|
-
requirements:
|
|
184
|
-
- - ">="
|
|
156
|
+
- - "~>"
|
|
185
157
|
- !ruby/object:Gem::Version
|
|
186
|
-
version: '0'
|
|
158
|
+
version: '0.2'
|
|
187
159
|
type: :runtime
|
|
188
160
|
prerelease: false
|
|
189
161
|
version_requirements: !ruby/object:Gem::Requirement
|
|
190
162
|
requirements:
|
|
191
|
-
- - "
|
|
163
|
+
- - "~>"
|
|
192
164
|
- !ruby/object:Gem::Version
|
|
193
|
-
version: '0'
|
|
165
|
+
version: '0.2'
|
|
194
166
|
- !ruby/object:Gem::Dependency
|
|
195
167
|
name: async-http
|
|
196
168
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -223,23 +195,38 @@ description: |
|
|
|
223
195
|
RobotLab is a Ruby framework for building and orchestrating multi-robot LLM workflows.
|
|
224
196
|
Built on ruby_llm, it provides robots with template-based prompts, tools, and shared
|
|
225
197
|
memory; networks for coordinating multiple robots with intelligent routing; MCP (Model
|
|
226
|
-
Context Protocol) integration for external tool servers; a memory system with Redis
|
|
227
|
-
backend and semantic caching
|
|
228
|
-
|
|
198
|
+
Context Protocol) integration for external tool servers; and a memory system with Redis
|
|
199
|
+
backend and semantic caching. Optional gems add Rails integration (robot_lab-rails),
|
|
200
|
+
durable learning (robot_lab-durable), Ractor concurrency (robot_lab-ractor), and
|
|
201
|
+
document storage (robot_lab-document_store).
|
|
229
202
|
email:
|
|
230
|
-
-
|
|
203
|
+
- dvanhoozer@gmail.com
|
|
231
204
|
executables: []
|
|
232
205
|
extensions: []
|
|
233
206
|
extra_rdoc_files: []
|
|
234
207
|
files:
|
|
208
|
+
- ".architecture/AGENTS.md"
|
|
209
|
+
- ".architecture/config.yml"
|
|
210
|
+
- ".architecture/members.yml"
|
|
211
|
+
- ".architecture/reviews/feature-free-will.md"
|
|
212
|
+
- ".architecture/reviews/overall-codebase.md"
|
|
213
|
+
- ".claude/settings.local.json"
|
|
214
|
+
- ".codex/config.toml"
|
|
235
215
|
- ".envrc"
|
|
236
216
|
- ".github/workflows/deploy-github-pages.yml"
|
|
237
217
|
- ".irbrc"
|
|
218
|
+
- ".loki"
|
|
219
|
+
- ".quality/reek_baseline.txt"
|
|
220
|
+
- ".rubocop.yml"
|
|
238
221
|
- CHANGELOG.md
|
|
222
|
+
- CLAUDE.md
|
|
239
223
|
- COMMITS.md
|
|
240
224
|
- LICENSE.txt
|
|
241
225
|
- README.md
|
|
242
226
|
- Rakefile
|
|
227
|
+
- agent2agent_review.md
|
|
228
|
+
- agentf_improvements.md
|
|
229
|
+
- agents.md
|
|
243
230
|
- docs/api/core/index.md
|
|
244
231
|
- docs/api/core/memory.md
|
|
245
232
|
- docs/api/core/network.md
|
|
@@ -274,7 +261,6 @@ files:
|
|
|
274
261
|
- docs/examples/index.md
|
|
275
262
|
- docs/examples/mcp-server.md
|
|
276
263
|
- docs/examples/multi-robot-network.md
|
|
277
|
-
- docs/examples/rails-application.md
|
|
278
264
|
- docs/examples/tool-usage.md
|
|
279
265
|
- docs/getting-started/configuration.md
|
|
280
266
|
- docs/getting-started/index.md
|
|
@@ -282,18 +268,18 @@ files:
|
|
|
282
268
|
- docs/getting-started/quick-start.md
|
|
283
269
|
- docs/guides/building-robots.md
|
|
284
270
|
- docs/guides/creating-networks.md
|
|
271
|
+
- docs/guides/hooks.md
|
|
285
272
|
- docs/guides/index.md
|
|
286
273
|
- docs/guides/knowledge.md
|
|
287
274
|
- docs/guides/mcp-integration.md
|
|
288
275
|
- docs/guides/memory.md
|
|
289
276
|
- docs/guides/observability.md
|
|
290
|
-
- docs/guides/ractor-parallelism.md
|
|
291
|
-
- docs/guides/rails-integration.md
|
|
292
277
|
- docs/guides/streaming.md
|
|
293
278
|
- docs/guides/using-tools.md
|
|
294
279
|
- docs/index.md
|
|
295
|
-
- docs/superpowers/plans/2026-
|
|
296
|
-
- docs/superpowers/specs/2026-
|
|
280
|
+
- docs/superpowers/plans/2026-05-06-agentskills.md
|
|
281
|
+
- docs/superpowers/specs/2026-05-06-agentskills-design.md
|
|
282
|
+
- examples/.envrc
|
|
297
283
|
- examples/01_simple_robot.rb
|
|
298
284
|
- examples/02_tools.rb
|
|
299
285
|
- examples/03_network.rb
|
|
@@ -307,6 +293,7 @@ files:
|
|
|
307
293
|
- examples/11_network_introspection.rb
|
|
308
294
|
- examples/12_message_bus.rb
|
|
309
295
|
- examples/13_spawn.rb
|
|
296
|
+
- examples/14_rusty_circuit/.envrc
|
|
310
297
|
- examples/14_rusty_circuit/.gitignore
|
|
311
298
|
- examples/14_rusty_circuit/comic.rb
|
|
312
299
|
- examples/14_rusty_circuit/display.rb
|
|
@@ -317,6 +304,7 @@ files:
|
|
|
317
304
|
- examples/14_rusty_circuit/prompts/open_mic_scout.md
|
|
318
305
|
- examples/14_rusty_circuit/scout.rb
|
|
319
306
|
- examples/14_rusty_circuit/show.log
|
|
307
|
+
- examples/15_memory_network_and_bus/.envrc
|
|
320
308
|
- examples/15_memory_network_and_bus/editor_in_chief.rb
|
|
321
309
|
- examples/15_memory_network_and_bus/editorial_pipeline.rb
|
|
322
310
|
- examples/15_memory_network_and_bus/linux_writer.rb
|
|
@@ -333,6 +321,7 @@ files:
|
|
|
333
321
|
- examples/15_memory_network_and_bus/prompts/os_advocate.md
|
|
334
322
|
- examples/15_memory_network_and_bus/prompts/os_chief.md
|
|
335
323
|
- examples/15_memory_network_and_bus/prompts/os_editor.md
|
|
324
|
+
- examples/16_writers_room/.envrc
|
|
336
325
|
- examples/16_writers_room/display.rb
|
|
337
326
|
- examples/16_writers_room/output/.gitignore
|
|
338
327
|
- examples/16_writers_room/output/README.md
|
|
@@ -396,7 +385,13 @@ files:
|
|
|
396
385
|
- examples/29_ractor_tools.rb
|
|
397
386
|
- examples/30_ractor_network.rb
|
|
398
387
|
- examples/31_launch_assessment.rb
|
|
388
|
+
- examples/32_newsletter_reader.rb
|
|
389
|
+
- examples/33_stock_generator.rb
|
|
390
|
+
- examples/33_stock_predictor.rb
|
|
391
|
+
- examples/34_agentskills.rb
|
|
392
|
+
- examples/35_hooks.rb
|
|
399
393
|
- examples/README.md
|
|
394
|
+
- examples/common.rb
|
|
400
395
|
- examples/prompts/assistant.md
|
|
401
396
|
- examples/prompts/audit_trail.md
|
|
402
397
|
- examples/prompts/billing.md
|
|
@@ -445,28 +440,27 @@ files:
|
|
|
445
440
|
- examples/prompts/technical.md
|
|
446
441
|
- examples/prompts/template_with_skills_test.md
|
|
447
442
|
- examples/prompts/triage.md
|
|
448
|
-
-
|
|
449
|
-
-
|
|
450
|
-
- lib/generators/robot_lab/robot_generator.rb
|
|
451
|
-
- lib/generators/robot_lab/templates/initializer.rb.tt
|
|
452
|
-
- lib/generators/robot_lab/templates/job.rb.tt
|
|
453
|
-
- lib/generators/robot_lab/templates/migration.rb.tt
|
|
454
|
-
- lib/generators/robot_lab/templates/result_model.rb.tt
|
|
455
|
-
- lib/generators/robot_lab/templates/robot.rb.tt
|
|
456
|
-
- lib/generators/robot_lab/templates/robot_job.rb.tt
|
|
457
|
-
- lib/generators/robot_lab/templates/robot_test.rb.tt
|
|
458
|
-
- lib/generators/robot_lab/templates/routing_robot.rb.tt
|
|
459
|
-
- lib/generators/robot_lab/templates/thread_model.rb.tt
|
|
443
|
+
- examples/ruboruby.md
|
|
444
|
+
- examples/xyzzy.rb
|
|
460
445
|
- lib/robot_lab.rb
|
|
446
|
+
- lib/robot_lab/agent_skill.rb
|
|
447
|
+
- lib/robot_lab/agent_skill_catalog.rb
|
|
461
448
|
- lib/robot_lab/ask_user.rb
|
|
449
|
+
- lib/robot_lab/budget/ledger.rb
|
|
462
450
|
- lib/robot_lab/bus_poller.rb
|
|
451
|
+
- lib/robot_lab/capabilities.rb
|
|
463
452
|
- lib/robot_lab/config.rb
|
|
464
453
|
- lib/robot_lab/config/defaults.yml
|
|
465
454
|
- lib/robot_lab/convergence.rb
|
|
466
455
|
- lib/robot_lab/delegation_future.rb
|
|
467
|
-
- lib/robot_lab/
|
|
456
|
+
- lib/robot_lab/doom_loop_detector.rb
|
|
468
457
|
- lib/robot_lab/error.rb
|
|
458
|
+
- lib/robot_lab/errors.rb
|
|
469
459
|
- lib/robot_lab/history_compressor.rb
|
|
460
|
+
- lib/robot_lab/hook.rb
|
|
461
|
+
- lib/robot_lab/hook_context.rb
|
|
462
|
+
- lib/robot_lab/hook_registry.rb
|
|
463
|
+
- lib/robot_lab/hooks.rb
|
|
470
464
|
- lib/robot_lab/mcp/client.rb
|
|
471
465
|
- lib/robot_lab/mcp/connection_poller.rb
|
|
472
466
|
- lib/robot_lab/mcp/server.rb
|
|
@@ -479,24 +473,24 @@ files:
|
|
|
479
473
|
- lib/robot_lab/memory.rb
|
|
480
474
|
- lib/robot_lab/memory_change.rb
|
|
481
475
|
- lib/robot_lab/message.rb
|
|
476
|
+
- lib/robot_lab/narrator.rb
|
|
482
477
|
- lib/robot_lab/network.rb
|
|
483
|
-
- lib/robot_lab/ractor_boundary.rb
|
|
484
|
-
- lib/robot_lab/ractor_job.rb
|
|
485
|
-
- lib/robot_lab/ractor_memory_proxy.rb
|
|
486
|
-
- lib/robot_lab/ractor_network_scheduler.rb
|
|
487
|
-
- lib/robot_lab/ractor_worker_pool.rb
|
|
488
|
-
- lib/robot_lab/rails_integration/engine.rb
|
|
489
|
-
- lib/robot_lab/rails_integration/job.rb
|
|
490
|
-
- lib/robot_lab/rails_integration/railtie.rb
|
|
491
|
-
- lib/robot_lab/rails_integration/turbo_stream_callbacks.rb
|
|
492
478
|
- lib/robot_lab/robot.rb
|
|
479
|
+
- lib/robot_lab/robot/agent_skill_matching.rb
|
|
480
|
+
- lib/robot_lab/robot/budget.rb
|
|
493
481
|
- lib/robot_lab/robot/bus_messaging.rb
|
|
494
482
|
- lib/robot_lab/robot/history_search.rb
|
|
483
|
+
- lib/robot_lab/robot/hooking.rb
|
|
495
484
|
- lib/robot_lab/robot/mcp_management.rb
|
|
496
485
|
- lib/robot_lab/robot/template_rendering.rb
|
|
497
486
|
- lib/robot_lab/robot_message.rb
|
|
498
487
|
- lib/robot_lab/robot_result.rb
|
|
499
488
|
- lib/robot_lab/run_config.rb
|
|
489
|
+
- lib/robot_lab/runnable.rb
|
|
490
|
+
- lib/robot_lab/sandbox.rb
|
|
491
|
+
- lib/robot_lab/sandbox/null.rb
|
|
492
|
+
- lib/robot_lab/sandbox/seatbelt.rb
|
|
493
|
+
- lib/robot_lab/script_tool.rb
|
|
500
494
|
- lib/robot_lab/state_proxy.rb
|
|
501
495
|
- lib/robot_lab/streaming/context.rb
|
|
502
496
|
- lib/robot_lab/streaming/events.rb
|
|
@@ -510,8 +504,13 @@ files:
|
|
|
510
504
|
- lib/robot_lab/utils.rb
|
|
511
505
|
- lib/robot_lab/version.rb
|
|
512
506
|
- lib/robot_lab/waiter.rb
|
|
507
|
+
- logfile
|
|
513
508
|
- mkdocs.yml
|
|
509
|
+
- robot_concurrency.md
|
|
514
510
|
- sig/robot_lab.rbs
|
|
511
|
+
- simple_acp_review.md
|
|
512
|
+
- temp.md
|
|
513
|
+
- tool_manifest_plan.md
|
|
515
514
|
homepage: https://github.com/MadBomber/robot_lab
|
|
516
515
|
licenses:
|
|
517
516
|
- MIT
|
|
@@ -537,7 +536,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
537
536
|
- !ruby/object:Gem::Version
|
|
538
537
|
version: '0'
|
|
539
538
|
requirements: []
|
|
540
|
-
rubygems_version: 4.0.
|
|
539
|
+
rubygems_version: 4.0.17
|
|
541
540
|
specification_version: 4
|
|
542
541
|
summary: Ruby framework for building and orchestrating multi-robot LLM workflows
|
|
543
542
|
test_files: []
|