metheus-governance-mcp-cli 0.2.67 → 0.2.68
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/README.md +6 -0
- package/cli.mjs +2 -2
- package/package.json +1 -1
- package/postinstall.mjs +18 -0
package/README.md
CHANGED
|
@@ -381,6 +381,12 @@ Role profile fields:
|
|
|
381
381
|
- `permission_mode`: `read_only`, `workspace_write`, `danger_full_access`
|
|
382
382
|
- `reasoning_effort`: `low`, `medium`, `high`
|
|
383
383
|
|
|
384
|
+
Recommended role mapping:
|
|
385
|
+
- `monitor`: `read_only` + `low`
|
|
386
|
+
- `review`: `read_only` + `medium`
|
|
387
|
+
- `worker`: `danger_full_access` + `medium`
|
|
388
|
+
- `approval`: `danger_full_access` + `high`
|
|
389
|
+
|
|
384
390
|
Role profile note:
|
|
385
391
|
- Claude maps `reasoning_effort` to `--effort`.
|
|
386
392
|
- Codex maps `reasoning_effort` to `-c model_reasoning_effort="..."`.
|
package/cli.mjs
CHANGED
|
@@ -809,13 +809,13 @@ function defaultBotRunnerRoleProfiles() {
|
|
|
809
809
|
worker: {
|
|
810
810
|
client: "codex",
|
|
811
811
|
model: "",
|
|
812
|
-
permission_mode: "
|
|
812
|
+
permission_mode: "danger_full_access",
|
|
813
813
|
reasoning_effort: "medium",
|
|
814
814
|
},
|
|
815
815
|
approval: {
|
|
816
816
|
client: "gemini",
|
|
817
817
|
model: "",
|
|
818
|
-
permission_mode: "
|
|
818
|
+
permission_mode: "danger_full_access",
|
|
819
819
|
reasoning_effort: "high",
|
|
820
820
|
},
|
|
821
821
|
};
|
package/package.json
CHANGED
package/postinstall.mjs
CHANGED
|
@@ -80,6 +80,24 @@ function botRunnerTemplate() {
|
|
|
80
80
|
permission_mode: "read_only",
|
|
81
81
|
reasoning_effort: "low",
|
|
82
82
|
},
|
|
83
|
+
review: {
|
|
84
|
+
client: "claude",
|
|
85
|
+
model: "",
|
|
86
|
+
permission_mode: "read_only",
|
|
87
|
+
reasoning_effort: "medium",
|
|
88
|
+
},
|
|
89
|
+
worker: {
|
|
90
|
+
client: "codex",
|
|
91
|
+
model: "",
|
|
92
|
+
permission_mode: "danger_full_access",
|
|
93
|
+
reasoning_effort: "medium",
|
|
94
|
+
},
|
|
95
|
+
approval: {
|
|
96
|
+
client: "gemini",
|
|
97
|
+
model: "",
|
|
98
|
+
permission_mode: "danger_full_access",
|
|
99
|
+
reasoning_effort: "high",
|
|
100
|
+
},
|
|
83
101
|
},
|
|
84
102
|
bot_bindings: {
|
|
85
103
|
"<binding_key>": {
|