Skip to content

Release Notes v0.7.0

Release Date: March 1, 2026

This release migrates the module from the agentplexus organization to plexusone, introduces agent plugin specifications for Kiro and Claude Code, and restructures documentation for GitHub Pages deployment.

Highlights

  • Organization Migration - Module path changed from github.com/agentplexus/stats-agent-team to github.com/plexusone/agent-team-stats
  • Agent Plugin Specs - New plugin specifications for deploying agents to Kiro and Claude Code
  • GitHub Pages Docs - MkDocs documentation restructured for mkdocs gh-deploy workflow
  • Dependency Updates - All dependencies migrated to plexusone/* packages with major version bumps

Breaking Changes

Module Path Migration

The module path has changed from github.com/agentplexus/stats-agent-team to github.com/plexusone/agent-team-stats.

Update your imports:

// Before
import "github.com/agentplexus/stats-agent-team/pkg/config"

// After
import "github.com/plexusone/agent-team-stats/pkg/config"

Update your go.mod:

require github.com/plexusone/agent-team-stats v0.7.0

New Features

Agent Plugin Specifications

New plugin specifications enable deployment of the agent team to various platforms:

Kiro Agents (plugins/kiro/agents/): - stats-orchestrator.json - Orchestration agent configuration - stats-research.json - Research agent configuration - stats-synthesis.json - Synthesis agent configuration - stats-verification.json - Verification agent configuration

Spec Plugin (plugins/spec/): - plugin.json - Plugin manifest with deployment targets - Agent markdown specifications for orchestration workflow

Deployment Targets: | Target | Description | Output | |--------|-------------|--------| | local-claude | Claude Code sub-agents | .claude/agents/ | | local-kiro | Kiro CLI sub-agents | plugins/kiro/agents/ | | aws-agentcore | AWS Bedrock AgentCore | cdk/ | | kubernetes | Kubernetes/Docker | helm/ |

CDK v0.2.0 Integration

Updated CDK module to use agentkit-aws-cdk v0.2.0 with full AgentCore support:

  • AWS::BedrockAgentCore::Runtime resource creation
  • AWS::BedrockAgentCore::RuntimeEndpoint automatic creation
  • Protocol configuration (HTTP, MCP, A2A)
  • Gateway support for external tools

Documentation Changes

MkDocs Restructure

Documentation source moved from docsrc/ to docs/ for GitHub Pages deployment:

# Deploy documentation to gh-pages
mkdocs gh-deploy

The mkdocs.yml has been updated: - Removed site_dir (mkdocs gh-deploy handles output) - Updated URLs for plexusone organization - Documentation now served at https://plexusone.github.io/agent-team-stats

Dependencies

Migrated Dependencies

All agentplexus/* dependencies have been migrated to plexusone/*:

Old Package New Package Version
agentplexus/agentkit plexusone/agentkit v0.5.0
agentplexus/omnillm plexusone/omnillm v0.13.0
agentplexus/omniobserve plexusone/omniobserve v0.7.0
agentplexus/omniserp plexusone/omniserp v0.8.0
agentplexus/go-opik plexusone/opik-go v0.6.0
agentplexus/go-phoenix plexusone/phoenix-go v0.2.0

Updated Dependencies

Package Old Version New Version
github.com/cloudwego/eino v0.7.32 v0.7.36
github.com/grokify/mogo v0.72.7 v0.73.3
github.com/go-chi/chi/v5 v5.2.4 v5.2.5
github.com/modelcontextprotocol/go-sdk v1.3.0 v1.4.0
google.golang.org/genai v1.42.0 v1.48.0
google.golang.org/adk v0.4.0 v0.5.0
github.com/a2aproject/a2a-go v0.3.6 v0.3.7

CDK Dependencies

Package Version
github.com/plexusone/agentkit-aws-cdk v0.2.0

Migration Guide

From v0.6.x

  1. Update import paths in all Go files:

    # Use sed or IDE refactor to update imports
    find . -name "*.go" -exec sed -i '' \
      's|github.com/agentplexus/stats-agent-team|github.com/plexusone/agent-team-stats|g' {} +
    

  2. Update go.mod:

    go get github.com/plexusone/agent-team-stats@v0.7.0
    go mod tidy
    

  3. Update documentation references if you link to the old repository URL

  4. (Optional) Generate local agents:

    # If using Kiro for local development
    cp plugins/kiro/agents/*.json ~/.kiro/agents/
    
    # If using Claude Code
    cp plugins/spec/agents/*.md .claude/agents/
    

Infrastructure

  • Updated .gitignore to exclude .claude/ directory (generated agents)
  • Updated cdk/.gitignore to exclude compiled binary
  • GitHub Actions actions/upload-artifact bumped from v6 to v7

Contributors

  • John Wang (@grokify)

Full Changelog: v0.6.0...v0.7.0