lucidchart-sdk-patterns
Apply supported patterns with Lucid lucid-package and lucid-extension-sdk while treating installed types as authoritative. Use when implementing or reviewing editor extensions. Trigger with "Lucid SDK pattern".
Allowed Tools
Provided by Plugin
lucidchart-pack
Governed Lucid integration workflows for REST, Standard Import, editor extensions, and data connectors (18 skills)
Installation
This skill is included in the lucidchart-pack plugin:
/plugin install lucidchart-pack@claude-code-plugins-plus
Click to copy
Instructions
Lucid SDK Implementation Patterns
Overview
Implement an editor-extension feature from the installed SDK, project manifest, and official guidance—never from guessed type names or stale snippets.
Prerequisites
- Existing extension project with lockfile, manifest, scripts, and pinned versions
- Defined user behavior, document/data boundary, scopes, and test fixture
- Current official Extension API and package CLI references
Tool Discipline
Use Read, Glob, and Grep to inspect source, installed declarations, manifests, and tests; use WebFetch for current official docs; use Write or Edit only for bounded local changes and evidence.
Current Contract
lucid-package supplies project tooling and lucid-extension-sdk supplies supported APIs and types. Official Lucid AI guidance says to consult documentation and types, avoid guessing APIs, use correct pnpm mode syntax, and request least extension scopes.
Authentication
Editor bundles must not contain server secrets. Put source OAuth and confidential credentials behind an approved connector/server boundary. Review manifest scopes before any developer install.
Instructions
- Read repository instructions, package manifest, Lucid manifest, lockfile, scripts, and relevant tests.
- Inspect installed SDK declaration/source files for the exact API, callback, return, error, and availability contract.
- Re-fetch the corresponding official topic and note version/documentation drift.
- Design a thin typed boundary that validates external data and converts errors into explicit user-safe states.
- Implement the smallest feature using existing project patterns; avoid global mutable state and undocumented object shapes.
- Add tests for success, invalid input, unavailable context, insufficient scope, cancellation, and partial failure.
- Run project type/build/manifest/test commands using installed
--helpand correct package-manager argument passing. - Present dependency, scope, or developer-install changes for approval and record exact receipts.
Approval Boundaries
Do not upgrade dependencies, broaden scopes, install developer packages, connect production data, or publish without approval.
Output
Return SDK/CLI versions, inspected types/docs, chosen pattern, changed files, scopes, gate receipts, drift, and approval state.
Error Handling
| Condition | Response |
|---|---|
| Documented example fails type checking | Follow the installed type and report version drift. |
| Needed API is absent | Stop and redesign with supported primitives; do not cast around it. |
| Feature requires a secret in the bundle | Introduce an approved server/connector boundary. |
Example
feature=data-refresh; sdk=pinned-lockfile; installed-types=inspected; typecheck=pass; manifest-scopes=unchanged
Resources
Next Steps
Preserve the type-level and fixture regression tests before moving to developer-mode verification.