lucidchart-core-workflow-b

Featured

Execute Lucidchart secondary workflow: Data-Linked Diagrams. Trigger: "lucidchart data-linked diagrams", "secondary lucidchart workflow".

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

# Lucidchart — Collaboration & Sharing ## Overview Invite collaborators, configure permissions, and manage real-time editing sessions on Lucidchart documents. Use this workflow when you need to share diagrams with teammates, set granular access controls, track revision history, or manage comments on shared documents. This is the secondary workflow — for diagram creation and data linking, see `lucidchart-core-workflow-a`. ## Instructions ### Step 1: Invite Collaborators with Role-Based Permissions ```typescript const invites = await client.documents.share(doc.documentId, { recipients: [ { email: 'architect@example.com', role: 'editor' }, { email: 'manager@example.com', role: 'commenter' }, { email: 'stakeholder@example.com', role: 'viewer' }, ], message: 'Please review the updated architecture diagram', notify: true, }); invites.forEach(inv => console.log(`Invited ${inv.email} as ${inv.role} — status: ${inv.status}`) ); ``` ### Step 2: Configure Document-Level Access Controls ```typescript const permissions = await client.documents.updatePermissions(doc.documentId, { link_sharing: 'organization', // 'private' | 'organization' | 'anyone_with_link' allow_download: false, allow_copy: false, require_login: true, expiry: '2026-05-01T00:00:00Z', }); console.log(`Sharing: ${permissions.link_sharing}, expires: ${permissions.expiry}`); console.log(`Download: ${permissions.allow_download}, Copy: ${permissions.allow_copy}`); ``` ### Step 3: Manage...

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