claude_swarm 0.3.2 → 0.3.3
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/CHANGELOG.md +7 -0
- data/README.md +2 -2
- data/lib/claude_swarm/version.rb +1 -1
- data/lib/claude_swarm.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df4f13365305ca607131b9976630fd7caebaa4c2f69f2fefc59e9d036aee2033
|
4
|
+
data.tar.gz: b1bf9cc4b672843216ec3107654a6e17d84a69fde87fe54d9846bfb4dca0f7ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf0623fdf1d7ff7f551c32d87ba434d0073d0ffcb5f3254ea42d6b9e6048d350823d7bad2294929d014892728866f59117c9b58ebd5a7b0b1c2f358d8942387e
|
7
|
+
data.tar.gz: 7e575dd61d59a8c2c1e04790ba3024136797373ad585612aee3b365a0d47f22bd3732119ea73ae01ddd67b75900ebe090117993f58af1520deecf4bc57907ca1
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
## [0.3.3]
|
2
|
+
|
3
|
+
### Fixed
|
4
|
+
- **Bundler constant error**: Fixed `uninitialized constant ClaudeSwarm::Orchestrator::Bundler` error by adding missing `require "bundler"` statement
|
5
|
+
- Issue occurred when using `Bundler.with_unbundled_env` without properly requiring the bundler gem
|
6
|
+
- Resolves issue #83 reported by users upgrading to version 0.3.2
|
7
|
+
|
1
8
|
## [0.3.2]
|
2
9
|
|
3
10
|
### Added
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Claude Swarm
|
2
2
|
|
3
|
-
[](https://badge.fury.io/rb/claude_swarm)
|
4
4
|
[](https://github.com/parruda/claude-swarm/actions/workflows/ci.yml)
|
5
5
|
|
6
6
|
Claude Swarm orchestrates multiple Claude Code instances as a collaborative AI development team. It enables running AI agents with specialized roles, tools, and directory contexts, communicating via MCP (Model Context Protocol) in a tree-like hierarchy. Define your swarm topology in simple YAML and let Claude instances delegate tasks through connected instances. Perfect for complex projects requiring specialized AI agents for frontend, backend, testing, DevOps, or research tasks.
|
@@ -42,7 +42,7 @@ gem install claude_swarm
|
|
42
42
|
Or add it to your Gemfile:
|
43
43
|
|
44
44
|
```ruby
|
45
|
-
gem 'claude_swarm'
|
45
|
+
gem 'claude_swarm', "~> 0.3.2"
|
46
46
|
```
|
47
47
|
|
48
48
|
Then run:
|
data/lib/claude_swarm/version.rb
CHANGED
data/lib/claude_swarm.rb
CHANGED