chore: snapshot pre-v0.2.0 WIP (pathfinder/reflex/metrics/skills improvements)
Baseline for the v0.2.0 self-learning iteration. All 205 tests pass on this state. Subsequent commits in this branch layer the knowledge base, post-mortem coach, and persona narration on top. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -157,13 +157,16 @@ const MILESTONES = [
|
||||
);
|
||||
return carrying || (snap?.food ?? 20) >= 18;
|
||||
},
|
||||
suggest: () => ({ skillId: "survive.eat" }), // best-effort; richer "find food" skill lands later
|
||||
suggest: () => ({ skillId: "survive.acquire-food" }),
|
||||
},
|
||||
{
|
||||
id: "storage.chest",
|
||||
title: "Place a personal chest",
|
||||
isDone: (inv) => has(inv, "chest"),
|
||||
suggest: () => ({ skillId: "craft.chest" }),
|
||||
isDone: (_inv, snap) => !!snap?.locations?.chest,
|
||||
suggest: (inv) => {
|
||||
if (!has(inv, "chest")) return { skillId: "craft.chest" };
|
||||
return { skillId: "village.place-chest" };
|
||||
},
|
||||
},
|
||||
{
|
||||
id: "shelter.torch",
|
||||
|
||||
Reference in New Issue
Block a user