Release v0.8.0¶
Release Date: 2026-03-02
Highlights¶
- BREAKING: Module path migrated from
github.com/agentplexus/agent-team-releasetogithub.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:
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-releasetogithub.com/plexusone/agent-team-release - Updated
assistantkitdependency to v0.11.0 from plexusone org - Updated
multi-agent-spec/sdk/godependency 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
dagtographin 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¶
- Update go.mod to use the new module path:
- 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' {} \;
- Run go mod tidy to update dependencies:
- Update Homebrew tap (if using Homebrew):
- Update Claude plugin (if using Claude Code integration):
claude plugin remove agent-team-release
claude plugin add github:plexusone/agent-team-release/plugins/claude