evernote-enterprise-rbac

Featured

Implement enterprise RBAC for Evernote integrations. Use when building multi-tenant systems, implementing role-based access, or handling business accounts. Trigger with phrases like "evernote enterprise", "evernote rbac", "evernote business", "evernote permissions".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Evernote Enterprise RBAC ## Overview Implement role-based access control for Evernote integrations, including Evernote Business account handling, shared notebook permissions, multi-tenant architecture, and authorization middleware. ## Prerequisites - Understanding of Evernote Business accounts and shared notebooks - Multi-tenant application architecture - Authentication/authorization infrastructure ## Instructions ### Step 1: Evernote Permission Model Evernote has built-in sharing permissions for notebooks: `READ_NOTEBOOK`, `MODIFY_NOTEBOOK_PLUS_ACTIVITY`, `READ_NOTEBOOK_PLUS_ACTIVITY`, `GROUP`, `FULL_ACCESS`. Map these to your application's role system. ```javascript const EvernotePermissions = { READ: 'READ_NOTEBOOK', WRITE: 'MODIFY_NOTEBOOK_PLUS_ACTIVITY', FULL: 'FULL_ACCESS' }; const AppRoles = { viewer: [EvernotePermissions.READ], editor: [EvernotePermissions.READ, EvernotePermissions.WRITE], admin: [EvernotePermissions.FULL] }; ``` ### Step 2: RBAC Service Build a service that checks whether a user has the required permission for an operation. Query shared notebook privileges via `noteStore.listSharedNotebooks()` and `getSharedNotebookByAuth()`. ```javascript class RBACService { async canAccess(userToken, notebookGuid, requiredPermission) { const noteStore = this.getAuthenticatedNoteStore(userToken); const sharedNotebooks = await noteStore.listSharedNotebooks(); const shared = sharedNotebooks.find(sn => sn.notebookGuid === notebook...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

apple-notes-enterprise-rbac

Implement access control for multi-user Apple Notes automation. Trigger: "apple notes access control".

2,266 Updated today
jeremylongshore
AI & Automation Featured

apollo-enterprise-rbac

Enterprise role-based access control for Apollo.io. Use when implementing team permissions, restricting data access, or setting up enterprise security controls. Trigger with phrases like "apollo rbac", "apollo permissions", "apollo roles", "apollo team access", "apollo enterprise security".

2,266 Updated today
jeremylongshore
AI & Automation Featured

obsidian-enterprise-rbac

Implement team vault access patterns and role-based controls. Use when managing shared vaults, implementing access controls, or building team collaboration features for Obsidian. Trigger with phrases like "obsidian team", "obsidian access control", "obsidian enterprise", "shared vault permissions".

2,266 Updated today
jeremylongshore
AI & Automation Featured

notion-enterprise-rbac

Configure Notion enterprise access control with OAuth, workspace permissions, and audit logging. Use when implementing OAuth public integrations, managing multi-workspace access, or building permission-aware Notion applications. Trigger with phrases like "notion SSO", "notion RBAC", "notion enterprise", "notion OAuth", "notion permissions", "notion multi-workspace".

2,266 Updated today
jeremylongshore
AI & Automation Featured

evernote-reference-architecture

Reference architecture for Evernote integrations. Use when designing system architecture, planning integrations, or building scalable Evernote applications. Trigger with phrases like "evernote architecture", "design evernote system", "evernote integration pattern", "evernote scale".

2,266 Updated today
jeremylongshore