From 2ad83659a0402972e17beaf7131eba315ea941cf Mon Sep 17 00:00:00 2001 From: almac2022 Date: Fri, 31 Jul 2026 21:24:20 -0700 Subject: [PATCH] Keep comms/ and research/ out of the built package `R CMD build` ships every top-level directory not named in `.Rbuildignore`, so `pak::pak("NewGraphEnvironment/link")` was putting internal cross-repo coordination notes and research working files into the installer's library. `R CMD check` reports this only as a NOTE, and `.gitignore` does not cover it. Verified against the tarball rather than the config: 37 `comms/` + `research/` entries before, 0 after. `planning`, `dev`, `.claude` and `CLAUDE.md` were already excluded - these two were added later and missed. Convention and an audit loop for the other repos are in NewGraphEnvironment/soul#60. Co-Authored-By: Claude Claude-Session: https://claude.ai/code/session_01EPc4Xkk81mE4JHuP5A1SnS --- .Rbuildignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.Rbuildignore b/.Rbuildignore index 8e0c084a..6bfb7f10 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -12,3 +12,5 @@ ^\.lintr$ ^\.claude$ ^inst/testdata/\.gitkeep$ +^comms$ +^research$