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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P2: As committed, this file does not make Doppler resolve
dotfiles/prdfrom the checkout, and it duplicates the flags that are still hardcoded in the Makefile. Doppler's docs are explicit that ordinary commands (secrets download,run) never read a repo-localdoppler.yaml— project/config resolution goes through~/.doppler/.doppler.yaml, which is only populated by runningdoppler setup. Nothing in this repo invokesdoppler setup(home-manager only installs the CLI binary), anddoppler-sync/doppler-diff/doppler-upload(Makefile lines 1607, 1612, 1617) still pass--project dotfiles --config prd. So the file can't help a fresh host untildoppler setup --no-interactiveruns, and its declared values can silently drift from the flags, which remain the only effective source of truth. Recommend wiringdoppler setup --no-interactiveinto the bootstrap/preflight step and then removing the now-redundant--project/--configflags from the three recipes so this file is the single source of truth.Prompt for AI agents