docs-sveltekit

📁 imgly/agent-skills 📅 1 day ago
0
总安装量
1
周安装量
安装命令
npx skills add https://github.com/imgly/agent-skills --skill docs-sveltekit

Agent 安装分布

claude-code 1

Skill 文档

CE.SDK SvelteKit Documentation

Look up documentation for IMG.LY CreativeEditor SDK (SvelteKit).

Query: $ARGUMENTS

How to Use

  1. 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 at dir/file1.md and dir/file2.md. Resolve the path using Glob: **/skills/docs-sveltekit/<path>.md (e.g., for text/add.md → **/skills/docs-sveltekit/text/add.md)
  2. Search: If no exact match exists, use Grep to search the documentation: Grep pattern="<keyword>" path="**/skills/docs-sveltekit/" output_mode="content" or search filenames: Glob pattern="**/skills/docs-sveltekit/**/*<keyword>*.md"
  3. Read and respond with the relevant section and code examples
  4. Check rules if the topic involves setup, initialization, or common operations: **/skills/docs-sveltekit/rules/*.md

API Lookup

For TypeScript API queries (method signatures, types, parameters):

  1. Module lookup: Match the query to a module in the API index (in description above). Read the module file: **/skills/docs-sveltekit/api/<ModuleName>.md (e.g., for BlockAPI → **/skills/docs-sveltekit/api/BlockAPI.md)
  2. Method search: If looking for a specific method, use Grep: Grep pattern="<method>" path="**/skills/docs-sveltekit/api/" output_mode="content"
  3. For common types: Read **/skills/docs-sveltekit/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