agentsys 5.8.1 → 5.8.3

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": "19 specialized plugins for AI workflow automation - task orchestration, PR workflow, slop detection, code review, drift detection, enhancement analysis, documentation sync, unified static analysis, 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.8.1",
4
+ "version": "5.8.3",
5
5
  "owner": {
6
6
  "name": "Avi Fenesh",
7
7
  "url": "https://github.com/avifenesh"
@@ -29,7 +29,7 @@
29
29
  "url": "https://github.com/agent-sh/next-task.git"
30
30
  },
31
31
  "description": "Master workflow orchestrator: autonomous workflow with model optimization (opus/sonnet/haiku), two-file state management, workflow enforcement gates, 8 specialist agents",
32
- "version": "1.1.0",
32
+ "version": "1.1.1",
33
33
  "category": "productivity",
34
34
  "homepage": "https://github.com/agent-sh/next-task"
35
35
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentsys",
3
- "version": "5.8.1",
3
+ "version": "5.8.3",
4
4
  "description": "Professional-grade slash commands for Claude Code with cross-platform support",
5
5
  "keywords": [
6
6
  "workflow",
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "agentsys",
3
+ "description": "Modular runtime and orchestration system for AI agents - professional-grade slash commands for workflow automation, code review, CI/CD, and task management",
4
+ "skills": "./adapters/codex/skills",
5
+ "interface": {
6
+ "displayName": "agentsys",
7
+ "shortDescription": "AI agent orchestration with 42 skills and 50 agents",
8
+ "longDescription": "Professional-grade slash commands for AI-powered development workflows. Includes /next-task (task discovery to production), /ship (commit to deploy), /audit-project (multi-agent code review), /deslop (AI slop cleanup), /perf (performance investigation), /enhance (config analysis), /consult (cross-tool AI consultation), and more.",
9
+ "developerName": "Avi Fenesh",
10
+ "category": "developer-tools",
11
+ "capabilities": [
12
+ "task-management",
13
+ "code-review",
14
+ "ci-cd",
15
+ "deployment",
16
+ "performance",
17
+ "documentation"
18
+ ],
19
+ "websiteUrl": "https://agent-sh.github.io/agent-sh.dev/",
20
+ "defaultPrompt": [
21
+ "What should I work on next?",
22
+ "Ship my changes",
23
+ "Review this codebase"
24
+ ]
25
+ }
26
+ }
package/CHANGELOG.md CHANGED
@@ -9,6 +9,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
 
10
10
  ## [Unreleased]
11
11
 
12
+ ## [5.8.3] - 2026-04-11
13
+
14
+ ### Fixed
15
+ - **next-task v1.1.1** - SubagentStop hook now only fires during active /next-task workflows, not on every subagent stop (agent-sh/agentsys#325). Cross-platform guard script replaces unconditional prompt injection that wasted 136K+ tokens per unrelated agent.
16
+
17
+ ### Changed
18
+ - Bump next-task marketplace version to 1.1.1
19
+
20
+ ## [5.8.2] - 2026-04-11
21
+
22
+ ### Added
23
+ - Codex CLI plugin manifest (`.codex-plugin/plugin.json`) for native Codex discovery
24
+
25
+ ### Fixed
26
+ - Flaky stale items test - use >= 99 threshold for date boundary tolerance
27
+
28
+ ## [5.8.1] - 2026-03-28
29
+
30
+ ### Added
31
+ - `exports` field in `lib/package.json` for `@agentsys/lib` module resolution
32
+ - Inline pipeline steps in each command panel on website
33
+ - Dynamic How It Works tab system for all 20 commands on website
34
+
35
+ ### Fixed
36
+ - Code-point safe `truncate()` to prevent surrogate pair corruption across all truncation sites
37
+ - agnix stats updated to current counts (385 rules, 102 auto-fix, 36 categories)
38
+ - Site: command tab wrapping, skills grouping, How It Works rendering
39
+
40
+ ### Changed
41
+ - Bumped repo-intel marketplace version to 0.2.0
42
+ - Synced agnix rule count 342 -> 385
43
+
12
44
  ## [5.8.0] - 2026-03-25
13
45
 
14
46
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentsys",
3
- "version": "5.8.1",
3
+ "version": "5.8.3",
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.8.1",
8
+ "version": "5.8.3",
9
9
  "author": "Avi Fenesh",
10
10
  "author_url": "https://github.com/avifenesh"
11
11
  },