rcrewai-rails 0.2.0 → 0.2.2
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/README.md +3 -3
- data/lib/rcrewai/rails/version.rb +1 -1
- data/lib/rcrewai/rails.rb +9 -0
- data/rcrewai-rails.gemspec +20 -2
- metadata +20 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab4c1049d6f49f906f7991bfe2e70ca13eae005e350123fedbb33d9c128dae8a
|
4
|
+
data.tar.gz: 88a4149b211c36ea41031306b7ff3afb3cd01897302e0d22a6f51441f02e711b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a17be2f2e72bd8c094df56042ad06eb8cefbccb9959e3a88ecbb84e91f3ebcbde51ca2e01d90cfb59c989a7d65433d0241ec96251542a2252d00b6c816036bc
|
7
|
+
data.tar.gz: 549d4110f921a3a4d70f4ff0d6a0be7b1b72850c8b64f9c9de0ae611aeb5d9eeb5a06c97fcce0890b581c1df7eb01562966df8a8212bd41d85041cc5e1052c1b
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# RcrewAI Rails
|
2
2
|
|
3
|
-
Rails engine for integrating RcrewAI into your Rails applications. Provides ActiveRecord persistence, background job integration, generators, and a web UI for managing AI crews and agents.
|
3
|
+
Rails engine for integrating [RcrewAI](https://github.com/gkosmo/rcrewai-rails) into your Rails applications. Provides ActiveRecord persistence, background job integration, generators, and a web UI for managing AI crews and agents.
|
4
4
|
|
5
5
|
## Features
|
6
6
|
|
@@ -28,7 +28,7 @@ $ bundle install
|
|
28
28
|
Run the installation generator:
|
29
29
|
|
30
30
|
```bash
|
31
|
-
$ rails generate
|
31
|
+
$ rails generate rcrew_a_i:rails:install
|
32
32
|
$ rails db:migrate
|
33
33
|
```
|
34
34
|
|
@@ -219,4 +219,4 @@ Bug reports and pull requests are welcome on GitHub.
|
|
219
219
|
|
220
220
|
## License
|
221
221
|
|
222
|
-
The gem is available as open source under the terms of the MIT License.
|
222
|
+
The gem is available as open source under the terms of the MIT License.
|
data/lib/rcrewai/rails.rb
CHANGED
data/rcrewai-rails.gemspec
CHANGED
@@ -6,8 +6,22 @@ Gem::Specification.new do |spec|
|
|
6
6
|
spec.authors = ["gkosmo"]
|
7
7
|
spec.email = ["gkosmo1@hotmail.com"]
|
8
8
|
|
9
|
-
spec.summary = "Rails integration for RcrewAI - AI agent
|
10
|
-
spec.description =
|
9
|
+
spec.summary = "Rails integration for RcrewAI - Build AI agent crews with database persistence and web UI"
|
10
|
+
spec.description = <<~DESC
|
11
|
+
RcrewAI Rails is a comprehensive Rails engine that brings AI agent orchestration to your Rails applications.
|
12
|
+
Build intelligent AI crews that collaborate to solve complex tasks with full database persistence,
|
13
|
+
background job integration, and a beautiful web dashboard for monitoring and management.
|
14
|
+
|
15
|
+
Features:
|
16
|
+
• ActiveRecord models for crews, agents, tasks, and executions with full persistence
|
17
|
+
• Rails generators for scaffolding AI crews and agents
|
18
|
+
• ActiveJob integration for asynchronous crew execution (works with any Rails background job adapter)
|
19
|
+
• Web dashboard with real-time monitoring and management interface
|
20
|
+
• Multi-LLM support: OpenAI GPT, Anthropic Claude, Google Gemini, Azure OpenAI, Ollama
|
21
|
+
• Production-ready with logging, error handling, and security controls
|
22
|
+
• Human-in-the-loop workflows with approval mechanisms
|
23
|
+
• Tool ecosystem: web search, file operations, SQL, email, code execution
|
24
|
+
DESC
|
11
25
|
spec.homepage = "https://github.com/gkosmo/rcrewai-rails"
|
12
26
|
spec.license = "MIT"
|
13
27
|
spec.required_ruby_version = ">= 3.0.0"
|
@@ -15,6 +29,10 @@ Gem::Specification.new do |spec|
|
|
15
29
|
spec.metadata["homepage_uri"] = spec.homepage
|
16
30
|
spec.metadata["source_code_uri"] = spec.homepage
|
17
31
|
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
|
32
|
+
spec.metadata["documentation_uri"] = "https://gkosmo.github.io/rcrewAI/"
|
33
|
+
spec.metadata["bug_tracker_uri"] = "#{spec.homepage}/issues"
|
34
|
+
spec.metadata["wiki_uri"] = "#{spec.homepage}/wiki"
|
35
|
+
spec.metadata["rubygems_mfa_required"] = "true"
|
18
36
|
|
19
37
|
spec.files = Dir.chdir(__dir__) do
|
20
38
|
`git ls-files -z`.split("\x0").reject do |f|
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rcrewai-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- gkosmo
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: rcrewai
|
@@ -178,8 +177,17 @@ dependencies:
|
|
178
177
|
- - "~>"
|
179
178
|
- !ruby/object:Gem::Version
|
180
179
|
version: '1.4'
|
181
|
-
description:
|
182
|
-
|
180
|
+
description: "RcrewAI Rails is a comprehensive Rails engine that brings AI agent orchestration
|
181
|
+
to your Rails applications. \nBuild intelligent AI crews that collaborate to solve
|
182
|
+
complex tasks with full database persistence, \nbackground job integration, and
|
183
|
+
a beautiful web dashboard for monitoring and management.\n\nFeatures:\n• ActiveRecord
|
184
|
+
models for crews, agents, tasks, and executions with full persistence\n• Rails generators
|
185
|
+
for scaffolding AI crews and agents\n• ActiveJob integration for asynchronous crew
|
186
|
+
execution (works with any Rails background job adapter)\n• Web dashboard with real-time
|
187
|
+
monitoring and management interface\n• Multi-LLM support: OpenAI GPT, Anthropic
|
188
|
+
Claude, Google Gemini, Azure OpenAI, Ollama\n• Production-ready with logging, error
|
189
|
+
handling, and security controls\n• Human-in-the-loop workflows with approval mechanisms\n•
|
190
|
+
Tool ecosystem: web search, file operations, SQL, email, code execution\n"
|
183
191
|
email:
|
184
192
|
- gkosmo1@hotmail.com
|
185
193
|
executables: []
|
@@ -261,7 +269,10 @@ metadata:
|
|
261
269
|
homepage_uri: https://github.com/gkosmo/rcrewai-rails
|
262
270
|
source_code_uri: https://github.com/gkosmo/rcrewai-rails
|
263
271
|
changelog_uri: https://github.com/gkosmo/rcrewai-rails/blob/main/CHANGELOG.md
|
264
|
-
|
272
|
+
documentation_uri: https://gkosmo.github.io/rcrewAI/
|
273
|
+
bug_tracker_uri: https://github.com/gkosmo/rcrewai-rails/issues
|
274
|
+
wiki_uri: https://github.com/gkosmo/rcrewai-rails/wiki
|
275
|
+
rubygems_mfa_required: 'true'
|
265
276
|
rdoc_options: []
|
266
277
|
require_paths:
|
267
278
|
- lib
|
@@ -276,8 +287,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
276
287
|
- !ruby/object:Gem::Version
|
277
288
|
version: '0'
|
278
289
|
requirements: []
|
279
|
-
rubygems_version: 3.
|
280
|
-
signing_key:
|
290
|
+
rubygems_version: 3.6.9
|
281
291
|
specification_version: 4
|
282
|
-
summary: Rails integration for RcrewAI - AI agent
|
292
|
+
summary: Rails integration for RcrewAI - Build AI agent crews with database persistence
|
293
|
+
and web UI
|
283
294
|
test_files: []
|