groove-dev 0.27.35 → 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.
- package/.groove-staging/state.json +3 -0
- package/.groove-staging/timeline.json +13 -0
- package/node_modules/@groove-dev/cli/package.json +1 -1
- package/node_modules/@groove-dev/daemon/package.json +1 -1
- package/node_modules/@groove-dev/daemon/src/api.js +12 -3
- package/node_modules/@groove-dev/gui/package.json +1 -1
- package/package.json +1 -1
- package/packages/cli/package.json +1 -1
- package/packages/daemon/package.json +1 -1
- package/packages/daemon/src/api.js +12 -3
- package/packages/gui/package.json +1 -1
|
@@ -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
|
|
2210
|
-
.
|
|
2211
|
-
|
|
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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "groove-dev",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.36",
|
|
4
4
|
"description": "Open-source agent orchestration layer — the AI company OS. Local model agent engine (GGUF/Ollama/llama-server), HuggingFace model browser, MCP integrations (Slack, Gmail, Stripe, 15+), agent scheduling (cron), business roles (CMO, CFO, EA). GUI dashboard, multi-agent coordination, zero cold-start, infinite sessions. Works with Claude Code, Codex, Gemini CLI, Ollama, any local model.",
|
|
5
5
|
"license": "FSL-1.1-Apache-2.0",
|
|
6
6
|
"author": "Groove Dev <hello@groovedev.ai> (https://groovedev.ai)",
|
|
@@ -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
|
|
2210
|
-
.
|
|
2211
|
-
|
|
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;
|