Skip to content

Release v0.4.0

Release Date: 2026-01-17

Highlights

  • Multi-Agent Team Architecture: 6 specialized agents (PM, QA, Documentation, Security, Release, Coordinator) with DAG workflow orchestration
  • Repository Migration: Moved to github.com/agentplexus/agent-team-release with renamed binary agent-team-release
  • Multi-Platform Plugins: Support for Claude Code, Kiro CLI, AgentKit, and AWS Bedrock

Breaking Changes

Binary Renamed

The CLI binary has been renamed from releaseagent to agent-team-release:

# Old
releaseagent check

# New
atrelease check

Installation Changed

# Old
brew install grokify/tap/releaseagent
go install github.com/grokify/release-agent/cmd/releaseagent@latest

# New
brew tap agentplexus/tap
brew install agent-team-release
go install github.com/agentplexus/agent-team-release/cmd/releaseagent@latest

Claude Code Plugin Changed

# Old
claude plugin add github:grokify/release-agent/plugins/claude

# New
claude plugin add github:agentplexus/agent-team-release/plugins/claude

New Features

Multi-Agent Team

Release Agent Team now includes 6 specialized agents that work together:

Agent Role Model
release-coordinator Orchestrates release workflow opus
pm Product scope and versioning sonnet
qa Build, test, lint validation sonnet
documentation Docs completeness checks haiku
release Git state and CI validation sonnet
security Vulnerability and compliance sonnet

Workflow DAG

The agents follow a directed acyclic graph (DAG) workflow:

pm-validation
    ├──> qa-validation ──────────────┐
    ├──> docs-validation ────────────┤
    ├──> security-validation ────────┼──> execute-release
    └──> release-validation ─────────┘
         (depends on pm + qa)

Multi-Platform Deployment

The same agent team can be deployed to multiple platforms:

  • Claude Code - Markdown-based plugin with commands, skills, and agents
  • Kiro CLI - JSON-based agent configurations with steering files
  • Gemini CLI - TOML-based extension
  • AgentKit - Local development server
  • AWS Bedrock - AgentCore deployment

Installation

brew tap agentplexus/tap
brew install agent-team-release

Go Install

go install github.com/agentplexus/agent-team-release/cmd/releaseagent@latest

Claude Code Plugin

claude plugin add github:agentplexus/agent-team-release/plugins/claude

Usage

# Run validation checks
atrelease check

# Comprehensive validation
atrelease validate --version=v1.0.0

# Execute release workflow
atrelease release v1.0.0

# Generate changelog
atrelease changelog --since=v0.9.0

# Show version
atrelease version

Migration Guide

From v0.3.0

  1. Update Homebrew tap:

    brew uninstall releaseagent
    brew tap agentplexus/tap
    brew install agent-team-release
    

  2. Update scripts and CI to use agent-team-release instead of releaseagent

  3. Update Claude Code plugin:

    claude plugin remove release-agent
    claude plugin add github:agentplexus/agent-team-release/plugins/claude
    

  4. Update any references to github.com/grokify/release-agent to github.com/agentplexus/agent-team-release

Full Changelog

See CHANGELOG.md for the complete list of changes.