rcrewai 0.2.0 → 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 729f55dac5596c9689bf3f1aa6266b95e3e04b249342b739d6d43280aeec9b3c
4
- data.tar.gz: ce70bdae47acd61d18df887b43509f5ebe9ab58da26ea67b1367d23feaf16544
3
+ metadata.gz: '05099e1309676b2a0d1028fc658aead2c212aa39903a0e75f13a944063897806'
4
+ data.tar.gz: 39a53213a82a4e6d5f44d71eca94ac2b960e657c07fc42af4f2290e162188ab7
5
5
  SHA512:
6
- metadata.gz: 97cf0e1a33a584e384638d35e611c97ab4a14b521c5f68a4d6aa7e072c5e6fb6045076201f9e5eec1afceada7215ad0012faa2839afd5eca1f0da0b2ceb164b9
7
- data.tar.gz: 2baae70e08e89475904442a76407126a73580902897a4ddb3ec6186b1d85494410640c42a187bfde18a0a4faa2efdf4c628ee3298284051eda846b57533cde92
6
+ metadata.gz: 500fcf358b1473741b0248f6ce12b721d6d8d2d5f55bf849d6bec9c74faa525e7e067794613de89983470c9d8b1c10d4375eef4867e7ffc4058c441fc0cd607a
7
+ data.tar.gz: 428121cbe207d084507671874f786563357d48b18fe1517ab01a7c83460ddaf1604211f9d9d934d170ecdce82b0e69f5d7373bfdc63876b435bcb209f25d7d70
data/README.md CHANGED
@@ -299,6 +299,38 @@ RCrewAI provides a flexible, production-ready architecture:
299
299
  └─────────────────┘ └─────────────────┘
300
300
  ```
301
301
 
302
+ ## 🚀 Rails Integration
303
+
304
+ ### rcrew RAILS
305
+
306
+ For Rails applications, use the **rcrew RAILS** gem (`rcrewai-rails`) which provides:
307
+
308
+ - **🏗️ Rails Engine**: Mountable engine with web UI for managing crews
309
+ - **💾 ActiveRecord Integration**: Database persistence for agents, tasks, and executions
310
+ - **⚡ Background Jobs**: ActiveJob integration for async crew execution
311
+ - **🎯 Rails Generators**: Scaffolding for crews, agents, and tasks
312
+ - **🌐 Web Dashboard**: Monitor and manage your AI crews through a web interface
313
+ - **🔧 Rails Configuration**: Seamless integration with Rails configuration patterns
314
+
315
+ ```ruby
316
+ # Gemfile
317
+ gem 'rcrewai-rails'
318
+
319
+ # config/routes.rb
320
+ Rails.application.routes.draw do
321
+ mount RcrewAI::Rails::Engine, at: '/rcrewai'
322
+ end
323
+
324
+ # Generate a new crew
325
+ rails generate rcrew_ai:crew marketing_crew
326
+
327
+ # Create persistent agents and tasks through Rails models
328
+ crew = RcrewAI::Rails::Crew.create!(name: "Content Team", description: "AI content generation")
329
+ agent = crew.agents.create!(name: "writer", role: "Content Writer", goal: "Create engaging content")
330
+ ```
331
+
332
+ Install rcrew RAILS: `gem install rcrewai-rails`
333
+
302
334
  ## 🤝 Contributing
303
335
 
304
336
  We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RCrewAI
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
data/rcrewai.gemspec CHANGED
@@ -8,8 +8,23 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["gkosmo"]
9
9
  spec.email = ["gkosmo1@hotmail.com"]
10
10
 
11
- spec.summary = "Ruby implementation of CrewAI framework"
12
- spec.description = "A Ruby gem for building AI agent crews that work together to accomplish tasks"
11
+ spec.summary = "Build intelligent AI agent crews in Ruby - CrewAI implementation with multi-LLM support"
12
+ spec.description = <<~DESC
13
+ RCrewAI is a powerful Ruby framework for creating autonomous AI agent crews that collaborate to solve complex tasks.
14
+ Build intelligent workflows with reasoning agents, tool usage, memory systems, and human oversight.
15
+
16
+ Key Features:
17
+ • Multi-Agent Orchestration: Create crews of specialized AI agents that work together
18
+ • Multi-LLM Support: OpenAI GPT-4, Anthropic Claude, Google Gemini, Azure OpenAI, Ollama
19
+ • Rich Tool Ecosystem: Web search, file operations, SQL databases, email, code execution, PDF processing
20
+ • Agent Memory: Short-term and long-term memory for learning from past executions
21
+ • Human-in-the-Loop: Interactive approval workflows and collaborative decision making
22
+ • Advanced Task Management: Dependencies, retries, async execution, and context sharing
23
+ • Hierarchical Teams: Manager agents that coordinate and delegate to specialist agents
24
+ • Production Ready: Security controls, error handling, comprehensive logging, and monitoring
25
+ • Ruby-First Design: Built specifically for Ruby developers with idiomatic patterns
26
+ • CLI Tools: Command-line interface for creating and managing AI crews
27
+ DESC
13
28
  spec.homepage = "https://github.com/gkosmo/rcrewAI"
14
29
  spec.license = "MIT"
15
30
  spec.required_ruby_version = ">= 3.0.0"
@@ -17,6 +32,10 @@ Gem::Specification.new do |spec|
17
32
  spec.metadata["homepage_uri"] = spec.homepage
18
33
  spec.metadata["source_code_uri"] = spec.homepage
19
34
  spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
35
+ spec.metadata["documentation_uri"] = "https://gkosmo.github.io/rcrewAI/"
36
+ spec.metadata["bug_tracker_uri"] = "#{spec.homepage}/issues"
37
+ spec.metadata["wiki_uri"] = "#{spec.homepage}/wiki"
38
+ spec.metadata["rubygems_mfa_required"] = "true"
20
39
 
21
40
  # Specify which files should be added to the gem when it is released.
22
41
  spec.files = Dir.chdir(__dir__) do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rcrewai
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - gkosmo
@@ -276,8 +276,21 @@ dependencies:
276
276
  - - "~>"
277
277
  - !ruby/object:Gem::Version
278
278
  version: '2.20'
279
- description: A Ruby gem for building AI agent crews that work together to accomplish
280
- tasks
279
+ description: |
280
+ RCrewAI is a powerful Ruby framework for creating autonomous AI agent crews that collaborate to solve complex tasks.
281
+ Build intelligent workflows with reasoning agents, tool usage, memory systems, and human oversight.
282
+
283
+ Key Features:
284
+ • Multi-Agent Orchestration: Create crews of specialized AI agents that work together
285
+ • Multi-LLM Support: OpenAI GPT-4, Anthropic Claude, Google Gemini, Azure OpenAI, Ollama
286
+ • Rich Tool Ecosystem: Web search, file operations, SQL databases, email, code execution, PDF processing
287
+ • Agent Memory: Short-term and long-term memory for learning from past executions
288
+ • Human-in-the-Loop: Interactive approval workflows and collaborative decision making
289
+ • Advanced Task Management: Dependencies, retries, async execution, and context sharing
290
+ • Hierarchical Teams: Manager agents that coordinate and delegate to specialist agents
291
+ • Production Ready: Security controls, error handling, comprehensive logging, and monitoring
292
+ • Ruby-First Design: Built specifically for Ruby developers with idiomatic patterns
293
+ • CLI Tools: Command-line interface for creating and managing AI crews
281
294
  email:
282
295
  - gkosmo1@hotmail.com
283
296
  executables:
@@ -367,6 +380,10 @@ metadata:
367
380
  homepage_uri: https://github.com/gkosmo/rcrewAI
368
381
  source_code_uri: https://github.com/gkosmo/rcrewAI
369
382
  changelog_uri: https://github.com/gkosmo/rcrewAI/blob/main/CHANGELOG.md
383
+ documentation_uri: https://gkosmo.github.io/rcrewAI/
384
+ bug_tracker_uri: https://github.com/gkosmo/rcrewAI/issues
385
+ wiki_uri: https://github.com/gkosmo/rcrewAI/wiki
386
+ rubygems_mfa_required: 'true'
370
387
  post_install_message:
371
388
  rdoc_options: []
372
389
  require_paths:
@@ -385,5 +402,6 @@ requirements: []
385
402
  rubygems_version: 3.4.10
386
403
  signing_key:
387
404
  specification_version: 4
388
- summary: Ruby implementation of CrewAI framework
405
+ summary: Build intelligent AI agent crews in Ruby - CrewAI implementation with multi-LLM
406
+ support
389
407
  test_files: []