Skip to content

Release v0.8.0

Release Date: 2026-03-02

Highlights

  • BREAKING: Module path migrated from github.com/agentplexus/agent-team-release to github.com/plexusone/agent-team-release
  • Organization migration to plexusone GitHub organization
  • CI/CD migrated to shared workflows from plexusone/.github

Breaking Changes

Module Path Migration

The Go module path has changed:

Before After
github.com/agentplexus/agent-team-release github.com/plexusone/agent-team-release

Update all imports in your code:

// Before
import "github.com/agentplexus/agent-team-release/pkg/checks"

// After
import "github.com/plexusone/agent-team-release/pkg/checks"

Homebrew Tap Change

The Homebrew tap has moved:

# Before
brew tap agentplexus/tap

# After
brew tap plexusone/tap

Claude Plugin Install

# Before
claude plugin add github:agentplexus/agent-team-release/plugins/claude

# After
claude plugin add github:plexusone/agent-team-release/plugins/claude

Changes

  • Module path renamed from github.com/agentplexus/agent-team-release to github.com/plexusone/agent-team-release
  • Updated assistantkit dependency to v0.11.0 from plexusone org
  • Updated multi-agent-spec/sdk/go dependency to v0.8.0 from plexusone org
  • Updated all internal imports to use new module path
  • Updated documentation site URL to plexusone.github.io
  • Updated GoReleaser config for plexusone organization
  • Updated Homebrew tap to plexusone/tap
  • Changed team workflow type from dag to graph in specs

Bug Fixes

  • Updated test expectations for multi-agent-spec v0.7.0 report format

Infrastructure

  • Migrated CI/Lint/SAST workflows to shared workflows from plexusone/.github
  • Fixed golangci-lint QF1012 warning: Use fmt.Fprintf instead of WriteString(fmt.Sprintf)
  • Bumped goreleaser/goreleaser-action from 6 to 7

Dependencies

Dependency Before After
assistantkit v0.10.0 v0.11.0
multi-agent-spec/sdk/go v0.7.0 v0.8.0

Migration Guide

From v0.7.0

  1. Update go.mod to use the new module path:
go get github.com/plexusone/agent-team-release@v0.8.0
  1. Update imports in all Go files:
# Using sed (macOS)
find . -name "*.go" -exec sed -i '' 's|github.com/agentplexus/agent-team-release|github.com/plexusone/agent-team-release|g' {} \;

# Using sed (Linux)
find . -name "*.go" -exec sed -i 's|github.com/agentplexus/agent-team-release|github.com/plexusone/agent-team-release|g' {} \;
  1. Run go mod tidy to update dependencies:
go mod tidy
  1. Update Homebrew tap (if using Homebrew):
brew untap agentplexus/tap 2>/dev/null || true
brew tap plexusone/tap
brew upgrade atrelease
  1. Update Claude plugin (if using Claude Code integration):
claude plugin remove agent-team-release
claude plugin add github:plexusone/agent-team-release/plugins/claude

Installation

Go Install

go install github.com/plexusone/agent-team-release/cmd/atrelease@v0.8.0

Homebrew (macOS/Linux)

brew tap plexusone/tap
brew install atrelease

Claude Code Plugin

claude plugin add github:plexusone/agent-team-release/plugins/claude