forked from josephsenior/Grinta-Coding-Agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.template.json
More file actions
71 lines (71 loc) · 2.19 KB
/
Copy pathsettings.template.json
File metadata and controls
71 lines (71 loc) · 2.19 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
{
"llm_provider": "",
"llm_model": "",
"llm_api_key": "${LLM_API_KEY}",
"llm_base_url": "",
"agent": {
"Orchestrator": {
"mode": "agent",
"autonomy_level": "balanced"
}
},
"lsp_config": {
"enabled": false
},
"dap_config": {
"enabled": false
},
"security": {
"windows_shell": "powershell",
"execution_profile": "standard",
"enforce_security": true,
"block_high_risk": false,
"allow_network_commands": false,
"allow_package_installs": false,
"allow_background_processes": false,
"allow_sensitive_path_access": false,
"allow_read_outside_workspace": false,
"allow_mcp_arg_repair": false,
"additional_read_roots": []
},
"mcp_config": {
"enabled": false,
"servers": [
{
"name": "shadcn",
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@jpisnice/shadcn-ui-mcp-server",
"--framework",
"react"
],
"enabled": false,
"usage_hint": "shadcn/ui React components: variants, props, CLI install, and registry lookups."
},
{
"name": "github",
"type": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"enabled": false,
"usage_hint": "GitHub API for repos, issues, PRs, metadata. Set **GITHUB_PERSONAL_ACCESS_TOKEN** in `.env` (classic or fine-grained PAT with repo scope). Bad credentials = expired/revoked token or missing scopes.",
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": ""
}
},
{
"name": "rigour",
"type": "stdio",
"command": "npx",
"args": ["-y", "@rigour-labs/mcp"],
"enabled": false,
"usage_hint": "**Rigour** — local code governance / quality gates. No API key. If the project has no `rigour.yml`, Grinta writes a **minimal stub** so the MCP server can start (no IDE rules or hooks). Run **`npx @rigour-labs/cli init`** manually for full project setup. Prefer **`rigour_check`** / **`rigour_status`** after substantive edits. **`RIGOUR_CWD`** is the open workspace.",
"env": {
"RIGOUR_CWD": "${PROJECT_ROOT}"
}
}
]
}
}