Manage policies, access control, compliance, and governance processes with Notion and Slack
Overall
score
18%
Does it follow best practices?
If you maintain this skill, you can automatically optimize it using the tessl CLI to improve its score:
npx tessl skill review --optimize ./path/to/skillValidation for skill structure
Manage policies, access control, compliance, and governance processes.
{
"mcpServers": {
"notion": { "command": "npx", "args": ["-y", "@makenotion/mcp-server"], "env": { "NOTION_API_KEY": "${NOTION_API_KEY}" } },
"slack": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-slack"], "env": { "SLACK_BOT_TOKEN": "${SLACK_BOT_TOKEN}" } }
}
}// 1. Create proposal
const proposal = await notion.createPage("Governance", {
title: "Update Data Retention Policy",
type: "policy-change",
status: "draft",
content: policyDraft
});
// 2. Request review
await slack.notify("#governance", `New policy: ${proposal.title}`);
// 3. Collect approvals
for (const approver of approvers) {
await slack.dm(approver, `Please review: ${proposal.url}`);
}// Check access
const hasAccess = await checkPermissions(user, resource);
if (!hasAccess) {
await slack.alert("#security", `Unauthorized access: ${user} -> ${resource}`);
}Skill v2.0 - Governance Team
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.