Make pi-integration check fork-safe for memory checkout paths #11
Labels
No labels
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
allod/archetypes#11
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
checks.<system>.pi-integrationcurrently greps the generated Pi pointer for literal public checkout paths such as/home/${username}/work/allod/memory/adapters/pi/AGENTS.mdand/home/${username}/work/agent-memory/adapters/pi/AGENTS.md. That passes the public template, but it is not fork-safe: a deploy fork can validly setprofile.memoryCheckoutsto a different checkout alias set, and then the generated pointer can be correct for that inventory while this framework check fails.Desired shape
Make the check derive its expected adapter paths from the same composed machine configuration that generates
home.activation.llmMemoryLinks, or otherwise validate the pointer against the configured memory checkout list instead of hard-coded public aliases.This keeps deploy forks able to re-export the framework check suite against their real inventory without carrying local check filters.