rcrewai-rails 0.1.1 → 0.2.1

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 (34) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/rcrewai/rails/agents_controller.rb +64 -0
  3. data/app/controllers/rcrewai/rails/api/v1/crews_controller.rb +55 -0
  4. data/app/controllers/rcrewai/rails/api/v1/executions_controller.rb +52 -0
  5. data/app/controllers/rcrewai/rails/crews_controller.rb +1 -1
  6. data/app/controllers/rcrewai/rails/executions_controller.rb +2 -2
  7. data/app/controllers/rcrewai/rails/tasks_controller.rb +76 -0
  8. data/app/controllers/rcrewai/rails/tools_controller.rb +61 -0
  9. data/app/models/rcrewai/rails/agent.rb +2 -2
  10. data/app/models/rcrewai/rails/task.rb +2 -6
  11. data/app/models/rcrewai/rails/tool.rb +26 -0
  12. data/app/views/rcrewai/rails/agents/edit.html.erb +107 -0
  13. data/app/views/rcrewai/rails/agents/index.html.erb +81 -0
  14. data/app/views/rcrewai/rails/agents/new.html.erb +103 -0
  15. data/app/views/rcrewai/rails/agents/show.html.erb +136 -0
  16. data/app/views/rcrewai/rails/crews/edit.html.erb +87 -0
  17. data/app/views/rcrewai/rails/crews/index.html.erb +1 -1
  18. data/app/views/rcrewai/rails/crews/new.html.erb +75 -0
  19. data/app/views/rcrewai/rails/executions/index.html.erb +91 -0
  20. data/app/views/rcrewai/rails/executions/show.html.erb +1 -1
  21. data/app/views/rcrewai/rails/tasks/edit.html.erb +105 -0
  22. data/app/views/rcrewai/rails/tasks/index.html.erb +82 -0
  23. data/app/views/rcrewai/rails/tasks/new.html.erb +101 -0
  24. data/app/views/rcrewai/rails/tasks/show.html.erb +129 -0
  25. data/app/views/rcrewai/rails/tools/edit.html.erb +60 -0
  26. data/app/views/rcrewai/rails/tools/index.html.erb +48 -0
  27. data/app/views/rcrewai/rails/tools/new.html.erb +56 -0
  28. data/app/views/rcrewai/rails/tools/show.html.erb +47 -0
  29. data/db/migrate/001_add_agent_to_tasks.rb +25 -0
  30. data/lib/rcrewai/rails/engine.rb +16 -10
  31. data/lib/rcrewai/rails/version.rb +1 -1
  32. data/rcrewai-rails.gemspec +20 -2
  33. metadata +41 -5
  34. /data/lib/{rcrewai-rails.rb → rcrewai_rails.rb} +0 -0
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rcrewai-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - gkosmo
@@ -178,8 +178,17 @@ dependencies:
178
178
  - - "~>"
179
179
  - !ruby/object:Gem::Version
180
180
  version: '1.4'
181
- description: A Rails engine that provides ActiveRecord persistence, background job
182
- integration, generators, and web UI for RcrewAI crews and agents
181
+ description: "RcrewAI Rails is a comprehensive Rails engine that brings AI agent orchestration
182
+ to your Rails applications. \nBuild intelligent AI crews that collaborate to solve
183
+ complex tasks with full database persistence, \nbackground job integration, and
184
+ a beautiful web dashboard for monitoring and management.\n\nFeatures:\n• ActiveRecord
185
+ models for crews, agents, tasks, and executions with full persistence\n• Rails generators
186
+ for scaffolding AI crews and agents\n• ActiveJob integration for asynchronous crew
187
+ execution (works with any Rails background job adapter)\n• Web dashboard with real-time
188
+ monitoring and management interface\n• Multi-LLM support: OpenAI GPT, Anthropic
189
+ Claude, Google Gemini, Azure OpenAI, Ollama\n• Production-ready with logging, error
190
+ handling, and security controls\n• Human-in-the-loop workflows with approval mechanisms\n•
191
+ Tool ecosystem: web search, file operations, SQL, email, code execution\n"
183
192
  email:
184
193
  - gkosmo1@hotmail.com
185
194
  executables: []
@@ -189,9 +198,14 @@ files:
189
198
  - MIT-LICENSE
190
199
  - README.md
191
200
  - Rakefile
201
+ - app/controllers/rcrewai/rails/agents_controller.rb
202
+ - app/controllers/rcrewai/rails/api/v1/crews_controller.rb
203
+ - app/controllers/rcrewai/rails/api/v1/executions_controller.rb
192
204
  - app/controllers/rcrewai/rails/application_controller.rb
193
205
  - app/controllers/rcrewai/rails/crews_controller.rb
194
206
  - app/controllers/rcrewai/rails/executions_controller.rb
207
+ - app/controllers/rcrewai/rails/tasks_controller.rb
208
+ - app/controllers/rcrewai/rails/tools_controller.rb
195
209
  - app/jobs/rcrewai/rails/crew_execution_job.rb
196
210
  - app/jobs/rcrewai/rails/task_execution_job.rb
197
211
  - app/models/rcrewai/rails/agent.rb
@@ -202,11 +216,28 @@ files:
202
216
  - app/models/rcrewai/rails/task.rb
203
217
  - app/models/rcrewai/rails/task_assignment.rb
204
218
  - app/models/rcrewai/rails/task_dependency.rb
219
+ - app/models/rcrewai/rails/tool.rb
205
220
  - app/views/layouts/rcrewai/rails/application.html.erb
221
+ - app/views/rcrewai/rails/agents/edit.html.erb
222
+ - app/views/rcrewai/rails/agents/index.html.erb
223
+ - app/views/rcrewai/rails/agents/new.html.erb
224
+ - app/views/rcrewai/rails/agents/show.html.erb
225
+ - app/views/rcrewai/rails/crews/edit.html.erb
206
226
  - app/views/rcrewai/rails/crews/index.html.erb
227
+ - app/views/rcrewai/rails/crews/new.html.erb
207
228
  - app/views/rcrewai/rails/crews/show.html.erb
229
+ - app/views/rcrewai/rails/executions/index.html.erb
208
230
  - app/views/rcrewai/rails/executions/show.html.erb
231
+ - app/views/rcrewai/rails/tasks/edit.html.erb
232
+ - app/views/rcrewai/rails/tasks/index.html.erb
233
+ - app/views/rcrewai/rails/tasks/new.html.erb
234
+ - app/views/rcrewai/rails/tasks/show.html.erb
235
+ - app/views/rcrewai/rails/tools/edit.html.erb
236
+ - app/views/rcrewai/rails/tools/index.html.erb
237
+ - app/views/rcrewai/rails/tools/new.html.erb
238
+ - app/views/rcrewai/rails/tools/show.html.erb
209
239
  - config/routes.rb
240
+ - db/migrate/001_add_agent_to_tasks.rb
210
241
  - lib/generators/rcrew_a_i/rails/crew/crew_generator.rb
211
242
  - lib/generators/rcrew_a_i/rails/crew/templates/agent.rb.erb
212
243
  - lib/generators/rcrew_a_i/rails/crew/templates/crew.rb.erb
@@ -219,7 +250,6 @@ files:
219
250
  - lib/generators/rcrewai/rails/install/install_generator.rb
220
251
  - lib/generators/rcrewai/rails/install/templates/create_rcrewai_tables.rb
221
252
  - lib/generators/rcrewai/rails/install/templates/rcrewai.rb
222
- - lib/rcrewai-rails.rb
223
253
  - lib/rcrewai/rails.rb
224
254
  - lib/rcrewai/rails/agent_builder.rb
225
255
  - lib/rcrewai/rails/configuration.rb
@@ -231,6 +261,7 @@ files:
231
261
  - lib/rcrewai/rails/tools/rails_cache_tool.rb
232
262
  - lib/rcrewai/rails/tools/rails_logger_tool.rb
233
263
  - lib/rcrewai/rails/version.rb
264
+ - lib/rcrewai_rails.rb
234
265
  - rcrewai-rails.gemspec
235
266
  homepage: https://github.com/gkosmo/rcrewai-rails
236
267
  licenses:
@@ -239,6 +270,10 @@ metadata:
239
270
  homepage_uri: https://github.com/gkosmo/rcrewai-rails
240
271
  source_code_uri: https://github.com/gkosmo/rcrewai-rails
241
272
  changelog_uri: https://github.com/gkosmo/rcrewai-rails/blob/main/CHANGELOG.md
273
+ documentation_uri: https://gkosmo.github.io/rcrewAI/
274
+ bug_tracker_uri: https://github.com/gkosmo/rcrewai-rails/issues
275
+ wiki_uri: https://github.com/gkosmo/rcrewai-rails/wiki
276
+ rubygems_mfa_required: 'true'
242
277
  post_install_message:
243
278
  rdoc_options: []
244
279
  require_paths:
@@ -257,5 +292,6 @@ requirements: []
257
292
  rubygems_version: 3.4.10
258
293
  signing_key:
259
294
  specification_version: 4
260
- summary: Rails integration for RcrewAI - AI agent orchestration framework
295
+ summary: Rails integration for RcrewAI - Build AI agent crews with database persistence
296
+ and web UI
261
297
  test_files: []
File without changes