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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/ai.ts +5 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "facult",
3
- "version": "2.17.3",
3
+ "version": "2.17.4",
4
4
  "description": "Manage canonical AI capabilities, sync surfaces, and evolution state.",
5
5
  "type": "module",
6
6
  "license": "MIT",
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 (entry.status === "dismissed" || entry.status === "superseded") {
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) {