> apple-notes-enterprise-rbac
Implement access control for multi-user Apple Notes automation. Trigger: "apple notes access control".
curl "https://skillshub.wtf/jeremylongshore/claude-code-plugins-plus-skills/apple-notes-enterprise-rbac?format=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
> related_skills --same-repo
> fathom-cost-tuning
Optimize Fathom API usage and plan selection. Trigger with phrases like "fathom cost", "fathom pricing", "fathom plan".
> fathom-core-workflow-b
Sync Fathom meeting data to CRM and build automated follow-up workflows. Use when integrating Fathom with Salesforce, HubSpot, or custom CRMs, or creating automated post-meeting email summaries. Trigger with phrases like "fathom crm sync", "fathom salesforce", "fathom follow-up", "fathom post-meeting workflow".
> fathom-core-workflow-a
Build a meeting analytics pipeline with Fathom transcripts and summaries. Use when extracting insights from meetings, building CRM sync, or creating automated meeting follow-up workflows. Trigger with phrases like "fathom analytics", "fathom meeting pipeline", "fathom transcript analysis", "fathom action items sync".
> fathom-common-errors
Diagnose and fix Fathom API errors including auth failures and missing data. Use when API calls fail, transcripts are empty, or webhooks are not firing. Trigger with phrases like "fathom error", "fathom not working", "fathom api failure", "fix fathom".