agentsys 5.4.1 → 5.6.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 +36 -3
- package/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +11 -0
- package/README.md +187 -17
- package/lib/adapter-transforms.js +1 -366
- package/lib/binary/index.js +398 -0
- package/lib/binary/version.js +16 -0
- package/lib/collectors/git.js +139 -0
- package/lib/collectors/index.js +10 -1
- package/lib/cross-platform/index.js +3 -13
- package/lib/discovery/index.js +1 -48
- package/lib/index.js +2 -0
- package/lib/patterns/cli-enhancers.js +2 -11
- package/lib/platform/state-dir.js +2 -16
- package/package.json +1 -1
- package/scripts/gen-adapters.js +4 -2
- package/scripts/generate-docs.js +122 -31
- package/scripts/validate-counts.js +1 -1
- package/scripts/validate-cross-platform-docs.js +5 -2
- package/site/content.json +76 -51
package/site/content.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"meta": {
|
|
3
3
|
"title": "agentsys",
|
|
4
|
-
"description": "A modular runtime and orchestration system for AI agents.
|
|
4
|
+
"description": "A modular runtime and orchestration system for AI agents. 19 plugins, 38 agents, 39 skills - structured pipelines for Claude Code, OpenCode, and Codex CLI.",
|
|
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.4
|
|
8
|
+
"version": "5.6.4",
|
|
9
9
|
"author": "Avi Fenesh",
|
|
10
10
|
"author_url": "https://github.com/avifenesh"
|
|
11
11
|
},
|
|
12
12
|
"hero": {
|
|
13
13
|
"title": "A modular runtime and orchestration system for AI agents",
|
|
14
|
-
"subtitle": "AI models can write code. That's not the hard part anymore. The hard part is everything around it
|
|
14
|
+
"subtitle": "AI models can write code. That's not the hard part anymore. The hard part is everything around it - task selection, branch management, code review, artifact cleanup, CI, deployment. AgentSys is the runtime that orchestrates agents to handle all of it.",
|
|
15
15
|
"cta_primary": {
|
|
16
16
|
"text": "Get Started",
|
|
17
17
|
"url": "#installation"
|
|
@@ -23,17 +23,17 @@
|
|
|
23
23
|
},
|
|
24
24
|
"stats": [
|
|
25
25
|
{
|
|
26
|
-
"value": "
|
|
26
|
+
"value": "19",
|
|
27
27
|
"label": "Plugins",
|
|
28
28
|
"suffix": ""
|
|
29
29
|
},
|
|
30
30
|
{
|
|
31
|
-
"value": "
|
|
31
|
+
"value": "38",
|
|
32
32
|
"label": "Agents",
|
|
33
33
|
"suffix": ""
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
|
-
"value": "
|
|
36
|
+
"value": "39",
|
|
37
37
|
"label": "Skills",
|
|
38
38
|
"suffix": ""
|
|
39
39
|
},
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"suffix": ""
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
|
-
"value": "3,
|
|
46
|
+
"value": "3,575",
|
|
47
47
|
"label": "Tests",
|
|
48
48
|
"suffix": ""
|
|
49
49
|
},
|
|
@@ -57,18 +57,18 @@
|
|
|
57
57
|
"title": "The bottleneck isn't code generation",
|
|
58
58
|
"description": "Frontier models write good code. That's solved. What's not solved is context management, compaction amnesia, task drift, skipped steps, token waste, babysitting, and repetitive requests. You shouldn't have to orchestrate each phase manually, every single session.",
|
|
59
59
|
"points": [
|
|
60
|
-
"Context management
|
|
61
|
-
"Compaction amnesia
|
|
62
|
-
"Task drift
|
|
63
|
-
"Skipped steps
|
|
64
|
-
"Token waste
|
|
65
|
-
"Babysitting
|
|
66
|
-
"Repetitive requests
|
|
60
|
+
"Context management - models forget what they're doing mid-session",
|
|
61
|
+
"Compaction amnesia - long sessions get summarized, losing critical state",
|
|
62
|
+
"Task drift - without structure, agents wander from the actual goal",
|
|
63
|
+
"Skipped steps - agents skip reviews, tests, or cleanup when not enforced",
|
|
64
|
+
"Token waste - using LLM calls for work that static analysis can do faster",
|
|
65
|
+
"Babysitting - manually orchestrating each phase of development",
|
|
66
|
+
"Repetitive requests - asking for the same workflow every single session"
|
|
67
67
|
]
|
|
68
68
|
},
|
|
69
69
|
"approach": {
|
|
70
70
|
"title": "Code does code work. AI does AI work.",
|
|
71
|
-
"description": "Detection uses regex, AST analysis, and static analysis
|
|
71
|
+
"description": "Detection uses regex, AST analysis, and static analysis - fast, deterministic, no tokens wasted. Judgment uses LLM calls for synthesis, planning, and review - where reasoning matters. Result: 77% fewer tokens for drift-detect vs multi-agent approaches.",
|
|
72
72
|
"certainty_levels": [
|
|
73
73
|
{
|
|
74
74
|
"level": "HIGH",
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
{
|
|
99
99
|
"name": "/agnix",
|
|
100
100
|
"tagline": "Lint agent configs before they break",
|
|
101
|
-
"description": "
|
|
101
|
+
"description": "342 validation rules (102 auto-fixable) for Skills, Memory, Hooks, MCP, and Plugins across 10+ AI tools including Claude Code, Cursor, GitHub Copilot, Codex CLI, OpenCode, Gemini CLI, Cline, Windsurf, Roo Code, and Amp. SARIF output for GitHub Code Scanning.",
|
|
102
102
|
"example": "/agnix --fix",
|
|
103
103
|
"category": "linting"
|
|
104
104
|
},
|
|
@@ -185,6 +185,41 @@
|
|
|
185
185
|
"description": "Navigate, authenticate, and interact with web pages via headless Playwright. Persistent encrypted sessions, human-in-the-loop auth handoff with CAPTCHA detection, and anti-bot measures.",
|
|
186
186
|
"example": "/web-ctl browse https://example.com",
|
|
187
187
|
"category": "maintenance"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"name": "/release",
|
|
191
|
+
"tagline": "Versioned release with ecosystem detection",
|
|
192
|
+
"description": "Discovers how your repo releases before executing. Checks for semantic-release, release-it, goreleaser, changesets, cargo-release, then falls back to generic tag-and-publish. Supports 12+ ecosystems.",
|
|
193
|
+
"example": "/release minor",
|
|
194
|
+
"category": "workflow"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"name": "/skillers",
|
|
198
|
+
"tagline": "Learn from your workflow patterns",
|
|
199
|
+
"description": "Reads Claude Code conversation transcripts, identifies recurring patterns, clusters them into weighted themes, and suggests skills, hooks, or agents to automate them. No per-turn overhead.",
|
|
200
|
+
"example": "/skillers compact",
|
|
201
|
+
"category": "learning"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"name": "/git-map",
|
|
205
|
+
"tagline": "Git history intelligence for AI agents",
|
|
206
|
+
"description": "21 queries backed by a Rust binary: hotspots, coupling, ownership, bus factor, bugspots, area health, AI detection, test gaps, doc drift, and more. Cached, incrementally updatable. 9 plugins consume the data automatically.",
|
|
207
|
+
"example": "/git-map query hotspots",
|
|
208
|
+
"category": "analysis"
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"name": "/onboard",
|
|
212
|
+
"tagline": "Oriented in any codebase in 3 minutes",
|
|
213
|
+
"description": "Pure JS collector pre-structures project data (68ms median, 74% token savings vs manual), then Opus synthesizes a guided tour. Validated on 100 repos across 8 languages. Supports 12 manifest types and monorepo detection.",
|
|
214
|
+
"example": "/onboard",
|
|
215
|
+
"category": "learning"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"name": "/can-i-help",
|
|
219
|
+
"tagline": "Match contributor skills to project needs",
|
|
220
|
+
"description": "Collects 5 contributor signals (good-first areas, test gaps, doc drift, bugspots, open issues), asks about developer background, then recommends specific areas with concrete first steps.",
|
|
221
|
+
"example": "/can-i-help",
|
|
222
|
+
"category": "learning"
|
|
188
223
|
}
|
|
189
224
|
],
|
|
190
225
|
"philosophy": [
|
|
@@ -194,7 +229,7 @@
|
|
|
194
229
|
},
|
|
195
230
|
{
|
|
196
231
|
"title": "Pipeline with gates, not a monolith",
|
|
197
|
-
"description": "Same principle as DevOps. Each step must pass before the next begins. Can't push before review. Can't merge before CI passes. Hooks enforce this
|
|
232
|
+
"description": "Same principle as DevOps. Each step must pass before the next begins. Can't push before review. Can't merge before CI passes. Hooks enforce this - agents cannot skip phases."
|
|
198
233
|
},
|
|
199
234
|
{
|
|
200
235
|
"title": "Tools do tool work, agents do agent work",
|
|
@@ -202,7 +237,7 @@
|
|
|
202
237
|
},
|
|
203
238
|
{
|
|
204
239
|
"title": "Right model for the task",
|
|
205
|
-
"description": "Opus for complex reasoning and analysis. Sonnet for pattern matching and validation. Haiku for mechanical execution. Quality compounds
|
|
240
|
+
"description": "Opus for complex reasoning and analysis. Sonnet for pattern matching and validation. Haiku for mechanical execution. Quality compounds - early phases deserve the best model."
|
|
206
241
|
},
|
|
207
242
|
{
|
|
208
243
|
"title": "Validate plan and results, not every step",
|
|
@@ -255,16 +290,6 @@
|
|
|
255
290
|
"name": "Codex CLI",
|
|
256
291
|
"prefix": "$",
|
|
257
292
|
"state_dir": "~/.codex/"
|
|
258
|
-
},
|
|
259
|
-
"cursor": {
|
|
260
|
-
"name": "Cursor",
|
|
261
|
-
"prefix": "/",
|
|
262
|
-
"state_dir": ".cursor/"
|
|
263
|
-
},
|
|
264
|
-
"kiro": {
|
|
265
|
-
"name": "Kiro",
|
|
266
|
-
"prefix": "steering",
|
|
267
|
-
"state_dir": "~/.kiro/"
|
|
268
293
|
}
|
|
269
294
|
}
|
|
270
295
|
},
|
|
@@ -277,7 +302,7 @@
|
|
|
277
302
|
{
|
|
278
303
|
"step": 2,
|
|
279
304
|
"name": "Task Discovery",
|
|
280
|
-
"description": "Shows top 5 prioritized tasks
|
|
305
|
+
"description": "Shows top 5 prioritized tasks - you pick one"
|
|
281
306
|
},
|
|
282
307
|
{
|
|
283
308
|
"step": 3,
|
|
@@ -331,8 +356,8 @@
|
|
|
331
356
|
}
|
|
332
357
|
],
|
|
333
358
|
"agents": {
|
|
334
|
-
"total":
|
|
335
|
-
"file_based":
|
|
359
|
+
"total": 38,
|
|
360
|
+
"file_based": 28,
|
|
336
361
|
"role_based": 10,
|
|
337
362
|
"by_model": [
|
|
338
363
|
{
|
|
@@ -370,21 +395,30 @@
|
|
|
370
395
|
},
|
|
371
396
|
"recent_releases": [
|
|
372
397
|
{
|
|
373
|
-
"version": "5.
|
|
374
|
-
"date": "2026-03-
|
|
398
|
+
"version": "5.6.0",
|
|
399
|
+
"date": "2026-03-16",
|
|
375
400
|
"highlights": [
|
|
376
|
-
"
|
|
377
|
-
"
|
|
378
|
-
"
|
|
379
|
-
"
|
|
401
|
+
"New /onboard plugin - codebase orientation in 3 minutes, 74% token savings, validated on 100 repos",
|
|
402
|
+
"New /can-i-help plugin - contributor guidance with 5 data-backed signals",
|
|
403
|
+
"New /git-map plugin - 21 git history queries backed by Rust binary",
|
|
404
|
+
"15 plugin READMEs written or upgraded, agent-analyzer v0.2.0 query tuning"
|
|
405
|
+
]
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"version": "5.4.0",
|
|
409
|
+
"date": "2026-03-10",
|
|
410
|
+
"highlights": [
|
|
411
|
+
"Agent-analyzer Phase 1 - git intelligence with 21 queries",
|
|
412
|
+
"Repo-intel integration across 11 plugins",
|
|
413
|
+
"agnix v0.16.0 - 342 validation rules"
|
|
380
414
|
]
|
|
381
415
|
},
|
|
382
416
|
{
|
|
383
417
|
"version": "5.2.0",
|
|
384
418
|
"date": "2026-02-28",
|
|
385
419
|
"highlights": [
|
|
386
|
-
"New /consult plugin
|
|
387
|
-
"New /debate plugin
|
|
420
|
+
"New /consult plugin - cross-tool AI consultation",
|
|
421
|
+
"New /debate plugin - structured adversarial debates between AI tools",
|
|
388
422
|
"User-extensible provider registry for 6 AI tools"
|
|
389
423
|
]
|
|
390
424
|
},
|
|
@@ -392,18 +426,9 @@
|
|
|
392
426
|
"version": "5.0.0",
|
|
393
427
|
"date": "2026-02-20",
|
|
394
428
|
"highlights": [
|
|
395
|
-
"New /web-ctl plugin
|
|
429
|
+
"New /web-ctl plugin - browser automation with encrypted session persistence",
|
|
396
430
|
"Human-in-the-loop auth handoff with CAPTCHA detection",
|
|
397
|
-
"
|
|
398
|
-
]
|
|
399
|
-
},
|
|
400
|
-
{
|
|
401
|
-
"version": "4.1.0",
|
|
402
|
-
"date": "2026-02-05",
|
|
403
|
-
"highlights": [
|
|
404
|
-
"New /agnix plugin -- lint agent configurations with 230+ validation rules",
|
|
405
|
-
"SARIF output for GitHub Code Scanning integration",
|
|
406
|
-
"Cross-platform validation for 10+ AI tools"
|
|
431
|
+
"Multi-platform support: Claude Code, OpenCode, Codex CLI"
|
|
407
432
|
]
|
|
408
433
|
}
|
|
409
434
|
],
|
|
@@ -463,7 +488,7 @@
|
|
|
463
488
|
],
|
|
464
489
|
"research": {
|
|
465
490
|
"knowledge_base": "8,000 lines of curated documentation from Anthropic, OpenAI, Google, and Microsoft",
|
|
466
|
-
"testing": "3,
|
|
491
|
+
"testing": "3,575 tests passing",
|
|
467
492
|
"drift_detect_repos": "1,000+ repositories validated",
|
|
468
493
|
"token_reduction": "77% fewer tokens for drift-detect vs multi-agent approaches"
|
|
469
494
|
},
|