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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentsys",
|
|
3
|
-
"description": "
|
|
4
|
-
"version": "5.4
|
|
3
|
+
"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.6.4",
|
|
5
5
|
"owner": {
|
|
6
6
|
"name": "Avi Fenesh",
|
|
7
7
|
"url": "https://github.com/avifenesh"
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
"source": "url",
|
|
139
139
|
"url": "https://github.com/agent-sh/agnix.git"
|
|
140
140
|
},
|
|
141
|
-
"description": "Lint agent configuration files (SKILL.md, CLAUDE.md, hooks, MCP) against
|
|
141
|
+
"description": "Lint agent configuration files (SKILL.md, CLAUDE.md, hooks, MCP) against 342 rules across 10+ AI tools",
|
|
142
142
|
"version": "1.0.0",
|
|
143
143
|
"category": "development",
|
|
144
144
|
"homepage": "https://github.com/agent-sh/agnix"
|
|
@@ -186,6 +186,39 @@
|
|
|
186
186
|
"version": "1.0.0",
|
|
187
187
|
"category": "productivity",
|
|
188
188
|
"homepage": "https://github.com/agent-sh/skillers"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"name": "git-map",
|
|
192
|
+
"source": {
|
|
193
|
+
"source": "url",
|
|
194
|
+
"url": "https://github.com/agent-sh/git-map.git"
|
|
195
|
+
},
|
|
196
|
+
"description": "Git history analysis: hotspots, coupling, ownership, bus factor, AI commit detection - backed by agent-analyzer Rust binary with lazy download",
|
|
197
|
+
"version": "1.0.0",
|
|
198
|
+
"category": "development",
|
|
199
|
+
"homepage": "https://github.com/agent-sh/git-map"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"name": "onboard",
|
|
203
|
+
"source": {
|
|
204
|
+
"source": "url",
|
|
205
|
+
"url": "https://github.com/agent-sh/onboard.git"
|
|
206
|
+
},
|
|
207
|
+
"description": "Codebase onboarding - automated data collection and interactive project orientation",
|
|
208
|
+
"version": "0.1.0",
|
|
209
|
+
"category": "productivity",
|
|
210
|
+
"homepage": "https://github.com/agent-sh/onboard"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"name": "can-i-help",
|
|
214
|
+
"source": {
|
|
215
|
+
"source": "url",
|
|
216
|
+
"url": "https://github.com/agent-sh/can-i-help.git"
|
|
217
|
+
},
|
|
218
|
+
"description": "Find where to contribute to any project - matches developer skills to test gaps, stale docs, bugspots, and open issues",
|
|
219
|
+
"version": "0.1.0",
|
|
220
|
+
"category": "productivity",
|
|
221
|
+
"homepage": "https://github.com/agent-sh/can-i-help"
|
|
189
222
|
}
|
|
190
223
|
]
|
|
191
224
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ 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.6.4] - 2026-03-20
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **glide-mq plugin** - New skill-only plugin with 3 skills for message queue development and migration:
|
|
15
|
+
- `glide-mq` - Greenfield queue development with glide-mq (ordering, rate limiting, flows, broadcast)
|
|
16
|
+
- `glide-mq-migrate-bullmq` - Migrate from BullMQ to glide-mq
|
|
17
|
+
- `glide-mq-migrate-bee` - Migrate from Bee-Queue to glide-mq
|
|
18
|
+
- Skills updated for glide-mq v0.12.0: runtime per-group rate limiting (`job.rateLimitGroup()`), ordering path unification, `GroupRateLimitError`
|
|
19
|
+
- Plugin count: 18 -> 19, skill count: 36 -> 39
|
|
20
|
+
|
|
10
21
|
## [5.4.1] - 2026-03-10
|
|
11
22
|
|
|
12
23
|
### Added
|
package/README.md
CHANGED
|
@@ -8,8 +8,6 @@
|
|
|
8
8
|
<strong>A modular runtime and orchestration system for AI agents.</strong>
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
|
-
> **Renamed from `awesome-slash`** — The `awesome-` prefix implies a curated list of links, but this project is a functional software suite and runtime. Please update your installs: `npm install -g agentsys`
|
|
12
|
-
|
|
13
11
|
<p align="center">
|
|
14
12
|
<a href="https://www.npmjs.com/package/agentsys"><img src="https://img.shields.io/npm/v/agentsys.svg" alt="npm version"></a>
|
|
15
13
|
<a href="https://www.npmjs.com/package/agentsys"><img src="https://img.shields.io/npm/dm/agentsys.svg" alt="npm downloads"></a>
|
|
@@ -21,7 +19,7 @@
|
|
|
21
19
|
</p>
|
|
22
20
|
|
|
23
21
|
<p align="center">
|
|
24
|
-
<b>
|
|
22
|
+
<b>19 plugins · 38 agents · 39 skills (across all repos) · 30k lines of lib code · 3,575 tests · 5 platforms</b><br>
|
|
25
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>
|
|
26
24
|
</p>
|
|
27
25
|
|
|
@@ -43,11 +41,11 @@
|
|
|
43
41
|
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, PR comments, deployment. **AgentSys is the runtime that orchestrates agents to handle all of it** — structured pipelines, gated phases, specialized agents, and persistent state that survives session boundaries.
|
|
44
42
|
|
|
45
43
|
---
|
|
46
|
-
> Building custom skills, agents, hooks, or MCP tools? [agnix](https://github.com/agent-sh/agnix) is the CLI + LSP linter that catches config errors before they fail silently - real-time IDE validation, auto suggestions, auto-fix, and
|
|
44
|
+
> Building custom skills, agents, hooks, or MCP tools? [agnix](https://github.com/agent-sh/agnix) is the CLI + LSP linter that catches config errors before they fail silently - real-time IDE validation, auto suggestions, auto-fix, and 342 rules for Claude Code, Codex, OpenCode, Cursor, Kiro, Copilot, Gemini CLI, Cline, Windsurf, Roo Code, Amp, and more.
|
|
47
45
|
|
|
48
46
|
## What This Is
|
|
49
47
|
|
|
50
|
-
An agent orchestration system —
|
|
48
|
+
An agent orchestration system — 19 plugins, 38 agents, and 39 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
49
|
|
|
52
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.
|
|
53
51
|
|
|
@@ -80,6 +78,25 @@ This came from testing on 1,000+ repositories.
|
|
|
80
78
|
<!-- GEN:START:readme-commands -->
|
|
81
79
|
| Command | What it does |
|
|
82
80
|
|---------|--------------|
|
|
81
|
+
| [`/next-task`](#next-task) | Task workflow: discovery, implementation, PR, merge |
|
|
82
|
+
| [`/agnix`](#agnix) | Lint agent configurations (342 rules) |
|
|
83
|
+
| [`/ship`](#ship) | PR creation, CI monitoring, merge |
|
|
84
|
+
| [`/deslop`](#deslop) | Clean AI slop patterns |
|
|
85
|
+
| [`/perf`](#perf) | Performance investigation with baselines and profiling |
|
|
86
|
+
| [`/drift-detect`](#drift-detect) | Compare plan vs implementation |
|
|
87
|
+
| [`/audit-project`](#audit-project) | Multi-agent iterative code review |
|
|
88
|
+
| [`/enhance`](#enhance) | Plugin, agent, and prompt analyzers |
|
|
89
|
+
| [`/repo-map`](#repo-map) | AST-based repository map |
|
|
90
|
+
| [`/sync-docs`](#sync-docs) | Sync documentation with code changes |
|
|
91
|
+
| [`/learn`](#learn) | Research topics, create learning guides |
|
|
92
|
+
| [`/consult`](#consult) | Cross-tool AI consultation |
|
|
93
|
+
| [`/debate`](#debate) | Structured debate between AI tools |
|
|
94
|
+
| [`/web-ctl`](#web-ctl) | Browser automation for AI agents |
|
|
95
|
+
| [`/release`](#release) | Versioned release with ecosystem detection |
|
|
96
|
+
| [`/skillers`](#skillers) | Workflow pattern learning and automation |
|
|
97
|
+
| [`/git-map`](#git-map) | Git history analysis: hotspots, coupling, ownership, bus factor |
|
|
98
|
+
| [`/onboard`](#onboard) | Codebase orientation for newcomers |
|
|
99
|
+
| [`/can-i-help`](#can-i-help) | Match contributor skills to project needs |
|
|
83
100
|
<!-- GEN:END:readme-commands -->
|
|
84
101
|
|
|
85
102
|
Each command works standalone. Together, they compose into end-to-end pipelines.
|
|
@@ -89,12 +106,29 @@ Each command works standalone. Together, they compose into end-to-end pipelines.
|
|
|
89
106
|
## Skills
|
|
90
107
|
|
|
91
108
|
<!-- GEN:START:readme-skills -->
|
|
92
|
-
|
|
109
|
+
39 skills included across the plugins:
|
|
93
110
|
|
|
94
111
|
| Category | Skills |
|
|
95
112
|
|----------|--------|
|
|
113
|
+
| **Workflow** | `discover-tasks`, `orchestrate-review`, `validate-delivery` |
|
|
114
|
+
| **Enhancement** | `enhance-agent-prompts`, `enhance-claude-memory`, `enhance-cross-file`, `enhance-docs`, `enhance-hooks`, `enhance-orchestrator`, `enhance-plugins`, `enhance-prompts`, `enhance-skills` |
|
|
115
|
+
| **Performance** | `baseline`, `benchmark`, `code-paths`, `investigation-logger`, `perf-analyzer`, `profile`, `theory-gatherer`, `theory-tester` |
|
|
116
|
+
| **Cleanup** | `deslop`, `sync-docs` |
|
|
117
|
+
| **Code Review** | `audit-project` |
|
|
118
|
+
| **AI Collaboration** | `consult`, `debate`, `learn`, `recommend`, `skillers-compact` |
|
|
119
|
+
| **Onboarding** | `can-i-help`, `onboard` |
|
|
120
|
+
| **Web** | `web-auth`, `web-browse` |
|
|
121
|
+
| **Release** | `release` |
|
|
122
|
+
| **Analysis** | `drift-analysis`, `git-mapping`, `repo-mapping` |
|
|
123
|
+
| **Other** | `glide-mq-migrate-bee`, `glide-mq-migrate-bullmq`, `glide-mq` |
|
|
96
124
|
<!-- GEN:END:readme-skills -->
|
|
97
125
|
|
|
126
|
+
**External skill plugins** (standalone repos, installed separately):
|
|
127
|
+
|
|
128
|
+
| Category | Skills | Plugin |
|
|
129
|
+
|----------|--------|--------|
|
|
130
|
+
| **Message Queues** | `glide-mq`, `glide-mq-migrate-bullmq`, `glide-mq-migrate-bee` | [agent-sh/glidemq](https://github.com/agent-sh/glidemq) |
|
|
131
|
+
|
|
98
132
|
Skills are the reusable implementation units. Agents invoke skills; commands orchestrate agents. When you install a plugin, its skills become available to all agents in that session.
|
|
99
133
|
|
|
100
134
|
---
|
|
@@ -104,8 +138,8 @@ Skills are the reusable implementation units. Agents invoke skills; commands orc
|
|
|
104
138
|
| Section | What's there |
|
|
105
139
|
|---------|--------------|
|
|
106
140
|
| [The Approach](#the-approach) | Why it's built this way |
|
|
107
|
-
| [Commands](#commands) | All
|
|
108
|
-
| [Skills](#skills) |
|
|
141
|
+
| [Commands](#commands) | All 19 commands overview |
|
|
142
|
+
| [Skills](#skills) | 39 skills across plugins |
|
|
109
143
|
| [Command Details](#command-details) | Deep dive into each command |
|
|
110
144
|
| [How Commands Work Together](#how-commands-work-together) | Standalone vs integrated |
|
|
111
145
|
| [Design Philosophy](#design-philosophy) | The thinking behind the architecture |
|
|
@@ -144,7 +178,7 @@ Phase 9 uses the `orchestrate-review` skill to spawn parallel reviewers (code qu
|
|
|
144
178
|
|-------|-------|------|
|
|
145
179
|
| task-discoverer | sonnet | Finds and ranks tasks from your source |
|
|
146
180
|
| worktree-manager | haiku | Creates git worktrees and branches |
|
|
147
|
-
| exploration-agent |
|
|
181
|
+
| exploration-agent | sonnet | Deep codebase analysis before planning |
|
|
148
182
|
| planning-agent | opus | Designs step-by-step implementation plan |
|
|
149
183
|
| implementation-agent | opus | Writes the actual code |
|
|
150
184
|
| test-coverage-checker | sonnet | Validates tests exist and are meaningful |
|
|
@@ -192,10 +226,10 @@ agnix catches these issues before they cause problems.
|
|
|
192
226
|
| **Security** | Prompt injection vectors, overpermissive tools, exposed secrets |
|
|
193
227
|
| **Consistency** | Conflicting rules, duplicate definitions, broken references |
|
|
194
228
|
| **Best Practices** | Tool restrictions, model selection, trigger phrase quality |
|
|
195
|
-
| **Cross-Platform** | Compatibility across Claude Code,
|
|
229
|
+
| **Cross-Platform** | Compatibility across Claude Code, Codex, OpenCode, Cursor, Kiro, Copilot, Gemini CLI, Cline, Windsurf, Roo Code, Amp, and more |
|
|
196
230
|
|
|
197
|
-
**
|
|
198
|
-
- Official tool specifications (Claude Code, Cursor, GitHub Copilot,
|
|
231
|
+
**342 validation rules** (102 auto-fixable) derived from:
|
|
232
|
+
- Official tool specifications (Claude Code, Codex CLI, OpenCode, Cursor, Kiro, GitHub Copilot, Gemini CLI, Cline, Windsurf, Roo Code, Amp, and more)
|
|
199
233
|
- Research papers on agent reliability and prompt injection
|
|
200
234
|
- Real-world testing across 500+ repositories
|
|
201
235
|
- Community-reported issues and edge cases
|
|
@@ -210,6 +244,12 @@ agnix catches these issues before they cause problems.
|
|
|
210
244
|
| MCP | `*.mcp.json`, MCP server configs |
|
|
211
245
|
| Cursor | `.cursor/rules/*.mdc`, `.cursorrules` |
|
|
212
246
|
| Copilot | `.github/copilot-instructions.md` |
|
|
247
|
+
| Kiro | `.kiro/steering/**/*.md`, `.kiro/agents/*.json`, `.kiro/hooks/*.kiro.hook`, `POWER.md` |
|
|
248
|
+
| Windsurf | `.windsurf/rules/**/*.md`, `.windsurf/workflows/**/*.md`, `.windsurfrules` |
|
|
249
|
+
| Roo Code | `.roo/rules/*.md`, `.roo/rules-{mode}/*.md`, `.roomodes`, `.rooignore`, `.roorules` |
|
|
250
|
+
| Gemini CLI | `GEMINI.md`, `.gemini/settings.json`, `gemini-extension.json` |
|
|
251
|
+
| OpenCode | `opencode.json` |
|
|
252
|
+
| Amp | `.agents/checks/**/*.md`, `.amp/settings.json` |
|
|
213
253
|
|
|
214
254
|
**CI/CD Integration:**
|
|
215
255
|
|
|
@@ -610,7 +650,7 @@ agent-knowledge/
|
|
|
610
650
|
/learn python async --no-enhance # Skip enhancement pass
|
|
611
651
|
```
|
|
612
652
|
|
|
613
|
-
**Agent:** learn-agent (
|
|
653
|
+
**Agent:** learn-agent (sonnet model)
|
|
614
654
|
|
|
615
655
|
---
|
|
616
656
|
|
|
@@ -804,7 +844,137 @@ No per-turn overhead - it reads transcripts that Claude Code already saves.
|
|
|
804
844
|
|
|
805
845
|
**Agents:** skillers-compactor (sonnet), skillers-recommender (opus)
|
|
806
846
|
|
|
807
|
-
**Skills:** compact, recommend
|
|
847
|
+
**Skills:** skillers-compact, recommend
|
|
848
|
+
|
|
849
|
+
---
|
|
850
|
+
|
|
851
|
+
### /git-map
|
|
852
|
+
|
|
853
|
+
**Purpose:** Analyze git history to surface hotspots, coupling, ownership, bus factor, bugspots, area health, and AI attribution.
|
|
854
|
+
|
|
855
|
+
**How it works:**
|
|
856
|
+
|
|
857
|
+
The plugin wraps the [agent-analyzer](https://github.com/agent-sh/agent-analyzer) Rust binary. Run `init` once to scan git history and cache the result as `repo-intel.json`. Then run queries instantly.
|
|
858
|
+
|
|
859
|
+
**20 query types:**
|
|
860
|
+
|
|
861
|
+
| Category | Queries |
|
|
862
|
+
|----------|---------|
|
|
863
|
+
| Activity | `hotspots`, `coldspots`, `file-history` |
|
|
864
|
+
| Quality | `bugspots`, `test-gaps`, `diff-risk` |
|
|
865
|
+
| People | `ownership`, `contributors`, `bus-factor` |
|
|
866
|
+
| Coupling | `coupling` |
|
|
867
|
+
| Standards | `norms`, `conventions` |
|
|
868
|
+
| Health | `areas`, `health`, `release-info` |
|
|
869
|
+
| AI | `ai-ratio`, `recent-ai` |
|
|
870
|
+
| Guidance | `onboard`, `can-i-help` |
|
|
871
|
+
| Docs | `doc-drift` |
|
|
872
|
+
|
|
873
|
+
**9 plugins consume git-map data automatically** - deslop, sync-docs, drift-detect, audit-project, next-task, enhance, ship, onboard, can-i-help.
|
|
874
|
+
|
|
875
|
+
**Usage:**
|
|
876
|
+
|
|
877
|
+
```bash
|
|
878
|
+
/git-map init # First-time scan
|
|
879
|
+
/git-map update # Add new commits
|
|
880
|
+
/git-map query hotspots # Most active files
|
|
881
|
+
/git-map query ownership src/ # Who owns a path
|
|
882
|
+
/git-map query bus-factor # Knowledge risk
|
|
883
|
+
```
|
|
884
|
+
|
|
885
|
+
[Full query reference →](https://github.com/agent-sh/git-map)
|
|
886
|
+
|
|
887
|
+
---
|
|
888
|
+
|
|
889
|
+
### /onboard
|
|
890
|
+
|
|
891
|
+
**Purpose:** Get oriented in any codebase in under 3 minutes.
|
|
892
|
+
|
|
893
|
+
**What happens when you run it:**
|
|
894
|
+
|
|
895
|
+
1. **Collect** (68ms median) - Pure JavaScript scans manifest, structure, README, CI, git info. Normal depth adds CLAUDE.md/AGENTS.md and repo-intel. No LLM tokens.
|
|
896
|
+
2. **Synthesize** - Opus agent produces a structured overview: tech stack, key files, active areas, conventions
|
|
897
|
+
3. **Guide** - Interactive Q&A: ask about specific files, areas, or patterns
|
|
898
|
+
|
|
899
|
+
**74% fewer tokens** than manual onboarding. Validated on 100 repos across JS/TS, Rust, Go, Python, C/C++, Java, and Deno.
|
|
900
|
+
|
|
901
|
+
**Depth levels:**
|
|
902
|
+
|
|
903
|
+
| Level | Time | Data |
|
|
904
|
+
|-------|------|------|
|
|
905
|
+
| quick | ~2s | Manifest + README + structure |
|
|
906
|
+
| normal | ~5s | + CLAUDE.md/AGENTS.md + CI + repo-intel |
|
|
907
|
+
| deep | ~15s | + repo-map AST symbols |
|
|
908
|
+
|
|
909
|
+
**Supported manifests:** package.json, Cargo.toml, go.mod, pyproject.toml, deno.json, CMakeLists.txt, meson.build, setup.py, pom.xml, build.gradle. Detects monorepos (npm/pnpm/lerna/Cargo workspaces, Python libs/, Deno workspaces).
|
|
910
|
+
|
|
911
|
+
**Usage:**
|
|
912
|
+
|
|
913
|
+
```bash
|
|
914
|
+
/onboard # Current repo
|
|
915
|
+
/onboard /path/to/repo # Specific repo
|
|
916
|
+
/onboard --depth=deep # Include AST data
|
|
917
|
+
```
|
|
918
|
+
|
|
919
|
+
**Agent:** onboard-agent (opus model)
|
|
920
|
+
|
|
921
|
+
[Full documentation →](https://github.com/agent-sh/onboard)
|
|
922
|
+
|
|
923
|
+
---
|
|
924
|
+
|
|
925
|
+
### /can-i-help
|
|
926
|
+
|
|
927
|
+
**Purpose:** Match a contributor's skills to specific areas where they can help.
|
|
928
|
+
|
|
929
|
+
**What happens when you run it:**
|
|
930
|
+
|
|
931
|
+
1. **Collect** - Gathers project data + contributor signals (test gaps, doc drift, bugspots, good-first areas, open issues). Validated on 100 repos.
|
|
932
|
+
2. **Match** - Opus agent asks about developer background and matches skills to project needs
|
|
933
|
+
3. **Guide** - For each recommendation: reads code, explains what needs doing, gives a concrete first step
|
|
934
|
+
|
|
935
|
+
**Matching:**
|
|
936
|
+
|
|
937
|
+
| Developer profile | Gets recommended |
|
|
938
|
+
|-------------------|------------------|
|
|
939
|
+
| New to stack | Good-first areas with clear patterns |
|
|
940
|
+
| Experienced | Hard problems in pain-point areas |
|
|
941
|
+
| Test-focused | Test gaps in frequently-changed files |
|
|
942
|
+
| Bug-focused | Bugspot files + relevant open issues |
|
|
943
|
+
| Docs-focused | Stale documentation with code examples |
|
|
944
|
+
|
|
945
|
+
**Usage:**
|
|
946
|
+
|
|
947
|
+
```bash
|
|
948
|
+
/can-i-help # Current repo
|
|
949
|
+
/can-i-help /path/to/repo # Specific repo
|
|
950
|
+
/can-i-help --depth=deep # Include AST data
|
|
951
|
+
```
|
|
952
|
+
|
|
953
|
+
**Agent:** can-i-help-agent (opus model)
|
|
954
|
+
|
|
955
|
+
[Full documentation →](https://github.com/agent-sh/can-i-help)
|
|
956
|
+
|
|
957
|
+
---
|
|
958
|
+
|
|
959
|
+
## Skill-Only Plugins
|
|
960
|
+
|
|
961
|
+
Plugins that provide skills without a `/` command. Installed alongside agentsys; skills become available to all agents.
|
|
962
|
+
|
|
963
|
+
### glide-mq
|
|
964
|
+
|
|
965
|
+
**Purpose:** Build message queues, background jobs, and workflow orchestration with [glide-mq](https://github.com/avifenesh/glide-mq) - high-performance Node.js queue on Valkey/Redis.
|
|
966
|
+
|
|
967
|
+
**Skills:**
|
|
968
|
+
|
|
969
|
+
| Skill | What it does |
|
|
970
|
+
|-------|--------------|
|
|
971
|
+
| `glide-mq` | Greenfield queue development - queues, workers, ordering, rate limiting, flows, broadcast, step jobs |
|
|
972
|
+
| `glide-mq-migrate-bullmq` | Migrate from BullMQ to glide-mq - API mapping, breaking changes, feature comparison |
|
|
973
|
+
| `glide-mq-migrate-bee` | Migrate from Bee-Queue to glide-mq - API mapping, pattern conversion |
|
|
974
|
+
|
|
975
|
+
**Key features covered:** per-key ordering, group concurrency, runtime group rate limiting (`job.rateLimitGroup()`), token bucket, DAG workflows, broadcast pub/sub, step jobs, deduplication, serverless producers.
|
|
976
|
+
|
|
977
|
+
[Full documentation →](https://github.com/agent-sh/glidemq) | [glide-mq docs →](https://avifenesh.github.io/glide-mq.dev/)
|
|
808
978
|
|
|
809
979
|
---
|
|
810
980
|
|
|
@@ -898,7 +1068,7 @@ Approve the plan. See the results. The middle is automated. One plan approval un
|
|
|
898
1068
|
**8. Right model for the task**
|
|
899
1069
|
|
|
900
1070
|
Match model capability to task complexity:
|
|
901
|
-
- **opus** -
|
|
1071
|
+
- **opus** - Planning, implementation, review orchestration
|
|
902
1072
|
- **sonnet** - Pattern matching, validation, discovery
|
|
903
1073
|
- **haiku** - Git operations, file moves, CI polling
|
|
904
1074
|
|
|
@@ -988,7 +1158,7 @@ agentsys --development # Dev mode (bypasses marketplace)
|
|
|
988
1158
|
- ast-grep (`sg`) installed
|
|
989
1159
|
|
|
990
1160
|
**For /agnix:**
|
|
991
|
-
- [agnix CLI](https://github.com/agent-sh/agnix) installed (`cargo install agnix-cli
|
|
1161
|
+
- [agnix CLI](https://github.com/agent-sh/agnix) installed (`npm install -g agnix`, `cargo install agnix-cli`, or `brew install agnix`)
|
|
992
1162
|
|
|
993
1163
|
**Local diagnostics (optional):**
|
|
994
1164
|
```bash
|
|
@@ -1011,7 +1181,7 @@ The system is built on research, not guesswork.
|
|
|
1011
1181
|
- Instruction following reliability
|
|
1012
1182
|
|
|
1013
1183
|
**Testing:**
|
|
1014
|
-
- 3,
|
|
1184
|
+
- 3,575 tests passing
|
|
1015
1185
|
- Drift-detect validated on 1,000+ repositories
|
|
1016
1186
|
- E2E workflow testing across all commands
|
|
1017
1187
|
- Cross-platform validation (Claude Code, OpenCode, Codex CLI, Cursor, Kiro)
|