agentsys 5.3.5 → 5.3.6

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.6",
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.6",
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,16 @@ 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.6] - 2026-03-02
11
11
 
12
12
  ### Fixed
13
13
 
14
14
  - **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`.
15
+ - **Cursor installs globally to ~/.cursor/** - Previously project-scoped. Now global like all other platforms.
16
+ - **Kiro installs globally to ~/.kiro/** - Consistent with all other platforms.
17
+ - **Agent resources updated** - Reference `file://.kiro/prompts/**/*.md`.
18
+
19
+ ## [5.3.5] - 2026-03-02 (broken - variable ordering bug)
17
20
 
18
21
  ## [5.3.4] - 2026-03-02
19
22
 
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.6",
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.6",
9
9
  "author": "Avi Fenesh",
10
10
  "author_url": "https://github.com/avifenesh"
11
11
  },