groove-dev 0.27.14 → 0.27.15
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/CLAUDE.md
CHANGED
|
@@ -263,3 +263,13 @@ Audit-driven release. Multi-agent orchestration system with 7 coordination layer
|
|
|
263
263
|
- Dashboard: routing donut, cache panel, context health gauges
|
|
264
264
|
- Monitor/QC agent mode (stay active, loop)
|
|
265
265
|
- Distribution: demo video, HN launch, Twitter content
|
|
266
|
+
|
|
267
|
+
<!-- GROOVE:START -->
|
|
268
|
+
## GROOVE Orchestration (auto-injected)
|
|
269
|
+
Active agents: 1
|
|
270
|
+
| Name | Role | Scope |
|
|
271
|
+
|------|------|-------|
|
|
272
|
+
| fullstack-18 | fullstack | - |
|
|
273
|
+
See AGENTS_REGISTRY.md for full agent state.
|
|
274
|
+
**Memory policy:** Ignore auto-memory. Do not read or write MEMORY.md. GROOVE manages all context.
|
|
275
|
+
<!-- GROOVE:END -->
|
|
@@ -2949,7 +2949,7 @@ Keep responses concise. Help them think, don't lecture them about the system the
|
|
|
2949
2949
|
});
|
|
2950
2950
|
|
|
2951
2951
|
// Serve GUI static files (built GUI) — no-cache headers to prevent stale bundles
|
|
2952
|
-
const guiPath = resolve(__dirname, '../../gui/dist');
|
|
2952
|
+
const guiPath = process.env.GROOVE_GUI_PATH || resolve(__dirname, '../../gui/dist');
|
|
2953
2953
|
app.use(express.static(guiPath, { etag: false, maxAge: 0, lastModified: false }));
|
|
2954
2954
|
app.use((req, res, next) => {
|
|
2955
2955
|
if (!req.path.startsWith('/api/')) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "groove-dev",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.15",
|
|
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)",
|
|
@@ -2949,7 +2949,7 @@ Keep responses concise. Help them think, don't lecture them about the system the
|
|
|
2949
2949
|
});
|
|
2950
2950
|
|
|
2951
2951
|
// Serve GUI static files (built GUI) — no-cache headers to prevent stale bundles
|
|
2952
|
-
const guiPath = resolve(__dirname, '../../gui/dist');
|
|
2952
|
+
const guiPath = process.env.GROOVE_GUI_PATH || resolve(__dirname, '../../gui/dist');
|
|
2953
2953
|
app.use(express.static(guiPath, { etag: false, maxAge: 0, lastModified: false }));
|
|
2954
2954
|
app.use((req, res, next) => {
|
|
2955
2955
|
if (!req.path.startsWith('/api/')) {
|