docs-node
0
总安装量
1
周安装量
安装命令
npx skills add https://github.com/imgly/agent-skills --skill docs-node
Agent 安装分布
claude-code
1
Skill 文档
CE.SDK Node.js Documentation
Look up documentation for IMG.LY CreativeEditor SDK (Node.js).
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-node/<path>.md(e.g., fortext/add.mdâ**/skills/docs-node/text/add.md) - Search: If no exact match exists, use Grep to search the documentation:
Grep pattern="<keyword>" path="**/skills/docs-node/" output_mode="content"or search filenames:Glob pattern="**/skills/docs-node/**/*<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-node/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-node/api/<ModuleName>.md(e.g., for BlockAPI â**/skills/docs-node/api/BlockAPI.md) - Method search: If looking for a specific method, use Grep:
Grep pattern="<method>" path="**/skills/docs-node/api/" output_mode="content" - For common types: Read
**/skills/docs-node/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 |
| 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/ |
| 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