metheus-governance-mcp-cli 0.2.51 → 0.2.52
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/cli.mjs +3 -0
- package/package.json +1 -1
package/cli.mjs
CHANGED
|
@@ -3967,6 +3967,7 @@ function appendProjectHintToInitialize(responseObj, args, options = {}) {
|
|
|
3967
3967
|
const ctxpackEnsureTool = displayToolNameForClient("ctxpack.ensure", useSafeToolAliases);
|
|
3968
3968
|
const ctxpackMergeBriefTool = displayToolNameForClient("ctxpack.merge.brief", useSafeToolAliases);
|
|
3969
3969
|
const ctxpackMergeExecuteTool = displayToolNameForClient("ctxpack.merge.execute", useSafeToolAliases);
|
|
3970
|
+
const projectListDestinationsTool = displayToolNameForClient("project.list-telegram-destinations", useSafeToolAliases);
|
|
3970
3971
|
const meListBotsTool = displayToolNameForClient("me.list-bots", useSafeToolAliases);
|
|
3971
3972
|
const meSendBotMessageTool = displayToolNameForClient("me.send-bot-message", useSafeToolAliases);
|
|
3972
3973
|
const hintLines = [
|
|
@@ -3980,6 +3981,8 @@ function appendProjectHintToInitialize(responseObj, args, options = {}) {
|
|
|
3980
3981
|
`- If user enters a Project ID in text (e.g., "Project ID <uuid>"), pass that exact UUID as \`project_id\` argument when calling \`${projectSummaryTool}\`.`,
|
|
3981
3982
|
`- \`${projectDescribeTool}\` and \`${projectGetTool}\` are aliases of \`${projectSummaryTool}\`.`,
|
|
3982
3983
|
`- Never handle a bare Project ID by local file/transcript search before \`${projectSummaryTool}\` succeeds.`,
|
|
3984
|
+
`- For project room/provider checks, call \`${projectListDestinationsTool}\` first. Treat those chat destinations as the normal routing source.`,
|
|
3985
|
+
"- Do not surface webhook target URLs for normal room routing unless the user explicitly asks about advanced relays or webhook debugging.",
|
|
3983
3986
|
`- Run \`${ctxpackEnsureTool}\` only after \`${projectSummaryTool}\`, and only when additional ctxpack refresh/export context is needed.`,
|
|
3984
3987
|
"- After project summary, use workitem/evidence/decision tools as follow-up.",
|
|
3985
3988
|
`- For direct bot posting, call \`${meListBotsTool}\` first, then use \`${meSendBotMessageTool}\`. The proxy delivers with your local provider token config and the current project's saved chat destination.`,
|