Skip to content

Commit 1d0730a

Browse files
committed
chore: release v5.3.0
Kiro platform support - 5th platform alongside Claude Code, OpenCode, Codex CLI, and Cursor. Includes subagent transforms, parallel agent adaptation for Kiro's 4-agent experimental limit, combined reviewer agents, and ACP transport documentation.
1 parent c5a8bd8 commit 1d0730a

12 files changed

Lines changed: 1533 additions & 12 deletions

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "agentsys",
33
"description": "14 specialized plugins for AI workflow automation - task orchestration, PR workflow, slop detection, code review, drift detection, enhancement analysis, documentation sync, repo mapping, perf investigations, topic research, agent config linting, cross-tool AI consultation, and structured AI debate",
4-
"version": "5.2.1",
4+
"version": "5.3.0",
55
"owner": {
66
"name": "Avi Fenesh",
77
"url": "https://github.com/avifenesh"

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "agentsys",
3-
"version": "5.2.1",
3+
"version": "5.3.0",
44
"description": "Professional-grade slash commands for Claude Code with cross-platform support",
55
"keywords": [
66
"workflow",

CHANGELOG.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,25 @@ All notable changes to this project will be documented in this file.
77
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

10-
## [Unreleased]
10+
## [5.3.0] - 2026-03-02
1111

1212
### Added
1313

14-
- **Kiro platform support (#276)** - agentsys now installs to Kiro as a 5th platform alongside Claude Code, OpenCode, Codex CLI, and Cursor. Use `agentsys --tool kiro` or `agentsys install <plugin> --tool kiro` to install. Commands become steering files in `.kiro/steering/` (with `inclusion: manual` frontmatter), skills are copied to `.kiro/skills/` (standard SKILL.md format), and agents are converted to JSON in `.kiro/agents/`. All content is project-scoped under `.kiro/`. Kiro reads AGENTS.md and `.kiro/steering/*.md` for instructions. Platform detection uses `.kiro/` directory presence.
14+
- **Kiro platform support (#276, #278)** - agentsys now installs to Kiro as a 5th platform alongside Claude Code, OpenCode, Codex CLI, and Cursor. Use `agentsys --tool kiro` or `agentsys install <plugin> --tool kiro` to install. Commands become steering files in `.kiro/steering/` (with `inclusion: manual` frontmatter), skills are copied to `.kiro/skills/` (standard SKILL.md format), and agents are converted to JSON in `.kiro/agents/`. All content is project-scoped under `.kiro/`. Platform detection uses `.kiro/` directory presence.
15+
16+
- **Kiro subagent transforms (#279, #280)** - Task() calls transform to `Delegate to the \`agent\` subagent` with prompt context. AskUserQuestion transforms to markdown numbered-list prompts. Plugin namespace prefixes are stripped.
17+
18+
- **Kiro parallel agent adaptation** - Workflows spawning 4+ parallel reviewer agents (next-task Phase 9, audit-project Phase 2) are automatically adapted for Kiro's experimental 4-agent limit. `installForKiro()` generates two combined reviewer agents (`reviewer-quality-security`, `reviewer-perf-test`). `transformCommandForKiro()` detects consecutive reviewer delegations and rewrites as try-4-then-fallback-to-2 pattern.
19+
20+
- **Subagent comparison documentation** - CROSS_PLATFORM.md now has a platform comparison table for subagent capabilities (spawning, parallelism, teams, ACP) across all 5 platforms.
21+
22+
### Changed
23+
24+
- **`transformAgentForKiro()` refactored** - Now reuses `discovery.parseFrontmatter()` instead of custom parsing. Supports YAML array syntax for tools field.
25+
26+
### Fixed
27+
28+
- **Copy-paste bug in `installForCursor()`** - Skill transform was calling `transformSkillForKiro` instead of `transformSkillForCursor`.
1529

1630
## [5.2.1] - 2026-03-01
1731

agent-knowledge/AGENTS.md

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
| GitHub Org Project Management (Multi-Repo OSS) | github-org-project-management.md | 15 | deep | 2026-02-21 |
1414
| GitHub Organization Structure Patterns | github-org-structure-patterns.md | 18 | deep | 2026-02-21 |
1515
| Multi-Product Org Docs & Website Architecture | multi-product-org-docs.md | 42 | deep | 2026-02-21 |
16+
| ACP with Codex, Gemini, Copilot, Claude | acp-with-codex-gemini-copilot-claude.md | 24 | medium | 2026-03-02 |
1617

1718
## Trigger Phrases
1819

@@ -36,8 +37,6 @@ Use this knowledge when user asks about:
3637
- "Codex MCP" -> ai-cli-advanced-integration-patterns.md
3738
- "Crush OpenCode" -> ai-cli-advanced-integration-patterns.md
3839
- "Agent SDK hosting" -> ai-cli-advanced-integration-patterns.md
39-
- "A2A protocol" -> ai-cli-advanced-integration-patterns.md
40-
- "Cross-tool MCP" -> ai-cli-advanced-integration-patterns.md
4140
- "AI CLI server mode" -> ai-cli-advanced-integration-patterns.md
4241
- "Claude Code as service" -> ai-cli-advanced-integration-patterns.md
4342
- "Plugin distribution patterns" -> skill-plugin-distribution-patterns.md
@@ -117,6 +116,27 @@ Use this knowledge when user asks about:
117116
- "Diataxis framework" -> multi-product-org-docs.md
118117
- "Pagefind search" -> multi-product-org-docs.md
119118
- "docs-as-code" -> multi-product-org-docs.md
119+
- "ACP protocol" -> acp-with-codex-gemini-copilot-claude.md
120+
- "Agent Communication Protocol" -> acp-with-codex-gemini-copilot-claude.md
121+
- "A2A protocol" -> acp-with-codex-gemini-copilot-claude.md
122+
- "agent to agent communication" -> acp-with-codex-gemini-copilot-claude.md
123+
- "cross AI tool communication" -> acp-with-codex-gemini-copilot-claude.md
124+
- "MCP vs ACP vs A2A" -> acp-with-codex-gemini-copilot-claude.md
125+
- "Codex CLI agent protocol" -> acp-with-codex-gemini-copilot-claude.md
126+
- "Gemini CLI agent protocol" -> acp-with-codex-gemini-copilot-claude.md
127+
- "Copilot agent communication" -> acp-with-codex-gemini-copilot-claude.md
128+
- "Claude Code agent teams" -> acp-with-codex-gemini-copilot-claude.md
129+
- "Claude Agent SDK multi-agent" -> acp-with-codex-gemini-copilot-claude.md
130+
- "sequential thinking MCP" -> acp-with-codex-gemini-copilot-claude.md
131+
- "MCP bridge server" -> acp-with-codex-gemini-copilot-claude.md
132+
- "BeeAI Agent Stack" -> acp-with-codex-gemini-copilot-claude.md
133+
- "Kiro ACP" -> acp-with-codex-gemini-copilot-claude.md
134+
- "Cross-tool MCP bridges" -> acp-with-codex-gemini-copilot-claude.md
135+
- "ACP SDK" -> acp-with-codex-gemini-copilot-claude.md
136+
- "A2A SDK" -> acp-with-codex-gemini-copilot-claude.md
137+
- "agent interoperability" -> acp-with-codex-gemini-copilot-claude.md
138+
- "Agent Cards A2A" -> acp-with-codex-gemini-copilot-claude.md
139+
- "claude mcp serve cross-tool" -> acp-with-codex-gemini-copilot-claude.md
120140

121141
## Quick Lookup
122142

@@ -192,6 +212,16 @@ Use this knowledge when user asks about:
192212
| GitBook, ReadMe, Nextra | multi-product-org-docs.md |
193213
| GitHub Pages docs hosting | multi-product-org-docs.md |
194214
| Cloudflare Pages, Vercel hosting | multi-product-org-docs.md |
215+
| ACP, Agent Communication Protocol | acp-with-codex-gemini-copilot-claude.md |
216+
| A2A, Agent2Agent, agent-to-agent | acp-with-codex-gemini-copilot-claude.md |
217+
| ACP vs MCP vs A2A | acp-with-codex-gemini-copilot-claude.md |
218+
| BeeAI, Agent Stack, agent interop | acp-with-codex-gemini-copilot-claude.md |
219+
| agent teams, subagents, multi-agent | acp-with-codex-gemini-copilot-claude.md |
220+
| MCP bridge, Gemini bridge, OpenAI bridge | acp-with-codex-gemini-copilot-claude.md |
221+
| sequential thinking, cross-AI reasoning | acp-with-codex-gemini-copilot-claude.md |
222+
| Agent Cards, agent discovery | acp-with-codex-gemini-copilot-claude.md |
223+
| claude mcp serve, claude as MCP server | acp-with-codex-gemini-copilot-claude.md |
224+
| acp-sdk, a2a-sdk | acp-with-codex-gemini-copilot-claude.md |
195225

196226
## How to Use
197227

agent-knowledge/CLAUDE.md

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
| GitHub Org Project Management (Multi-Repo OSS) | github-org-project-management.md | 15 | deep | 2026-02-21 |
1414
| GitHub Organization Structure Patterns | github-org-structure-patterns.md | 18 | deep | 2026-02-21 |
1515
| Multi-Product Org Docs & Website Architecture | multi-product-org-docs.md | 42 | deep | 2026-02-21 |
16+
| ACP with Codex, Gemini, Copilot, Claude | acp-with-codex-gemini-copilot-claude.md | 24 | medium | 2026-03-02 |
1617

1718
## Trigger Phrases
1819

@@ -36,8 +37,6 @@ Use this knowledge when user asks about:
3637
- "Codex MCP" -> ai-cli-advanced-integration-patterns.md
3738
- "Crush OpenCode" -> ai-cli-advanced-integration-patterns.md
3839
- "Agent SDK hosting" -> ai-cli-advanced-integration-patterns.md
39-
- "A2A protocol" -> ai-cli-advanced-integration-patterns.md
40-
- "Cross-tool MCP" -> ai-cli-advanced-integration-patterns.md
4140
- "AI CLI server mode" -> ai-cli-advanced-integration-patterns.md
4241
- "Claude Code as service" -> ai-cli-advanced-integration-patterns.md
4342
- "Plugin distribution patterns" -> skill-plugin-distribution-patterns.md
@@ -117,6 +116,27 @@ Use this knowledge when user asks about:
117116
- "Diataxis framework" -> multi-product-org-docs.md
118117
- "Pagefind search" -> multi-product-org-docs.md
119118
- "docs-as-code" -> multi-product-org-docs.md
119+
- "ACP protocol" -> acp-with-codex-gemini-copilot-claude.md
120+
- "Agent Communication Protocol" -> acp-with-codex-gemini-copilot-claude.md
121+
- "A2A protocol" -> acp-with-codex-gemini-copilot-claude.md
122+
- "agent to agent communication" -> acp-with-codex-gemini-copilot-claude.md
123+
- "cross AI tool communication" -> acp-with-codex-gemini-copilot-claude.md
124+
- "MCP vs ACP vs A2A" -> acp-with-codex-gemini-copilot-claude.md
125+
- "Codex CLI agent protocol" -> acp-with-codex-gemini-copilot-claude.md
126+
- "Gemini CLI agent protocol" -> acp-with-codex-gemini-copilot-claude.md
127+
- "Copilot agent communication" -> acp-with-codex-gemini-copilot-claude.md
128+
- "Claude Code agent teams" -> acp-with-codex-gemini-copilot-claude.md
129+
- "Claude Agent SDK multi-agent" -> acp-with-codex-gemini-copilot-claude.md
130+
- "sequential thinking MCP" -> acp-with-codex-gemini-copilot-claude.md
131+
- "MCP bridge server" -> acp-with-codex-gemini-copilot-claude.md
132+
- "BeeAI Agent Stack" -> acp-with-codex-gemini-copilot-claude.md
133+
- "Kiro ACP" -> acp-with-codex-gemini-copilot-claude.md
134+
- "Cross-tool MCP bridges" -> acp-with-codex-gemini-copilot-claude.md
135+
- "ACP SDK" -> acp-with-codex-gemini-copilot-claude.md
136+
- "A2A SDK" -> acp-with-codex-gemini-copilot-claude.md
137+
- "agent interoperability" -> acp-with-codex-gemini-copilot-claude.md
138+
- "Agent Cards A2A" -> acp-with-codex-gemini-copilot-claude.md
139+
- "claude mcp serve cross-tool" -> acp-with-codex-gemini-copilot-claude.md
120140

121141
## Quick Lookup
122142

@@ -192,6 +212,16 @@ Use this knowledge when user asks about:
192212
| GitBook, ReadMe, Nextra | multi-product-org-docs.md |
193213
| GitHub Pages docs hosting | multi-product-org-docs.md |
194214
| Cloudflare Pages, Vercel hosting | multi-product-org-docs.md |
215+
| ACP, Agent Communication Protocol | acp-with-codex-gemini-copilot-claude.md |
216+
| A2A, Agent2Agent, agent-to-agent | acp-with-codex-gemini-copilot-claude.md |
217+
| ACP vs MCP vs A2A | acp-with-codex-gemini-copilot-claude.md |
218+
| BeeAI, Agent Stack, agent interop | acp-with-codex-gemini-copilot-claude.md |
219+
| agent teams, subagents, multi-agent | acp-with-codex-gemini-copilot-claude.md |
220+
| MCP bridge, Gemini bridge, OpenAI bridge | acp-with-codex-gemini-copilot-claude.md |
221+
| sequential thinking, cross-AI reasoning | acp-with-codex-gemini-copilot-claude.md |
222+
| Agent Cards, agent discovery | acp-with-codex-gemini-copilot-claude.md |
223+
| claude mcp serve, claude as MCP server | acp-with-codex-gemini-copilot-claude.md |
224+
| acp-sdk, a2a-sdk | acp-with-codex-gemini-copilot-claude.md |
195225

196226
## How to Use
197227

0 commit comments

Comments
 (0)