Skip to content

AgentKit v0.5.0 Release Notes

Release Date: March 1, 2026

Highlights

This release renames the organization from agentplexus to plexusone, updating all module paths and dependencies accordingly.

Breaking Changes

Module Path Changed

The module path has changed from github.com/agentplexus/agentkit to github.com/plexusone/agentkit.

Before:

import "github.com/agentplexus/agentkit/agent"
import "github.com/agentplexus/agentkit/config"
import "github.com/agentplexus/agentkit/httpserver"

After:

import "github.com/plexusone/agentkit/agent"
import "github.com/plexusone/agentkit/config"
import "github.com/plexusone/agentkit/httpserver"

Migration Guide

  1. Update your go.mod:
go get github.com/plexusone/agentkit@v0.5.0
  1. Update all imports in your Go files:
# Using sed (macOS)
find . -name "*.go" -exec sed -i '' 's|github.com/agentplexus/agentkit|github.com/plexusone/agentkit|g' {} +

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

Dependencies Updated

All plexusone dependencies have been updated to their renamed versions:

Package Previous Current
github.com/plexusone/opik-go (go-opik) v0.6.0
github.com/plexusone/phoenix-go (go-phoenix) v0.2.0
github.com/plexusone/omnillm v0.12.0 v0.13.0
github.com/plexusone/omniobserve v0.6.0 v0.7.0
github.com/plexusone/omnivault v0.2.1 v0.3.0
github.com/plexusone/vaultguard v0.2.0 v0.3.0

Installation

go get github.com/plexusone/agentkit@v0.5.0

Full Changelog

See CHANGELOG.md for the complete list of changes.