multi-agents-cli 1.0.76 → 1.0.77
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/core/workflow/agent.js +2 -2
- package/package.json +1 -1
package/core/workflow/agent.js
CHANGED
|
@@ -791,7 +791,9 @@ const main = async () => {
|
|
|
791
791
|
let timestamp, sanitizedName, worktreeName, branchName, worktreePath;
|
|
792
792
|
let contextSection = '';
|
|
793
793
|
|
|
794
|
+
let userSeedingContracts = false;
|
|
794
795
|
flowLoop: while (true) {
|
|
796
|
+
userSeedingContracts = false; // reset each iteration
|
|
795
797
|
|
|
796
798
|
// ── Select scope ─────────────────────────────────────────────────────────────
|
|
797
799
|
|
|
@@ -1025,8 +1027,6 @@ const main = async () => {
|
|
|
1025
1027
|
}
|
|
1026
1028
|
}
|
|
1027
1029
|
|
|
1028
|
-
let userSeedingContracts = false;
|
|
1029
|
-
|
|
1030
1030
|
// Contracts check — only for relevant agents, optional for senior devs
|
|
1031
1031
|
|
|
1032
1032
|
const CONTRACTS_SEED_AGENTS = ['LOGIC', 'INIT', 'API'];
|
package/package.json
CHANGED