agentsys 5.7.0 → 5.8.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/.claude-plugin/marketplace.json +26 -4
- package/.claude-plugin/plugin.json +1 -1
- package/AGENTS.md +7 -5
- package/CHANGELOG.md +17 -0
- package/README.md +70 -14
- package/meta/skills/maintain-cross-platform/SKILL.md +2 -1
- package/package.json +1 -1
- package/scripts/generate-docs.js +12 -3
- package/scripts/plugins.txt +7 -1
- package/site/content.json +30 -6
- package/site/ux-spec.md +5 -5
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentsys",
|
|
3
|
-
"description": "
|
|
4
|
-
"version": "5.
|
|
3
|
+
"description": "19 specialized plugins for AI workflow automation - task orchestration, PR workflow, slop detection, code review, drift detection, enhancement analysis, documentation sync, unified static analysis, 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.8.0",
|
|
5
5
|
"owner": {
|
|
6
6
|
"name": "Avi Fenesh",
|
|
7
7
|
"url": "https://github.com/avifenesh"
|
|
@@ -28,11 +28,33 @@
|
|
|
28
28
|
"source": "url",
|
|
29
29
|
"url": "https://github.com/agent-sh/next-task.git"
|
|
30
30
|
},
|
|
31
|
-
"description": "Master workflow orchestrator: autonomous workflow with model optimization (opus/sonnet/haiku), two-file state management, workflow enforcement gates,
|
|
32
|
-
"version": "1.
|
|
31
|
+
"description": "Master workflow orchestrator: autonomous workflow with model optimization (opus/sonnet/haiku), two-file state management, workflow enforcement gates, 8 specialist agents",
|
|
32
|
+
"version": "1.1.0",
|
|
33
33
|
"category": "productivity",
|
|
34
34
|
"homepage": "https://github.com/agent-sh/next-task"
|
|
35
35
|
},
|
|
36
|
+
{
|
|
37
|
+
"name": "prepare-delivery",
|
|
38
|
+
"source": {
|
|
39
|
+
"source": "url",
|
|
40
|
+
"url": "https://github.com/agent-sh/prepare-delivery.git"
|
|
41
|
+
},
|
|
42
|
+
"description": "Pre-ship quality gates: deslop, simplify, agnix, enhance, review loop, delivery validation, docs sync",
|
|
43
|
+
"version": "0.1.0",
|
|
44
|
+
"category": "productivity",
|
|
45
|
+
"homepage": "https://github.com/agent-sh/prepare-delivery"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "gate-and-ship",
|
|
49
|
+
"source": {
|
|
50
|
+
"source": "url",
|
|
51
|
+
"url": "https://github.com/agent-sh/gate-and-ship.git"
|
|
52
|
+
},
|
|
53
|
+
"description": "Quality gates then ship - chains /prepare-delivery then /ship in one command",
|
|
54
|
+
"version": "0.1.0",
|
|
55
|
+
"category": "productivity",
|
|
56
|
+
"homepage": "https://github.com/agent-sh/gate-and-ship"
|
|
57
|
+
},
|
|
36
58
|
{
|
|
37
59
|
"name": "ship",
|
|
38
60
|
"source": {
|
package/AGENTS.md
CHANGED
|
@@ -94,6 +94,8 @@ bin/cli.js → npm CLI installer
|
|
|
94
94
|
|
|
95
95
|
### Core Workflow
|
|
96
96
|
- `/next-task` - Master workflow: task → implementation → PR → merge
|
|
97
|
+
- `/prepare-delivery` - Pre-ship quality gates: deslop, review, validation, docs sync
|
|
98
|
+
- `/gate-and-ship` - Quality gates then ship (/prepare-delivery + /ship)
|
|
97
99
|
- `/ship` - PR creation, CI monitoring, merge
|
|
98
100
|
- `/enhance` - Run all enhancement analyzers
|
|
99
101
|
|
|
@@ -150,12 +152,12 @@ agentsys # Run installer
|
|
|
150
152
|
<agents>
|
|
151
153
|
## Agents
|
|
152
154
|
|
|
153
|
-
|
|
155
|
+
47 agents across 19 plugins. Key agents by model:
|
|
154
156
|
|
|
155
157
|
| Model | Agents | Use Case |
|
|
156
158
|
|-------|--------|----------|
|
|
157
159
|
| **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 |
|
|
160
|
+
| **sonnet** | task-discoverer, delivery-validator (prepare-delivery), ci-fixer, deslop-agent, reporters, learn, release-agent, skillers-compactor | Validation, pattern matching |
|
|
159
161
|
| **haiku** | worktree-manager, ci-monitor, simple-fixer | Mechanical execution |
|
|
160
162
|
|
|
161
163
|
See [README.md](./README.md#command-details) and [docs/reference/AGENTS.md](./docs/reference/AGENTS.md) for full agent list.
|
|
@@ -164,7 +166,7 @@ See [README.md](./README.md#command-details) and [docs/reference/AGENTS.md](./do
|
|
|
164
166
|
<skills>
|
|
165
167
|
## Skills
|
|
166
168
|
|
|
167
|
-
|
|
169
|
+
40 skills across plugins. Agents invoke skills for reusable implementation.
|
|
168
170
|
|
|
169
171
|
| Category | Key Skills |
|
|
170
172
|
|----------|------------|
|
|
@@ -188,7 +190,7 @@ See [README.md](./README.md#skills) for full skill list.
|
|
|
188
190
|
|
|
189
191
|
Platform-aware state directory:
|
|
190
192
|
- Claude Code: `.claude/`
|
|
191
|
-
- OpenCode:
|
|
193
|
+
- OpenCode: `.opencode/`
|
|
192
194
|
- Codex: `.codex/`
|
|
193
195
|
- Cursor: `.cursor/`
|
|
194
196
|
- Kiro: `.kiro/`
|
|
@@ -201,7 +203,7 @@ Cannot skip in /next-task:
|
|
|
201
203
|
- `exploration-agent` → before planning
|
|
202
204
|
- `planning-agent` → before implementation
|
|
203
205
|
- **Phase 9 review loop** → MUST use orchestrate-review skill
|
|
204
|
-
- `delivery-validator` → before sync-docs:sync-docs-agent
|
|
206
|
+
- `prepare-delivery:delivery-validator` → before sync-docs:sync-docs-agent
|
|
205
207
|
- `sync-docs:sync-docs-agent` → before /ship
|
|
206
208
|
</workflow-agents>
|
|
207
209
|
|
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,23 @@ 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
|
+
## [Unreleased]
|
|
11
|
+
|
|
12
|
+
## [5.8.0] - 2026-03-25
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- prepare-delivery plugin - pre-ship quality gates (deslop, simplify, agnix, enhance, review loop, validation, docs sync)
|
|
16
|
+
- gate-and-ship plugin - orchestrator that chains /prepare-delivery then /ship
|
|
17
|
+
- /prepare-delivery and /gate-and-ship commands in marketplace, README, and AGENTS.md
|
|
18
|
+
- 9 missing agent sections in docs/reference/AGENTS.md (prepare-delivery, consult, debate, web-ctl, ship, skillers, onboard, can-i-help)
|
|
19
|
+
- Cursor and Kiro platform entries in site/content.json
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
- Moved orchestrate-review, validate-delivery skills from next-task to prepare-delivery in STATIC_SKILLS
|
|
23
|
+
- Updated plugin count from 17 to 19 across marketplace.json, tests, and docs
|
|
24
|
+
- Comprehensive documentation sync: all command tables, agent counts, skill counts, platform lists updated across 22 files
|
|
25
|
+
- next-task marketplace entry: agent count 14 -> 8 (delivery agents moved to prepare-delivery), version 1.0.0 -> 1.1.0
|
|
26
|
+
|
|
10
27
|
## [5.7.0] - 2026-03-23
|
|
11
28
|
|
|
12
29
|
### Changed
|
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
</p>
|
|
20
20
|
|
|
21
21
|
<p align="center">
|
|
22
|
-
<b>19 plugins · 47 agents ·
|
|
22
|
+
<b>19 plugins · 47 agents · 40 skills (across all repos) · 30k lines of lib code · 3,583 tests · 5 platforms</b><br>
|
|
23
23
|
<em>Plugins distributed as standalone repos under <a href="https://github.com/agent-sh">agent-sh</a> org — agentsys is the marketplace & installer</em>
|
|
24
24
|
</p>
|
|
25
25
|
|
|
@@ -45,7 +45,7 @@ AI models can write code. That's not the hard part anymore. The hard part is eve
|
|
|
45
45
|
|
|
46
46
|
## What This Is
|
|
47
47
|
|
|
48
|
-
An agent orchestration system — 19 plugins, 47 agents, and
|
|
48
|
+
An agent orchestration system — 19 plugins, 47 agents, and 40 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.
|
|
49
49
|
|
|
50
50
|
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.
|
|
51
51
|
|
|
@@ -116,6 +116,8 @@ The investment shifts from model spend to pipeline design. Better prompts, riche
|
|
|
116
116
|
| Command | What it does |
|
|
117
117
|
|---------|--------------|
|
|
118
118
|
| [`/next-task`](#next-task) | Task workflow: discovery, implementation, PR, merge |
|
|
119
|
+
| [`/prepare-delivery`](#prepare-delivery) | Pre-ship quality gates: deslop, review, validation, docs sync |
|
|
120
|
+
| [`/gate-and-ship`](#gate-and-ship) | Quality gates then ship (/prepare-delivery + /ship) |
|
|
119
121
|
| [`/agnix`](#agnix) | Lint agent configurations (342 rules) |
|
|
120
122
|
| [`/ship`](#ship) | PR creation, CI monitoring, merge |
|
|
121
123
|
| [`/deslop`](#deslop) | Clean AI slop patterns |
|
|
@@ -140,11 +142,11 @@ Each command works standalone. Together, they compose into end-to-end pipelines.
|
|
|
140
142
|
|
|
141
143
|
## Skills
|
|
142
144
|
|
|
143
|
-
|
|
145
|
+
40 skills included across the plugins:
|
|
144
146
|
|
|
145
147
|
| Category | Skills |
|
|
146
148
|
|----------|--------|
|
|
147
|
-
| **Workflow** | `discover-tasks`, `orchestrate-review`, `validate-delivery` |
|
|
149
|
+
| **Workflow** | `discover-tasks`, `prepare-delivery`, `check-test-coverage`, `orchestrate-review`, `validate-delivery` |
|
|
148
150
|
| **Message Queues** | `glide-mq-migrate-bee`, `glide-mq-migrate-bullmq`, `glide-mq` |
|
|
149
151
|
| **Enhancement** | `enhance-agent-prompts`, `enhance-claude-memory`, `enhance-cross-file`, `enhance-docs`, `enhance-hooks`, `enhance-orchestrator`, `enhance-plugins`, `enhance-prompts`, `enhance-skills` |
|
|
150
152
|
| **Performance** | `baseline`, `benchmark`, `code-paths`, `investigation-logger`, `perf-analyzer`, `profile`, `theory-gatherer`, `theory-tester` |
|
|
@@ -172,8 +174,8 @@ Skills are the reusable implementation units. Agents invoke skills; commands orc
|
|
|
172
174
|
|---------|--------------|
|
|
173
175
|
| [The Approach](#the-approach) | Why it's built this way |
|
|
174
176
|
| [Benchmarks](#benchmarks) | Sonnet + agentsys vs raw Opus |
|
|
175
|
-
| [Commands](#commands) | All
|
|
176
|
-
| [Skills](#skills) |
|
|
177
|
+
| [Commands](#commands) | All 20 commands overview |
|
|
178
|
+
| [Skills](#skills) | 40 skills across plugins |
|
|
177
179
|
| [Skill-Only Plugins](#skill-only-plugins) | glide-mq and other non-command plugins |
|
|
178
180
|
| [Command Details](#command-details) | Deep dive into each command |
|
|
179
181
|
| [How Commands Work Together](#how-commands-work-together) | Standalone vs integrated |
|
|
@@ -219,7 +221,7 @@ Key features: per-key ordering, group concurrency, runtime group rate limiting (
|
|
|
219
221
|
5. **Planning** - Designs implementation approach
|
|
220
222
|
6. **User Approval** - You review and approve the plan (last human interaction)
|
|
221
223
|
7. **Implementation** - Executes the plan
|
|
222
|
-
8. **Pre-Review** - Runs [deslop](#deslop)-agent and test-coverage-checker
|
|
224
|
+
8. **Pre-Review** - Runs [deslop](#deslop)-agent and prepare-delivery:test-coverage-checker
|
|
223
225
|
9. **Review Loop** - Multi-agent review iterates until clean
|
|
224
226
|
10. **Delivery Validation** - Verifies tests pass, build passes, requirements met
|
|
225
227
|
11. **Docs Update** - Updates CHANGELOG and related documentation
|
|
@@ -236,8 +238,8 @@ Phase 9 uses the `orchestrate-review` skill to spawn parallel reviewers (code qu
|
|
|
236
238
|
| exploration-agent | sonnet | Deep codebase analysis before planning |
|
|
237
239
|
| planning-agent | opus | Designs step-by-step implementation plan |
|
|
238
240
|
| implementation-agent | opus | Writes the actual code |
|
|
239
|
-
| test-coverage-checker | sonnet | Validates tests exist and are meaningful |
|
|
240
|
-
| delivery-validator | sonnet | Final checks before shipping |
|
|
241
|
+
| prepare-delivery:test-coverage-checker | sonnet | Validates tests exist and are meaningful |
|
|
242
|
+
| prepare-delivery:delivery-validator | sonnet | Final checks before shipping |
|
|
241
243
|
| ci-monitor | haiku | Watches CI status |
|
|
242
244
|
| ci-fixer | sonnet | Fixes CI failures and review comments |
|
|
243
245
|
| simple-fixer | haiku | Executes mechanical edits |
|
|
@@ -261,6 +263,49 @@ Phase 9 uses the `orchestrate-review` skill to spawn parallel reviewers (code qu
|
|
|
261
263
|
|
|
262
264
|
---
|
|
263
265
|
|
|
266
|
+
### /prepare-delivery
|
|
267
|
+
|
|
268
|
+
**Purpose:** Run all pre-ship quality gates without shipping. Use after completing implementation manually or outside `/next-task`.
|
|
269
|
+
|
|
270
|
+
**What it runs (in order):**
|
|
271
|
+
|
|
272
|
+
1. **Pre-review gates** (parallel) - deslop + /simplify + prepare-delivery:test-coverage-checker
|
|
273
|
+
2. **Config lint** (conditional) - agnix + /enhance when changes touch agent/skill/plugin files
|
|
274
|
+
3. **Review loop** - 4 core reviewers + conditional specialists, max 5 iterations
|
|
275
|
+
4. **Delivery validation** - tests pass, build passes, requirements met
|
|
276
|
+
5. **Docs sync** - sync-docs agent updates documentation
|
|
277
|
+
|
|
278
|
+
```bash
|
|
279
|
+
/prepare-delivery # Run all quality gates
|
|
280
|
+
/prepare-delivery --skip-review # Skip review loop
|
|
281
|
+
/prepare-delivery --skip-docs # Skip docs sync
|
|
282
|
+
/prepare-delivery --base=develop # Against a specific base branch
|
|
283
|
+
```
|
|
284
|
+
|
|
285
|
+
Does NOT create PRs or push - use `/ship` or `/gate-and-ship` after.
|
|
286
|
+
|
|
287
|
+
---
|
|
288
|
+
|
|
289
|
+
### /gate-and-ship
|
|
290
|
+
|
|
291
|
+
**Purpose:** Quality gates then ship in one command. Chains `/prepare-delivery` then `/ship`.
|
|
292
|
+
|
|
293
|
+
```bash
|
|
294
|
+
/gate-and-ship # Full: quality gates + ship
|
|
295
|
+
/gate-and-ship --skip-review # Skip review, still ship
|
|
296
|
+
/gate-and-ship --base=develop # Against a specific base branch
|
|
297
|
+
```
|
|
298
|
+
|
|
299
|
+
**Composability:**
|
|
300
|
+
|
|
301
|
+
```
|
|
302
|
+
/gate-and-ship = /prepare-delivery + /ship
|
|
303
|
+
```
|
|
304
|
+
|
|
305
|
+
Each piece runs independently - use `/prepare-delivery` alone to review before deciding to ship, or `/ship` alone if already validated.
|
|
306
|
+
|
|
307
|
+
---
|
|
308
|
+
|
|
264
309
|
### /agnix
|
|
265
310
|
|
|
266
311
|
**Purpose:** Lint agent configurations before they break your workflow. The first dedicated linter for AI agent configs.
|
|
@@ -983,11 +1028,22 @@ No per-turn overhead - it reads transcripts that Claude Code already saves.
|
|
|
983
1028
|
```bash
|
|
984
1029
|
/deslop apply # Just clean up your code
|
|
985
1030
|
/sync-docs # Just check if docs need updates
|
|
1031
|
+
/prepare-delivery # Run all quality gates (no ship)
|
|
986
1032
|
/ship # Just ship this branch
|
|
1033
|
+
/gate-and-ship # Quality gates + ship in one command
|
|
987
1034
|
/audit-project # Just review the codebase
|
|
988
1035
|
```
|
|
989
1036
|
|
|
990
|
-
**
|
|
1037
|
+
**Composable delivery chain:**
|
|
1038
|
+
|
|
1039
|
+
```
|
|
1040
|
+
/prepare-delivery = quality gates only (deslop, review, validation, docs)
|
|
1041
|
+
/ship = PR + CI + merge only
|
|
1042
|
+
/gate-and-ship = /prepare-delivery + /ship
|
|
1043
|
+
/next-task = full workflow (discovery → implementation → /prepare-delivery → /ship)
|
|
1044
|
+
```
|
|
1045
|
+
|
|
1046
|
+
**Full integrated workflow:**
|
|
991
1047
|
|
|
992
1048
|
When you run [`/next-task`](#next-task), it orchestrates everything:
|
|
993
1049
|
|
|
@@ -996,15 +1052,15 @@ When you run [`/next-task`](#next-task), it orchestrates everything:
|
|
|
996
1052
|
↓
|
|
997
1053
|
implementation-agent writes code
|
|
998
1054
|
↓
|
|
999
|
-
deslop-agent
|
|
1055
|
+
deslop-agent + prepare-delivery:test-coverage-checker + /simplify (parallel)
|
|
1000
1056
|
↓
|
|
1001
|
-
|
|
1057
|
+
review loop iterates until approved
|
|
1002
1058
|
↓
|
|
1003
|
-
delivery-validator checks requirements
|
|
1059
|
+
prepare-delivery:delivery-validator checks requirements
|
|
1004
1060
|
↓
|
|
1005
1061
|
sync-docs-agent syncs documentation
|
|
1006
1062
|
↓
|
|
1007
|
-
|
|
1063
|
+
/ship creates PR → monitors CI → merges
|
|
1008
1064
|
```
|
|
1009
1065
|
|
|
1010
1066
|
The workflow tracks state so you can resume from any point.
|
|
@@ -951,7 +951,8 @@ If you find any of these while working:
|
|
|
951
951
|
- frontend-specialist, backend-specialist, devops-reviewer
|
|
952
952
|
|
|
953
953
|
**Skills:** 23 - Count SKILL.md in `plugins/*/skills/*/SKILL.md`
|
|
954
|
-
- next-task:
|
|
954
|
+
- next-task: 1 (discover-tasks)
|
|
955
|
+
- prepare-delivery: 4 (prepare-delivery, check-test-coverage, orchestrate-review, validate-delivery)
|
|
955
956
|
- enhance: 10 (orchestrator, reporter, agent-prompts, claude-memory, docs, plugins, prompts, hooks, skills)
|
|
956
957
|
- perf: 8 (analyzer, baseline, benchmark, code-paths, investigation-logger, profile, theory, theory-tester)
|
|
957
958
|
- drift-detect: 1 (drift-analysis)
|
package/package.json
CHANGED
package/scripts/generate-docs.js
CHANGED
|
@@ -49,6 +49,8 @@ const CATEGORY_MAP = {
|
|
|
49
49
|
'perf': 'Performance',
|
|
50
50
|
'enhance': 'Enhancement',
|
|
51
51
|
'next-task': 'Workflow',
|
|
52
|
+
'prepare-delivery': 'Workflow',
|
|
53
|
+
'gate-and-ship': 'Workflow',
|
|
52
54
|
'deslop': 'Cleanup',
|
|
53
55
|
'sync-docs': 'Cleanup',
|
|
54
56
|
'drift-detect': 'Analysis',
|
|
@@ -68,9 +70,11 @@ const CATEGORY_MAP = {
|
|
|
68
70
|
|
|
69
71
|
// Static skill definitions for cross-repo plugins (not discoverable locally)
|
|
70
72
|
const STATIC_SKILLS = [
|
|
71
|
-
{ plugin: 'next-task', name: 'orchestrate-review' },
|
|
72
73
|
{ plugin: 'next-task', name: 'discover-tasks' },
|
|
73
|
-
{ plugin: '
|
|
74
|
+
{ plugin: 'prepare-delivery', name: 'prepare-delivery' },
|
|
75
|
+
{ plugin: 'prepare-delivery', name: 'check-test-coverage' },
|
|
76
|
+
{ plugin: 'prepare-delivery', name: 'orchestrate-review' },
|
|
77
|
+
{ plugin: 'prepare-delivery', name: 'validate-delivery' },
|
|
74
78
|
{ plugin: 'enhance', name: 'enhance-orchestrator' },
|
|
75
79
|
{ plugin: 'enhance', name: 'enhance-plugins' },
|
|
76
80
|
{ plugin: 'enhance', name: 'enhance-agent-prompts' },
|
|
@@ -111,6 +115,8 @@ const STATIC_SKILLS = [
|
|
|
111
115
|
// Purpose mapping for architecture table
|
|
112
116
|
const PURPOSE_MAP = {
|
|
113
117
|
'next-task': 'Master workflow orchestration',
|
|
118
|
+
'prepare-delivery': 'Pre-ship quality gates',
|
|
119
|
+
'gate-and-ship': 'Quality gates then ship',
|
|
114
120
|
'enhance': 'Code quality analyzers',
|
|
115
121
|
'ship': 'PR creation and deployment',
|
|
116
122
|
'perf': 'Performance investigation',
|
|
@@ -173,7 +179,8 @@ function generateCommandsTable(commands) {
|
|
|
173
179
|
|
|
174
180
|
// Curated display order (featured commands first, then alphabetical)
|
|
175
181
|
const COMMAND_ORDER = [
|
|
176
|
-
'next-task', '
|
|
182
|
+
'next-task', 'prepare-delivery', 'gate-and-ship',
|
|
183
|
+
'agnix', 'ship', 'deslop', 'perf',
|
|
177
184
|
'drift-detect', 'audit-project', 'enhance',
|
|
178
185
|
'repo-intel', 'sync-docs', 'learn', 'consult',
|
|
179
186
|
'debate', 'web-ctl', 'release', 'skillers',
|
|
@@ -183,6 +190,8 @@ function generateCommandsTable(commands) {
|
|
|
183
190
|
// Command descriptions for the table (short, human-written summaries)
|
|
184
191
|
const COMMAND_SUMMARIES = {
|
|
185
192
|
'next-task': 'Task workflow: discovery, implementation, PR, merge',
|
|
193
|
+
'prepare-delivery': 'Pre-ship quality gates: deslop, review, validation, docs sync',
|
|
194
|
+
'gate-and-ship': 'Quality gates then ship (/prepare-delivery + /ship)',
|
|
186
195
|
'agnix': 'Lint agent configurations (342 rules)',
|
|
187
196
|
'ship': 'PR creation, CI monitoring, merge',
|
|
188
197
|
'deslop': 'Clean AI slop patterns',
|
package/scripts/plugins.txt
CHANGED
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, 47 agents, 40 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.8.0",
|
|
9
9
|
"author": "Avi Fenesh",
|
|
10
10
|
"author_url": "https://github.com/avifenesh"
|
|
11
11
|
},
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"suffix": ""
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
|
-
"value": "
|
|
36
|
+
"value": "40",
|
|
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,445",
|
|
47
47
|
"label": "Tests",
|
|
48
48
|
"suffix": ""
|
|
49
49
|
},
|
|
@@ -95,6 +95,20 @@
|
|
|
95
95
|
"example": "/next-task",
|
|
96
96
|
"category": "workflow"
|
|
97
97
|
},
|
|
98
|
+
{
|
|
99
|
+
"name": "/prepare-delivery",
|
|
100
|
+
"tagline": "Pre-ship quality gates",
|
|
101
|
+
"description": "Pre-ship quality gates: deslop, simplify, review loop, delivery validation, docs sync",
|
|
102
|
+
"example": "/prepare-delivery",
|
|
103
|
+
"category": "workflow"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "/gate-and-ship",
|
|
107
|
+
"tagline": "Quality gates then ship",
|
|
108
|
+
"description": "Quality gates then ship - chains /prepare-delivery then /ship",
|
|
109
|
+
"example": "/gate-and-ship",
|
|
110
|
+
"category": "workflow"
|
|
111
|
+
},
|
|
98
112
|
{
|
|
99
113
|
"name": "/agnix",
|
|
100
114
|
"tagline": "Lint agent configs before they break",
|
|
@@ -283,6 +297,16 @@
|
|
|
283
297
|
"name": "Codex CLI",
|
|
284
298
|
"prefix": "$",
|
|
285
299
|
"state_dir": "~/.codex/"
|
|
300
|
+
},
|
|
301
|
+
"cursor": {
|
|
302
|
+
"name": "Cursor",
|
|
303
|
+
"prefix": "/",
|
|
304
|
+
"state_dir": ".cursor/"
|
|
305
|
+
},
|
|
306
|
+
"kiro": {
|
|
307
|
+
"name": "Kiro",
|
|
308
|
+
"prefix": "/",
|
|
309
|
+
"state_dir": ".kiro/"
|
|
286
310
|
}
|
|
287
311
|
}
|
|
288
312
|
},
|
|
@@ -393,7 +417,7 @@
|
|
|
393
417
|
"highlights": [
|
|
394
418
|
"New /onboard plugin - codebase orientation in 3 minutes, 74% token savings, validated on 100 repos",
|
|
395
419
|
"New /can-i-help plugin - contributor guidance with 5 data-backed signals",
|
|
396
|
-
"New /
|
|
420
|
+
"New /repo-intel plugin (originally /git-map) - 21 git history queries backed by Rust binary",
|
|
397
421
|
"15 plugin READMEs written or upgraded, agent-analyzer v0.2.0 query tuning"
|
|
398
422
|
]
|
|
399
423
|
},
|
|
@@ -481,7 +505,7 @@
|
|
|
481
505
|
],
|
|
482
506
|
"research": {
|
|
483
507
|
"knowledge_base": "8,000 lines of curated documentation from Anthropic, OpenAI, Google, and Microsoft",
|
|
484
|
-
"testing": "3,
|
|
508
|
+
"testing": "3,445 tests passing",
|
|
485
509
|
"drift_detect_repos": "1,000+ repositories validated",
|
|
486
510
|
"token_reduction": "77% fewer tokens for drift-detect vs multi-agent approaches"
|
|
487
511
|
},
|
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 "
|
|
97
|
+
1. **Badge** (top, above title): Small pill showing version or "19 plugins . 47 agents . 40 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:** "
|
|
107
|
+
3. **Subtitle:** "19 plugins, 47 agents, 40 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
|
|
@@ -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.
|
|
653
|
+
<meta name="description" content="A modular runtime and orchestration system for AI agents. 19 plugins, 47 agents, 40 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.
|
|
659
|
+
<meta property="og:description" content="AI workflow automation. 19 plugins, 47 agents, 40 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.
|
|
667
|
+
<meta name="twitter:description" content="AI workflow automation. 19 plugins, 47 agents, 40 skills.">
|
|
668
668
|
<meta name="twitter:image" content="https://agent-sh.github.io/agentsys/assets/og-image.png">
|
|
669
669
|
```
|
|
670
670
|
|