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/assistantkittogithub.com/plexusone/assistantkit - 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
Documentation¶
- Updated all documentation references to plexusone organization
- Updated installation instructions with new module path
Dependencies¶
multi-agent-spec/sdk/gov0.7.0 → v0.8.0 (migrated to plexusone org)go-githubv82 → v84 (compatibility fix)
Migration Guide¶
From v0.10.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/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' {} \;
- Run go mod tidy to update dependencies: