Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@
# Materialize .claude/ from pai/claude/
mkdir -p .claude/skills
rsync -a --delete ${./pai/claude}/ .claude/
# Nix store paths are read-only, and `rsync -a` preserves that mode on
# the copy. Without this the NEXT write into .claude/ fails — the skills
# hook below cannot mkdir .claude/skills/holochain, which is the
# "Permission denied (13)" rsync error seen on every CI run and in every
# local nix shell. Same treatment .cursor/ already gets.
chmod -R u+w .claude 2>/dev/null || true
chmod u+x .claude/hooks/*.hook.ts 2>/dev/null || true

# Materialize Cursor rules from pai/
Expand Down
Loading