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
-`docs/modules/coordination_workflow.md` - **Round lifecycle and checklist workflow** — the implement → evaluate → submit cycle, when to call `submit_checklist` vs `new_answer`, and why agents must not re-evaluate within a round
Copy file name to clipboardExpand all lines: CHANGELOG.md
+18-3Lines changed: 18 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,17 +9,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
## Recent Releases
11
11
12
+
**v0.1.68 (March 25, 2026)** - Checkpoint Mode
13
+
New checkpoint coordination mode with delegator pattern — main agent plans solo then delegates to team via `checkpoint()` tool. LLM API circuit breaker for 429 handling. WebUI checkpoint support. LiteLLM supply chain fix.
14
+
12
15
**v0.1.67 (March 23, 2026)** - Modernized WebUI
13
16
Complete WebUI redesign with inline final answers, keyboard shortcuts, and Zustand state management. RoundBudgetGuardHook for per-round cost control. Unified parallel pre-collab phases. Regression guard for safe iterations.
14
17
15
18
**v0.1.66 (March 20, 2026)** - Step Mode
16
19
New `--step` CLI mode for external orchestrators to run one agent for one step then exit. Powers massgen-refinery plugin step mode. Codex Windows UTF-8 fixes and console text sanitization.
Standalone MCP servers (quality, workflow, media) bring MassGen's checklist-based evaluation and multi-round refinement to Claude Code through the massgen-refinery plugin. Single-agent refinement working; multi-agent experimental.
20
-
21
21
---
22
22
23
+
## [0.1.68] - 2026-03-25
24
+
25
+
### Added
26
+
-**Checkpoint Coordination Mode** ([#1028](https://github.com/massgen/MassGen/pull/1028)): New delegator pattern — main agent plans solo then calls `checkpoint()` to delegate execution to fresh agent instances with clean backends and cloned workspaces
27
+
-**WebUI Checkpoint Support** ([#1028](https://github.com/massgen/MassGen/pull/1028)): Checkpoint mode display integrated into the modernized WebUI
28
+
-**LLM API Circuit Breaker** ([#1024](https://github.com/massgen/MassGen/pull/1024)): Automatic 429 rate limit handling with circuit breaker pattern for Claude backend
29
+
30
+
### Fixed
31
+
-**LiteLLM Supply Chain Fix** ([#1025](https://github.com/massgen/MassGen/pull/1025)): Pinned litellm<=1.82.6 and committed uv.lock to prevent dependency attacks
32
+
33
+
### Technical Details
34
+
-**Major Focus**: Checkpoint Mode — delegator pattern for multi-agent coordination
-`docs/modules/coordination_workflow.md` - **Round lifecycle and checklist workflow** — the implement → evaluate → submit cycle, when to call `submit_checklist` vs `new_answer`, and why agents must not re-evaluate within a round
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -359,7 +359,7 @@ Create a `.env` file in the `massgen` directory as described in [README](README.
359
359
360
360
## 🔧 Development Workflow
361
361
362
-
> **Important**: Our next version is v0.1.68. If you want to contribute, please contribute to the `dev/v0.1.68` branch (or `main` if dev/v0.1.68 doesn't exist yet).
362
+
> **Important**: Our next version is v0.1.69. If you want to contribute, please contribute to the `dev/v0.1.69` branch (or `main` if dev/v0.1.69 doesn't exist yet).
363
363
364
364
### 1. Create Feature Branch
365
365
@@ -368,7 +368,7 @@ Create a `.env` file in the `massgen` directory as described in [README](README.
368
368
git fetch upstream
369
369
370
370
# Create feature branch from dev/v0.1.60 (or main if dev branch doesn't exist yet)
@@ -155,19 +155,20 @@ This project started with the "threads of thought" and "iterative refinement" id
155
155
156
156
---
157
157
158
-
## 🆕 Latest Features (v0.1.67)
158
+
## 🆕 Latest Features (v0.1.68)
159
159
160
-
**🎉 Released: March 23, 2026**
160
+
**🎉 Released: March 25, 2026**
161
161
162
-
**What's New in v0.1.67:**
163
-
-**🖥️ Modernized WebUI** - Complete UI redesign with inline final answers, keyboard shortcuts, and Zustand state management.
164
-
-**💰 RoundBudgetGuardHook** - Per-round cost enforcement prevents unexpected API bill overruns.
165
-
-**🎭 Unified Pre-Collab** - Personas, evaluation criteria, and prompt improvement run in parallel.
162
+
**What's New in v0.1.68:**
163
+
-**🔀 Checkpoint Mode** - Main agent plans solo then delegates to the team via `checkpoint()` tool with fresh agent instances.
164
+
-**⚡ LLM API Circuit Breaker** - Automatic 429 rate limit handling for Claude backend.
165
+
-**🖥️ WebUI Checkpoint Support** - Checkpoint mode display integrated into the modernized WebUI.
166
+
-**🔒 LiteLLM Fix** - Supply chain protection with pinned dependency and committed lock file.
166
167
167
-
**Try v0.1.67 Features:**
168
+
**Try v0.1.68 Features:**
168
169
```bash
169
-
pip install massgen==0.1.67
170
-
# Try the modernized WebUI
170
+
pip install massgen==0.1.68
171
+
# Try checkpoint mode
171
172
uv run massgen --web
172
173
```
173
174
@@ -1240,17 +1241,19 @@ MassGen is currently in its foundational stage, with a focus on parallel, asynch
1240
1241
1241
1242
⚠️ **Early Stage Notice:** As MassGen is in active development, please expect upcoming breaking architecture changes as we continue to refine and improve the system.
1242
1243
1243
-
### Recent Achievements (v0.1.67)
1244
+
### Recent Achievements (v0.1.68)
1244
1245
1245
-
**🎉 Released: March 23, 2026**
1246
+
**🎉 Released: March 25, 2026**
1246
1247
1247
-
#### Modernized WebUI & Quality
1248
-
-**Modernized WebUI** ([#1016](https://github.com/massgen/MassGen/pull/1016)): Complete UI redesign with inline final answers, keyboard shortcuts, and Zustand state management
1249
-
-**RoundBudgetGuardHook** ([#1013](https://github.com/massgen/MassGen/pull/1013)): Per-round cost enforcement with configurable warning thresholds
1250
-
-**Unified Pre-Collab** ([#1016](https://github.com/massgen/MassGen/pull/1016)): Personas, evaluation criteria, and prompt improvement run in parallel
1251
-
-**Regression Guard** ([#1016](https://github.com/massgen/MassGen/pull/1016)): Blind A/B verification subagent before submitting revisions
1248
+
#### Checkpoint Mode
1249
+
-**Checkpoint Coordination Mode** ([#1028](https://github.com/massgen/MassGen/pull/1028)): Delegator pattern — main agent plans solo then delegates to team via `checkpoint()` tool with fresh agent instances
1250
+
-**WebUI Checkpoint Support** ([#1028](https://github.com/massgen/MassGen/pull/1028)): Checkpoint mode display in the modernized WebUI
1251
+
-**LLM API Circuit Breaker** ([#1024](https://github.com/massgen/MassGen/pull/1024)): Automatic 429 rate limit handling with circuit breaker pattern (currently Claude backend only)
1252
+
-**LiteLLM Supply Chain Fix** ([#1025](https://github.com/massgen/MassGen/pull/1025)): Pinned litellm<=1.82.6 and committed uv.lock
1252
1253
1253
-
### Previous Achievements (v0.0.3 - v0.1.66)
1254
+
### Previous Achievements (v0.0.3 - v0.1.67)
1255
+
1256
+
✅ **Modernized WebUI (v0.1.67)**: Complete WebUI redesign with inline final answers, keyboard shortcuts, and Zustand state management. RoundBudgetGuardHook for per-round cost control. Unified parallel pre-collab phases. Regression guard.
1254
1257
1255
1258
✅ **Step Mode (v0.1.66)**: New `--step` CLI mode for external orchestrators. Powers massgen-refinery plugin step mode. Codex Windows UTF-8 fixes and console text sanitization.
1256
1259
@@ -1529,9 +1532,9 @@ MassGen is currently in its foundational stage, with a focus on parallel, asynch
1529
1532
1530
1533
We welcome community contributions to achieve these goals.
1531
1534
1532
-
### v0.1.68 Roadmap
1535
+
### v0.1.69 Roadmap
1533
1536
1534
-
Version 0.1.68 focuses on cloud execution:
1537
+
Version 0.1.69 focuses on cloud execution:
1535
1538
1536
1539
#### Planned Features
1537
1540
-**Cloud Modal MVP** ([#982](https://github.com/massgen/MassGen/issues/982)): Run MassGen as a cloud job on Modal
@@ -154,19 +154,20 @@ This project started with the "threads of thought" and "iterative refinement" id
154
154
155
155
---
156
156
157
-
## 🆕 Latest Features (v0.1.67)
157
+
## 🆕 Latest Features (v0.1.68)
158
158
159
-
**🎉 Released: March 23, 2026**
159
+
**🎉 Released: March 25, 2026**
160
160
161
-
**What's New in v0.1.67:**
162
-
-**🖥️ Modernized WebUI** - Complete UI redesign with inline final answers, keyboard shortcuts, and Zustand state management.
163
-
-**💰 RoundBudgetGuardHook** - Per-round cost enforcement prevents unexpected API bill overruns.
164
-
-**🎭 Unified Pre-Collab** - Personas, evaluation criteria, and prompt improvement run in parallel.
161
+
**What's New in v0.1.68:**
162
+
-**🔀 Checkpoint Mode** - Main agent plans solo then delegates to the team via `checkpoint()` tool with fresh agent instances.
163
+
-**⚡ LLM API Circuit Breaker** - Automatic 429 rate limit handling for Claude backend.
164
+
-**🖥️ WebUI Checkpoint Support** - Checkpoint mode display integrated into the modernized WebUI.
165
+
-**🔒 LiteLLM Fix** - Supply chain protection with pinned dependency and committed lock file.
165
166
166
-
**Try v0.1.67 Features:**
167
+
**Try v0.1.68 Features:**
167
168
```bash
168
-
pip install massgen==0.1.67
169
-
# Try the modernized WebUI
169
+
pip install massgen==0.1.68
170
+
# Try checkpoint mode
170
171
uv run massgen --web
171
172
```
172
173
@@ -1239,17 +1240,19 @@ MassGen is currently in its foundational stage, with a focus on parallel, asynch
1239
1240
1240
1241
⚠️ **Early Stage Notice:** As MassGen is in active development, please expect upcoming breaking architecture changes as we continue to refine and improve the system.
1241
1242
1242
-
### Recent Achievements (v0.1.67)
1243
+
### Recent Achievements (v0.1.68)
1243
1244
1244
-
**🎉 Released: March 23, 2026**
1245
+
**🎉 Released: March 25, 2026**
1245
1246
1246
-
#### Modernized WebUI & Quality
1247
-
-**Modernized WebUI** ([#1016](https://github.com/massgen/MassGen/pull/1016)): Complete UI redesign with inline final answers, keyboard shortcuts, and Zustand state management
1248
-
-**RoundBudgetGuardHook** ([#1013](https://github.com/massgen/MassGen/pull/1013)): Per-round cost enforcement with configurable warning thresholds
1249
-
-**Unified Pre-Collab** ([#1016](https://github.com/massgen/MassGen/pull/1016)): Personas, evaluation criteria, and prompt improvement run in parallel
1250
-
-**Regression Guard** ([#1016](https://github.com/massgen/MassGen/pull/1016)): Blind A/B verification subagent before submitting revisions
1247
+
#### Checkpoint Mode
1248
+
-**Checkpoint Coordination Mode** ([#1028](https://github.com/massgen/MassGen/pull/1028)): Delegator pattern — main agent plans solo then delegates to team via `checkpoint()` tool with fresh agent instances
1249
+
-**WebUI Checkpoint Support** ([#1028](https://github.com/massgen/MassGen/pull/1028)): Checkpoint mode display in the modernized WebUI
1250
+
-**LLM API Circuit Breaker** ([#1024](https://github.com/massgen/MassGen/pull/1024)): Automatic 429 rate limit handling with circuit breaker pattern (currently Claude backend only)
1251
+
-**LiteLLM Supply Chain Fix** ([#1025](https://github.com/massgen/MassGen/pull/1025)): Pinned litellm<=1.82.6 and committed uv.lock
1251
1252
1252
-
### Previous Achievements (v0.0.3 - v0.1.66)
1253
+
### Previous Achievements (v0.0.3 - v0.1.67)
1254
+
1255
+
✅ **Modernized WebUI (v0.1.67)**: Complete WebUI redesign with inline final answers, keyboard shortcuts, and Zustand state management. RoundBudgetGuardHook for per-round cost control. Unified parallel pre-collab phases. Regression guard.
1253
1256
1254
1257
✅ **Step Mode (v0.1.66)**: New `--step` CLI mode for external orchestrators. Powers massgen-refinery plugin step mode. Codex Windows UTF-8 fixes and console text sanitization.
1255
1258
@@ -1528,9 +1531,9 @@ MassGen is currently in its foundational stage, with a focus on parallel, asynch
1528
1531
1529
1532
We welcome community contributions to achieve these goals.
1530
1533
1531
-
### v0.1.68 Roadmap
1534
+
### v0.1.69 Roadmap
1532
1535
1533
-
Version 0.1.68 focuses on cloud execution:
1536
+
Version 0.1.69 focuses on cloud execution:
1534
1537
1535
1538
#### Planned Features
1536
1539
-**Cloud Modal MVP** ([#982](https://github.com/massgen/MassGen/issues/982)): Run MassGen as a cloud job on Modal
This roadmap outlines MassGen's development priorities for upcoming releases. Each release focuses on specific capabilities with real-world use cases.
10
10
@@ -42,27 +42,27 @@ Want to contribute or collaborate on a specific track? Reach out to the track ow
42
42
43
43
| Release | Target | Feature | Owner | Use Case |
44
44
|---------|--------|---------|-------|----------|
45
-
|**v0.1.68**| 03/25/26 | Cloud Modal MVP |@ncrispino| Run MassGen as a cloud job on Modal ([#982](https://github.com/massgen/MassGen/issues/982)) |
46
-
|**v0.1.69**| 03/27/26 | OpenAI Audio API |@ncrispino| Support OpenAI audio API for audio understanding ([#960](https://github.com/massgen/MassGen/issues/960)) |
47
-
|**v0.1.70**|03/30/26 | Image/Video Edit Capabilities |@ncrispino| Check and support img/video editing capabilities ([#959](https://github.com/massgen/MassGen/issues/959)) |
45
+
|**v0.1.69**| 03/27/26 | Cloud Modal MVP |@ncrispino| Run MassGen as a cloud job on Modal ([#982](https://github.com/massgen/MassGen/issues/982)) |
46
+
|**v0.1.70**| 03/30/26 | OpenAI Audio API |@ncrispino| Support OpenAI audio API for audio understanding ([#960](https://github.com/massgen/MassGen/issues/960)) |
47
+
|**v0.1.71**|04/01/26 | Image/Video Edit Capabilities |@ncrispino| Check and support img/video editing capabilities ([#959](https://github.com/massgen/MassGen/issues/959)) |
48
48
49
49
*All releases ship on MWF @ 9am PT when ready*
50
50
51
51
---
52
52
53
-
## ✅ v0.1.67 - Modernized WebUI (Completed)
53
+
## ✅ v0.1.68 - Checkpoint Mode (Completed)
54
54
55
-
**Released:** March 23, 2026 | PRs: [#1016](https://github.com/massgen/MassGen/pull/1016), [#1013](https://github.com/massgen/MassGen/pull/1013)
55
+
**Released:** March 25, 2026 | PRs: [#1028](https://github.com/massgen/MassGen/pull/1028), [#1025](https://github.com/massgen/MassGen/pull/1025), [#1024](https://github.com/massgen/MassGen/pull/1024)
56
56
57
57
### Features
58
-
-**Modernized WebUI**: Complete UI redesign with inline final answers, keyboard shortcuts, and Zustand state management
59
-
-**RoundBudgetGuardHook**: Per-round cost enforcement with configurable warning thresholds
60
-
-**Unified Pre-Collab Phases**: Personas, evaluation criteria, and prompt improvement run in parallel
61
-
-**Regression Guard**: Blind A/B verification subagent before submitting revisions
58
+
-**Checkpoint Coordination Mode**: Delegator pattern — main agent plans solo then delegates to team via `checkpoint()` tool
59
+
-**LLM API Circuit Breaker**: Automatic 429 rate limit handling with circuit breaker pattern for Claude backend
60
+
-**WebUI Checkpoint Support**: Checkpoint mode display in the modernized WebUI
61
+
-**LiteLLM Supply Chain Fix**: Pinned litellm<=1.82.6 and committed uv.lock
62
62
63
63
---
64
64
65
-
## 📋 v0.1.68 - Cloud Modal MVP
65
+
## 📋 v0.1.69 - Cloud Modal MVP
66
66
67
67
### Features
68
68
@@ -78,7 +78,7 @@ Want to contribute or collaborate on a specific track? Reach out to the track ow
78
78
79
79
---
80
80
81
-
## 📋 v0.1.69 - OpenAI Audio API
81
+
## 📋 v0.1.70 - OpenAI Audio API
82
82
83
83
### Features
84
84
@@ -94,7 +94,7 @@ Want to contribute or collaborate on a specific track? Reach out to the track ow
0 commit comments