agentsys 5.3.1 → 5.3.2

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.1",
4
+ "version": "5.3.2",
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.1",
3
+ "version": "5.3.2",
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,15 @@ 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.2] - 2026-03-02
11
+
12
+ ### Fixed
13
+
14
+ - **Invalid file:// URI in Kiro agent resources** - `file://.kiro/steering/**/*.md` violated RFC 3986. Now uses relative glob `.kiro/steering/**/*.md`.
15
+ - **Kiro detection too strict** - Now detects `.kiro/` existence alone, catching fresh workspaces.
16
+ - **Silent tool stripping** - `task`, `web`, `fetch`, `notebook`, `lsp` tools added to Kiro agent mapping.
17
+ - **Kiro session continuity** - `supportsContinue` set to `true` (Kiro ACP reports `loadSession: true`).
18
+
10
19
  ## [5.3.1] - 2026-03-02
11
20
 
12
21
  ### Fixed
package/bin/cli.js CHANGED
@@ -949,9 +949,9 @@ function detectInstalledPlatforms() {
949
949
  // Cursor rules are project-scoped; detect only if Cursor rules/commands/skills exist in CWD
950
950
  const cursorDir = path.join(process.cwd(), '.cursor');
951
951
  if (fs.existsSync(path.join(cursorDir, 'rules')) || fs.existsSync(path.join(cursorDir, 'commands')) || fs.existsSync(path.join(cursorDir, 'skills'))) platforms.push('cursor');
952
- // Kiro is project-scoped; detect if .kiro/ directory exists in CWD
952
+ // Kiro is project-scoped; detect .kiro/ directory in CWD (any content, including fresh workspaces)
953
953
  const kiroDir = path.join(process.cwd(), '.kiro');
954
- if (fs.existsSync(path.join(kiroDir, 'steering')) || fs.existsSync(path.join(kiroDir, 'skills')) || fs.existsSync(path.join(kiroDir, 'agents'))) platforms.push('kiro');
954
+ if (fs.existsSync(kiroDir)) platforms.push('kiro');
955
955
  return platforms;
956
956
  }
957
957
 
@@ -612,13 +612,17 @@ function transformAgentForKiro(content, options) {
612
612
  if (toolStr.includes('bash') || toolStr.includes('shell')) tools.push('shell');
613
613
  if (toolStr.includes('glob')) tools.push('read');
614
614
  if (toolStr.includes('grep')) tools.push('read');
615
+ if (toolStr.includes('task') || toolStr.includes('agent')) tools.push('shell');
616
+ if (toolStr.includes('web') || toolStr.includes('fetch')) tools.push('shell');
617
+ if (toolStr.includes('notebook')) tools.push('write');
618
+ if (toolStr.includes('lsp')) tools.push('read');
615
619
  const deduped = [...new Set(tools)];
616
620
  agent.tools = deduped.length > 0 ? deduped : ['read'];
617
621
  } else {
618
622
  agent.tools = ['read'];
619
623
  }
620
624
 
621
- agent.resources = ['file://.kiro/steering/**/*.md'];
625
+ agent.resources = ['.kiro/steering/**/*.md'];
622
626
 
623
627
  return JSON.stringify(agent, null, 2);
624
628
  }
@@ -642,7 +646,7 @@ function generateCombinedReviewerAgent(roles, name, description) {
642
646
  description,
643
647
  prompt: `You are a combined code reviewer covering multiple review passes in a single session.\n\n${sections}\n\nFor each file you review, check ALL of the above review dimensions. Return findings as a JSON array with objects containing: pass (which review), file, line, severity (critical/high/medium/low), description, suggestion.`,
644
648
  tools: ['read'],
645
- resources: ['file://.kiro/steering/**/*.md'],
649
+ resources: ['.kiro/steering/**/*.md'],
646
650
  };
647
651
 
648
652
  return JSON.stringify(agent, null, 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentsys",
3
- "version": "5.3.1",
3
+ "version": "5.3.2",
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.1",
8
+ "version": "5.3.2",
9
9
  "author": "Avi Fenesh",
10
10
  "author_url": "https://github.com/avifenesh"
11
11
  },