Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Formula/agent-team.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
class AgentTeam < Formula
desc 'Provider-agnostic agent team orchestration for Claude Code'
homepage 'https://github.com/nsheaps/agent-team'
url 'https://github.com/nsheaps/agent-team/archive/refs/tags/v0.3.21.tar.gz'
sha256 '922abebfe007d4db97842a8e4de9427961234addb828cb40be75e6492a759058'
url 'https://github.com/nsheaps/agent-team/archive/refs/tags/v0.3.22.tar.gz'
sha256 '56b04737b71d5eb2f9a5e27e3a4b5163f6a4a61e7053a3ce0fc2452dec247ffb'
license 'MIT'

head do
Expand All @@ -18,7 +18,7 @@ def install
bin.install 'bin/claude-team'
bin.install 'bin/ct'
bin.install 'bin/agent-launch.ts'
(bin / 'lib').install Dir['bin/lib/*']
(bin/'lib').install Dir['bin/lib/*']
end

test do
Expand Down
6 changes: 3 additions & 3 deletions Formula/claude-team.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
class ClaudeTeam < Formula
desc 'Launch and manage Claude Code agent team sessions'
homepage 'https://github.com/nsheaps/agent-team'
url 'https://github.com/nsheaps/agent-team/archive/refs/tags/v0.3.21.tar.gz'
sha256 '922abebfe007d4db97842a8e4de9427961234addb828cb40be75e6492a759058'
url 'https://github.com/nsheaps/agent-team/archive/refs/tags/v0.3.22.tar.gz'
sha256 '56b04737b71d5eb2f9a5e27e3a4b5163f6a4a61e7053a3ce0fc2452dec247ffb'
license 'MIT'

head do
Expand All @@ -17,7 +17,7 @@ class ClaudeTeam < Formula
def install
bin.install 'bin/claude-team'
bin.install 'bin/ct'
(bin / 'lib').install 'bin/lib/stdlib.sh'
(bin/'lib').install 'bin/lib/stdlib.sh'
end

test do
Expand Down
Loading