CtrlK
BlogDocsLog inGet started
Tessl Logo

governance-team

Manage policies, access control, compliance, and governance processes with Notion and Slack

Install with Tessl CLI

npx tessl i github:oyi77/1ai-skills --skill governance-team
What are skills?

Overall
score

18%

Does it follow best practices?

Validation for skill structure

Validation failed for this skill
This skill has errors that need to be fixed before it can move to Implementation and Activation review.
SKILL.md
Review
Evals

Governance Team

Manage policies, access control, compliance, and governance processes.

Required Tools

{
  "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}" } }
  }
}

Pseudo Code

Policy Change

// 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}`);
}

Access Control

// Check access
const hasAccess = await checkPermissions(user, resource);
if (!hasAccess) {
  await slack.alert("#security", `Unauthorized access: ${user} -> ${resource}`);
}

Skill v2.0 - Governance Team

Repository
github.com/oyi77/1ai-skills
Last updated
Created

Is this your skill?

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.