agentsys 5.8.1 → 5.8.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": "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.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.8.1",
3
+ "version": "5.8.2",
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,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
 
10
10
  ## [Unreleased]
11
11
 
12
+ ## [5.8.2] - 2026-04-11
13
+
14
+ ### Added
15
+ - Codex CLI plugin manifest (`.codex-plugin/plugin.json`) for native Codex discovery
16
+
17
+ ### Fixed
18
+ - Flaky stale items test - use >= 99 threshold for date boundary tolerance
19
+
20
+ ## [5.8.1] - 2026-03-28
21
+
22
+ ### Added
23
+ - `exports` field in `lib/package.json` for `@agentsys/lib` module resolution
24
+ - Inline pipeline steps in each command panel on website
25
+ - Dynamic How It Works tab system for all 20 commands on website
26
+
27
+ ### Fixed
28
+ - Code-point safe `truncate()` to prevent surrogate pair corruption across all truncation sites
29
+ - agnix stats updated to current counts (385 rules, 102 auto-fix, 36 categories)
30
+ - Site: command tab wrapping, skills grouping, How It Works rendering
31
+
32
+ ### Changed
33
+ - Bumped repo-intel marketplace version to 0.2.0
34
+ - Synced agnix rule count 342 -> 385
35
+
12
36
  ## [5.8.0] - 2026-03-25
13
37
 
14
38
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentsys",
3
- "version": "5.8.1",
3
+ "version": "5.8.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.8.1",
8
+ "version": "5.8.2",
9
9
  "author": "Avi Fenesh",
10
10
  "author_url": "https://github.com/avifenesh"
11
11
  },