agentsys 5.13.2 → 5.13.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": "24 specialized plugins for AI workflow automation - task orchestration, PR workflow, slop detection, code review, drift detection, enhancement analysis, documentation sync, unified static analysis, durable memory, negative behavior memory, skill and system prompt curation, perf investigations, topic research, agent config linting, cross-tool AI consultation, structured AI debate, workflow pattern learning, codebase onboarding, contributor guidance, and Zig language support",
4
- "version": "5.13.2",
4
+ "version": "5.13.3",
5
5
  "owner": {
6
6
  "name": "Avi Fenesh",
7
7
  "url": "https://github.com/avifenesh"
@@ -127,11 +127,11 @@
127
127
  "source": {
128
128
  "source": "url",
129
129
  "url": "https://github.com/agent-sh/skill-curator.git",
130
- "ref": "v1.0.0",
131
- "commit": "e30ebfe3e7a5307e97fa4e6d59f538b12f8074c5"
130
+ "ref": "v1.0.1",
131
+ "commit": "4cca0b7c161710e3fb4f2d0aec477fc7b1e7cc88"
132
132
  },
133
133
  "description": "Canonical guidance for writing, reviewing, and maintaining production-grade SKILL.md files across agent tools",
134
- "version": "1.0.0",
134
+ "version": "1.0.1",
135
135
  "category": "development",
136
136
  "homepage": "https://github.com/agent-sh/skill-curator"
137
137
  },
@@ -140,11 +140,11 @@
140
140
  "source": {
141
141
  "source": "url",
142
142
  "url": "https://github.com/agent-sh/system-prompt-curator.git",
143
- "ref": "v2.0.0",
144
- "commit": "277bee4b8b3b796d2a627132c88fb132479cbde0"
143
+ "ref": "v2.0.1",
144
+ "commit": "1ccf70fef983384a1d025c5882135abe16c32d1f"
145
145
  },
146
146
  "description": "Production-grade system prompt curation for autonomous coding agents and multi-agent orchestration",
147
- "version": "2.0.0",
147
+ "version": "2.0.1",
148
148
  "category": "development",
149
149
  "homepage": "https://github.com/agent-sh/system-prompt-curator"
150
150
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentsys",
3
- "version": "5.13.2",
3
+ "version": "5.13.3",
4
4
  "description": "Professional-grade slash commands for Claude Code with cross-platform support",
5
5
  "keywords": [
6
6
  "workflow",
package/CHANGELOG.md CHANGED
@@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
 
10
10
  ## [Unreleased]
11
11
 
12
+ ## [5.13.3] - 2026-05-17
13
+
14
+ ### Fixed
15
+ - Updated the enhance skill analyzer to accept string-parsed `disable-model-invocation: true` metadata.
16
+
17
+ ### Changed
18
+ - Updated `skill-curator` to `v1.0.1` and `system-prompt-curator` to `v2.0.1` so AgentSys consumes the hardened releases.
19
+
12
20
  ## [5.13.2] - 2026-05-17
13
21
 
14
22
  ### Changed
@@ -76,7 +76,11 @@ const skillPatterns = {
76
76
  (content && p.test(content));
77
77
  });
78
78
 
79
- if (hasSideEffects && frontmatter['disable-model-invocation'] !== true) {
79
+ const disableModelInvocation = frontmatter['disable-model-invocation'];
80
+ const isManualOnly = disableModelInvocation === true ||
81
+ (typeof disableModelInvocation === 'string' && disableModelInvocation.toLowerCase() === 'true');
82
+
83
+ if (hasSideEffects && !isManualOnly) {
80
84
  return {
81
85
  issue: 'Skill with side effects should have disable-model-invocation: true',
82
86
  fix: 'Add "disable-model-invocation: true" to frontmatter for manual-only invocation'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentsys",
3
- "version": "5.13.2",
3
+ "version": "5.13.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.13.2",
8
+ "version": "5.13.3",
9
9
  "author": "Avi Fenesh",
10
10
  "author_url": "https://github.com/avifenesh"
11
11
  },