Release Notes: v0.7.0¶
Release Date: 2026-02-28
Highlights¶
- Organization Rename: GitHub organization renamed from
agentplexustoplexusone
Breaking Changes¶
This release contains breaking changes due to the organization rename:
| Component | Before | After |
|---|---|---|
| Go module | github.com/agentplexus/multi-agent-spec |
github.com/plexusone/multi-agent-spec |
| NPM package | @agentplexus/multi-agent-spec |
@plexusone/multi-agent-spec |
| Schema URLs | raw.githubusercontent.com/agentplexus/... |
raw.githubusercontent.com/plexusone/... |
| Docs site | agentplexus.github.io/multi-agent-spec |
plexusone.github.io/multi-agent-spec |
Migration Guide¶
Go SDK¶
Update your import paths:
// Before
import multiagentspec "github.com/agentplexus/multi-agent-spec/sdk/go"
// After
import multiagentspec "github.com/plexusone/multi-agent-spec/sdk/go"
Update your go.mod:
# Remove old dependency
go mod edit -droprequire github.com/agentplexus/multi-agent-spec/sdk/go
# Add new dependency
go get github.com/plexusone/multi-agent-spec/sdk/go@v0.8.0
# Clean up
go mod tidy
TypeScript SDK¶
Update your package.json:
# Uninstall old package
npm uninstall @agentplexus/multi-agent-spec
# Install new package
npm install @plexusone/multi-agent-spec
Update your imports:
// Before
import { AgentSchema } from '@agentplexus/multi-agent-spec';
// After
import { AgentSchema } from '@plexusone/multi-agent-spec';
JSON Schema References¶
If you reference schemas by URL, update the organization name:
{
"$schema": "https://raw.githubusercontent.com/plexusone/multi-agent-spec/main/schema/agent/agent.schema.json"
}
SDK Versions¶
| SDK | Version |
|---|---|
| Go | sdk/go/v0.8.0 |
| TypeScript | 1.0.0 (NPM) |
| Python | 1.0.0 (PyPI) |