agentsys 5.5.0 → 5.6.4

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "agentsys",
3
3
  "description": "18 specialized plugins for AI workflow automation - task orchestration, PR workflow, slop detection, code review, drift detection, enhancement analysis, documentation sync, repo mapping, git intelligence, perf investigations, topic research, agent config linting, cross-tool AI consultation, structured AI debate, workflow pattern learning, codebase onboarding, and contributor guidance",
4
- "version": "5.5.0",
4
+ "version": "5.6.4",
5
5
  "owner": {
6
6
  "name": "Avi Fenesh",
7
7
  "url": "https://github.com/avifenesh"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentsys",
3
- "version": "5.5.0",
3
+ "version": "5.6.4",
4
4
  "description": "Professional-grade slash commands for Claude Code with cross-platform support",
5
5
  "keywords": [
6
6
  "workflow",
package/CHANGELOG.md CHANGED
@@ -7,6 +7,17 @@ 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
+ ## [5.6.4] - 2026-03-20
11
+
12
+ ### Added
13
+
14
+ - **glide-mq plugin** - New skill-only plugin with 3 skills for message queue development and migration:
15
+ - `glide-mq` - Greenfield queue development with glide-mq (ordering, rate limiting, flows, broadcast)
16
+ - `glide-mq-migrate-bullmq` - Migrate from BullMQ to glide-mq
17
+ - `glide-mq-migrate-bee` - Migrate from Bee-Queue to glide-mq
18
+ - Skills updated for glide-mq v0.12.0: runtime per-group rate limiting (`job.rateLimitGroup()`), ordering path unification, `GroupRateLimitError`
19
+ - Plugin count: 18 -> 19, skill count: 36 -> 39
20
+
10
21
  ## [5.4.1] - 2026-03-10
11
22
 
12
23
  ### Added
package/README.md CHANGED
@@ -19,7 +19,7 @@
19
19
  </p>
20
20
 
21
21
  <p align="center">
22
- <b>18 plugins · 38 agents · 36 skills (across all repos) · 30k lines of lib code · 3,575 tests · 5 platforms</b><br>
22
+ <b>19 plugins · 38 agents · 39 skills (across all repos) · 30k lines of lib code · 3,575 tests · 5 platforms</b><br>
23
23
  <em>Plugins distributed as standalone repos under <a href="https://github.com/agent-sh">agent-sh</a> org — agentsys is the marketplace &amp; installer</em>
24
24
  </p>
25
25
 
@@ -45,7 +45,7 @@ AI models can write code. That's not the hard part anymore. The hard part is eve
45
45
 
46
46
  ## What This Is
47
47
 
48
- An agent orchestration system — 18 plugins, 38 agents, and 36 skills that compose into structured pipelines for software development. Each plugin lives in its own standalone repo under the [agent-sh](https://github.com/agent-sh) org. agentsys is the marketplace and installer that ties them together.
48
+ An agent orchestration system — 19 plugins, 38 agents, and 39 skills that compose into structured pipelines for software development. Each plugin lives in its own standalone repo under the [agent-sh](https://github.com/agent-sh) org. agentsys is the marketplace and installer that ties them together.
49
49
 
50
50
  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.
51
51
 
@@ -106,7 +106,7 @@ Each command works standalone. Together, they compose into end-to-end pipelines.
106
106
  ## Skills
107
107
 
108
108
  <!-- GEN:START:readme-skills -->
109
- 36 skills included across the plugins:
109
+ 39 skills included across the plugins:
110
110
 
111
111
  | Category | Skills |
112
112
  |----------|--------|
@@ -120,8 +120,15 @@ Each command works standalone. Together, they compose into end-to-end pipelines.
120
120
  | **Web** | `web-auth`, `web-browse` |
121
121
  | **Release** | `release` |
122
122
  | **Analysis** | `drift-analysis`, `git-mapping`, `repo-mapping` |
123
+ | **Other** | `glide-mq-migrate-bee`, `glide-mq-migrate-bullmq`, `glide-mq` |
123
124
  <!-- GEN:END:readme-skills -->
124
125
 
126
+ **External skill plugins** (standalone repos, installed separately):
127
+
128
+ | Category | Skills | Plugin |
129
+ |----------|--------|--------|
130
+ | **Message Queues** | `glide-mq`, `glide-mq-migrate-bullmq`, `glide-mq-migrate-bee` | [agent-sh/glidemq](https://github.com/agent-sh/glidemq) |
131
+
125
132
  Skills are the reusable implementation units. Agents invoke skills; commands orchestrate agents. When you install a plugin, its skills become available to all agents in that session.
126
133
 
127
134
  ---
@@ -132,7 +139,7 @@ Skills are the reusable implementation units. Agents invoke skills; commands orc
132
139
  |---------|--------------|
133
140
  | [The Approach](#the-approach) | Why it's built this way |
134
141
  | [Commands](#commands) | All 19 commands overview |
135
- | [Skills](#skills) | 36 skills across plugins |
142
+ | [Skills](#skills) | 39 skills across plugins |
136
143
  | [Command Details](#command-details) | Deep dive into each command |
137
144
  | [How Commands Work Together](#how-commands-work-together) | Standalone vs integrated |
138
145
  | [Design Philosophy](#design-philosophy) | The thinking behind the architecture |
@@ -849,7 +856,7 @@ No per-turn overhead - it reads transcripts that Claude Code already saves.
849
856
 
850
857
  The plugin wraps the [agent-analyzer](https://github.com/agent-sh/agent-analyzer) Rust binary. Run `init` once to scan git history and cache the result as `repo-intel.json`. Then run queries instantly.
851
858
 
852
- **21 query types:**
859
+ **20 query types:**
853
860
 
854
861
  | Category | Queries |
855
862
  |----------|---------|
@@ -875,7 +882,7 @@ The plugin wraps the [agent-analyzer](https://github.com/agent-sh/agent-analyzer
875
882
  /git-map query bus-factor # Knowledge risk
876
883
  ```
877
884
 
878
- [Full query reference ->](https://github.com/agent-sh/git-map)
885
+ [Full query reference ](https://github.com/agent-sh/git-map)
879
886
 
880
887
  ---
881
888
 
@@ -885,7 +892,7 @@ The plugin wraps the [agent-analyzer](https://github.com/agent-sh/agent-analyzer
885
892
 
886
893
  **What happens when you run it:**
887
894
 
888
- 1. **Collect** (68ms median) - Pure JavaScript scans manifest, structure, README, CLAUDE.md/AGENTS.md, CI, git, repo-intel (no LLM tokens)
895
+ 1. **Collect** (68ms median) - Pure JavaScript scans manifest, structure, README, CI, git info. Normal depth adds CLAUDE.md/AGENTS.md and repo-intel. No LLM tokens.
889
896
  2. **Synthesize** - Opus agent produces a structured overview: tech stack, key files, active areas, conventions
890
897
  3. **Guide** - Interactive Q&A: ask about specific files, areas, or patterns
891
898
 
@@ -911,7 +918,7 @@ The plugin wraps the [agent-analyzer](https://github.com/agent-sh/agent-analyzer
911
918
 
912
919
  **Agent:** onboard-agent (opus model)
913
920
 
914
- [Full documentation ->](https://github.com/agent-sh/onboard)
921
+ [Full documentation ](https://github.com/agent-sh/onboard)
915
922
 
916
923
  ---
917
924
 
@@ -945,7 +952,29 @@ The plugin wraps the [agent-analyzer](https://github.com/agent-sh/agent-analyzer
945
952
 
946
953
  **Agent:** can-i-help-agent (opus model)
947
954
 
948
- [Full documentation ->](https://github.com/agent-sh/can-i-help)
955
+ [Full documentation ](https://github.com/agent-sh/can-i-help)
956
+
957
+ ---
958
+
959
+ ## Skill-Only Plugins
960
+
961
+ Plugins that provide skills without a `/` command. Installed alongside agentsys; skills become available to all agents.
962
+
963
+ ### glide-mq
964
+
965
+ **Purpose:** Build message queues, background jobs, and workflow orchestration with [glide-mq](https://github.com/avifenesh/glide-mq) - high-performance Node.js queue on Valkey/Redis.
966
+
967
+ **Skills:**
968
+
969
+ | Skill | What it does |
970
+ |-------|--------------|
971
+ | `glide-mq` | Greenfield queue development - queues, workers, ordering, rate limiting, flows, broadcast, step jobs |
972
+ | `glide-mq-migrate-bullmq` | Migrate from BullMQ to glide-mq - API mapping, breaking changes, feature comparison |
973
+ | `glide-mq-migrate-bee` | Migrate from Bee-Queue to glide-mq - API mapping, pattern conversion |
974
+
975
+ **Key features covered:** per-key ordering, group concurrency, runtime group rate limiting (`job.rateLimitGroup()`), token bucket, DAG workflows, broadcast pub/sub, step jobs, deduplication, serverless producers.
976
+
977
+ [Full documentation →](https://github.com/agent-sh/glidemq) | [glide-mq docs →](https://avifenesh.github.io/glide-mq.dev/)
949
978
 
950
979
  ---
951
980
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentsys",
3
- "version": "5.5.0",
3
+ "version": "5.6.4",
4
4
  "description": "A modular runtime and orchestration system for AI agents - works with Claude Code, OpenCode, and Codex CLI",
5
5
  "main": "lib/platform/detect-platform.js",
6
6
  "type": "commonjs",
@@ -103,7 +103,10 @@ const STATIC_SKILLS = [
103
103
  { plugin: 'git-map', name: 'git-mapping' },
104
104
  { plugin: 'onboard', name: 'onboard' },
105
105
  { plugin: 'can-i-help', name: 'can-i-help' },
106
- { plugin: 'audit-project', name: 'audit-project' }
106
+ { plugin: 'audit-project', name: 'audit-project' },
107
+ { plugin: 'glidemq', name: 'glide-mq' },
108
+ { plugin: 'glidemq', name: 'glide-mq-migrate-bullmq' },
109
+ { plugin: 'glidemq', name: 'glide-mq-migrate-bee' }
107
110
  ];
108
111
 
109
112
  // Purpose mapping for architecture table
@@ -386,26 +389,43 @@ function generateAgentCounts(agents, plugins) {
386
389
  /**
387
390
  * Update counts in site/content.json programmatically.
388
391
  */
392
+ // Static counts for cross-repo plugins not discoverable locally
393
+ const STATIC_PLUGIN_COUNT = 19;
394
+ const STATIC_AGENT_COUNT = 38;
395
+
389
396
  function updateSiteContent(plugins, agents, skills) {
390
397
  const contentPath = path.join(ROOT_DIR, 'site', 'content.json');
391
398
  if (!fs.existsSync(contentPath)) return null;
392
399
 
393
400
  const content = JSON.parse(fs.readFileSync(contentPath, 'utf8'));
394
- const totalAgents = agents.length + ROLE_BASED_AGENT_COUNT;
401
+
402
+ // Sync meta.version from package.json
403
+ const pkgPath = path.join(ROOT_DIR, 'package.json');
404
+ if (fs.existsSync(pkgPath)) {
405
+ const pkg = JSON.parse(fs.readFileSync(pkgPath, 'utf8'));
406
+ if (content.meta && pkg.version) {
407
+ content.meta.version = pkg.version;
408
+ }
409
+ }
410
+
411
+ // Use static counts as fallback (cross-repo plugins not discoverable locally)
412
+ const effectivePlugins = plugins.length > 0 ? plugins.length : STATIC_PLUGIN_COUNT;
413
+ const effectiveAgents = agents.length > 0 ? agents.length + ROLE_BASED_AGENT_COUNT : STATIC_AGENT_COUNT;
414
+ const effectiveSkills = skills.length > 0 ? skills.length : STATIC_SKILLS.length;
395
415
 
396
416
  // Update stats array
397
417
  if (content.stats && Array.isArray(content.stats)) {
398
418
  for (const stat of content.stats) {
399
- if (stat.label === 'Plugins') stat.value = String(plugins.length);
400
- if (stat.label === 'Agents') stat.value = String(totalAgents);
401
- if (stat.label === 'Skills') stat.value = String(skills.length);
419
+ if (stat.label === 'Plugins') stat.value = String(effectivePlugins);
420
+ if (stat.label === 'Agents') stat.value = String(effectiveAgents);
421
+ if (stat.label === 'Skills') stat.value = String(effectiveSkills);
402
422
  }
403
423
  }
404
424
 
405
425
  // Update agents section
406
426
  if (content.agents) {
407
- content.agents.total = totalAgents;
408
- content.agents.file_based = agents.length;
427
+ content.agents.total = effectiveAgents;
428
+ content.agents.file_based = effectiveAgents - ROLE_BASED_AGENT_COUNT;
409
429
  content.agents.role_based = ROLE_BASED_AGENT_COUNT;
410
430
  }
411
431
 
@@ -625,5 +645,7 @@ module.exports = {
625
645
  CATEGORY_MAP,
626
646
  PURPOSE_MAP,
627
647
  ROLE_BASED_AGENT_COUNT,
628
- STATIC_SKILLS
648
+ STATIC_SKILLS,
649
+ STATIC_PLUGIN_COUNT,
650
+ STATIC_AGENT_COUNT
629
651
  };
@@ -241,7 +241,7 @@ function formatCountMismatch(file, metric, expected, actual) {
241
241
  */
242
242
  function runValidation() {
243
243
  // When plugins/ doesn't exist, counts are not meaningful — return ok
244
- if (!fs.existsSync(path.join(REPO_ROOT, 'plugins'))) {
244
+ if (!fs.existsSync(path.join(REPO_ROOT, 'plugins')) || fs.readdirSync(path.join(REPO_ROOT, 'plugins')).filter(f => fs.statSync(path.join(REPO_ROOT, 'plugins', f)).isDirectory()).length === 0) {
245
245
  return {
246
246
  status: 'ok',
247
247
  message: 'plugins/ not present (extracted to standalone repos)',
package/site/content.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "meta": {
3
3
  "title": "agentsys",
4
- "description": "A modular runtime and orchestration system for AI agents. 15 plugins, 35 agents, 32 skills - structured pipelines for Claude Code, OpenCode, Codex CLI, Cursor, and Kiro.",
4
+ "description": "A modular runtime and orchestration system for AI agents. 19 plugins, 38 agents, 39 skills - structured pipelines for Claude Code, OpenCode, and Codex CLI.",
5
5
  "url": "https://agent-sh.github.io/agentsys",
6
6
  "repo": "https://github.com/agent-sh/agentsys",
7
7
  "npm": "https://www.npmjs.com/package/agentsys",
8
- "version": "5.5.0",
8
+ "version": "5.6.4",
9
9
  "author": "Avi Fenesh",
10
10
  "author_url": "https://github.com/avifenesh"
11
11
  },
12
12
  "hero": {
13
13
  "title": "A modular runtime and orchestration system for AI agents",
14
- "subtitle": "AI models can write code. That's not the hard part anymore. The hard part is everything around it -- task selection, branch management, code review, artifact cleanup, CI, deployment. AgentSys is the runtime that orchestrates agents to handle all of it.",
14
+ "subtitle": "AI models can write code. That's not the hard part anymore. The hard part is everything around it - task selection, branch management, code review, artifact cleanup, CI, deployment. AgentSys is the runtime that orchestrates agents to handle all of it.",
15
15
  "cta_primary": {
16
16
  "text": "Get Started",
17
17
  "url": "#installation"
@@ -23,17 +23,17 @@
23
23
  },
24
24
  "stats": [
25
25
  {
26
- "value": "0",
26
+ "value": "19",
27
27
  "label": "Plugins",
28
28
  "suffix": ""
29
29
  },
30
30
  {
31
- "value": "10",
31
+ "value": "38",
32
32
  "label": "Agents",
33
33
  "suffix": ""
34
34
  },
35
35
  {
36
- "value": "0",
36
+ "value": "39",
37
37
  "label": "Skills",
38
38
  "suffix": ""
39
39
  },
@@ -43,7 +43,7 @@
43
43
  "suffix": ""
44
44
  },
45
45
  {
46
- "value": "3,751",
46
+ "value": "3,575",
47
47
  "label": "Tests",
48
48
  "suffix": ""
49
49
  },
@@ -57,18 +57,18 @@
57
57
  "title": "The bottleneck isn't code generation",
58
58
  "description": "Frontier models write good code. That's solved. What's not solved is context management, compaction amnesia, task drift, skipped steps, token waste, babysitting, and repetitive requests. You shouldn't have to orchestrate each phase manually, every single session.",
59
59
  "points": [
60
- "Context management -- models forget what they're doing mid-session",
61
- "Compaction amnesia -- long sessions get summarized, losing critical state",
62
- "Task drift -- without structure, agents wander from the actual goal",
63
- "Skipped steps -- agents skip reviews, tests, or cleanup when not enforced",
64
- "Token waste -- using LLM calls for work that static analysis can do faster",
65
- "Babysitting -- manually orchestrating each phase of development",
66
- "Repetitive requests -- asking for the same workflow every single session"
60
+ "Context management - models forget what they're doing mid-session",
61
+ "Compaction amnesia - long sessions get summarized, losing critical state",
62
+ "Task drift - without structure, agents wander from the actual goal",
63
+ "Skipped steps - agents skip reviews, tests, or cleanup when not enforced",
64
+ "Token waste - using LLM calls for work that static analysis can do faster",
65
+ "Babysitting - manually orchestrating each phase of development",
66
+ "Repetitive requests - asking for the same workflow every single session"
67
67
  ]
68
68
  },
69
69
  "approach": {
70
70
  "title": "Code does code work. AI does AI work.",
71
- "description": "Detection uses regex, AST analysis, and static analysis -- fast, deterministic, no tokens wasted. Judgment uses LLM calls for synthesis, planning, and review -- where reasoning matters. Result: 77% fewer tokens for drift-detect vs multi-agent approaches.",
71
+ "description": "Detection uses regex, AST analysis, and static analysis - fast, deterministic, no tokens wasted. Judgment uses LLM calls for synthesis, planning, and review - where reasoning matters. Result: 77% fewer tokens for drift-detect vs multi-agent approaches.",
72
72
  "certainty_levels": [
73
73
  {
74
74
  "level": "HIGH",
@@ -98,7 +98,7 @@
98
98
  {
99
99
  "name": "/agnix",
100
100
  "tagline": "Lint agent configs before they break",
101
- "description": "230+ validation rules (57 auto-fixable) for Skills, Memory, Hooks, MCP, and Plugins across 10+ AI tools including Claude Code, Cursor, Kiro, GitHub Copilot, Codex CLI, OpenCode, and Gemini CLI. SARIF output for GitHub Code Scanning.",
101
+ "description": "342 validation rules (102 auto-fixable) for Skills, Memory, Hooks, MCP, and Plugins across 10+ AI tools including Claude Code, Cursor, GitHub Copilot, Codex CLI, OpenCode, Gemini CLI, Cline, Windsurf, Roo Code, and Amp. SARIF output for GitHub Code Scanning.",
102
102
  "example": "/agnix --fix",
103
103
  "category": "linting"
104
104
  },
@@ -185,6 +185,41 @@
185
185
  "description": "Navigate, authenticate, and interact with web pages via headless Playwright. Persistent encrypted sessions, human-in-the-loop auth handoff with CAPTCHA detection, and anti-bot measures.",
186
186
  "example": "/web-ctl browse https://example.com",
187
187
  "category": "maintenance"
188
+ },
189
+ {
190
+ "name": "/release",
191
+ "tagline": "Versioned release with ecosystem detection",
192
+ "description": "Discovers how your repo releases before executing. Checks for semantic-release, release-it, goreleaser, changesets, cargo-release, then falls back to generic tag-and-publish. Supports 12+ ecosystems.",
193
+ "example": "/release minor",
194
+ "category": "workflow"
195
+ },
196
+ {
197
+ "name": "/skillers",
198
+ "tagline": "Learn from your workflow patterns",
199
+ "description": "Reads Claude Code conversation transcripts, identifies recurring patterns, clusters them into weighted themes, and suggests skills, hooks, or agents to automate them. No per-turn overhead.",
200
+ "example": "/skillers compact",
201
+ "category": "learning"
202
+ },
203
+ {
204
+ "name": "/git-map",
205
+ "tagline": "Git history intelligence for AI agents",
206
+ "description": "21 queries backed by a Rust binary: hotspots, coupling, ownership, bus factor, bugspots, area health, AI detection, test gaps, doc drift, and more. Cached, incrementally updatable. 9 plugins consume the data automatically.",
207
+ "example": "/git-map query hotspots",
208
+ "category": "analysis"
209
+ },
210
+ {
211
+ "name": "/onboard",
212
+ "tagline": "Oriented in any codebase in 3 minutes",
213
+ "description": "Pure JS collector pre-structures project data (68ms median, 74% token savings vs manual), then Opus synthesizes a guided tour. Validated on 100 repos across 8 languages. Supports 12 manifest types and monorepo detection.",
214
+ "example": "/onboard",
215
+ "category": "learning"
216
+ },
217
+ {
218
+ "name": "/can-i-help",
219
+ "tagline": "Match contributor skills to project needs",
220
+ "description": "Collects 5 contributor signals (good-first areas, test gaps, doc drift, bugspots, open issues), asks about developer background, then recommends specific areas with concrete first steps.",
221
+ "example": "/can-i-help",
222
+ "category": "learning"
188
223
  }
189
224
  ],
190
225
  "philosophy": [
@@ -194,7 +229,7 @@
194
229
  },
195
230
  {
196
231
  "title": "Pipeline with gates, not a monolith",
197
- "description": "Same principle as DevOps. Each step must pass before the next begins. Can't push before review. Can't merge before CI passes. Hooks enforce this -- agents cannot skip phases."
232
+ "description": "Same principle as DevOps. Each step must pass before the next begins. Can't push before review. Can't merge before CI passes. Hooks enforce this - agents cannot skip phases."
198
233
  },
199
234
  {
200
235
  "title": "Tools do tool work, agents do agent work",
@@ -202,7 +237,7 @@
202
237
  },
203
238
  {
204
239
  "title": "Right model for the task",
205
- "description": "Opus for complex reasoning and analysis. Sonnet for pattern matching and validation. Haiku for mechanical execution. Quality compounds -- early phases deserve the best model."
240
+ "description": "Opus for complex reasoning and analysis. Sonnet for pattern matching and validation. Haiku for mechanical execution. Quality compounds - early phases deserve the best model."
206
241
  },
207
242
  {
208
243
  "title": "Validate plan and results, not every step",
@@ -255,16 +290,6 @@
255
290
  "name": "Codex CLI",
256
291
  "prefix": "$",
257
292
  "state_dir": "~/.codex/"
258
- },
259
- "cursor": {
260
- "name": "Cursor",
261
- "prefix": "/",
262
- "state_dir": ".cursor/"
263
- },
264
- "kiro": {
265
- "name": "Kiro",
266
- "prefix": "steering",
267
- "state_dir": "~/.kiro/"
268
293
  }
269
294
  }
270
295
  },
@@ -277,7 +302,7 @@
277
302
  {
278
303
  "step": 2,
279
304
  "name": "Task Discovery",
280
- "description": "Shows top 5 prioritized tasks -- you pick one"
305
+ "description": "Shows top 5 prioritized tasks - you pick one"
281
306
  },
282
307
  {
283
308
  "step": 3,
@@ -331,8 +356,8 @@
331
356
  }
332
357
  ],
333
358
  "agents": {
334
- "total": 10,
335
- "file_based": 0,
359
+ "total": 38,
360
+ "file_based": 28,
336
361
  "role_based": 10,
337
362
  "by_model": [
338
363
  {
@@ -370,21 +395,30 @@
370
395
  },
371
396
  "recent_releases": [
372
397
  {
373
- "version": "5.3.7",
374
- "date": "2026-03-02",
398
+ "version": "5.6.0",
399
+ "date": "2026-03-16",
375
400
  "highlights": [
376
- "Kiro platform support -- global install to ~/.kiro/ with agents, prompts, and skills",
377
- "ACP (Agent Client Protocol) transport for /consult and /debate",
378
- "Combined reviewer agents for Kiro's 4-agent limit",
379
- "Cursor global install to ~/.cursor/"
401
+ "New /onboard plugin - codebase orientation in 3 minutes, 74% token savings, validated on 100 repos",
402
+ "New /can-i-help plugin - contributor guidance with 5 data-backed signals",
403
+ "New /git-map plugin - 21 git history queries backed by Rust binary",
404
+ "15 plugin READMEs written or upgraded, agent-analyzer v0.2.0 query tuning"
405
+ ]
406
+ },
407
+ {
408
+ "version": "5.4.0",
409
+ "date": "2026-03-10",
410
+ "highlights": [
411
+ "Agent-analyzer Phase 1 - git intelligence with 21 queries",
412
+ "Repo-intel integration across 11 plugins",
413
+ "agnix v0.16.0 - 342 validation rules"
380
414
  ]
381
415
  },
382
416
  {
383
417
  "version": "5.2.0",
384
418
  "date": "2026-02-28",
385
419
  "highlights": [
386
- "New /consult plugin -- cross-tool AI consultation via ACP and CLI transports",
387
- "New /debate plugin -- structured adversarial debates between AI tools",
420
+ "New /consult plugin - cross-tool AI consultation",
421
+ "New /debate plugin - structured adversarial debates between AI tools",
388
422
  "User-extensible provider registry for 6 AI tools"
389
423
  ]
390
424
  },
@@ -392,18 +426,9 @@
392
426
  "version": "5.0.0",
393
427
  "date": "2026-02-20",
394
428
  "highlights": [
395
- "New /web-ctl plugin -- browser automation with encrypted session persistence",
429
+ "New /web-ctl plugin - browser automation with encrypted session persistence",
396
430
  "Human-in-the-loop auth handoff with CAPTCHA detection",
397
- "5 platform support: Claude Code, OpenCode, Codex CLI, Cursor, Kiro"
398
- ]
399
- },
400
- {
401
- "version": "4.1.0",
402
- "date": "2026-02-05",
403
- "highlights": [
404
- "New /agnix plugin -- lint agent configurations with 230+ validation rules",
405
- "SARIF output for GitHub Code Scanning integration",
406
- "Cross-platform validation for 10+ AI tools"
431
+ "Multi-platform support: Claude Code, OpenCode, Codex CLI"
407
432
  ]
408
433
  }
409
434
  ],
@@ -463,7 +488,7 @@
463
488
  ],
464
489
  "research": {
465
490
  "knowledge_base": "8,000 lines of curated documentation from Anthropic, OpenAI, Google, and Microsoft",
466
- "testing": "3,751 tests passing",
491
+ "testing": "3,575 tests passing",
467
492
  "drift_detect_repos": "1,000+ repositories validated",
468
493
  "token_reduction": "77% fewer tokens for drift-detect vs multi-agent approaches"
469
494
  },