delegate-team 2.0.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.
@@ -0,0 +1,6 @@
1
+ import {
2
+ runServe
3
+ } from "../chunk-VTAPBAJE.js";
4
+ export {
5
+ runServe
6
+ };
package/package.json ADDED
@@ -0,0 +1,86 @@
1
+ {
2
+ "name": "delegate-team",
3
+ "version": "2.0.0",
4
+ "description": "Agentic engineering supersystem. One CLI to run the full /mavis-ship chain \u2014 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
+ "type": "module",
6
+ "main": "dist/cli.js",
7
+ "bin": {
8
+ "dt": "dist/cli.js",
9
+ "delegate-team": "dist/cli.js"
10
+ },
11
+ "scripts": {
12
+ "build": "tsup",
13
+ "prepack": "npm run build",
14
+ "prepare": "npm run build",
15
+ "dev": "tsup --watch",
16
+ "test": "vitest run",
17
+ "typecheck": "tsc --noEmit",
18
+ "size": "npm pack --dry-run",
19
+ "publish:dry": "npm publish --dry-run --access public"
20
+ },
21
+ "files": [
22
+ "dist",
23
+ "README.md",
24
+ "LICENSE"
25
+ ],
26
+ "engines": {
27
+ "node": ">=18"
28
+ },
29
+ "publishConfig": {
30
+ "access": "public",
31
+ "tag": "latest"
32
+ },
33
+ "keywords": [
34
+ "delegate-team",
35
+ "mavis-ship",
36
+ "ai",
37
+ "agent",
38
+ "agents",
39
+ "agentic-engineering",
40
+ "multi-agent",
41
+ "orchestration",
42
+ "mmas",
43
+ "cli",
44
+ "delegation",
45
+ "skills",
46
+ "skills-sh",
47
+ "autoresearch",
48
+ "superpowers",
49
+ "waza",
50
+ "unslop",
51
+ "claude-code",
52
+ "codex",
53
+ "cursor",
54
+ "minimax",
55
+ "mmx",
56
+ "vertex",
57
+ "gemini",
58
+ "metagpt",
59
+ "llm",
60
+ "routing",
61
+ "mcp"
62
+ ],
63
+ "author": {
64
+ "name": "Mamdouh Aboammar",
65
+ "email": "mamdouhfces1997@gmail.com",
66
+ "url": "https://github.com/imMamdouhaboammar"
67
+ },
68
+ "license": "MIT",
69
+ "bugs": {
70
+ "url": "https://github.com/imMamdouhaboammar/delegate-team/issues"
71
+ },
72
+ "homepage": "https://github.com/imMamdouhaboammar/delegate-team#readme",
73
+ "repository": {
74
+ "type": "git",
75
+ "url": "git+https://github.com/imMamdouhaboammar/delegate-team.git"
76
+ },
77
+ "devDependencies": {
78
+ "@types/node": "^20.0.0",
79
+ "tsup": "^8.5.1",
80
+ "typescript": "^5.3.0",
81
+ "vitest": "^2.0.0"
82
+ },
83
+ "dependencies": {
84
+ "commander": "^15.0.0"
85
+ }
86
+ }