rcrewai 0.1.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.
@@ -58,7 +58,7 @@ module RCrewAI
58
58
 
59
59
  def authorization_header
60
60
  {
61
- 'Authorization' => "Bearer #{config.api_key}",
61
+ 'x-api-key' => config.api_key,
62
62
  'anthropic-version' => API_VERSION
63
63
  }
64
64
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RCrewAI
4
- VERSION = "0.1.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,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rcrewai
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - gkosmo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-08-12 00:00:00.000000000 Z
11
+ date: 2025-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -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:
@@ -295,17 +308,41 @@ files:
295
308
  - docs/_layouts/default.html
296
309
  - docs/_layouts/example.html
297
310
  - docs/_layouts/tutorial.html
311
+ - docs/api/agent.md
298
312
  - docs/api/configuration.md
299
313
  - docs/api/crew.md
300
314
  - docs/api/index.md
315
+ - docs/api/task.md
301
316
  - docs/api/tools.md
302
317
  - docs/assets/css/style.css
318
+ - docs/examples/api-integration.md
319
+ - docs/examples/async-execution.md
320
+ - docs/examples/code-review-crew.md
321
+ - docs/examples/content-marketing-pipeline.md
322
+ - docs/examples/custom-tools.md
323
+ - docs/examples/customer-support.md
324
+ - docs/examples/data-analysis-team.md
325
+ - docs/examples/database-operations.md
326
+ - docs/examples/ecommerce-operations.md
327
+ - docs/examples/financial-analysis.md
328
+ - docs/examples/hierarchical-crew.md
303
329
  - docs/examples/human-in-the-loop.md
304
330
  - docs/examples/index.md
331
+ - docs/examples/product-development.md
305
332
  - docs/examples/production-ready-crew.md
333
+ - docs/examples/research-development.md
306
334
  - docs/examples/simple-research-crew.md
335
+ - docs/examples/social-media.md
336
+ - docs/examples/task-automation.md
337
+ - docs/examples/tool-composition.md
338
+ - docs/examples/web-scraping.md
307
339
  - docs/index.md
340
+ - docs/tutorials/advanced-agents.md
341
+ - docs/tutorials/custom-tools.md
342
+ - docs/tutorials/deployment.md
308
343
  - docs/tutorials/getting-started.md
344
+ - docs/tutorials/index.md
345
+ - docs/tutorials/multiple-crews.md
309
346
  - examples/async_execution_example.rb
310
347
  - examples/hierarchical_crew_example.rb
311
348
  - examples/human_in_the_loop_example.rb
@@ -343,6 +380,10 @@ metadata:
343
380
  homepage_uri: https://github.com/gkosmo/rcrewAI
344
381
  source_code_uri: https://github.com/gkosmo/rcrewAI
345
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'
346
387
  post_install_message:
347
388
  rdoc_options: []
348
389
  require_paths:
@@ -361,5 +402,6 @@ requirements: []
361
402
  rubygems_version: 3.4.10
362
403
  signing_key:
363
404
  specification_version: 4
364
- summary: Ruby implementation of CrewAI framework
405
+ summary: Build intelligent AI agent crews in Ruby - CrewAI implementation with multi-LLM
406
+ support
365
407
  test_files: []