docs-electron
0
总安装量
1
周安装量
安装命令
npx skills add https://github.com/imgly/agent-skills --skill docs-electron
Agent 安装分布
claude-code
1
Skill 文档
CE.SDK Electron Documentation
Look up documentation for IMG.LY CreativeEditor SDK (Electron).
Query: $ARGUMENTS
How to Use
- Index lookup: Match the query to a path in the index (in description above).
The index uses compressed format:
dir:{file1.md,file2.md}means files are atdir/file1.mdanddir/file2.md. Resolve the path using Glob:**/skills/docs-electron/<path>.md(e.g., fortext/add.mdâ**/skills/docs-electron/text/add.md) - Search: If no exact match exists, use Grep to search the documentation:
Grep pattern="<keyword>" path="**/skills/docs-electron/" output_mode="content"or search filenames:Glob pattern="**/skills/docs-electron/**/*<keyword>*.md" - Read and respond with the relevant section and code examples
- Check rules if the topic involves setup, initialization, or common
operations:
**/skills/docs-electron/rules/*.md
API Lookup
For TypeScript API queries (method signatures, types, parameters):
- Module lookup: Match the query to a module in the API index (in description above).
Read the module file:
**/skills/docs-electron/api/<ModuleName>.md(e.g., for BlockAPI â**/skills/docs-electron/api/BlockAPI.md) - Method search: If looking for a specific method, use Grep:
Grep pattern="<method>" path="**/skills/docs-electron/api/" output_mode="content" - For common types: Read
**/skills/docs-electron/api/types.md
Tip: Verify types against the TypeScript definitions â CE.SDK evolves rapidly and type shapes may differ from pre-trained knowledge.
Quick Reference
| Topic | Path |
|---|---|
| Getting started | get-started/ |
| API methods | engine-interface.md |
| Configuration | configuration.md, settings.md |
| UI customization | user-interface/customization/ |
| UI extensions | user-interface/ui-extensions/ |
| Import media | import-media/ |
| Export/save | export-save-publish/ |
| Templates | use-templates/, create-templates/ |
| Text operations | text/ |
| Image editing | edit-image/ |
| Video editing | edit-video/, create-video/ |
| Fills & colors | fills/, colors/ |
| Filters/effects | filters-and-effects/ |
| Prebuilt solutions | prebuilt-solutions/ |
| Known pitfalls | rules/ |
| API modules | api/BlockAPI.md, api/SceneAPI.md, etc. |
Related Skills
- Use `/cesdk:build` when the user needs implementation help, not just docs
- Use `/cesdk:explain` for conceptual explanations beyond what docs cover