agentsys 5.8.3 → 5.8.5
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 +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/.kiro/agents/worktree-manager.json +1 -1
- package/.kiro/skills/discover-tasks/SKILL.md +3 -3
- package/.kiro/skills/web-auth/SKILL.md +16 -16
- package/.kiro/skills/web-browse/SKILL.md +60 -60
- package/CHANGELOG.md +23 -0
- package/README.md +23 -21
- package/lib/state/workflow-state.js +217 -28
- package/package.json +4 -4
- package/scripts/generate-docs.js +33 -5
- package/scripts/setup-hooks.js +0 -14
- package/site/content.json +40 -14
- package/site/index.html +23 -20
- package/site/ux-spec.md +9 -9
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. 19 plugins,
|
|
4
|
+
"description": "A modular runtime and orchestration system for AI agents. 19 plugins, 49 agents, 41 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.
|
|
8
|
+
"version": "5.8.5",
|
|
9
9
|
"author": "Avi Fenesh",
|
|
10
10
|
"author_url": "https://github.com/avifenesh"
|
|
11
11
|
},
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"suffix": ""
|
|
29
29
|
},
|
|
30
30
|
{
|
|
31
|
-
"value": "
|
|
31
|
+
"value": "49",
|
|
32
32
|
"label": "Agents",
|
|
33
33
|
"suffix": ""
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
|
-
"value": "
|
|
36
|
+
"value": "41",
|
|
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,507",
|
|
47
47
|
"label": "Tests",
|
|
48
48
|
"suffix": ""
|
|
49
49
|
},
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
{
|
|
113
113
|
"name": "/agnix",
|
|
114
114
|
"tagline": "Lint agent configs before they break",
|
|
115
|
-
"description": "
|
|
115
|
+
"description": "399 validation rules (126 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.",
|
|
116
116
|
"example": "/agnix --fix",
|
|
117
117
|
"category": "linting"
|
|
118
118
|
},
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
{
|
|
155
155
|
"name": "/enhance",
|
|
156
156
|
"tagline": "Analyze everything that shapes agent behavior",
|
|
157
|
-
"description": "
|
|
157
|
+
"description": "Eight parallel analyzers check your prompts, agents, plugins, docs, hooks, and skills. Certainty-graded findings with auto-fix support. Auto-learns false positives over time.",
|
|
158
158
|
"example": "/enhance",
|
|
159
159
|
"category": "analysis"
|
|
160
160
|
},
|
|
@@ -373,19 +373,28 @@
|
|
|
373
373
|
}
|
|
374
374
|
],
|
|
375
375
|
"agents": {
|
|
376
|
-
"total":
|
|
377
|
-
"file_based":
|
|
376
|
+
"total": 49,
|
|
377
|
+
"file_based": 39,
|
|
378
378
|
"role_based": 10,
|
|
379
379
|
"by_model": [
|
|
380
380
|
{
|
|
381
381
|
"model": "Opus",
|
|
382
382
|
"use_case": "Complex reasoning, analysis",
|
|
383
383
|
"agents": [
|
|
384
|
-
"exploration-agent",
|
|
385
384
|
"planning-agent",
|
|
386
385
|
"implementation-agent",
|
|
387
386
|
"perf-orchestrator",
|
|
388
|
-
"
|
|
387
|
+
"perf-analyzer",
|
|
388
|
+
"perf-theory-gatherer",
|
|
389
|
+
"perf-theory-tester",
|
|
390
|
+
"agent-enhancer",
|
|
391
|
+
"claudemd-enhancer",
|
|
392
|
+
"docs-enhancer",
|
|
393
|
+
"hooks-enhancer",
|
|
394
|
+
"prompt-enhancer",
|
|
395
|
+
"skills-enhancer",
|
|
396
|
+
"debate-orchestrator",
|
|
397
|
+
"skillers-recommender"
|
|
389
398
|
]
|
|
390
399
|
},
|
|
391
400
|
{
|
|
@@ -393,10 +402,26 @@
|
|
|
393
402
|
"use_case": "Validation, pattern matching",
|
|
394
403
|
"agents": [
|
|
395
404
|
"task-discoverer",
|
|
405
|
+
"exploration-agent",
|
|
406
|
+
"prepare-delivery-agent",
|
|
396
407
|
"delivery-validator",
|
|
397
408
|
"ci-fixer",
|
|
409
|
+
"test-coverage-checker",
|
|
398
410
|
"deslop-agent",
|
|
399
|
-
"
|
|
411
|
+
"cross-file-enhancer",
|
|
412
|
+
"plugin-enhancer",
|
|
413
|
+
"perf-code-paths",
|
|
414
|
+
"perf-investigation-logger",
|
|
415
|
+
"plan-synthesizer",
|
|
416
|
+
"learn-agent",
|
|
417
|
+
"sync-docs-agent",
|
|
418
|
+
"agnix-agent",
|
|
419
|
+
"consult-agent",
|
|
420
|
+
"web-session",
|
|
421
|
+
"skillers-compactor",
|
|
422
|
+
"release-agent",
|
|
423
|
+
"onboard-agent",
|
|
424
|
+
"can-i-help-agent"
|
|
400
425
|
]
|
|
401
426
|
},
|
|
402
427
|
{
|
|
@@ -405,7 +430,8 @@
|
|
|
405
430
|
"agents": [
|
|
406
431
|
"worktree-manager",
|
|
407
432
|
"ci-monitor",
|
|
408
|
-
"simple-fixer"
|
|
433
|
+
"simple-fixer",
|
|
434
|
+
"map-validator"
|
|
409
435
|
]
|
|
410
436
|
}
|
|
411
437
|
]
|
|
@@ -505,7 +531,7 @@
|
|
|
505
531
|
],
|
|
506
532
|
"research": {
|
|
507
533
|
"knowledge_base": "8,000 lines of curated documentation from Anthropic, OpenAI, Google, and Microsoft",
|
|
508
|
-
"testing": "3,
|
|
534
|
+
"testing": "3,507 tests passing",
|
|
509
535
|
"drift_detect_repos": "1,000+ repositories validated",
|
|
510
536
|
"token_reduction": "77% fewer tokens for drift-detect vs multi-agent approaches"
|
|
511
537
|
},
|
package/site/index.html
CHANGED
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
6
|
<title>AgentSys - Agent Runtime & Orchestration System</title>
|
|
7
|
-
<meta name="description" content="A modular runtime and orchestration system for AI agents. 19 plugins,
|
|
7
|
+
<meta name="description" content="A modular runtime and orchestration system for AI agents. 19 plugins, 49 agents, 41 skills - structured pipelines for Claude Code, OpenCode, Codex CLI, Cursor, and Kiro.">
|
|
8
8
|
<meta name="theme-color" content="#09090b">
|
|
9
9
|
|
|
10
10
|
<!-- Open Graph -->
|
|
11
11
|
<meta property="og:title" content="AgentSys">
|
|
12
|
-
<meta property="og:description" content="A modular runtime and orchestration system for AI agents. 19 plugins,
|
|
12
|
+
<meta property="og:description" content="A modular runtime and orchestration system for AI agents. 19 plugins, 49 agents, 41 skills.">
|
|
13
13
|
<meta property="og:image" content="https://agent-sh.github.io/agentsys/assets/logo.png">
|
|
14
14
|
<meta property="og:url" content="https://agent-sh.github.io/agentsys/">
|
|
15
15
|
<meta property="og:type" content="website">
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
<!-- Twitter Card -->
|
|
18
18
|
<meta name="twitter:card" content="summary_large_image">
|
|
19
19
|
<meta name="twitter:title" content="AgentSys">
|
|
20
|
-
<meta name="twitter:description" content="AI workflow automation. 19 plugins,
|
|
20
|
+
<meta name="twitter:description" content="AI workflow automation. 19 plugins, 49 agents, 41 skills.">
|
|
21
21
|
<meta name="twitter:image" content="https://agent-sh.github.io/agentsys/assets/logo.png">
|
|
22
22
|
|
|
23
23
|
<!-- Content Security Policy -->
|
|
@@ -107,14 +107,14 @@
|
|
|
107
107
|
<div class="hero__inner">
|
|
108
108
|
<div class="hero__content">
|
|
109
109
|
<div class="hero__badge anim-fade-in" data-delay="100">
|
|
110
|
-
19 plugins ·
|
|
110
|
+
19 plugins · 49 agents · 41 skills
|
|
111
111
|
</div>
|
|
112
112
|
<h1 class="hero__title anim-fade-up" id="hero-title" data-delay="200">
|
|
113
113
|
A modular <span class="text-gradient">runtime and orchestration system</span><br>
|
|
114
114
|
for AI agents.
|
|
115
115
|
</h1>
|
|
116
116
|
<p class="hero__subtitle anim-fade-up" data-delay="350">
|
|
117
|
-
Structured pipelines, gated phases, specialized agents. Works with Claude Code, OpenCode, Codex CLI, Cursor, and Kiro. 3,
|
|
117
|
+
Structured pipelines, gated phases, specialized agents. Works with Claude Code, OpenCode, Codex CLI, Cursor, and Kiro. 3,507 tests. Production-grade.
|
|
118
118
|
</p>
|
|
119
119
|
<div class="hero__ctas anim-fade-up" data-delay="500">
|
|
120
120
|
<a href="#install" class="btn btn--primary">Get Started</a>
|
|
@@ -160,15 +160,15 @@
|
|
|
160
160
|
<span class="stats__label">Plugins</span>
|
|
161
161
|
</div>
|
|
162
162
|
<div class="stats__item">
|
|
163
|
-
<span class="stats__number" aria-live="polite" data-target="
|
|
163
|
+
<span class="stats__number" aria-live="polite" data-target="49">0</span>
|
|
164
164
|
<span class="stats__label">Agents</span>
|
|
165
165
|
</div>
|
|
166
166
|
<div class="stats__item">
|
|
167
|
-
<span class="stats__number" aria-live="polite" data-target="
|
|
167
|
+
<span class="stats__number" aria-live="polite" data-target="41">0</span>
|
|
168
168
|
<span class="stats__label">Skills</span>
|
|
169
169
|
</div>
|
|
170
170
|
<div class="stats__item">
|
|
171
|
-
<span class="stats__number" aria-live="polite" data-target="
|
|
171
|
+
<span class="stats__number" aria-live="polite" data-target="3507">0</span>
|
|
172
172
|
<span class="stats__label">Tests Passing</span>
|
|
173
173
|
</div>
|
|
174
174
|
</div>
|
|
@@ -228,9 +228,9 @@
|
|
|
228
228
|
<h3 class="tabs__panel-name">/agnix</h3>
|
|
229
229
|
<p class="tabs__panel-tagline">Lint agent configs before they break</p>
|
|
230
230
|
<ul class="tabs__panel-features">
|
|
231
|
-
<li>
|
|
231
|
+
<li>399 validation rules across 36 categories</li>
|
|
232
232
|
<li>10+ AI tools: Claude Code, Cursor, Copilot, Codex, OpenCode, Gemini CLI</li>
|
|
233
|
-
<li>
|
|
233
|
+
<li>126 auto-fixable rules with --fix flag</li>
|
|
234
234
|
<li>SARIF output for GitHub Code Scanning</li>
|
|
235
235
|
</ul>
|
|
236
236
|
<div class="code-block">
|
|
@@ -607,7 +607,7 @@
|
|
|
607
607
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><circle cx="12" cy="12" r="10"/><circle cx="12" cy="12" r="3"/></svg>
|
|
608
608
|
</div>
|
|
609
609
|
<h3 class="philosophy__card-title">One agent, one job, done well</h3>
|
|
610
|
-
<p class="philosophy__card-desc"><span class="text-accent">
|
|
610
|
+
<p class="philosophy__card-desc"><span class="text-accent">49 specialized agents</span>, each with a narrow scope and clear success criteria. No agent tries to do everything.</p>
|
|
611
611
|
</div>
|
|
612
612
|
<div class="philosophy__card anim-fade-up" data-delay="200">
|
|
613
613
|
<div class="philosophy__card-icon">
|
|
@@ -662,14 +662,14 @@
|
|
|
662
662
|
<!-- ===== AGENTS & SKILLS ===== -->
|
|
663
663
|
<section class="agents-skills" id="agents-skills" aria-labelledby="as-title">
|
|
664
664
|
<div class="agents-skills__inner">
|
|
665
|
-
<h2 class="agents-skills__title anim-fade-up" id="as-title">
|
|
665
|
+
<h2 class="agents-skills__title anim-fade-up" id="as-title">49 Agents. 41 Skills.</h2>
|
|
666
666
|
<p class="agents-skills__subtitle anim-fade-up" data-delay="100">Right model for the task. Opus reasons. Sonnet validates. Haiku executes.</p>
|
|
667
667
|
|
|
668
668
|
<!-- Agent tier tabs -->
|
|
669
669
|
<div class="agents-skills__tabs anim-fade-up" data-delay="200">
|
|
670
670
|
<div class="agent-tabs" role="tablist" aria-label="Agent tiers">
|
|
671
|
-
<button class="agent-tabs__tab agent-tabs__tab--active" role="tab" aria-selected="true" aria-controls="agent-tier-opus" id="agent-tab-opus" data-index="0">Opus <span class="agent-tabs__count">
|
|
672
|
-
<button class="agent-tabs__tab" role="tab" aria-selected="false" aria-controls="agent-tier-sonnet" id="agent-tab-sonnet" tabindex="-1" data-index="1">Sonnet <span class="agent-tabs__count">
|
|
671
|
+
<button class="agent-tabs__tab agent-tabs__tab--active" role="tab" aria-selected="true" aria-controls="agent-tier-opus" id="agent-tab-opus" data-index="0">Opus <span class="agent-tabs__count">14</span></button>
|
|
672
|
+
<button class="agent-tabs__tab" role="tab" aria-selected="false" aria-controls="agent-tier-sonnet" id="agent-tab-sonnet" tabindex="-1" data-index="1">Sonnet <span class="agent-tabs__count">21</span></button>
|
|
673
673
|
<button class="agent-tabs__tab" role="tab" aria-selected="false" aria-controls="agent-tier-haiku" id="agent-tab-haiku" tabindex="-1" data-index="2">Haiku <span class="agent-tabs__count">4</span></button>
|
|
674
674
|
<button class="agent-tabs__tab" role="tab" aria-selected="false" aria-controls="agent-tier-specialists" id="agent-tab-specialists" tabindex="-1" data-index="3">Specialists <span class="agent-tabs__count">10</span></button>
|
|
675
675
|
</div>
|
|
@@ -677,13 +677,12 @@
|
|
|
677
677
|
<!-- Opus agents -->
|
|
678
678
|
<div class="agent-tier tabs__panel tabs__panel--active" role="tabpanel" id="agent-tier-opus" aria-labelledby="agent-tab-opus">
|
|
679
679
|
<div class="agent-grid">
|
|
680
|
-
<div class="agent-card"><span class="agent-card__name">exploration-agent</span><span class="tier-badge tier-badge--opus">opus</span><p class="agent-card__desc">Deep codebase analysis and context gathering</p></div>
|
|
681
680
|
<div class="agent-card"><span class="agent-card__name">planning-agent</span><span class="tier-badge tier-badge--opus">opus</span><p class="agent-card__desc">Step-by-step implementation design</p></div>
|
|
682
681
|
<div class="agent-card"><span class="agent-card__name">implementation-agent</span><span class="tier-badge tier-badge--opus">opus</span><p class="agent-card__desc">Autonomous code writing and modification</p></div>
|
|
683
682
|
<div class="agent-card"><span class="agent-card__name">perf-orchestrator</span><span class="tier-badge tier-badge--opus">opus</span><p class="agent-card__desc">Performance investigation coordination</p></div>
|
|
684
683
|
<div class="agent-card"><span class="agent-card__name">perf-analyzer</span><span class="tier-badge tier-badge--opus">opus</span><p class="agent-card__desc">Deep performance analysis and profiling</p></div>
|
|
685
|
-
<div class="agent-card"><span class="agent-card__name">
|
|
686
|
-
<div class="agent-card"><span class="agent-card__name">
|
|
684
|
+
<div class="agent-card"><span class="agent-card__name">perf-theory-gatherer</span><span class="tier-badge tier-badge--opus">opus</span><p class="agent-card__desc">Performance hypothesis generation</p></div>
|
|
685
|
+
<div class="agent-card"><span class="agent-card__name">perf-theory-tester</span><span class="tier-badge tier-badge--opus">opus</span><p class="agent-card__desc">Controlled experiment execution</p></div>
|
|
687
686
|
<div class="agent-card"><span class="agent-card__name">agent-enhancer</span><span class="tier-badge tier-badge--opus">opus</span><p class="agent-card__desc">Agent configuration quality analysis</p></div>
|
|
688
687
|
<div class="agent-card"><span class="agent-card__name">claudemd-enhancer</span><span class="tier-badge tier-badge--opus">opus</span><p class="agent-card__desc">CLAUDE.md file optimization</p></div>
|
|
689
688
|
<div class="agent-card"><span class="agent-card__name">docs-enhancer</span><span class="tier-badge tier-badge--opus">opus</span><p class="agent-card__desc">Documentation quality improvement</p></div>
|
|
@@ -699,6 +698,8 @@
|
|
|
699
698
|
<div class="agent-tier tabs__panel" role="tabpanel" id="agent-tier-sonnet" aria-labelledby="agent-tab-sonnet" hidden>
|
|
700
699
|
<div class="agent-grid">
|
|
701
700
|
<div class="agent-card"><span class="agent-card__name">task-discoverer</span><span class="tier-badge tier-badge--sonnet">sonnet</span><p class="agent-card__desc">Task source scanning and prioritization</p></div>
|
|
701
|
+
<div class="agent-card"><span class="agent-card__name">exploration-agent</span><span class="tier-badge tier-badge--sonnet">sonnet</span><p class="agent-card__desc">Deep codebase analysis and context gathering</p></div>
|
|
702
|
+
<div class="agent-card"><span class="agent-card__name">prepare-delivery-agent</span><span class="tier-badge tier-badge--sonnet">sonnet</span><p class="agent-card__desc">Pre-ship quality gate orchestration</p></div>
|
|
702
703
|
<div class="agent-card"><span class="agent-card__name">delivery-validator</span><span class="tier-badge tier-badge--sonnet">sonnet</span><p class="agent-card__desc">Pre-ship quality gate validation</p></div>
|
|
703
704
|
<div class="agent-card"><span class="agent-card__name">ci-fixer</span><span class="tier-badge tier-badge--sonnet">sonnet</span><p class="agent-card__desc">CI failure diagnosis and auto-repair</p></div>
|
|
704
705
|
<div class="agent-card"><span class="agent-card__name">test-coverage-checker</span><span class="tier-badge tier-badge--sonnet">sonnet</span><p class="agent-card__desc">Test coverage analysis and gap detection</p></div>
|
|
@@ -707,8 +708,8 @@
|
|
|
707
708
|
<div class="agent-card"><span class="agent-card__name">plugin-enhancer</span><span class="tier-badge tier-badge--sonnet">sonnet</span><p class="agent-card__desc">Plugin configuration validation</p></div>
|
|
708
709
|
<div class="agent-card"><span class="agent-card__name">perf-code-paths</span><span class="tier-badge tier-badge--sonnet">sonnet</span><p class="agent-card__desc">Hot code path identification</p></div>
|
|
709
710
|
<div class="agent-card"><span class="agent-card__name">perf-investigation-logger</span><span class="tier-badge tier-badge--sonnet">sonnet</span><p class="agent-card__desc">Performance investigation logging</p></div>
|
|
710
|
-
<div class="agent-card"><span class="agent-card__name">
|
|
711
|
-
<div class="agent-card"><span class="agent-card__name">
|
|
711
|
+
<div class="agent-card"><span class="agent-card__name">plan-synthesizer</span><span class="tier-badge tier-badge--sonnet">sonnet</span><p class="agent-card__desc">Multi-source plan synthesis and merging</p></div>
|
|
712
|
+
<div class="agent-card"><span class="agent-card__name">learn-agent</span><span class="tier-badge tier-badge--sonnet">sonnet</span><p class="agent-card__desc">Web research and learning guide creation</p></div>
|
|
712
713
|
<div class="agent-card"><span class="agent-card__name">sync-docs-agent</span><span class="tier-badge tier-badge--sonnet">sonnet</span><p class="agent-card__desc">Documentation sync and update</p></div>
|
|
713
714
|
<div class="agent-card"><span class="agent-card__name">agnix-agent</span><span class="tier-badge tier-badge--sonnet">sonnet</span><p class="agent-card__desc">Agent config linting orchestration</p></div>
|
|
714
715
|
<div class="agent-card"><span class="agent-card__name">consult-agent</span><span class="tier-badge tier-badge--sonnet">sonnet</span><p class="agent-card__desc">Cross-tool AI consultation orchestration</p></div>
|
|
@@ -716,6 +717,7 @@
|
|
|
716
717
|
<div class="agent-card"><span class="agent-card__name">skillers-compactor</span><span class="tier-badge tier-badge--sonnet">sonnet</span><p class="agent-card__desc">Transcript compaction into knowledge themes</p></div>
|
|
717
718
|
<div class="agent-card"><span class="agent-card__name">release-agent</span><span class="tier-badge tier-badge--sonnet">sonnet</span><p class="agent-card__desc">Versioned release with ecosystem detection</p></div>
|
|
718
719
|
<div class="agent-card"><span class="agent-card__name">onboard-agent</span><span class="tier-badge tier-badge--sonnet">sonnet</span><p class="agent-card__desc">Codebase orientation and guided onboarding</p></div>
|
|
720
|
+
<div class="agent-card"><span class="agent-card__name">can-i-help-agent</span><span class="tier-badge tier-badge--sonnet">sonnet</span><p class="agent-card__desc">Contributor guidance matching skills to project needs</p></div>
|
|
719
721
|
</div>
|
|
720
722
|
</div>
|
|
721
723
|
|
|
@@ -747,7 +749,7 @@
|
|
|
747
749
|
</div>
|
|
748
750
|
|
|
749
751
|
<!-- Skills grid -->
|
|
750
|
-
<h3 class="agents-skills__skills-title anim-fade-up" data-delay="300">
|
|
752
|
+
<h3 class="agents-skills__skills-title anim-fade-up" data-delay="300">41 Skills across 19 Plugins</h3>
|
|
751
753
|
<div class="skills-grid anim-fade-up" data-delay="350">
|
|
752
754
|
<div class="skill-group">
|
|
753
755
|
<span class="skill-group__label">prepare-delivery</span>
|
|
@@ -819,6 +821,7 @@
|
|
|
819
821
|
<span class="skill-card">onboard</span>
|
|
820
822
|
<span class="skill-card">can-i-help</span>
|
|
821
823
|
<span class="skill-card">audit-project</span>
|
|
824
|
+
<span class="skill-card">agnix</span>
|
|
822
825
|
</div>
|
|
823
826
|
</div>
|
|
824
827
|
<div class="skill-group">
|
package/site/ux-spec.md
CHANGED
|
@@ -94,7 +94,7 @@ Scroll order with rationale for each section. All sections are full-width, alter
|
|
|
94
94
|
- **Single column on mobile:** Text above, terminal below. Stack with 48px gap.
|
|
95
95
|
|
|
96
96
|
### Left Column Content
|
|
97
|
-
1. **Badge** (top, above title): Small pill showing version or "19 plugins .
|
|
97
|
+
1. **Badge** (top, above title): Small pill showing version or "19 plugins . 49 agents . 41 skills"
|
|
98
98
|
- Background: `rgba(99, 102, 241, 0.12)`, border: `1px solid rgba(99, 102, 241, 0.25)`, border-radius: 9999px
|
|
99
99
|
- Font: 13px, font-weight 500, primary accent color
|
|
100
100
|
- Padding: 4px 14px
|
|
@@ -104,7 +104,7 @@ Scroll order with rationale for each section. All sections are full-width, alter
|
|
|
104
104
|
- Color: white
|
|
105
105
|
- "entire dev workflow" portion highlighted with a subtle gradient text (primary-to-secondary accent via `background-clip: text`)
|
|
106
106
|
|
|
107
|
-
3. **Subtitle:** "19 plugins,
|
|
107
|
+
3. **Subtitle:** "19 plugins, 49 agents, 41 skills. From task selection to merged PR. Works with Claude Code, OpenCode, Codex CLI, Cursor, and Kiro."
|
|
108
108
|
- Font: 18px on desktop, 16px on mobile, font-weight 400, line-height 1.6
|
|
109
109
|
- Color: `rgba(255, 255, 255, 0.6)`
|
|
110
110
|
- Max-width: 520px
|
|
@@ -226,10 +226,10 @@ Done. Task to merged PR in 12 minutes.
|
|
|
226
226
|
### Stats (left to right)
|
|
227
227
|
| Stat | Value | Label |
|
|
228
228
|
|------|-------|-------|
|
|
229
|
-
| 1 |
|
|
230
|
-
| 2 |
|
|
231
|
-
| 3 |
|
|
232
|
-
| 4 | 3,
|
|
229
|
+
| 1 | 19 | Plugins |
|
|
230
|
+
| 2 | 49 | Agents |
|
|
231
|
+
| 3 | 40 | Skills |
|
|
232
|
+
| 4 | 3,507 | Tests Passing |
|
|
233
233
|
|
|
234
234
|
### Styling
|
|
235
235
|
- **Number:** 48px, font-weight 700, white, `font-variant-numeric: tabular-nums` (prevents layout shift during count)
|
|
@@ -650,13 +650,13 @@ This disables:
|
|
|
650
650
|
### Head Content
|
|
651
651
|
```html
|
|
652
652
|
<title>AgentSys - Agent Runtime & Orchestration System</title>
|
|
653
|
-
<meta name="description" content="A modular runtime and orchestration system for AI agents. 19 plugins,
|
|
653
|
+
<meta name="description" content="A modular runtime and orchestration system for AI agents. 19 plugins, 49 agents, 41 skills - structured pipelines for Claude Code, OpenCode, Codex CLI, Cursor, and Kiro.">
|
|
654
654
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
655
655
|
<meta name="theme-color" content="#0a0a0f">
|
|
656
656
|
|
|
657
657
|
<!-- Open Graph -->
|
|
658
658
|
<meta property="og:title" content="AgentSys">
|
|
659
|
-
<meta property="og:description" content="AI workflow automation. 19 plugins,
|
|
659
|
+
<meta property="og:description" content="AI workflow automation. 19 plugins, 49 agents, 41 skills. Task to merged PR.">
|
|
660
660
|
<meta property="og:image" content="https://agent-sh.github.io/agentsys/assets/og-image.png">
|
|
661
661
|
<meta property="og:url" content="https://agent-sh.github.io/agentsys/">
|
|
662
662
|
<meta property="og:type" content="website">
|
|
@@ -664,7 +664,7 @@ This disables:
|
|
|
664
664
|
<!-- Twitter Card -->
|
|
665
665
|
<meta name="twitter:card" content="summary_large_image">
|
|
666
666
|
<meta name="twitter:title" content="AgentSys">
|
|
667
|
-
<meta name="twitter:description" content="AI workflow automation. 19 plugins,
|
|
667
|
+
<meta name="twitter:description" content="AI workflow automation. 19 plugins, 49 agents, 41 skills.">
|
|
668
668
|
<meta name="twitter:image" content="https://agent-sh.github.io/agentsys/assets/og-image.png">
|
|
669
669
|
```
|
|
670
670
|
|