You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<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`
<em>Plugins distributed as standalone repos under <ahref="https://github.com/agent-sh">agent-sh</a> org — agentsys is the marketplace & installer</em>
26
24
</p>
27
25
@@ -47,7 +45,7 @@ AI models can write code. That's not the hard part anymore. The hard part is eve
47
45
48
46
## What This Is
49
47
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.
48
+
An agent orchestration system — 18 plugins, 38 agents, and 36 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
@@ -96,6 +94,9 @@ This came from testing on 1,000+ repositories.
96
94
|[`/web-ctl`](#web-ctl)| Browser automation for AI agents |
97
95
|[`/release`](#release)| Versioned release with ecosystem detection |
98
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 |
99
100
<!-- GEN:END:readme-commands -->
100
101
101
102
Each command works standalone. Together, they compose into end-to-end pipelines.
@@ -105,18 +106,20 @@ Each command works standalone. Together, they compose into end-to-end pipelines.
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.
@@ -128,8 +131,8 @@ Skills are the reusable implementation units. Agents invoke skills; commands orc
128
131
| Section | What's there |
129
132
|---------|--------------|
130
133
|[The Approach](#the-approach)| Why it's built this way |
131
-
|[Commands](#commands)| All 16 commands overview |
132
-
|[Skills](#skills)|32 skills across plugins |
134
+
|[Commands](#commands)| All 19 commands overview |
135
+
|[Skills](#skills)|36 skills across plugins |
133
136
|[Command Details](#command-details)| Deep dive into each command |
134
137
|[How Commands Work Together](#how-commands-work-together)| Standalone vs integrated |
135
138
|[Design Philosophy](#design-philosophy)| The thinking behind the architecture |
@@ -834,7 +837,111 @@ No per-turn overhead - it reads transcripts that Claude Code already saves.
**Purpose:** Analyze git history to surface hotspots, coupling, ownership, bus factor, bugspots, area health, and AI attribution.
847
+
848
+
**How it works:**
849
+
850
+
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.
0 commit comments