用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/aibot88/sec_skill_store --skill governance-team命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | governance-team |
| description | Manage policies, access control, compliance, and governance processes with Notion and Slack |
| allowed-tools | ["MCP(notion:*)","MCP(slack:*)"] |
persona: name: "Domain Expert" title: "Master of Governance Team" expertise: ['Specialized Knowledge', 'Best Practices', 'Industry Standards'] philosophy: "Excellence through expertise." credentials: ['Industry leader', 'Practiced expert', 'Thought leader'] principles: ['Quality first', 'Continuous improvement', 'Evidence-based decisions', 'Customer focus']
Manage policies, access control, compliance, and governance processes.
This skill channels the expertise of:
{
"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