groove-dev 0.27.34 → 0.27.36

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.
@@ -0,0 +1,3 @@
1
+ {
2
+ "agents": []
3
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "snapshots": [
3
+ {
4
+ "t": 1776465949649,
5
+ "tokens": 0,
6
+ "costUsd": 0,
7
+ "agents": 0,
8
+ "running": 0,
9
+ "cacheHitRate": 0
10
+ }
11
+ ],
12
+ "events": []
13
+ }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/cli",
3
- "version": "0.27.34",
3
+ "version": "0.27.36",
4
4
  "description": "GROOVE CLI — manage AI coding agents from your terminal",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/daemon",
3
- "version": "0.27.34",
3
+ "version": "0.27.36",
4
4
  "description": "GROOVE daemon — agent orchestration engine",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -2206,10 +2206,19 @@ Keep responses concise. Help them think, don't lecture them about the system the
2206
2206
  const entries = [];
2207
2207
 
2208
2208
  // Dirs first (sorted), then files (sorted)
2209
- const dirs = raw.filter((e) => e.isDirectory() && !IGNORED_NAMES.has(e.name) && !e.name.startsWith('.'))
2210
- .sort((a, b) => a.name.localeCompare(b.name));
2211
- const files = raw.filter((e) => e.isFile() && !e.name.startsWith('.'))
2209
+ const isDir = (e) => {
2210
+ if (e.isDirectory()) return true;
2211
+ if (e.isSymbolicLink()) { try { return statSync(resolve(fullPath, e.name)).isDirectory(); } catch { return false; } }
2212
+ return false;
2213
+ };
2214
+ const dirs = raw.filter((e) => isDir(e) && !IGNORED_NAMES.has(e.name) && !e.name.startsWith('.'))
2212
2215
  .sort((a, b) => a.name.localeCompare(b.name));
2216
+ const files = raw.filter((e) => {
2217
+ if (e.name.startsWith('.')) return false;
2218
+ if (e.isFile()) return true;
2219
+ if (e.isSymbolicLink()) { try { return statSync(resolve(fullPath, e.name)).isFile(); } catch { return false; } }
2220
+ return false;
2221
+ }).sort((a, b) => a.name.localeCompare(b.name));
2213
2222
 
2214
2223
  for (const d of dirs) {
2215
2224
  const childPath = relPath ? `${relPath}/${d.name}` : d.name;