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.
Files changed (2) hide show
  1. package/README.md +21 -4
  2. 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
+ [![npm version](https://img.shields.io/npm/v/delegate-team?color=cb3837&logo=npm&label=npm&style=for-the-badge)](https://www.npmjs.com/package/delegate-team)
15
+ [![npm downloads](https://img.shields.io/npm/dm/delegate-team?color=cb3837&logo=npm&style=for-the-badge)](https://www.npmjs.com/package/delegate-team)
14
16
  [![Version](https://img.shields.io/github/v/release/imMamdouhaboammar/delegate-team?color=blue&label=version&style=for-the-badge)](https://github.com/imMamdouhaboammar/delegate-team/releases)
15
17
  [![License: MIT](https://img.shields.io/github/license/imMamdouhaboammar/delegate-team?style=for-the-badge&color=blue)](https://github.com/imMamdouhaboammar/delegate-team/blob/master/LICENSE)
16
18
  [![Stars](https://img.shields.io/github/stars/imMamdouhaboammar/delegate-team?style=for-the-badge&logo=github)](https://github.com/imMamdouhaboammar/delegate-team/stargazers)
17
19
  [![CI](https://img.shields.io/github/actions/workflow/status/imMamdouhaboammar/delegate-team/ci.yml?branch=master&style=for-the-badge&label=CI)](https://github.com/imMamdouhaboammar/delegate-team/actions/workflows/ci.yml)
20
+ [![npm publish](https://img.shields.io/github/actions/workflow/status/imMamdouhaboammar/delegate-team/npm-publish.yml?style=for-the-badge&label=npm%20publish&logo=npm)](https://github.com/imMamdouhaboammar/delegate-team/actions/workflows/npm-publish.yml)
18
21
  [![Skills.sh](https://img.shields.io/badge/dynamic/json?color=blueviolet&label=Skills.sh&query=%24.rank&url=https%3A%2F%2Fskills.sh%2Fapi%2Frank%2FimMamdouhaboammar%2Fdelegate-team&style=for-the-badge)](https://skills.sh/imMamdouhaboammar/delegate-team)
19
22
  [![Node](https://img.shields.io/badge/Node.js-18%2B-339933?style=for-the-badge&logo=node.js&logoColor=white)](https://nodejs.org)
20
23
  [![Python](https://img.shields.io/badge/Python-3.10%2B-3776AB?style=for-the-badge&logo=python&logoColor=white)](https://python.org)
@@ -56,9 +59,23 @@ cd delegate-team
56
59
 
57
60
  ## 📦 Quick install
58
61
 
59
- **Three installation paths. Pick your favorite.**
62
+ **Four installation paths. Pick your favorite.**
60
63
 
61
- ### Path A — Skills.sh CLI (skill discovery + global install)
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 B — Claude Code marketplace (native plugin install)
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 C — Bootstrap script (everything, including companion frameworks)
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.2.0",
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",