agentsys 5.3.3 → 5.3.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.
- package/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/.kiro/agents/agent-enhancer.json +1 -1
- package/.kiro/agents/ci-fixer.json +1 -1
- package/.kiro/agents/ci-monitor.json +1 -1
- package/.kiro/agents/claudemd-enhancer.json +1 -1
- package/.kiro/agents/consult-agent.json +1 -1
- package/.kiro/agents/cross-file-enhancer.json +1 -1
- package/.kiro/agents/debate-orchestrator.json +1 -1
- package/.kiro/agents/delivery-validator.json +1 -1
- package/.kiro/agents/deslop-agent.json +1 -1
- package/.kiro/agents/docs-enhancer.json +1 -1
- package/.kiro/agents/exploration-agent.json +1 -1
- package/.kiro/agents/hooks-enhancer.json +1 -1
- package/.kiro/agents/implementation-agent.json +1 -1
- package/.kiro/agents/learn-agent.json +1 -1
- package/.kiro/agents/map-validator.json +1 -1
- package/.kiro/agents/perf-analyzer.json +1 -1
- package/.kiro/agents/perf-code-paths.json +1 -1
- package/.kiro/agents/perf-investigation-logger.json +1 -1
- package/.kiro/agents/perf-orchestrator.json +1 -1
- package/.kiro/agents/perf-theory-gatherer.json +1 -1
- package/.kiro/agents/perf-theory-tester.json +1 -1
- package/.kiro/agents/plan-synthesizer.json +1 -1
- package/.kiro/agents/planning-agent.json +1 -1
- package/.kiro/agents/plugin-enhancer.json +1 -1
- package/.kiro/agents/prompt-enhancer.json +1 -1
- package/.kiro/agents/reviewer-perf-test.json +1 -1
- package/.kiro/agents/reviewer-quality-security.json +1 -1
- package/.kiro/agents/simple-fixer.json +1 -1
- package/.kiro/agents/skills-enhancer.json +1 -1
- package/.kiro/agents/sync-docs-agent.json +1 -1
- package/.kiro/agents/task-discoverer.json +1 -1
- package/.kiro/agents/test-coverage-checker.json +1 -1
- package/.kiro/agents/web-session.json +1 -1
- package/.kiro/agents/worktree-manager.json +1 -1
- package/CHANGELOG.md +6 -0
- package/bin/cli.js +10 -10
- package/package.json +1 -1
- 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.3.
|
|
4
|
+
"version": "5.3.4",
|
|
5
5
|
"owner": {
|
|
6
6
|
"name": "Avi Fenesh",
|
|
7
7
|
"url": "https://github.com/avifenesh"
|
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ 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.4] - 2026-03-02
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **Kiro installs globally to ~/.kiro/** - Previously installed to `cwd/.kiro/` (project-scoped) which only worked in the agentsys directory. Now installs to `~/.kiro/` like other platforms (OpenCode → `~/.config/opencode/`, Codex → `~/.codex/`). Detection checks both global and project paths.
|
|
15
|
+
|
|
10
16
|
## [5.3.3] - 2026-03-02
|
|
11
17
|
|
|
12
18
|
### Fixed
|
package/bin/cli.js
CHANGED
|
@@ -949,9 +949,8 @@ 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
|
|
953
|
-
|
|
954
|
-
if (fs.existsSync(kiroDir)) platforms.push('kiro');
|
|
952
|
+
// Kiro: detect global ~/.kiro/ or project .kiro/
|
|
953
|
+
if (fs.existsSync(path.join(home, '.kiro')) || fs.existsSync(path.join(process.cwd(), '.kiro'))) platforms.push('kiro');
|
|
955
954
|
return platforms;
|
|
956
955
|
}
|
|
957
956
|
|
|
@@ -1702,12 +1701,13 @@ function installForCursor(installDir, options = {}) {
|
|
|
1702
1701
|
function installForKiro(installDir, options = {}) {
|
|
1703
1702
|
console.log('\n[INSTALL] Installing for Kiro...\n');
|
|
1704
1703
|
const { filter = null } = options;
|
|
1705
|
-
const cwd = process.cwd();
|
|
1706
1704
|
|
|
1707
|
-
//
|
|
1708
|
-
const
|
|
1709
|
-
const
|
|
1710
|
-
const
|
|
1705
|
+
// Install globally to ~/.kiro/ (same as OpenCode → ~/.config/opencode/, Codex → ~/.codex/)
|
|
1706
|
+
const home = process.env.HOME || process.env.USERPROFILE;
|
|
1707
|
+
const kiroHome = path.join(home, '.kiro');
|
|
1708
|
+
const skillsDir = path.join(kiroHome, 'skills');
|
|
1709
|
+
const steeringDir = path.join(kiroHome, 'steering');
|
|
1710
|
+
const agentsDir = path.join(kiroHome, 'agents');
|
|
1711
1711
|
fs.mkdirSync(skillsDir, { recursive: true });
|
|
1712
1712
|
fs.mkdirSync(steeringDir, { recursive: true });
|
|
1713
1713
|
fs.mkdirSync(agentsDir, { recursive: true });
|
|
@@ -1847,7 +1847,7 @@ function installForKiro(installDir, options = {}) {
|
|
|
1847
1847
|
console.log(` Skills: ${skillCount} installed to ${skillsDir}`);
|
|
1848
1848
|
console.log(` Steering: ${steeringCount} installed to ${steeringDir}`);
|
|
1849
1849
|
console.log(` Agents: ${agentCount} installed to ${agentsDir} (includes 2 combined reviewers)`);
|
|
1850
|
-
console.log(
|
|
1850
|
+
console.log(` Global install: ${kiroHome}\n`);
|
|
1851
1851
|
return true;
|
|
1852
1852
|
}
|
|
1853
1853
|
|
|
@@ -1868,7 +1868,7 @@ function removeInstallation() {
|
|
|
1868
1868
|
console.log(' - OpenCode: Remove files under ~/.config/opencode/ (commands/*.md, agents/*.md, skills/*/SKILL.md) and ~/.config/opencode/plugins/agentsys.ts');
|
|
1869
1869
|
console.log(' - Codex: Remove ~/.codex/skills/*/');
|
|
1870
1870
|
console.log(' - Cursor: Remove .cursor/skills/, .cursor/commands/, and .cursor/rules/agentsys-*.mdc from your project');
|
|
1871
|
-
console.log(' - Kiro: Remove
|
|
1871
|
+
console.log(' - Kiro: Remove ~/.kiro/skills/, ~/.kiro/steering/, and ~/.kiro/agents/');
|
|
1872
1872
|
}
|
|
1873
1873
|
|
|
1874
1874
|
function printSubcommandHelp(subcommand) {
|
package/package.json
CHANGED
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.
|
|
8
|
+
"version": "5.3.4",
|
|
9
9
|
"author": "Avi Fenesh",
|
|
10
10
|
"author_url": "https://github.com/avifenesh"
|
|
11
11
|
},
|