fix: resolve PROJECTS.md to correct USER/PROJECTS/ path in Telos dashboard#1328
Open
rfdiazpr wants to merge 1 commit into
Open
fix: resolve PROJECTS.md to correct USER/PROJECTS/ path in Telos dashboard#1328rfdiazpr wants to merge 1 commit into
rfdiazpr wants to merge 1 commit into
Conversation
…board PROJECTS.md lives at PAI/USER/PROJECTS/PROJECTS.md, not inside PAI/USER/TELOS/. Both getAllTelosData() and the file save route were looking for it under TELOS_DIR, causing the file to return empty/missing when opened from the dashboard. Add resolveTelosFilePath() helper that routes PROJECTS.md to its correct location. Also aligns the TELOS_DIR constant in save/route.ts with telos-data.ts (was pointing to the old 'life/telos' path).
rfdiazpr
commented
Jun 4, 2026
rfdiazpr
left a comment
Author
There was a problem hiding this comment.
Daniel,
This was suggested to me by PAI.
The bug (PROJECTS.md served from wrong path) is a PAI infra bug. You could file an issue or PR at danielmiessler/Personal_AI_Infrastructure describing the TELOS_DIR vs USER/PROJECTS/ mismatch so others who build a Pulse dashboard hit the right path
The upstream has the same bug PROJECTS listed as a core file but getAllTelosData only reads from TELOS_DIR. The fix applies there too.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
PROJECTS.mdlives atPAI/USER/PROJECTS/PROJECTS.md, not insidePAI/USER/TELOS/. BothgetAllTelosData()intelos-data.tsand the save route inapi/file/save/route.tswere resolving it throughTELOS_DIR, so clicking a project card in the Telos dashboard returned an empty/missing file.Fix
Add a
resolveTelosFilePath()helper in both files that routesPROJECTS.mdrequests toUSER/PROJECTS/PROJECTS.mdand all other files throughTELOS_DIRas before.Also aligns the
TELOS_DIRconstant insave/route.tswithtelos-data.ts— it was still pointing to the oldlife/telospath.Files changed
Releases/v2.5/.claude/skills/Telos/DashboardTemplate/Lib/telos-data.tsReleases/v2.5/.claude/skills/Telos/DashboardTemplate/App/api/file/save/route.ts