agentsys 5.3.6 → 5.4.0
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/.agnix.toml +17 -7
- package/.claude-plugin/marketplace.json +13 -2
- package/.claude-plugin/plugin.json +1 -1
- package/.gitmodules +3 -0
- package/AGENTS.md +4 -4
- package/CHANGELOG.md +28 -0
- package/README.md +46 -5
- package/lib/adapter-transforms.js +3 -1
- package/package.json +1 -1
- package/site/assets/css/main.css +39 -1
- package/site/assets/js/main.js +24 -0
- package/site/content.json +26 -25
- package/site/index.html +90 -15
- package/site/ux-spec.md +9 -9
- package/agent-knowledge/AGENTS.md +0 -231
- package/agent-knowledge/acp-with-codex-gemini-copilot-claude.md +0 -504
- package/agent-knowledge/ai-cli-advanced-integration-patterns.md +0 -670
- package/agent-knowledge/ai-cli-non-interactive-programmatic-usage.md +0 -1394
- package/agent-knowledge/all-in-one-plus-modular-packages.md +0 -576
- package/agent-knowledge/cli-browser-automation-agents.md +0 -936
- package/agent-knowledge/github-org-project-management.md +0 -319
- package/agent-knowledge/github-org-structure-patterns.md +0 -268
- package/agent-knowledge/kiro-supervised-autopilot.md +0 -400
- package/agent-knowledge/multi-product-org-docs.md +0 -622
- package/agent-knowledge/oss-org-naming-patterns.md +0 -368
- package/agent-knowledge/resources/acp-with-codex-gemini-copilot-claude-sources.json +0 -408
- package/agent-knowledge/resources/ai-cli-non-interactive-programmatic-usage-sources.json +0 -500
- package/agent-knowledge/resources/all-in-one-plus-modular-packages-sources.json +0 -310
- package/agent-knowledge/resources/cli-browser-automation-agents-sources.json +0 -428
- package/agent-knowledge/resources/github-org-project-management-sources.json +0 -239
- package/agent-knowledge/resources/github-org-structure-patterns-sources.json +0 -293
- package/agent-knowledge/resources/kiro-supervised-autopilot-sources.json +0 -135
- package/agent-knowledge/resources/multi-product-org-docs-sources.json +0 -514
- package/agent-knowledge/resources/oss-org-naming-patterns-sources.json +0 -458
- package/agent-knowledge/resources/skill-plugin-distribution-patterns-sources.json +0 -290
- package/agent-knowledge/resources/terminal-browsers-agent-automation-sources.json +0 -758
- package/agent-knowledge/resources/web-session-persistence-cli-agents-sources.json +0 -528
- package/agent-knowledge/skill-plugin-distribution-patterns.md +0 -661
- package/agent-knowledge/terminal-browsers-agent-automation.md +0 -776
- package/agent-knowledge/web-session-persistence-cli-agents.md +0 -1352
package/.agnix.toml
CHANGED
|
@@ -25,23 +25,33 @@ mcp = true
|
|
|
25
25
|
imports = true
|
|
26
26
|
cross_platform = false # Intentional - we document all 3 platform paths
|
|
27
27
|
agents_md = true
|
|
28
|
-
|
|
29
|
-
cursor = false # Not targeting Cursor
|
|
28
|
+
kiro_agents = false # Kiro agent copies reference agentsys subagents not resolvable from .kiro/
|
|
30
29
|
prompt_engineering = true
|
|
31
30
|
generic_instructions = true
|
|
32
31
|
frontmatter_validation = true
|
|
33
32
|
xml_balance = true
|
|
34
33
|
import_references = true
|
|
35
34
|
disabled_rules = [
|
|
36
|
-
"
|
|
35
|
+
"AGM-003", # docs/reference/AGENTS.md is a comprehensive reference doc
|
|
36
|
+
"AGM-005", # Cursor platform examples are reference content in AGENTS.md
|
|
37
|
+
"AGM-006", # Intentional - root AGENTS.md (instructions) + docs/reference/AGENTS.md (reference)
|
|
38
|
+
"AS-012", # enhance-hooks is a comprehensive hook reference (needs >500 lines)
|
|
37
39
|
"AS-014", # False positives on regex escape sequences (\n, \s, \d)
|
|
38
40
|
"CC-AG-009", # False positive - Skill, AskUserQuestion, LSP are valid Claude Code tools
|
|
41
|
+
"CC-HK-008", # Hook script path resolution differs on Windows (forward slash prefix)
|
|
42
|
+
"CC-MEM-005", # "Be concise" is ecosystem-wide boilerplate
|
|
43
|
+
"CC-MEM-006", # Negative instructions (NEVER/Do not) are ecosystem standard critical rules
|
|
39
44
|
"CC-MEM-009", # Intentional - CLAUDE.md uses structured sections, size is necessary
|
|
40
|
-
"AGM-006", # Intentional - root AGENTS.md (instructions) + docs/reference/AGENTS.md (reference)
|
|
41
|
-
"AGM-003", # docs/reference/AGENTS.md is a comprehensive reference doc
|
|
42
|
-
"PE-001", # Reference docs have structured layout; middle placement is intentional
|
|
43
|
-
"AS-012", # enhance-hooks is a comprehensive hook reference (needs >500 lines)
|
|
44
45
|
"CC-SK-009", # enhance-skills contains example injections for teaching purposes
|
|
46
|
+
"CC-SK-012", # Intentional - argument-hint present for UI display
|
|
47
|
+
"CC-SK-017", # Intentional - version is a client-specific frontmatter field
|
|
48
|
+
"CDX-AG-002", # False positive - "tokens" in ecosystem boilerplate is not a secret
|
|
49
|
+
"CDX-AG-005", # Codex agent instruction format - AGENTS.md uses agentsys conventions
|
|
50
|
+
"KR-SK-001", # Kiro skill copies use Claude Code frontmatter fields (version, argument-hint)
|
|
51
|
+
"PE-001", # Reference docs have structured layout; middle placement is intentional
|
|
52
|
+
"PE-005", # Same as CC-MEM-005 for prompt engineering rules
|
|
53
|
+
"XML-001", # False positive - <login-url> is a placeholder in examples
|
|
54
|
+
"XP-003", # Intentional - we document all 3 platform paths (.claude/, .opencode/, .codex/)
|
|
45
55
|
]
|
|
46
56
|
|
|
47
57
|
[tool_versions]
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentsys",
|
|
3
|
-
"description": "
|
|
4
|
-
"version": "5.
|
|
3
|
+
"description": "15 specialized plugins for AI workflow automation - task orchestration, PR workflow, slop detection, code review, drift detection, enhancement analysis, documentation sync, repo mapping, perf investigations, topic research, agent config linting, cross-tool AI consultation, structured AI debate, and workflow pattern learning",
|
|
4
|
+
"version": "5.4.0",
|
|
5
5
|
"owner": {
|
|
6
6
|
"name": "Avi Fenesh",
|
|
7
7
|
"url": "https://github.com/avifenesh"
|
|
@@ -175,6 +175,17 @@
|
|
|
175
175
|
"version": "1.0.0",
|
|
176
176
|
"category": "automation",
|
|
177
177
|
"homepage": "https://github.com/agent-sh/web-ctl"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"name": "skillers",
|
|
181
|
+
"source": {
|
|
182
|
+
"source": "url",
|
|
183
|
+
"url": "https://github.com/agent-sh/skillers.git"
|
|
184
|
+
},
|
|
185
|
+
"description": "Learn from workflow patterns across sessions and suggest skills, hooks, and agents to automate repetitive work",
|
|
186
|
+
"version": "1.0.0",
|
|
187
|
+
"category": "productivity",
|
|
188
|
+
"homepage": "https://github.com/agent-sh/skillers"
|
|
178
189
|
}
|
|
179
190
|
]
|
|
180
191
|
}
|
package/.gitmodules
ADDED
package/AGENTS.md
CHANGED
|
@@ -150,12 +150,12 @@ agentsys # Run installer
|
|
|
150
150
|
<agents>
|
|
151
151
|
## Agents
|
|
152
152
|
|
|
153
|
-
|
|
153
|
+
35 agents across 15 plugins. Key agents by model:
|
|
154
154
|
|
|
155
155
|
| Model | Agents | Use Case |
|
|
156
156
|
|-------|--------|----------|
|
|
157
|
-
| **opus** | exploration, planning, implementation, perf-orchestrator | Complex reasoning, analysis |
|
|
158
|
-
| **sonnet** | task-discoverer, delivery-validator, ci-fixer, deslop-agent, reporters | Validation, pattern matching |
|
|
157
|
+
| **opus** | exploration, planning, implementation, perf-orchestrator, debate-orchestrator, skillers-recommender | Complex reasoning, analysis |
|
|
158
|
+
| **sonnet** | task-discoverer, delivery-validator, ci-fixer, deslop-agent, reporters, learn, release-agent, skillers-compactor | Validation, pattern matching |
|
|
159
159
|
| **haiku** | worktree-manager, ci-monitor, simple-fixer | Mechanical execution |
|
|
160
160
|
|
|
161
161
|
See [README.md](./README.md#command-details) and [docs/reference/AGENTS.md](./docs/reference/AGENTS.md) for full agent list.
|
|
@@ -164,7 +164,7 @@ See [README.md](./README.md#command-details) and [docs/reference/AGENTS.md](./do
|
|
|
164
164
|
<skills>
|
|
165
165
|
## Skills
|
|
166
166
|
|
|
167
|
-
|
|
167
|
+
32 skills across plugins. Agents invoke skills for reusable implementation.
|
|
168
168
|
|
|
169
169
|
| Category | Key Skills |
|
|
170
170
|
|----------|------------|
|
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,34 @@ All notable changes to this project will be documented in this file.
|
|
|
7
7
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
8
8
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
9
9
|
|
|
10
|
+
## [5.4.0] - 2026-03-10
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **`/release` command** - Discovery-first release workflow that detects how a repo releases before executing. Supports 12+ ecosystems (npm, cargo, python, go, maven, gradle, ruby, nuget, dart, hex, packagist, swift) and 7 release tool configurations (semantic-release, release-it, goreleaser, changesets, cargo-release, lerna, standard-version).
|
|
15
|
+
- **`/skillers` command** - Transcript-based workflow pattern learning. Analyzes Claude Code conversation history, clusters recurring patterns into weighted themes, and suggests skills/hooks/agents to automate repetitive work.
|
|
16
|
+
- **release-agent** (sonnet) - Discovers release method via tool configs, CI workflows, scripts, and manifests before performing the release.
|
|
17
|
+
- **skillers-compactor** (sonnet) - Extracts observations from conversation transcripts and clusters them into knowledge themes.
|
|
18
|
+
- **skillers-recommender** (opus) - Analyzes accumulated knowledge and classifies patterns as hook/skill/agent recommendations.
|
|
19
|
+
- **Agnix CI validation** - All plugins now run agnix lint in CI pipelines.
|
|
20
|
+
- **agent-knowledge submodule** - Research guides available as a git submodule.
|
|
21
|
+
- **Website additions** - How It Works content for consult, debate, web-ctl tabs.
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- **Accurate ecosystem counts** - Stats now show 15 plugins, 35 agents, 32 skills, 3,751 tests, 14 commands. Previously showed inflated/stale counts.
|
|
26
|
+
- **Pinned action SHAs** - Updated to latest stable versions for security.
|
|
27
|
+
- **CodeQL regex** - Fixed inefficient regular expression flagged by code scanning.
|
|
28
|
+
- **Go test fixture** - Added go.mod so CodeQL can analyze Go fixtures.
|
|
29
|
+
- **Website CSS** - Reduced commands section bottom padding, removed inline how-it-works paragraphs.
|
|
30
|
+
|
|
31
|
+
## [5.3.7] - 2026-03-02
|
|
32
|
+
|
|
33
|
+
### Fixed
|
|
34
|
+
|
|
35
|
+
- **Website numbers updated** - Stats now show 14 plugins, 43 agents, 30 skills, 3,750 tests, 13 commands. Previously showed stale counts from earlier versions.
|
|
36
|
+
- **Kiro install TDZ bug** - Fixed `steeringMappingsForCleanup` used before initialization in v5.3.6 published code. Variable ordering corrected.
|
|
37
|
+
|
|
10
38
|
## [5.3.6] - 2026-03-02
|
|
11
39
|
|
|
12
40
|
### Fixed
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
</p>
|
|
22
22
|
|
|
23
23
|
<p align="center">
|
|
24
|
-
<b>
|
|
24
|
+
<b>15 plugins · 35 agents · 32 skills (across all repos) · 30k lines of lib code · 3,751 tests · 5 platforms</b><br>
|
|
25
25
|
<em>Plugins distributed as standalone repos under <a href="https://github.com/agent-sh">agent-sh</a> org — agentsys is the marketplace & installer</em>
|
|
26
26
|
</p>
|
|
27
27
|
|
|
@@ -47,7 +47,7 @@ AI models can write code. That's not the hard part anymore. The hard part is eve
|
|
|
47
47
|
|
|
48
48
|
## What This Is
|
|
49
49
|
|
|
50
|
-
An agent orchestration system —
|
|
50
|
+
An agent orchestration system — 15 plugins, 35 agents, and 32 skills that compose into structured pipelines for software development. Each plugin lives in its own standalone repo under the [agent-sh](https://github.com/agent-sh) org. agentsys is the marketplace and installer that ties them together.
|
|
51
51
|
|
|
52
52
|
Each agent has a single responsibility, a specific model assignment, and defined inputs/outputs. Pipelines enforce phase gates so agents can't skip steps. State persists across sessions so work survives interruptions.
|
|
53
53
|
|
|
@@ -104,8 +104,8 @@ Skills are the reusable implementation units. Agents invoke skills; commands orc
|
|
|
104
104
|
| Section | What's there |
|
|
105
105
|
|---------|--------------|
|
|
106
106
|
| [The Approach](#the-approach) | Why it's built this way |
|
|
107
|
-
| [Commands](#commands) | All
|
|
108
|
-
| [Skills](#skills) |
|
|
107
|
+
| [Commands](#commands) | All 14 commands overview |
|
|
108
|
+
| [Skills](#skills) | 32 skills across plugins |
|
|
109
109
|
| [Command Details](#command-details) | Deep dive into each command |
|
|
110
110
|
| [How Commands Work Together](#how-commands-work-together) | Standalone vs integrated |
|
|
111
111
|
| [Design Philosophy](#design-philosophy) | The thinking behind the architecture |
|
|
@@ -765,6 +765,47 @@ npx playwright install chromium
|
|
|
765
765
|
|
|
766
766
|
**Skills:** web-auth (human-in-the-loop auth), web-browse (headless actions)
|
|
767
767
|
|
|
768
|
+
### /release
|
|
769
|
+
|
|
770
|
+
> Versioned release with automatic ecosystem and tooling detection
|
|
771
|
+
|
|
772
|
+
```bash
|
|
773
|
+
/release # Patch release (auto-discovers how this repo releases)
|
|
774
|
+
/release minor # Minor version bump
|
|
775
|
+
/release major --dry-run # Preview what would happen
|
|
776
|
+
```
|
|
777
|
+
|
|
778
|
+
The release agent discovers how your repo releases before executing:
|
|
779
|
+
|
|
780
|
+
1. **Checks for release tools** - semantic-release, release-it, goreleaser, changesets, cargo-release
|
|
781
|
+
2. **Checks for scripts** - Makefile `release:` target, npm `release` script, `scripts/release.*`
|
|
782
|
+
3. **Falls back to generic** - Version bump, changelog, tag, push, GitHub release, publish
|
|
783
|
+
|
|
784
|
+
Supports 12+ ecosystems: npm, cargo, python, go, maven, gradle, ruby, nuget, dart, hex, packagist, swift.
|
|
785
|
+
|
|
786
|
+
**Agent:** release-agent (sonnet model)
|
|
787
|
+
|
|
788
|
+
**Skill:** release (generic fallback workflow)
|
|
789
|
+
|
|
790
|
+
### /skillers
|
|
791
|
+
|
|
792
|
+
> Learn from your workflow patterns and suggest automations
|
|
793
|
+
|
|
794
|
+
```bash
|
|
795
|
+
/skillers show # Display current config and knowledge stats
|
|
796
|
+
/skillers compact # Analyze recent transcripts, extract patterns
|
|
797
|
+
/skillers compact --days=14 # Analyze older transcripts
|
|
798
|
+
/skillers recommend # Get automation suggestions from accumulated knowledge
|
|
799
|
+
```
|
|
800
|
+
|
|
801
|
+
Reads your Claude Code conversation transcripts, identifies recurring patterns (pain points, repeated workflows, wishes), clusters them into weighted themes, and suggests skills, hooks, or agents to automate them.
|
|
802
|
+
|
|
803
|
+
No per-turn overhead - it reads transcripts that Claude Code already saves.
|
|
804
|
+
|
|
805
|
+
**Agents:** skillers-compactor (sonnet), skillers-recommender (opus)
|
|
806
|
+
|
|
807
|
+
**Skills:** compact, recommend
|
|
808
|
+
|
|
768
809
|
---
|
|
769
810
|
|
|
770
811
|
## How Commands Work Together
|
|
@@ -970,7 +1011,7 @@ The system is built on research, not guesswork.
|
|
|
970
1011
|
- Instruction following reliability
|
|
971
1012
|
|
|
972
1013
|
**Testing:**
|
|
973
|
-
-
|
|
1014
|
+
- 3,751 tests passing
|
|
974
1015
|
- Drift-detect validated on 1,000+ repositories
|
|
975
1016
|
- E2E workflow testing across all commands
|
|
976
1017
|
- Cross-platform validation (Claude Code, OpenCode, Codex CLI, Cursor, Kiro)
|
|
@@ -490,7 +490,9 @@ function transformCommandForKiro(content, options) {
|
|
|
490
490
|
// template literals inside the code as false fence endings.
|
|
491
491
|
content = content.replace(/^```(?:javascript|js)?\n([\s\S]*?)^```$/gm, (fullBlock, codeContent) => {
|
|
492
492
|
if (!codeContent.includes('Promise.all') || !codeContent.includes('Task(')) return fullBlock;
|
|
493
|
-
|
|
493
|
+
// Use lazy [\s\S]*? for the template literal body: it stops at the first backtick and
|
|
494
|
+
// naturally matches any character including standalone $ (e.g. $100, $BUDGET).
|
|
495
|
+
const taskMatches = [...codeContent.matchAll(/Task\s*\(\s*\{[\s\S]*?subagent_type:\s*['"](?:[^"':]+:)?([^'"]+)['"][\s\S]*?prompt:\s*`([\s\S]*?)`/gs)];
|
|
494
496
|
if (taskMatches.length < 2) return fullBlock;
|
|
495
497
|
|
|
496
498
|
const delegations = taskMatches.map(m => {
|
package/package.json
CHANGED
package/site/assets/css/main.css
CHANGED
|
@@ -645,7 +645,7 @@
|
|
|
645
645
|
* COMMANDS SECTION
|
|
646
646
|
* -------------------------------------------------------------------------- */
|
|
647
647
|
.commands {
|
|
648
|
-
padding: var(--space-24) var(--space-6);
|
|
648
|
+
padding: var(--space-24) var(--space-6) var(--space-16);
|
|
649
649
|
}
|
|
650
650
|
|
|
651
651
|
.commands__inner {
|
|
@@ -903,6 +903,44 @@
|
|
|
903
903
|
color: var(--color-text-faint);
|
|
904
904
|
}
|
|
905
905
|
|
|
906
|
+
/* --------------------------------------------------------------------------
|
|
907
|
+
* SCROLL CUE
|
|
908
|
+
* -------------------------------------------------------------------------- */
|
|
909
|
+
.scroll-cue {
|
|
910
|
+
text-align: center;
|
|
911
|
+
padding: var(--space-8) 0 var(--space-4);
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
.scroll-cue__link {
|
|
915
|
+
display: inline-flex;
|
|
916
|
+
flex-direction: column;
|
|
917
|
+
align-items: center;
|
|
918
|
+
gap: var(--space-2);
|
|
919
|
+
color: var(--color-text-tertiary);
|
|
920
|
+
text-decoration: none;
|
|
921
|
+
transition: color 0.2s ease;
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
.scroll-cue__link:hover {
|
|
925
|
+
color: var(--color-text-primary);
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
.scroll-cue__text {
|
|
929
|
+
font-size: var(--text-sm);
|
|
930
|
+
font-weight: 500;
|
|
931
|
+
letter-spacing: 0.05em;
|
|
932
|
+
text-transform: uppercase;
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
.scroll-cue__arrow {
|
|
936
|
+
animation: scroll-bounce 2s ease-in-out infinite;
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
@keyframes scroll-bounce {
|
|
940
|
+
0%, 100% { transform: translateY(0); }
|
|
941
|
+
50% { transform: translateY(6px); }
|
|
942
|
+
}
|
|
943
|
+
|
|
906
944
|
/* --------------------------------------------------------------------------
|
|
907
945
|
* HOW IT WORKS
|
|
908
946
|
* -------------------------------------------------------------------------- */
|
package/site/assets/js/main.js
CHANGED
|
@@ -658,6 +658,30 @@
|
|
|
658
658
|
{ title: 'Score sources', desc: 'Each source is scored by quality, relevance, and authority. Low-quality sources are filtered out.' },
|
|
659
659
|
{ title: 'Create guide', desc: 'Synthesizes a structured learning guide with RAG-optimized index saved for future agent lookups.' }
|
|
660
660
|
]
|
|
661
|
+
},
|
|
662
|
+
11: {
|
|
663
|
+
subtitle: 'Ask another AI. Get a second opinion.',
|
|
664
|
+
steps: [
|
|
665
|
+
{ title: 'Detect tools', desc: 'Finds which AI CLI tools are installed on your system. Picks the right model and flags for your effort level.' },
|
|
666
|
+
{ title: 'Run consultation', desc: 'Spawns the tool via ACP (JSON-RPC 2.0 over stdio) or CLI with safe-mode defaults and a 240s timeout.' },
|
|
667
|
+
{ title: 'Return response', desc: 'Parses output, redacts secrets (Shannon entropy > 4.0), and returns the response. Supports session continuations.' }
|
|
668
|
+
]
|
|
669
|
+
},
|
|
670
|
+
12: {
|
|
671
|
+
subtitle: 'Two AIs argue. You get the truth.',
|
|
672
|
+
steps: [
|
|
673
|
+
{ title: 'Set up debate', desc: 'Parses natural language to identify proposer, challenger, topic, rounds, and effort level.' },
|
|
674
|
+
{ title: 'Run rounds', desc: 'Proposer builds a case with evidence. Challenger responds with counterpoints. Each round refines the arguments.' },
|
|
675
|
+
{ title: 'Deliver verdict', desc: 'The orchestrator synthesizes all rounds and picks a winner with reasoning and actionable takeaways.' }
|
|
676
|
+
]
|
|
677
|
+
},
|
|
678
|
+
13: {
|
|
679
|
+
subtitle: 'Browser automation. Encrypted sessions.',
|
|
680
|
+
steps: [
|
|
681
|
+
{ title: 'Start session', desc: 'Creates an encrypted browser profile using AES-256-GCM. No daemon - each action is a single Playwright process.' },
|
|
682
|
+
{ title: 'Authenticate', desc: 'Opens headed Chrome for human login (2FA, CAPTCHAs). Polls for success, then encrypts cookies for reuse.' },
|
|
683
|
+
{ title: 'Run headless', desc: 'Subsequent actions run headless using saved cookies. Snapshot-based element discovery with classified error codes.' }
|
|
684
|
+
]
|
|
661
685
|
}
|
|
662
686
|
};
|
|
663
687
|
|
package/site/content.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
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. 15 plugins, 35 agents, 32 skills - structured pipelines for Claude Code, OpenCode, Codex CLI, Cursor, and Kiro.",
|
|
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
|
+
"version": "5.4.0",
|
|
9
9
|
"author": "Avi Fenesh",
|
|
10
10
|
"author_url": "https://github.com/avifenesh"
|
|
11
11
|
},
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
"suffix": ""
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
|
-
"value": "
|
|
41
|
+
"value": "30k",
|
|
42
42
|
"label": "Lines of Lib Code",
|
|
43
43
|
"suffix": ""
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
|
-
"value": "3,
|
|
46
|
+
"value": "3,751",
|
|
47
47
|
"label": "Tests",
|
|
48
48
|
"suffix": ""
|
|
49
49
|
},
|
|
@@ -370,39 +370,40 @@
|
|
|
370
370
|
},
|
|
371
371
|
"recent_releases": [
|
|
372
372
|
{
|
|
373
|
-
"version": "
|
|
374
|
-
"date": "2026-02
|
|
373
|
+
"version": "5.3.7",
|
|
374
|
+
"date": "2026-03-02",
|
|
375
375
|
"highlights": [
|
|
376
|
-
"
|
|
377
|
-
"
|
|
378
|
-
"
|
|
376
|
+
"Kiro platform support -- global install to ~/.kiro/ with agents, prompts, and skills",
|
|
377
|
+
"ACP (Agent Client Protocol) transport for /consult and /debate",
|
|
378
|
+
"Combined reviewer agents for Kiro's 4-agent limit",
|
|
379
|
+
"Cursor global install to ~/.cursor/"
|
|
379
380
|
]
|
|
380
381
|
},
|
|
381
382
|
{
|
|
382
|
-
"version": "
|
|
383
|
-
"date": "2026-02-
|
|
383
|
+
"version": "5.2.0",
|
|
384
|
+
"date": "2026-02-28",
|
|
384
385
|
"highlights": [
|
|
385
|
-
"New /
|
|
386
|
-
"
|
|
387
|
-
"
|
|
386
|
+
"New /consult plugin -- cross-tool AI consultation via ACP and CLI transports",
|
|
387
|
+
"New /debate plugin -- structured adversarial debates between AI tools",
|
|
388
|
+
"User-extensible provider registry for 6 AI tools"
|
|
388
389
|
]
|
|
389
390
|
},
|
|
390
391
|
{
|
|
391
|
-
"version": "
|
|
392
|
-
"date": "2026-02-
|
|
392
|
+
"version": "5.0.0",
|
|
393
|
+
"date": "2026-02-20",
|
|
393
394
|
"highlights": [
|
|
394
|
-
"
|
|
395
|
-
"
|
|
396
|
-
"
|
|
395
|
+
"New /web-ctl plugin -- browser automation with encrypted session persistence",
|
|
396
|
+
"Human-in-the-loop auth handoff with CAPTCHA detection",
|
|
397
|
+
"5 platform support: Claude Code, OpenCode, Codex CLI, Cursor, Kiro"
|
|
397
398
|
]
|
|
398
399
|
},
|
|
399
400
|
{
|
|
400
|
-
"version": "
|
|
401
|
-
"date": "2026-02-
|
|
401
|
+
"version": "4.1.0",
|
|
402
|
+
"date": "2026-02-05",
|
|
402
403
|
"highlights": [
|
|
403
|
-
"
|
|
404
|
-
"
|
|
405
|
-
"
|
|
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"
|
|
406
407
|
]
|
|
407
408
|
}
|
|
408
409
|
],
|
|
@@ -462,7 +463,7 @@
|
|
|
462
463
|
],
|
|
463
464
|
"research": {
|
|
464
465
|
"knowledge_base": "8,000 lines of curated documentation from Anthropic, OpenAI, Google, and Microsoft",
|
|
465
|
-
"testing": "3,
|
|
466
|
+
"testing": "3,751 tests passing",
|
|
466
467
|
"drift_detect_repos": "1,000+ repositories validated",
|
|
467
468
|
"token_reduction": "77% fewer tokens for drift-detect vs multi-agent approaches"
|
|
468
469
|
},
|