Skip to content

Release Notes: v0.11.0

Release Date: 2026-03-02

Highlights

This release migrates the module path from github.com/agentplexus/assistantkit to github.com/plexusone/assistantkit as part of the organization migration to plexusone.

Breaking Changes

Module Path Migration

The Go module path has changed:

Before After
github.com/agentplexus/assistantkit github.com/plexusone/assistantkit

Update all imports in your code:

// Before
import "github.com/agentplexus/assistantkit/generate"
import "github.com/agentplexus/assistantkit/bundle"

// After
import "github.com/plexusone/assistantkit/generate"
import "github.com/plexusone/assistantkit/bundle"

Changes

  • Module path renamed from github.com/agentplexus/assistantkit to github.com/plexusone/assistantkit
  • 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

Documentation

  • Updated all documentation references to plexusone organization
  • Updated installation instructions with new module path

Dependencies

  • multi-agent-spec/sdk/go v0.7.0 → v0.8.0 (migrated to plexusone org)
  • go-github v82 → v84 (compatibility fix)

Migration Guide

From v0.10.0

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

# Using sed (Linux)
find . -name "*.go" -exec sed -i 's|github.com/agentplexus/assistantkit|github.com/plexusone/assistantkit|g' {} \;
  1. Run go mod tidy to update dependencies:
go mod tidy

Installation

go get github.com/plexusone/assistantkit@v0.11.0

CLI Installation

go install github.com/plexusone/assistantkit/cmd/assistantkit@v0.11.0