forked from lwgray/marcus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig_marcus.planka.example.json
More file actions
122 lines (111 loc) · 2.91 KB
/
Copy pathconfig_marcus.planka.example.json
File metadata and controls
122 lines (111 loc) · 2.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"_comment": "Marcus example config — Planka kanban backend",
"_comment2": "Copy to config_marcus.json. Requires Planka container running and kanban-mcp built at mcp.kanban_client_path.",
"_comment3": "Set CLAUDE_API_KEY, PLANKA_BASE_URL, PLANKA_EMAIL, PLANKA_PASSWORD in env (.env loaded automatically).",
"_comment4": "project_id and board_id below MUST match an existing Planka board — Marcus does not create them automatically.",
"single_project_mode": true,
"default_project_name": "Marcus Development",
"project_id": "REPLACE_WITH_PLANKA_PROJECT_ID",
"board_id": "REPLACE_WITH_PLANKA_BOARD_ID",
"project_name": "Marcus Todo Demo",
"board_name": "Marcus Todo Demo",
"auto_find_board": false,
"ai": {
"provider": "anthropic",
"anthropic_api_key": "${CLAUDE_API_KEY}",
"model": "claude-haiku-4-5-20251001",
"temperature": 0.1,
"max_tokens": 4096,
"enabled": true
},
"kanban": {
"provider": "planka",
"board_name": "Marcus Todo Demo",
"planka_base_url": "${PLANKA_BASE_URL}",
"planka_email": "${PLANKA_EMAIL}",
"planka_password": "${PLANKA_PASSWORD}"
},
"mcp": {
"kanban_client_path": "~/dev/kanban-mcp/dist/index.js",
"timeout": 30,
"retry_attempts": 3
},
"features": {
"events": true,
"context": true,
"memory": true,
"visibility": false
},
"memory": {
"learning_rate": 0.1,
"min_samples": 3,
"use_v2_predictions": false
},
"transport": {
"type": "http",
"http_host": "0.0.0.0",
"http_port": 4298,
"http_path": "/mcp",
"log_level": "info",
"dual_mode": false,
"http_enabled": true
},
"task_lease": {
"default_hours": 2.0,
"max_renewals": 10,
"warning_hours": 0.5,
"grace_period_minutes": 30,
"renewal_decay_factor": 0.9,
"min_lease_hours": 1.0,
"max_lease_hours": 24.0,
"stuck_threshold_renewals": 5,
"enable_adaptive": true,
"priority_multipliers": {
"critical": 0.5,
"high": 0.75,
"medium": 1.0,
"low": 1.5
},
"complexity_multipliers": {
"simple": 0.5,
"complex": 1.5,
"research": 2.0,
"epic": 3.0
}
},
"board_health": {
"stale_task_days": 7,
"max_tasks_per_agent": 3
},
"multi_endpoint": {
"human": {
"port": 4298,
"host": "0.0.0.0",
"path": "/mcp",
"enabled": true
},
"agent": {
"port": 4299,
"host": "0.0.0.0",
"path": "/mcp",
"enabled": true
},
"analytics": {
"port": 4300,
"host": "0.0.0.0",
"path": "/mcp",
"enabled": true
}
},
"hybrid_inference": {
"pattern_confidence_threshold": 0.8,
"ai_confidence_threshold": 0.7,
"combined_confidence_boost": 0.15,
"max_ai_pairs_per_batch": 20,
"min_shared_keywords": 2,
"enable_ai_inference": true,
"cache_ttl_hours": 24,
"require_component_match": true,
"max_dependency_chain_length": 10
}
}