Agent skill
apple-notes-enterprise-rbac
Implement access control for multi-user Apple Notes automation. Trigger: "apple notes access control".
Install this agent skill to your Project
npx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/main/plugins/saas-packs/apple-notes-pack/skills/apple-notes-enterprise-rbac
SKILL.md
Apple Notes Enterprise RBAC
Overview
Apple Notes does not have built-in RBAC. For multi-user scenarios, implement access control at the automation layer.
Account-Based Access Control
// Apple Notes supports multiple accounts (iCloud, Gmail, etc.)
// Use account separation as a basic access control mechanism
const Notes = Application("Notes");
const accounts = Notes.accounts();
// List all accounts
accounts.forEach(a => {
console.log(`Account: ${a.name()} — ${a.folders().length} folders`);
});
// Restrict operations to specific account
function getAccountByName(name) {
const account = Notes.accounts().find(a => a.name() === name);
if (!account) throw new Error(`Account not found: ${name}`);
return account;
}
Folder-Based Permission Model
// Implement folder-level access control
interface FolderPermission {
folder: string;
allowedUsers: string[];
operations: ("read" | "write" | "delete")[];
}
const PERMISSIONS: FolderPermission[] = [
{ folder: "Shared", allowedUsers: ["*"], operations: ["read"] },
{ folder: "Private", allowedUsers: ["admin"], operations: ["read", "write", "delete"] },
{ folder: "Team", allowedUsers: ["team-lead", "member"], operations: ["read", "write"] },
];
Resources
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
dockerfile-generator
Dockerfile Generator - Auto-activating skill for DevOps Basics. Triggers on: dockerfile generator, dockerfile generator Part of the DevOps Basics skill category.
branch-naming-helper
Branch Naming Helper - Auto-activating skill for DevOps Basics. Triggers on: branch naming helper, branch naming helper Part of the DevOps Basics skill category.
readme-generator
Readme Generator - Auto-activating skill for DevOps Basics. Triggers on: readme generator, readme generator Part of the DevOps Basics skill category.
makefile-generator
Makefile Generator - Auto-activating skill for DevOps Basics. Triggers on: makefile generator, makefile generator Part of the DevOps Basics skill category.
gitignore-generator
Gitignore Generator - Auto-activating skill for DevOps Basics. Triggers on: gitignore generator, gitignore generator Part of the DevOps Basics skill category.
pre-commit-hook-setup
Pre Commit Hook Setup - Auto-activating skill for DevOps Basics. Triggers on: pre commit hook setup, pre commit hook setup Part of the DevOps Basics skill category.
Didn't find tool you were looking for?