delegate-team 2.2.0 → 2.3.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/README.md +21 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,10 +11,13 @@
|
|
|
11
11
|
**Waza `/think` → unslop audit → superpowers writing-plans →**
|
|
12
12
|
**autoresearch | `/delegate-team` | `/mavis-team` → Waza `/check` → quality-guard → SHIP**
|
|
13
13
|
|
|
14
|
+
[](https://www.npmjs.com/package/delegate-team)
|
|
15
|
+
[](https://www.npmjs.com/package/delegate-team)
|
|
14
16
|
[](https://github.com/imMamdouhaboammar/delegate-team/releases)
|
|
15
17
|
[](https://github.com/imMamdouhaboammar/delegate-team/blob/master/LICENSE)
|
|
16
18
|
[](https://github.com/imMamdouhaboammar/delegate-team/stargazers)
|
|
17
19
|
[](https://github.com/imMamdouhaboammar/delegate-team/actions/workflows/ci.yml)
|
|
20
|
+
[](https://github.com/imMamdouhaboammar/delegate-team/actions/workflows/npm-publish.yml)
|
|
18
21
|
[](https://skills.sh/imMamdouhaboammar/delegate-team)
|
|
19
22
|
[](https://nodejs.org)
|
|
20
23
|
[](https://python.org)
|
|
@@ -56,9 +59,23 @@ cd delegate-team
|
|
|
56
59
|
|
|
57
60
|
## 📦 Quick install
|
|
58
61
|
|
|
59
|
-
**
|
|
62
|
+
**Four installation paths. Pick your favorite.**
|
|
60
63
|
|
|
61
|
-
### Path A —
|
|
64
|
+
### Path A — npm (the fastest — just the `dt` CLI)
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
# Global install (preferred for a CLI on your PATH)
|
|
68
|
+
npm install -g delegate-team
|
|
69
|
+
dt --version # → 2.2.0
|
|
70
|
+
dt run "<task>"
|
|
71
|
+
|
|
72
|
+
# Or run without installing
|
|
73
|
+
npx delegate-team --help
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
Releases auto-publish from the `npm-publish.yml` GitHub Action on every `v*` tag push.
|
|
77
|
+
|
|
78
|
+
### Path B — Skills.sh CLI (skill discovery + global install)
|
|
62
79
|
|
|
63
80
|
```bash
|
|
64
81
|
npx skills add imMamdouhaboammar/delegate-team -a claude-code -g -y
|
|
@@ -68,14 +85,14 @@ This installs all 8 sub-skills to your Claude Code (or any of 68 supported agent
|
|
|
68
85
|
and makes `delegate-team`, `mavis-ship`, `mmas`, `skill-scaffold`, `dt`, etc.
|
|
69
86
|
all invocable by name.
|
|
70
87
|
|
|
71
|
-
### Path
|
|
88
|
+
### Path C — Claude Code marketplace (native plugin install)
|
|
72
89
|
|
|
73
90
|
```bash
|
|
74
91
|
/plugin marketplace add imMamdouhaboammar/delegate-team
|
|
75
92
|
/plugin install delegate-team@delegate-team
|
|
76
93
|
```
|
|
77
94
|
|
|
78
|
-
### Path
|
|
95
|
+
### Path D — Bootstrap script (everything, including companion frameworks)
|
|
79
96
|
|
|
80
97
|
```bash
|
|
81
98
|
git clone https://github.com/imMamdouhaboammar/delegate-team
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "delegate-team",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"description": "Agentic engineering supersystem. One CLI to run the full /mavis-ship chain — design + plan + execute (autoresearch / multi-model / multi-agent) + verify + ship. Bundles a `dt` delegation gateway that routes Claude Code tasks to backends (Codex, MiniMax via mmx, Gemini, MetaGPT), plus a complete orchestrator framework installable via `npx skills add`. Companion frameworks: superpowers, Waza, unslop-preflight, autoresearch.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cli.js",
|