78 lines
1.6 KiB
JSON
78 lines
1.6 KiB
JSON
{
|
|
"$schema": "https://opencode.ai/config.json",
|
|
"provider": {
|
|
"minimax": {
|
|
"options": {
|
|
"apiKey": "{env:MINIMAX_API_KEY}"
|
|
},
|
|
"models": {
|
|
"MiniMax-M3": {
|
|
"name": "MiniMax M3"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"mcp": {
|
|
"minimax-search": {
|
|
"type": "local",
|
|
"command": ["uvx", "minimax-coding-plan-mcp"],
|
|
"environment": {
|
|
"MINIMAX_API_KEY": "{env:MINIMAX_API_KEY}",
|
|
"MINIMAX_API_HOST": "https://api.minimax.io"
|
|
}
|
|
}
|
|
},
|
|
"agent": {
|
|
"full": {
|
|
"description": "Alle Tools: Dateien, Bash, Websuche",
|
|
"permission": {
|
|
"edit": "allow",
|
|
"bash": "allow",
|
|
"webfetch": "allow"
|
|
}
|
|
},
|
|
"files": {
|
|
"description": "Dateien lesen/schreiben + Bash, keine Websuche",
|
|
"permission": {
|
|
"edit": "allow",
|
|
"bash": "allow",
|
|
"webfetch": "deny"
|
|
},
|
|
"tools": {
|
|
"minimax-search*": false
|
|
}
|
|
},
|
|
"readonly": {
|
|
"description": "Nur Dateien lesen",
|
|
"permission": {
|
|
"edit": "deny",
|
|
"bash": "deny",
|
|
"webfetch": "deny"
|
|
},
|
|
"tools": {
|
|
"write": false,
|
|
"edit": false,
|
|
"bash": false,
|
|
"minimax-search*": false
|
|
}
|
|
},
|
|
"text": {
|
|
"description": "Reine Textantwort, keine Tools",
|
|
"permission": {
|
|
"edit": "deny",
|
|
"bash": "deny",
|
|
"webfetch": "deny"
|
|
},
|
|
"tools": {
|
|
"write": false,
|
|
"edit": false,
|
|
"bash": false,
|
|
"read": false,
|
|
"glob": false,
|
|
"grep": false,
|
|
"minimax-search*": false
|
|
}
|
|
}
|
|
}
|
|
}
|