facult 2.17.3 → 2.17.4
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/package.json +1 -1
- package/src/ai.ts +5 -1
package/package.json
CHANGED
package/src/ai.ts
CHANGED
|
@@ -988,7 +988,11 @@ export async function proposeEvolution(args: {
|
|
|
988
988
|
: null;
|
|
989
989
|
|
|
990
990
|
const candidates = writebacks.filter((entry) => {
|
|
991
|
-
if (
|
|
991
|
+
if (
|
|
992
|
+
entry.status === "dismissed" ||
|
|
993
|
+
entry.status === "resolved" ||
|
|
994
|
+
entry.status === "superseded"
|
|
995
|
+
) {
|
|
992
996
|
return false;
|
|
993
997
|
}
|
|
994
998
|
if (entry.evidence.length === 0) {
|