Created
January 22, 2026 22:39
-
-
Save willsmanley/690ad5b45f5b25c86a6526f02d2e44e2 to your computer and use it in GitHub Desktop.
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
| --- a/~/.config/rpi/config.json (before) | |
| +++ b/~/.config/rpi/config.json (after) | |
| @@ | |
| -{"artifactsRepo": "/Users/daddy/.humanlayer/riptide/rpi-artifacts", "linearIntegrationEnabled": false} | |
| +{ | |
| + "artifactsRepo": "/Users/daddy/.humanlayer/riptide/rpi-artifacts", | |
| + "linearIntegrationEnabled": false, | |
| + "thoughtsRepo": "/Users/daddy/rpi", | |
| + "reposDir": "repos", | |
| + "user": "daddy", | |
| + "repoMappings": {} | |
| +} |
Author
oh god you must have someone gotten an ancient version of this - those fields are all super deprecated
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The failure happened because rpi reads config from ~/.config/rpi/config.json, which only had artifactsRepo/linearIntegrationEnabled. Missing thoughtsRepo/reposDir/user meant it tried to call expandPath(undefined), triggering filePath.startsWith. Adding those keys fixed init/status. — codex