Skip to content

Commit 9de3795

Browse files
committed
v5.5.0 - onboard, can-i-help, git-map plugins + 100-repo validation
1 parent 9751498 commit 9de3795

7 files changed

Lines changed: 15 additions & 10 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "agentsys",
33
"description": "18 specialized plugins for AI workflow automation - task orchestration, PR workflow, slop detection, code review, drift detection, enhancement analysis, documentation sync, repo mapping, git intelligence, 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.4.1",
4+
"version": "5.5.0",
55
"owner": {
66
"name": "Avi Fenesh",
77
"url": "https://github.com/avifenesh"

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "agentsys",
3-
"version": "5.4.1",
3+
"version": "5.5.0",
44
"description": "Professional-grade slash commands for Claude Code with cross-platform support",
55
"keywords": [
66
"workflow",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "agentsys",
3-
"version": "5.4.1",
3+
"version": "5.5.0",
44
"description": "A modular runtime and orchestration system for AI agents - works with Claude Code, OpenCode, and Codex CLI",
55
"main": "lib/platform/detect-platform.js",
66
"type": "commonjs",

scripts/gen-adapters.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,13 @@ function computeAdapters() {
120120
process.exit(1);
121121
}
122122

123-
// --- Kiro adapters ---
123+
// --- Kiro adapters (disabled - Kiro adapter generation removed) ---
124124
const KIRO_PLUGIN_ROOT_PLACEHOLDER = '{{PLUGIN_INSTALL_PATH}}';
125125

126126
// Kiro steering files (from commands)
127-
const kiroSteeringMappings = discovery.getKiroSteeringMappings(ROOT_DIR);
127+
const kiroSteeringMappings = typeof discovery.getKiroSteeringMappings === 'function'
128+
? discovery.getKiroSteeringMappings(ROOT_DIR)
129+
: [];
128130
for (const [steeringName, plugin, sourceFile, description] of kiroSteeringMappings) {
129131
const srcPath = path.join(ROOT_DIR, 'plugins', plugin, 'commands', sourceFile);
130132
if (!fs.existsSync(srcPath)) continue;

scripts/validate-cross-platform-docs.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,11 +251,14 @@ function validateFeatureParity() {
251251
});
252252

253253
// Check that all platforms document all required features
254+
// Features documented in general docs (README.md) count for all platforms
255+
const generalFeatures = featuresByPlatform.general || new Set();
256+
254257
REQUIRED_FEATURES.forEach(feature => {
255258
Object.entries(featuresByPlatform).forEach(([platform, features]) => {
256-
if (platform === 'general') return; // General docs don't need to list all features
259+
if (platform === 'general') return;
257260

258-
if (!features.has(feature)) {
261+
if (!features.has(feature) && !generalFeatures.has(feature)) {
259262
issues.push({
260263
platform,
261264
feature,

site/content.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"url": "https://agent-sh.github.io/agentsys",
66
"repo": "https://github.com/agent-sh/agentsys",
77
"npm": "https://www.npmjs.com/package/agentsys",
8-
"version": "5.4.1",
8+
"version": "5.5.0",
99
"author": "Avi Fenesh",
1010
"author_url": "https://github.com/avifenesh"
1111
},

0 commit comments

Comments
 (0)