agentsys 5.3.5 → 5.3.7

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": "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.3.5",
4
+ "version": "5.3.7",
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.3.5",
3
+ "version": "5.3.7",
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,13 +7,23 @@ 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.3.5] - 2026-03-02
10
+ ## [5.3.7] - 2026-03-02
11
+
12
+ ### Fixed
13
+
14
+ - **Website numbers updated** - Stats now show 14 plugins, 43 agents, 30 skills, 3,750 tests, 13 commands. Previously showed stale counts from earlier versions.
15
+ - **Kiro install TDZ bug** - Fixed `steeringMappingsForCleanup` used before initialization in v5.3.6 published code. Variable ordering corrected.
16
+
17
+ ## [5.3.6] - 2026-03-02
11
18
 
12
19
  ### Fixed
13
20
 
14
21
  - **Kiro commands install to ~/.kiro/prompts/** - Commands now install as prompts (invoked with `@name` in kiro-cli) instead of steering files. Legacy `~/.kiro/steering/` auto-cleaned on install.
15
- - **Cursor installs globally to ~/.cursor/** - Previously project-scoped (`cwd/.cursor/`). Now global like all other platforms.
16
- - **Agent resources updated** - Kiro agents reference `file://.kiro/prompts/**/*.md`.
22
+ - **Cursor installs globally to ~/.cursor/** - Previously project-scoped. Now global like all other platforms.
23
+ - **Kiro installs globally to ~/.kiro/** - Consistent with all other platforms.
24
+ - **Agent resources updated** - Reference `file://.kiro/prompts/**/*.md`.
25
+
26
+ ## [5.3.5] - 2026-03-02 (broken - variable ordering bug)
17
27
 
18
28
  ## [5.3.4] - 2026-03-02
19
29
 
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 · 5 platforms</b><br>
24
+ <b>14 plugins · 43 agents · 30 skills (across all repos) · 30k lines of lib code · 3,750 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 &amp; installer</em>
26
26
  </p>
27
27
 
@@ -970,7 +970,7 @@ The system is built on research, not guesswork.
970
970
  - Instruction following reliability
971
971
 
972
972
  **Testing:**
973
- - 1,818 tests passing
973
+ - 3,750 tests passing
974
974
  - Drift-detect validated on 1,000+ repositories
975
975
  - E2E workflow testing across all commands
976
976
  - Cross-platform validation (Claude Code, OpenCode, Codex CLI, Cursor, Kiro)
package/bin/cli.js CHANGED
@@ -1712,23 +1712,23 @@ function installForKiro(installDir, options = {}) {
1712
1712
  fs.mkdirSync(promptsDir, { recursive: true });
1713
1713
  fs.mkdirSync(agentsDir, { recursive: true });
1714
1714
 
1715
- // Clean up legacy agentsys files from steering dir (renamed to prompts).
1716
- // Only remove files matching known plugin commands - preserve user steering files.
1715
+ // Get known command names for cleanup
1716
+ const steeringMappingsForCleanup = discovery.getKiroSteeringMappings(installDir);
1717
+ const knownCommandFiles = new Set(steeringMappingsForCleanup.map(([name]) => `${name}.md`));
1718
+
1719
+ // Clean up legacy agentsys files from steering dir (renamed to prompts)
1717
1720
  const legacySteeringDir = path.join(kiroHome, 'steering');
1718
1721
  if (fs.existsSync(legacySteeringDir)) {
1719
- const knownLegacy = new Set(steeringMappingsForCleanup.map(([name]) => `${name}.md`));
1720
1722
  for (const f of fs.readdirSync(legacySteeringDir).filter(f => f.endsWith('.md'))) {
1721
- if (knownLegacy.has(f)) {
1723
+ if (knownCommandFiles.has(f)) {
1722
1724
  fs.unlinkSync(path.join(legacySteeringDir, f));
1723
1725
  }
1724
1726
  }
1725
1727
  }
1726
1728
 
1727
- // Cleanup old agentsys prompt files (only those matching known commands)
1728
- const steeringMappingsForCleanup = discovery.getKiroSteeringMappings(installDir);
1729
- const knownPromptFiles = new Set(steeringMappingsForCleanup.map(([name]) => `${name}.md`));
1729
+ // Cleanup old agentsys prompt files
1730
1730
  for (const f of fs.readdirSync(promptsDir).filter(f => f.endsWith('.md'))) {
1731
- if (knownPromptFiles.has(f)) {
1731
+ if (knownCommandFiles.has(f)) {
1732
1732
  fs.unlinkSync(path.join(promptsDir, f));
1733
1733
  }
1734
1734
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentsys",
3
- "version": "5.3.5",
3
+ "version": "5.3.7",
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",
package/site/content.json CHANGED
@@ -5,7 +5,7 @@
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.3.5",
8
+ "version": "5.3.7",
9
9
  "author": "Avi Fenesh",
10
10
  "author_url": "https://github.com/avifenesh"
11
11
  },
@@ -38,12 +38,12 @@
38
38
  "suffix": ""
39
39
  },
40
40
  {
41
- "value": "26k",
41
+ "value": "30k",
42
42
  "label": "Lines of Lib Code",
43
43
  "suffix": ""
44
44
  },
45
45
  {
46
- "value": "3,709",
46
+ "value": "3,750",
47
47
  "label": "Tests",
48
48
  "suffix": ""
49
49
  },
@@ -370,39 +370,40 @@
370
370
  },
371
371
  "recent_releases": [
372
372
  {
373
- "version": "4.1.0",
374
- "date": "2026-02-05",
373
+ "version": "5.3.7",
374
+ "date": "2026-03-02",
375
375
  "highlights": [
376
- "New /agnix plugin -- lint agent configurations with 155 validation rules across 10+ AI tools",
377
- "SARIF output for GitHub Code Scanning integration",
378
- "Cross-platform validation for Claude Code, Cursor, Copilot, Codex, OpenCode, Gemini CLI, and more"
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/"
379
380
  ]
380
381
  },
381
382
  {
382
- "version": "4.0.0",
383
- "date": "2026-02-05",
383
+ "version": "5.2.0",
384
+ "date": "2026-02-28",
384
385
  "highlights": [
385
- "New /learn plugin -- research any topic, create learning guides with RAG index",
386
- "Progressive query architecture with source quality scoring",
387
- "Agent frontmatter converted to YAML array format for spec compliance"
386
+ "New /consult plugin -- cross-tool AI consultation via ACP and CLI transports",
387
+ "New /debate plugin -- structured adversarial debates between AI tools",
388
+ "User-extensible provider registry for 6 AI tools"
388
389
  ]
389
390
  },
390
391
  {
391
- "version": "3.9.0",
392
- "date": "2026-02-04",
392
+ "version": "5.0.0",
393
+ "date": "2026-02-20",
393
394
  "highlights": [
394
- "Reduced prompt analyzer false positives from 175 to 0",
395
- "Agent Skills Open Standard compliance with automated validation",
396
- "Cross-file semantic analysis for /enhance"
395
+ "New /web-ctl plugin -- browser automation with encrypted session persistence",
396
+ "Human-in-the-loop auth handoff with CAPTCHA detection",
397
+ "5 platform support: Claude Code, OpenCode, Codex CLI, Cursor, Kiro"
397
398
  ]
398
399
  },
399
400
  {
400
- "version": "3.8.0",
401
- "date": "2026-02-02",
401
+ "version": "4.1.0",
402
+ "date": "2026-02-05",
402
403
  "highlights": [
403
- "sync-docs repo-map integration with AST-based symbol detection",
404
- "Version bump tool for coordinated releases",
405
- "OpenCode config path and plugin fixes"
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"
406
407
  ]
407
408
  }
408
409
  ],
@@ -462,7 +463,7 @@
462
463
  ],
463
464
  "research": {
464
465
  "knowledge_base": "8,000 lines of curated documentation from Anthropic, OpenAI, Google, and Microsoft",
465
- "testing": "3,357 tests passing",
466
+ "testing": "3,750 tests passing",
466
467
  "drift_detect_repos": "1,000+ repositories validated",
467
468
  "token_reduction": "77% fewer tokens for drift-detect vs multi-agent approaches"
468
469
  },
package/site/index.html CHANGED
@@ -4,12 +4,12 @@
4
4
  <meta charset="UTF-8">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1">
6
6
  <title>AgentSys - Agent Runtime &amp; Orchestration System</title>
7
- <meta name="description" content="A modular runtime and orchestration system for AI agents. 12 plugins, 41 agents, 27 skills — structured pipelines for Claude Code, OpenCode, and Codex CLI.">
7
+ <meta name="description" content="A modular runtime and orchestration system for AI agents. 14 plugins, 43 agents, 30 skills — structured pipelines for Claude Code, OpenCode, Codex CLI, Cursor, and Kiro.">
8
8
  <meta name="theme-color" content="#09090b">
9
9
 
10
10
  <!-- Open Graph -->
11
11
  <meta property="og:title" content="AgentSys">
12
- <meta property="og:description" content="A modular runtime and orchestration system for AI agents. 12 plugins, 41 agents, 27 skills.">
12
+ <meta property="og:description" content="A modular runtime and orchestration system for AI agents. 14 plugins, 43 agents, 30 skills.">
13
13
  <meta property="og:image" content="https://agent-sh.github.io/agentsys/assets/logo.png">
14
14
  <meta property="og:url" content="https://agent-sh.github.io/agentsys/">
15
15
  <meta property="og:type" content="website">
@@ -17,7 +17,7 @@
17
17
  <!-- Twitter Card -->
18
18
  <meta name="twitter:card" content="summary_large_image">
19
19
  <meta name="twitter:title" content="AgentSys">
20
- <meta name="twitter:description" content="AI workflow automation. 11 plugins, 40 agents, 26 skills.">
20
+ <meta name="twitter:description" content="AI workflow automation. 14 plugins, 43 agents, 30 skills.">
21
21
  <meta name="twitter:image" content="https://agent-sh.github.io/agentsys/assets/logo.png">
22
22
 
23
23
  <!-- Content Security Policy -->
@@ -109,7 +109,7 @@
109
109
  <div class="hero__inner">
110
110
  <div class="hero__content">
111
111
  <div class="hero__badge anim-fade-in" data-delay="100">
112
- 11 plugins &middot; 40 agents &middot; 26 skills
112
+ 14 plugins &middot; 43 agents &middot; 30 skills
113
113
  </div>
114
114
  <h1 class="hero__title anim-fade-up" id="hero-title" data-delay="200">
115
115
  A modular <span class="text-gradient">runtime and orchestration system</span><br>
@@ -158,19 +158,19 @@
158
158
  <section class="stats" id="stats" aria-label="Project statistics">
159
159
  <div class="stats__inner">
160
160
  <div class="stats__item">
161
- <span class="stats__number" aria-live="polite" data-target="11">0</span>
161
+ <span class="stats__number" aria-live="polite" data-target="14">0</span>
162
162
  <span class="stats__label">Plugins</span>
163
163
  </div>
164
164
  <div class="stats__item">
165
- <span class="stats__number" aria-live="polite" data-target="40">0</span>
165
+ <span class="stats__number" aria-live="polite" data-target="43">0</span>
166
166
  <span class="stats__label">Agents</span>
167
167
  </div>
168
168
  <div class="stats__item">
169
- <span class="stats__number" aria-live="polite" data-target="26">0</span>
169
+ <span class="stats__number" aria-live="polite" data-target="30">0</span>
170
170
  <span class="stats__label">Skills</span>
171
171
  </div>
172
172
  <div class="stats__item">
173
- <span class="stats__number" aria-live="polite" data-target="3357">0</span>
173
+ <span class="stats__number" aria-live="polite" data-target="3750">0</span>
174
174
  <span class="stats__label">Tests Passing</span>
175
175
  </div>
176
176
  </div>
@@ -179,7 +179,7 @@
179
179
  <!-- ===== COMMANDS ===== -->
180
180
  <section class="commands" id="commands" aria-labelledby="commands-title">
181
181
  <div class="commands__inner">
182
- <h2 class="commands__title anim-fade-up" id="commands-title">11 Commands. One Toolkit.</h2>
182
+ <h2 class="commands__title anim-fade-up" id="commands-title">13 Commands. One Toolkit.</h2>
183
183
  <p class="commands__subtitle anim-fade-up" data-delay="100">Each works standalone. Together, they automate everything.</p>
184
184
 
185
185
  <div class="commands__tabs anim-fade-up" data-delay="200">
@@ -468,7 +468,7 @@
468
468
  <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><circle cx="12" cy="12" r="10"/><circle cx="12" cy="12" r="3"/></svg>
469
469
  </div>
470
470
  <h3 class="philosophy__card-title">One agent, one job, done well</h3>
471
- <p class="philosophy__card-desc"><span class="text-accent">40 specialized agents</span>, each with a narrow scope and clear success criteria. No agent tries to do everything.</p>
471
+ <p class="philosophy__card-desc"><span class="text-accent">43 specialized agents</span>, each with a narrow scope and clear success criteria. No agent tries to do everything.</p>
472
472
  </div>
473
473
  <div class="philosophy__card anim-fade-up" data-delay="200">
474
474
  <div class="philosophy__card-icon">
@@ -491,7 +491,7 @@
491
491
  <!-- ===== AGENTS & SKILLS ===== -->
492
492
  <section class="agents-skills" id="agents-skills" aria-labelledby="as-title">
493
493
  <div class="agents-skills__inner">
494
- <h2 class="agents-skills__title anim-fade-up" id="as-title">40 Agents. 26 Skills.</h2>
494
+ <h2 class="agents-skills__title anim-fade-up" id="as-title">43 Agents. 30 Skills.</h2>
495
495
  <p class="agents-skills__subtitle anim-fade-up" data-delay="100">Right model for the task. Opus reasons. Sonnet validates. Haiku executes.</p>
496
496
 
497
497
  <!-- Agent tier tabs -->
@@ -569,7 +569,7 @@
569
569
  </div>
570
570
 
571
571
  <!-- Skills grid -->
572
- <h3 class="agents-skills__skills-title anim-fade-up" data-delay="300">26 Skills across 11 Plugins</h3>
572
+ <h3 class="agents-skills__skills-title anim-fade-up" data-delay="300">30 Skills across 14 Plugins</h3>
573
573
  <div class="skills-grid anim-fade-up" data-delay="350">
574
574
  <div class="skill-group">
575
575
  <span class="skill-group__label">next-task</span>
package/site/ux-spec.md CHANGED
@@ -94,7 +94,7 @@ Scroll order with rationale for each section. All sections are full-width, alter
94
94
  - **Single column on mobile:** Text above, terminal below. Stack with 48px gap.
95
95
 
96
96
  ### Left Column Content
97
- 1. **Badge** (top, above title): Small pill showing version or "11 plugins . 40 agents . 26 skills"
97
+ 1. **Badge** (top, above title): Small pill showing version or "14 plugins . 43 agents . 30 skills"
98
98
  - Background: `rgba(99, 102, 241, 0.12)`, border: `1px solid rgba(99, 102, 241, 0.25)`, border-radius: 9999px
99
99
  - Font: 13px, font-weight 500, primary accent color
100
100
  - Padding: 4px 14px
@@ -104,7 +104,7 @@ Scroll order with rationale for each section. All sections are full-width, alter
104
104
  - Color: white
105
105
  - "entire dev workflow" portion highlighted with a subtle gradient text (primary-to-secondary accent via `background-clip: text`)
106
106
 
107
- 3. **Subtitle:** "11 plugins, 40 agents, 26 skills. From task selection to merged PR. Works with Claude Code, OpenCode, and Codex CLI."
107
+ 3. **Subtitle:** "14 plugins, 43 agents, 30 skills. From task selection to merged PR. Works with Claude Code, OpenCode, Codex CLI, Cursor, and Kiro."
108
108
  - Font: 18px on desktop, 16px on mobile, font-weight 400, line-height 1.6
109
109
  - Color: `rgba(255, 255, 255, 0.6)`
110
110
  - Max-width: 520px
@@ -226,10 +226,10 @@ Done. Task to merged PR in 12 minutes.
226
226
  ### Stats (left to right)
227
227
  | Stat | Value | Label |
228
228
  |------|-------|-------|
229
- | 1 | 11 | Plugins |
230
- | 2 | 40 | Agents |
231
- | 3 | 26 | Skills |
232
- | 4 | 3,357 | Tests Passing |
229
+ | 1 | 14 | Plugins |
230
+ | 2 | 43 | Agents |
231
+ | 3 | 30 | Skills |
232
+ | 4 | 3,750 | Tests Passing |
233
233
 
234
234
  ### Styling
235
235
  - **Number:** 48px, font-weight 700, white, `font-variant-numeric: tabular-nums` (prevents layout shift during count)
@@ -650,13 +650,13 @@ This disables:
650
650
  ### Head Content
651
651
  ```html
652
652
  <title>AgentSys - Agent Runtime &amp; Orchestration System</title>
653
- <meta name="description" content="A modular runtime and orchestration system for AI agents. 12 plugins, 41 agents, 27 skills — structured pipelines for Claude Code, OpenCode, and Codex CLI.">
653
+ <meta name="description" content="A modular runtime and orchestration system for AI agents. 14 plugins, 43 agents, 30 skills — structured pipelines for Claude Code, OpenCode, Codex CLI, Cursor, and Kiro.">
654
654
  <meta name="viewport" content="width=device-width, initial-scale=1">
655
655
  <meta name="theme-color" content="#0a0a0f">
656
656
 
657
657
  <!-- Open Graph -->
658
658
  <meta property="og:title" content="AgentSys">
659
- <meta property="og:description" content="AI workflow automation. 11 plugins, 40 agents, 26 skills. Task to merged PR.">
659
+ <meta property="og:description" content="AI workflow automation. 14 plugins, 43 agents, 30 skills. Task to merged PR.">
660
660
  <meta property="og:image" content="https://agent-sh.github.io/agentsys/assets/og-image.png">
661
661
  <meta property="og:url" content="https://agent-sh.github.io/agentsys/">
662
662
  <meta property="og:type" content="website">
@@ -664,7 +664,7 @@ This disables:
664
664
  <!-- Twitter Card -->
665
665
  <meta name="twitter:card" content="summary_large_image">
666
666
  <meta name="twitter:title" content="AgentSys">
667
- <meta name="twitter:description" content="AI workflow automation. 11 plugins, 40 agents, 26 skills.">
667
+ <meta name="twitter:description" content="AI workflow automation. 14 plugins, 43 agents, 30 skills.">
668
668
  <meta name="twitter:image" content="https://agent-sh.github.io/agentsys/assets/og-image.png">
669
669
  ```
670
670