agentsys 5.2.1 → 5.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/AGENTS.md +5 -3
- package/CHANGELOG.md +19 -1
- package/README.md +6 -5
- package/agent-knowledge/AGENTS.md +32 -2
- package/agent-knowledge/acp-with-codex-gemini-copilot-claude.md +504 -0
- package/agent-knowledge/kiro-supervised-autopilot.md +400 -0
- package/agent-knowledge/resources/acp-with-codex-gemini-copilot-claude-sources.json +408 -0
- package/agent-knowledge/resources/kiro-supervised-autopilot-sources.json +135 -0
- package/bin/cli.js +176 -9
- package/lib/adapter-transforms.js +196 -1
- package/lib/cross-platform/index.js +9 -3
- package/lib/discovery/index.js +22 -0
- package/lib/platform/state-dir.js +16 -2
- package/package.json +1 -1
- package/scripts/dev-install.js +137 -1
- package/scripts/gen-adapters.js +66 -4
- package/site/content.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentsys",
|
|
3
3
|
"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.
|
|
4
|
+
"version": "5.3.0",
|
|
5
5
|
"owner": {
|
|
6
6
|
"name": "Avi Fenesh",
|
|
7
7
|
"url": "https://github.com/avifenesh"
|
package/AGENTS.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Project Memory: AgentSys
|
|
2
2
|
|
|
3
|
-
> **Cross-tool compatible**:
|
|
3
|
+
> **Cross-tool compatible**: Works across all 5 platforms - Claude Code, OpenCode, Codex CLI, Cursor, and Kiro.
|
|
4
4
|
|
|
5
5
|
<project-memory>
|
|
6
6
|
|
|
@@ -150,7 +150,7 @@ agentsys # Run installer
|
|
|
150
150
|
<agents>
|
|
151
151
|
## Agents
|
|
152
152
|
|
|
153
|
-
|
|
153
|
+
43 agents across 14 plugins. Key agents by model:
|
|
154
154
|
|
|
155
155
|
| Model | Agents | Use Case |
|
|
156
156
|
|-------|--------|----------|
|
|
@@ -190,6 +190,8 @@ Platform-aware state directory:
|
|
|
190
190
|
- Claude Code: `.claude/`
|
|
191
191
|
- OpenCode: `config/.opencode/`
|
|
192
192
|
- Codex: `.codex/`
|
|
193
|
+
- Cursor: `.cursor/`
|
|
194
|
+
- Kiro: `.kiro/`
|
|
193
195
|
</state-files>
|
|
194
196
|
|
|
195
197
|
<workflow-agents>
|
|
@@ -240,7 +242,7 @@ Cannot skip in /next-task:
|
|
|
240
242
|
- Use CHANGELOG.md for completion tracking (not summary files)
|
|
241
243
|
- BEFORE starting → Read the relevant checklist (`checklists/*.md`)
|
|
242
244
|
- BEFORE delivering any work, especially releases → Go through that checklist item by item
|
|
243
|
-
-
|
|
245
|
+
- 5 platforms: Claude Code + OpenCode + Codex + Cursor + Kiro - ALL must work
|
|
244
246
|
- Agent/Skill pattern: Agents invoke skills, skills have implementation
|
|
245
247
|
- Create PRs for non-trivial changes
|
|
246
248
|
</end-reminder>
|
package/CHANGELOG.md
CHANGED
|
@@ -7,7 +7,25 @@ All notable changes to this project will be documented in this file.
|
|
|
7
7
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
8
8
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
9
9
|
|
|
10
|
-
## [
|
|
10
|
+
## [5.3.0] - 2026-03-02
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
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`.
|
|
11
29
|
|
|
12
30
|
## [5.2.1] - 2026-03-01
|
|
13
31
|
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
</p>
|
|
22
22
|
|
|
23
23
|
<p align="center">
|
|
24
|
-
<b>14 plugins · 43 agents · 30 skills (across all repos) · 26k lines of lib code · 3,357 tests ·
|
|
24
|
+
<b>14 plugins · 43 agents · 30 skills (across all repos) · 26k lines of lib code · 3,357 tests · 5 platforms</b><br>
|
|
25
25
|
<em>Plugins distributed as standalone repos under <a href="https://github.com/agent-sh">agent-sh</a> org — agentsys is the marketplace & installer</em>
|
|
26
26
|
</p>
|
|
27
27
|
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
</p>
|
|
31
31
|
|
|
32
32
|
<p align="center">
|
|
33
|
-
<b>Built for Claude Code · Codex CLI · OpenCode · Cursor</b>
|
|
33
|
+
<b>Built for Claude Code · Codex CLI · OpenCode · Cursor · Kiro</b>
|
|
34
34
|
</p>
|
|
35
35
|
|
|
36
36
|
<p align="center"><em>New skills, agents, and integrations ship constantly. Follow for real-time updates:</em></p>
|
|
@@ -51,7 +51,7 @@ An agent orchestration system — 14 plugins, 43 agents, and 30 skills that comp
|
|
|
51
51
|
|
|
52
52
|
Each agent has a single responsibility, a specific model assignment, and defined inputs/outputs. Pipelines enforce phase gates so agents can't skip steps. State persists across sessions so work survives interruptions.
|
|
53
53
|
|
|
54
|
-
The system runs on Claude Code, OpenCode, Codex CLI, and
|
|
54
|
+
The system runs on Claude Code, OpenCode, Codex CLI, Cursor, and Kiro. Install via the marketplace or the npm installer, and the plugins are fetched automatically from their repos.
|
|
55
55
|
|
|
56
56
|
---
|
|
57
57
|
|
|
@@ -916,12 +916,13 @@ Every command works standalone. [`/deslop`](#deslop) cleans code without needing
|
|
|
916
916
|
npm install -g agentsys && agentsys
|
|
917
917
|
```
|
|
918
918
|
|
|
919
|
-
Interactive installer for Claude Code, OpenCode, Codex CLI, and
|
|
919
|
+
Interactive installer for Claude Code, OpenCode, Codex CLI, Cursor, and Kiro.
|
|
920
920
|
|
|
921
921
|
```bash
|
|
922
922
|
# Non-interactive install
|
|
923
923
|
agentsys --tool claude # Single tool
|
|
924
924
|
agentsys --tool cursor # Cursor (project-scoped skills + commands)
|
|
925
|
+
agentsys --tool kiro # Kiro (project-scoped steering + skills + agents)
|
|
925
926
|
agentsys --tools "claude,opencode" # Multiple tools
|
|
926
927
|
agentsys --development # Dev mode (bypasses marketplace)
|
|
927
928
|
```
|
|
@@ -972,7 +973,7 @@ The system is built on research, not guesswork.
|
|
|
972
973
|
- 1,818 tests passing
|
|
973
974
|
- Drift-detect validated on 1,000+ repositories
|
|
974
975
|
- E2E workflow testing across all commands
|
|
975
|
-
- Cross-platform validation (Claude Code, OpenCode, Codex CLI, Cursor)
|
|
976
|
+
- Cross-platform validation (Claude Code, OpenCode, Codex CLI, Cursor, Kiro)
|
|
976
977
|
|
|
977
978
|
**Methodology:**
|
|
978
979
|
- `/perf` investigation phases based on recorded real performance investigation sessions
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
| GitHub Org Project Management (Multi-Repo OSS) | github-org-project-management.md | 15 | deep | 2026-02-21 |
|
|
14
14
|
| GitHub Organization Structure Patterns | github-org-structure-patterns.md | 18 | deep | 2026-02-21 |
|
|
15
15
|
| 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 |
|
|
16
17
|
|
|
17
18
|
## Trigger Phrases
|
|
18
19
|
|
|
@@ -36,8 +37,6 @@ Use this knowledge when user asks about:
|
|
|
36
37
|
- "Codex MCP" -> ai-cli-advanced-integration-patterns.md
|
|
37
38
|
- "Crush OpenCode" -> ai-cli-advanced-integration-patterns.md
|
|
38
39
|
- "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
|
|
41
40
|
- "AI CLI server mode" -> ai-cli-advanced-integration-patterns.md
|
|
42
41
|
- "Claude Code as service" -> ai-cli-advanced-integration-patterns.md
|
|
43
42
|
- "Plugin distribution patterns" -> skill-plugin-distribution-patterns.md
|
|
@@ -117,6 +116,27 @@ Use this knowledge when user asks about:
|
|
|
117
116
|
- "Diataxis framework" -> multi-product-org-docs.md
|
|
118
117
|
- "Pagefind search" -> multi-product-org-docs.md
|
|
119
118
|
- "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
|
|
120
140
|
|
|
121
141
|
## Quick Lookup
|
|
122
142
|
|
|
@@ -192,6 +212,16 @@ Use this knowledge when user asks about:
|
|
|
192
212
|
| GitBook, ReadMe, Nextra | multi-product-org-docs.md |
|
|
193
213
|
| GitHub Pages docs hosting | multi-product-org-docs.md |
|
|
194
214
|
| 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 |
|
|
195
225
|
|
|
196
226
|
## How to Use
|
|
197
227
|
|