archondev 2.19.44 → 2.19.45
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/dist/index.js +8 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4204,6 +4204,14 @@ async function continueWithCurrentTask(cwd, options = {}) {
|
|
|
4204
4204
|
const atoms = await listLocalAtoms2();
|
|
4205
4205
|
const readyAtoms = atoms.filter((a) => a.status === "READY" && (!scopeIds || scopeIds.has(a.externalId))).sort(byMostRecent);
|
|
4206
4206
|
if (readyAtoms.length === 0) {
|
|
4207
|
+
if (scopeIds && scopeIds.size > 0) {
|
|
4208
|
+
if (queueStarted && runAllReady) {
|
|
4209
|
+
console.log(chalk6.green("\nQueue execution complete for this approved task scope."));
|
|
4210
|
+
} else {
|
|
4211
|
+
console.log(chalk6.yellow("No READY atoms found for this approved task scope."));
|
|
4212
|
+
}
|
|
4213
|
+
return;
|
|
4214
|
+
}
|
|
4207
4215
|
const inProgressAtoms = atoms.filter((a) => a.status === "IN_PROGRESS").sort(byMostRecent);
|
|
4208
4216
|
if (inProgressAtoms.length > 0) {
|
|
4209
4217
|
const current = inProgressAtoms[0];
|
|
@@ -4219,8 +4227,6 @@ async function continueWithCurrentTask(cwd, options = {}) {
|
|
|
4219
4227
|
}
|
|
4220
4228
|
if (queueStarted && runAllReady) {
|
|
4221
4229
|
console.log(chalk6.green("\nQueue execution complete. No READY atoms remain."));
|
|
4222
|
-
} else if (scopeIds && scopeIds.size > 0) {
|
|
4223
|
-
console.log(chalk6.yellow("No READY atoms found for this approved task scope."));
|
|
4224
4230
|
} else {
|
|
4225
4231
|
console.log(chalk6.yellow("No pending atoms found. Tell me what to plan next."));
|
|
4226
4232
|
}
|