delegate-team 2.5.0 → 2.5.1

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 (3) hide show
  1. package/README.md +14 -1
  2. package/dist/cli.js +4 -1
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -105,6 +105,7 @@ After install, every component is idempotent and verifiable.
105
105
  | **`/mavis-ship`** | [`orchestrator/`](./orchestrator/) | ![Bash](https://img.shields.io/badge/Bash-4+-4EAA25?style=flat-square) | ![Stable](https://img.shields.io/badge/stable-success?style=flat-square) | Single-command orchestrator with regex routing |
106
106
  | **Skill scaffolder** | [`scaffolder/`](./scaffolder/) | ![Bash](https://img.shields.io/badge/Bash-4+-4EAA25?style=flat-square) | ![Stable](https://img.shields.io/badge/stable-success?style=flat-square) | `mavis-skill-scaffold` generator |
107
107
  | **MMAS** | [`mmas/`](./mmas/) | ![Python](https://img.shields.io/badge/Python-3.10+-3776AB?style=flat-square) | ![Beta](https://img.shields.io/badge/beta-yellow?style=flat-square) | 8-agent multi-agent team framework |
108
+ | **🆕 agent-kernel** | [`agent-kernel/`](./agent-kernel/) | ![Node.js](https://img.shields.io/badge/Node-18+-339933?style=flat-square) | ![Stable](https://img.shields.io/badge/stable-success?style=flat-square) | Memory + governance — shared rules, episodic recall, approval inbox |
108
109
  | **God Agent** | [`god-agent/`](./god-agent/) | ![Python](https://img.shields.io/badge/Python-3.10+-3776AB?style=flat-square) | ![Stable](https://img.shields.io/badge/stable-success?style=flat-square) | Codex + opencode dispatcher |
109
110
  | **MiniMax Coder** | [`minimax-coder/`](./minimax-coder/) | ![Python](https://img.shields.io/badge/Python-3.10+-3776AB?style=flat-square) | ![Stable](https://img.shields.io/badge/stable-success?style=flat-square) | MiniMax via `mmx` CLI |
110
111
  | **Vertex Coder** | [`vertex-coder/`](./vertex-coder/) | ![Python](https://img.shields.io/badge/Python-3.10+-3776AB?style=flat-square) | ![Stable](https://img.shields.io/badge/stable-success?style=flat-square) | Gemini via google-genai |
@@ -114,6 +115,7 @@ After install, every component is idempotent and verifiable.
114
115
 
115
116
  | Framework | Stars | What it adds |
116
117
  |---|---|---|
118
+ | 🆕 **[agent-kernel](./integrations/agent-kernel.md)** | ![Bundled](https://img.shields.io/badge/bundled-2.5.0-success?style=flat-square) | Memory + governance layer — vendored v0.0.5, opt-in via `--kernel` |
117
119
  | [superpowers](https://github.com/obra/superpowers) | ![242k](https://img.shields.io/github/stars/obra/superpowers?style=flat-square&color=yellow) | Methodology — 14 skills, brainstorm-first hard gate |
118
120
  | [Waza](https://github.com/tw93/Waza) | ![6.1k](https://img.shields.io/github/stars/tw93/Waza?style=flat-square&color=yellow) | Entry-point — 8 habits-engineering skills |
119
121
  | [unslop-preflight](https://github.com/imMamdouhaboammar/unslop-preflight) | ![New](https://img.shields.io/badge/new-ff69b4?style=flat-square) | UI quality gate — 23 reasoning gates |
@@ -137,6 +139,11 @@ right stages.
137
139
  └─────────────┬───────────────────┘
138
140
 
139
141
  ┌─────────────▼───────────────────┐
142
+ │ 🆕 agent-kernel memory search │ recall past rules +
143
+ │ ───────────────────────────── │ episodes relevant to task
144
+ └─────────────┬───────────────────┘
145
+
146
+ ┌─────────────▼───────────────────┐
140
147
  │ unslop audit (BLOCKING) │ score ≥70 to proceed
141
148
  │ ───────────────────────────── │ for UI tasks only
142
149
  └─────────────┬───────────────────┘
@@ -157,13 +164,19 @@ right stages.
157
164
  ┌──▼──────────────────▼────────────────────▼────────┐
158
165
  │ Waza /check → quality-guard (Mavis) → SHIP │
159
166
  │ review + 5-layer pre-delivery check │
160
- └──────────────────────────────────────────────────┘
167
+ └──────────────────────┬───────────────────────────┘
168
+
169
+ ┌─────────────▼───────────────────┐
170
+ │ 🆕 agent-kernel episode add │ capture outcome for
171
+ │ ───────────────────────────── │ future sessions to recall
172
+ └─────────────────────────────────┘
161
173
  ```
162
174
 
163
175
  **Routing logic** (live in [`orchestrator/scripts/orchestrate.sh`](./orchestrator/scripts/orchestrate.sh)):
164
176
 
165
177
  | Task signature | Route |
166
178
  |---|---|
179
+ | Memory / remember / recall / past episodes | 🆕 **agent-kernel** (shared rules + episodic search) |
167
180
  | Has measurable metric (e.g. "p95 < 200ms") | autoresearch loop |
168
181
  | UI task (frontend, page, modal, shadcn) | unslop BLOCKING → /delegate-team |
169
182
  | Multi-agent signals (squad, spawn team, swarm) | /mavis-team MMAS |
package/dist/cli.js CHANGED
@@ -796,7 +796,10 @@ async function runMetaGPTRouter(prompt, options = {}) {
796
796
 
797
797
  // src/cli.ts
798
798
  import fs from "fs";
799
- var packageJsonPath = new URL("../package.json", import.meta.url);
799
+ import { dirname as dirname2, join as join6 } from "path";
800
+ import { fileURLToPath } from "url";
801
+ var here = dirname2(fileURLToPath(import.meta.url));
802
+ var packageJsonPath = join6(here, "..", "package.json");
800
803
  var version = "1.0.0";
801
804
  try {
802
805
  const pkg = JSON.parse(fs.readFileSync(packageJsonPath, "utf8"));
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "delegate-team",
3
- "version": "2.5.0",
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: agent-kernel (vendored memory layer), superpowers, Waza, unslop-preflight, autoresearch.",
3
+ "version": "2.5.1",
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: agent-kernel (vendored memory layer), superpowers, Waza, unslop-preflight, autoresearch.",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",
7
7
  "bin": {
@@ -86,4 +86,4 @@
86
86
  "dependencies": {
87
87
  "commander": "^15.0.0"
88
88
  }
89
- }
89
+ }