claude_swarm 0.1.16 → 0.1.18

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.
data/llms.txt CHANGED
@@ -57,7 +57,7 @@ A collection of Claude instances (agents) working together. One instance is desi
57
57
  An individual Claude Code agent with:
58
58
  - **description** (required): Role and responsibilities
59
59
  - **directory**: Working directory context
60
- - **model**: Claude model (opus/sonnet/haiku)
60
+ - **model**: Claude model (opus/sonnet/claude-3-5-haiku-20241022)
61
61
  - **connections**: Other instances it can delegate to
62
62
  - **allowed_tools**: Tools this instance can use
63
63
  - **disallowed_tools**: Explicitly denied tools (override allowed)
@@ -79,7 +79,7 @@ swarm:
79
79
  instance_name:
80
80
  description: "Agent role description" # REQUIRED
81
81
  directory: ~/path/to/dir # Working directory
82
- model: opus # opus/sonnet/haiku
82
+ model: opus # opus/sonnet/claude-3-5-haiku-20241022
83
83
  connections: [other1, other2] # Connected instances
84
84
  prompt: "Custom system prompt" # Additional instructions
85
85
  vibe: false # Skip permissions (default: false)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: claude_swarm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.16
4
+ version: 0.1.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paulo Arruda
@@ -65,11 +65,16 @@ files:
65
65
  - example/microservices-team.yml
66
66
  - example/session-restoration-demo.yml
67
67
  - example/test-generation.yml
68
+ - examples/monitoring-demo.yml
69
+ - examples/multi-directory.yml
70
+ - examples/with-before-commands.yml
68
71
  - exe/claude-swarm
69
72
  - lib/claude_swarm.rb
70
73
  - lib/claude_swarm/claude_code_executor.rb
71
74
  - lib/claude_swarm/claude_mcp_server.rb
72
75
  - lib/claude_swarm/cli.rb
76
+ - lib/claude_swarm/commands/ps.rb
77
+ - lib/claude_swarm/commands/show.rb
73
78
  - lib/claude_swarm/configuration.rb
74
79
  - lib/claude_swarm/mcp_generator.rb
75
80
  - lib/claude_swarm/orchestrator.rb
@@ -79,6 +84,7 @@ files:
79
84
  - lib/claude_swarm/session_path.rb
80
85
  - lib/claude_swarm/task_tool.rb
81
86
  - lib/claude_swarm/version.rb
87
+ - lib/claude_swarm/worktree_manager.rb
82
88
  - llms.txt
83
89
  homepage: https://github.com/parruda/claude-swarm
84
90
  licenses: []