groove-dev 0.25.17 → 0.25.18
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.
|
@@ -15,12 +15,19 @@ const MODES = {
|
|
|
15
15
|
// Role-based tier hints for new agents with no classifier data yet
|
|
16
16
|
const ROLE_HINTS = {
|
|
17
17
|
planner: 'heavy', // Planning is foundational — needs deep reasoning
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
fullstack: 'heavy', // End-to-end work needs full capability
|
|
19
|
+
slides: 'heavy', // Design quality needs top-tier model
|
|
20
|
+
creative: 'heavy', // Writing quality needs top-tier model
|
|
21
|
+
security: 'heavy', // Security audits need deep reasoning
|
|
20
22
|
backend: 'medium',
|
|
21
23
|
frontend: 'medium',
|
|
24
|
+
testing: 'medium',
|
|
22
25
|
devops: 'medium',
|
|
23
|
-
|
|
26
|
+
database: 'medium',
|
|
27
|
+
analyst: 'medium',
|
|
28
|
+
docs: 'light',
|
|
29
|
+
support: 'light',
|
|
30
|
+
ea: 'light',
|
|
24
31
|
};
|
|
25
32
|
|
|
26
33
|
export class ModelRouter {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "groove-dev",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.18",
|
|
4
4
|
"description": "Open-source agent orchestration layer — the AI company OS. 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.",
|
|
5
5
|
"license": "FSL-1.1-Apache-2.0",
|
|
6
6
|
"author": "Groove Dev <hello@groovedev.ai> (https://groovedev.ai)",
|
|
@@ -15,12 +15,19 @@ const MODES = {
|
|
|
15
15
|
// Role-based tier hints for new agents with no classifier data yet
|
|
16
16
|
const ROLE_HINTS = {
|
|
17
17
|
planner: 'heavy', // Planning is foundational — needs deep reasoning
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
fullstack: 'heavy', // End-to-end work needs full capability
|
|
19
|
+
slides: 'heavy', // Design quality needs top-tier model
|
|
20
|
+
creative: 'heavy', // Writing quality needs top-tier model
|
|
21
|
+
security: 'heavy', // Security audits need deep reasoning
|
|
20
22
|
backend: 'medium',
|
|
21
23
|
frontend: 'medium',
|
|
24
|
+
testing: 'medium',
|
|
22
25
|
devops: 'medium',
|
|
23
|
-
|
|
26
|
+
database: 'medium',
|
|
27
|
+
analyst: 'medium',
|
|
28
|
+
docs: 'light',
|
|
29
|
+
support: 'light',
|
|
30
|
+
ea: 'light',
|
|
24
31
|
};
|
|
25
32
|
|
|
26
33
|
export class ModelRouter {
|