gossipcat 0.4.5 → 0.4.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -21617,6 +21617,13 @@ function buildAuditExclusions(projectRoot, ownWorktree) {
21617
21617
  const root = canonicalize(projectRoot);
21618
21618
  for (const v of expandTmpVariants(`${root}/.gossip`)) excl.add(v);
21619
21619
  for (const v of expandTmpVariants(`${root}/.claude`)) excl.add(v);
21620
+ try {
21621
+ const home = canonicalize((0, import_os2.homedir)());
21622
+ for (const sub of ["Library", ".cache", ".npm", ".claude/projects"]) {
21623
+ for (const v of expandTmpVariants(`${home}/${sub}`)) excl.add(v);
21624
+ }
21625
+ } catch {
21626
+ }
21620
21627
  if (ownWorktree) {
21621
21628
  const wt = canonicalize(ownWorktree);
21622
21629
  for (const v of expandTmpVariants(wt)) excl.add(v);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gossipcat",
3
- "version": "0.4.5",
3
+ "version": "0.4.6",
4
4
  "description": "Multi-agent orchestration for Claude Code — parallel review, consensus, adaptive dispatch",
5
5
  "mcpName": "io.github.ataberk-xyz/gossipcat",
6
6
  "repository": {