multi-agents-cli 1.1.0 → 1.1.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.
- package/README.md +18 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -93,7 +93,7 @@ You and agents co-build - each owning a defined part of the codebase. Agent task
|
|
|
93
93
|
Next.js - Angular - Vue/Nuxt - SvelteKit - Vite+React - Remix
|
|
94
94
|
|
|
95
95
|
### Backend (separate)
|
|
96
|
-
Express - NestJS - Fastify - FastAPI - Django
|
|
96
|
+
Express - NestJS - Fastify - FastAPI - Django - Laravel - Rails
|
|
97
97
|
|
|
98
98
|
Each framework has a dedicated scaffold instruction file in `.frameworks/client/` and `.frameworks/backend/` - agents read these before scaffolding to ensure files land in the correct location.
|
|
99
99
|
|
|
@@ -281,6 +281,22 @@ On completion, scope is validated and work merges into `main`. The final `main`
|
|
|
281
281
|
}
|
|
282
282
|
```
|
|
283
283
|
|
|
284
|
-
**Status values:** `null` (never launched) - `ACTIVE` (running) - `MISSING` (worktree deleted without completing)
|
|
284
|
+
**Status values:** `null` (never launched) - `ACTIVE` (running) - `COMPLETED` (merged into main) - `MISSING` (worktree deleted without completing)
|
|
285
285
|
|
|
286
286
|
Managed entirely by `agent.js` and `complete.js`. Never edit manually.
|
|
287
|
+
|
|
288
|
+
---
|
|
289
|
+
|
|
290
|
+
## What's new in v1.1.0
|
|
291
|
+
|
|
292
|
+
**Init flow**
|
|
293
|
+
- Step counter (`Step N of 12`) shown throughout the configuration flow
|
|
294
|
+
- Back-navigation fully wired — go back to any previous step and resume without re-answering everything
|
|
295
|
+
|
|
296
|
+
**After merge**
|
|
297
|
+
- `npm run complete` now surfaces the next recommended agent explicitly based on tracking state
|
|
298
|
+
- `start:client` script written into `package.json` after `client/UI` merges
|
|
299
|
+
- `start:backend` script written into `package.json` after `backend/INIT` merges
|
|
300
|
+
|
|
301
|
+
**Agent templates**
|
|
302
|
+
- Every agent now includes a `Session Close` block — explicit next-step instructions after Definition of Done
|
package/package.json
CHANGED