Release v0.7.0¶
Release Date: 2026-01-26
Highlights¶
- Releasekit Integration: Language-specific validation (build, test, lint) now delegates to the
releasekitCLI for consistent cross-project behavior - Plugin Restructuring: Canonical specs moved to
specs/directory with improved organization
Changes¶
Releasekit Integration¶
Language-specific checks for Go and TypeScript/JavaScript are now handled by shelling out to the releasekit CLI:
This provides:
- Consistent validation behavior across projects
- Multi-agent-spec AgentResult output format
- Dry-run support and execution auditing
- Simplified maintenance of language-specific checks
The internal pkg/checks/golang.go and pkg/checks/typescript.go have been removed.
Plugin Directory Restructuring¶
The plugin layout has been reorganized:
Before:
After:
specs/ # canonical specs now at root level
├── plugin.json
├── agents/
├── commands/
├── deployments/
├── skills/
└── teams/
plugins/ # platform-specific implementations
├── claude/
├── gemini/
└── kiro/
scripts/
└── generate-plugins.sh
Gemini Agent Files¶
New agent configuration files for Gemini:
plugins/gemini/documentation.tomlplugins/gemini/pm.tomlplugins/gemini/qa.tomlplugins/gemini/release.tomlplugins/gemini/release-coordinator.tomlplugins/gemini/security.toml
Deployment Specs¶
New deployment specifications in specs/deployments/:
cloud.json- Cloud deployment configurationlocal.json- Local development configuration
Agent Documentation¶
Agent documentation in .claude/agents/ has been significantly expanded with:
- Detailed task workflows and decision trees
- Input/output format specifications
- Tool usage guidelines
- Error handling procedures
- Integration patterns
Files Changed¶
Added¶
specs/directory with canonical specificationsscripts/generate-plugins.sh- Plugin generation scriptspecs/deployments/cloud.json- Cloud deployment specspecs/deployments/local.json- Local deployment specplugins/gemini/*.toml- Gemini agent configurations
Modified¶
pkg/checks/releasekit.go- New file for releasekit CLI integration.claude/agents/*.md- Expanded agent documentationplugins/claude/agents/*.md- Updated agent specsplugins/claude/commands/*.md- Updated command specsplugins/claude/skills/*- Updated skill specsplugins/gemini/commands/*.toml- Updated command configsplugins/kiro/agents/*.json- Updated agent configs
Removed¶
pkg/checks/golang.go- Replaced by releasekitpkg/checks/typescript.go- Replaced by releasekitplugins/spec/- Moved tospecs/plugins/generate/main.go- Replaced byscripts/generate-plugins.shplugins/claude/README.mdplugins/gemini/README.mdplugins/kiro/steering/release-workflow.md
Dependencies¶
- Updated
github.com/agentplexus/multi-agent-spec/sdk/goto v0.5.0 - Requires
releasekitCLI to be installed for language validation
Installation¶
# Install atrelease
go install github.com/agentplexus/agent-team-release/cmd/atrelease@v0.7.0
# Install releasekit (required for validation)
go install github.com/grokify/releasekit/cmd/releasekit@latest
Full Changelog¶
See CHANGELOG.md for the complete list of changes.