@imgly/codesign-mcp 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +16 -0
- package/README.md +158 -0
- package/assets/docs/api/SKILL.md +49 -0
- package/assets/docs/api/index.d.ts +10518 -0
- package/assets/docs/guide/SKILL.md +142 -0
- package/assets/docs/guide/actions.md +1038 -0
- package/assets/docs/guide/animation/create/base.md +467 -0
- package/assets/docs/guide/animation/create/text.md +453 -0
- package/assets/docs/guide/animation/create.md +558 -0
- package/assets/docs/guide/animation/edit.md +501 -0
- package/assets/docs/guide/animation/overview.md +22 -0
- package/assets/docs/guide/animation/types.md +430 -0
- package/assets/docs/guide/animation.md +23 -0
- package/assets/docs/guide/api/AssetAPI.md +602 -0
- package/assets/docs/guide/api/BlockAPI.md +6152 -0
- package/assets/docs/guide/api/CreativeEngine.md +180 -0
- package/assets/docs/guide/api/EditorAPI.md +1261 -0
- package/assets/docs/guide/api/EventAPI.md +25 -0
- package/assets/docs/guide/api/SceneAPI.md +729 -0
- package/assets/docs/guide/api/VariableAPI.md +59 -0
- package/assets/docs/guide/api/types.md +71 -0
- package/assets/docs/guide/api-reference/overview.md +20 -0
- package/assets/docs/guide/automation/auto-resize.md +412 -0
- package/assets/docs/guide/automation/batch-processing.md +474 -0
- package/assets/docs/guide/automation/data-merge.md +406 -0
- package/assets/docs/guide/automation/design-generation.md +107 -0
- package/assets/docs/guide/automation/overview.md +16 -0
- package/assets/docs/guide/automation.md +24 -0
- package/assets/docs/guide/browser-support.md +38 -0
- package/assets/docs/guide/capabilities.md +18 -0
- package/assets/docs/guide/colors/adjust.md +551 -0
- package/assets/docs/guide/colors/apply.md +349 -0
- package/assets/docs/guide/colors/basics.md +440 -0
- package/assets/docs/guide/colors/conversion.md +504 -0
- package/assets/docs/guide/colors/create-color-palette.md +426 -0
- package/assets/docs/guide/colors/for-print/cmyk.md +577 -0
- package/assets/docs/guide/colors/for-print/spot.md +751 -0
- package/assets/docs/guide/colors/for-print.md +21 -0
- package/assets/docs/guide/colors/for-screen/p3.md +60 -0
- package/assets/docs/guide/colors/for-screen/srgb.md +463 -0
- package/assets/docs/guide/colors/for-screen.md +21 -0
- package/assets/docs/guide/colors/overview.md +20 -0
- package/assets/docs/guide/colors/replace.md +535 -0
- package/assets/docs/guide/colors.md +28 -0
- package/assets/docs/guide/compatibility.md +27 -0
- package/assets/docs/guide/concepts/architecture.md +99 -0
- package/assets/docs/guide/concepts/assets.md +360 -0
- package/assets/docs/guide/concepts/blocks.md +750 -0
- package/assets/docs/guide/concepts/buffers.md +546 -0
- package/assets/docs/guide/concepts/design-units.md +333 -0
- package/assets/docs/guide/concepts/edit-modes.md +431 -0
- package/assets/docs/guide/concepts/editing-workflow.md +303 -0
- package/assets/docs/guide/concepts/events.md +466 -0
- package/assets/docs/guide/concepts/headless-mode/browser.md +291 -0
- package/assets/docs/guide/concepts/pages.md +396 -0
- package/assets/docs/guide/concepts/resources.md +496 -0
- package/assets/docs/guide/concepts/scenes.md +443 -0
- package/assets/docs/guide/concepts/templating.md +194 -0
- package/assets/docs/guide/concepts/terminology.md +296 -0
- package/assets/docs/guide/concepts/undo-and-history.md +461 -0
- package/assets/docs/guide/concepts.md +38 -0
- package/assets/docs/guide/configuration.md +469 -0
- package/assets/docs/guide/conversion/overview.md +22 -0
- package/assets/docs/guide/conversion/to-base64.md +234 -0
- package/assets/docs/guide/conversion/to-pdf.md +616 -0
- package/assets/docs/guide/conversion/to-png.md +290 -0
- package/assets/docs/guide/conversion.md +23 -0
- package/assets/docs/guide/create-audio/audio/add-music.md +430 -0
- package/assets/docs/guide/create-audio/audio/add-sound-effects.md +664 -0
- package/assets/docs/guide/create-audio/audio/loop.md +370 -0
- package/assets/docs/guide/create-audio/audio.md +336 -0
- package/assets/docs/guide/create-composition/add-background.md +395 -0
- package/assets/docs/guide/create-composition/blend-modes.md +372 -0
- package/assets/docs/guide/create-composition/collage.md +432 -0
- package/assets/docs/guide/create-composition/group-and-ungroup.md +388 -0
- package/assets/docs/guide/create-composition/layer-management.md +503 -0
- package/assets/docs/guide/create-composition/layout.md +396 -0
- package/assets/docs/guide/create-composition/lock-design.md +362 -0
- package/assets/docs/guide/create-composition/multi-page.md +204 -0
- package/assets/docs/guide/create-composition/overview.md +18 -0
- package/assets/docs/guide/create-composition/programmatic.md +593 -0
- package/assets/docs/guide/create-composition.md +30 -0
- package/assets/docs/guide/create-templates/add-dynamic-content/placeholders.md +688 -0
- package/assets/docs/guide/create-templates/add-dynamic-content/set-editing-constraints.md +600 -0
- package/assets/docs/guide/create-templates/add-dynamic-content/text-variables.md +647 -0
- package/assets/docs/guide/create-templates/add-dynamic-content.md +307 -0
- package/assets/docs/guide/create-templates/add-to-template-library.md +297 -0
- package/assets/docs/guide/create-templates/edit-or-remove.md +441 -0
- package/assets/docs/guide/create-templates/from-scratch.md +558 -0
- package/assets/docs/guide/create-templates/import/from-scene-file.md +440 -0
- package/assets/docs/guide/create-templates/import.md +244 -0
- package/assets/docs/guide/create-templates/lock.md +325 -0
- package/assets/docs/guide/create-templates/overview.md +16 -0
- package/assets/docs/guide/create-templates.md +32 -0
- package/assets/docs/guide/create-video/audio/adjust-speed.md +302 -0
- package/assets/docs/guide/create-video/audio/adjust-volume.md +346 -0
- package/assets/docs/guide/create-video/control.md +285 -0
- package/assets/docs/guide/create-video/limitations.md +396 -0
- package/assets/docs/guide/create-video/overview.md +224 -0
- package/assets/docs/guide/create-video/timeline-editor.md +622 -0
- package/assets/docs/guide/create-video/update-caption-presets.md +676 -0
- package/assets/docs/guide/create-video.md +32 -0
- package/assets/docs/guide/edit-image/add-watermark.md +497 -0
- package/assets/docs/guide/edit-image/overview.md +22 -0
- package/assets/docs/guide/edit-image/remove-bg.md +420 -0
- package/assets/docs/guide/edit-image/replace-colors.md +680 -0
- package/assets/docs/guide/edit-image/transform/crop.md +523 -0
- package/assets/docs/guide/edit-image/transform/move.md +279 -0
- package/assets/docs/guide/edit-image/transform/resize.md +301 -0
- package/assets/docs/guide/edit-image/transform/rotate.md +408 -0
- package/assets/docs/guide/edit-image/transform/scale.md +278 -0
- package/assets/docs/guide/edit-image/transform.md +24 -0
- package/assets/docs/guide/edit-image/vectorize.md +204 -0
- package/assets/docs/guide/edit-image.md +25 -0
- package/assets/docs/guide/edit-video/add-captions.md +589 -0
- package/assets/docs/guide/edit-video/add-watermark.md +429 -0
- package/assets/docs/guide/edit-video/join-and-arrange.md +540 -0
- package/assets/docs/guide/edit-video/redaction.md +544 -0
- package/assets/docs/guide/edit-video/split.md +634 -0
- package/assets/docs/guide/edit-video/transform/crop.md +380 -0
- package/assets/docs/guide/edit-video/transform/flip.md +182 -0
- package/assets/docs/guide/edit-video/transform/move.md +413 -0
- package/assets/docs/guide/edit-video/transform/resize.md +534 -0
- package/assets/docs/guide/edit-video/transform/rotate.md +312 -0
- package/assets/docs/guide/edit-video/transform/scale.md +603 -0
- package/assets/docs/guide/edit-video/transform.md +25 -0
- package/assets/docs/guide/edit-video/trim.md +773 -0
- package/assets/docs/guide/engine-interface.md +108 -0
- package/assets/docs/guide/export-save-publish/create-thumbnail.md +292 -0
- package/assets/docs/guide/export-save-publish/export/compress.md +639 -0
- package/assets/docs/guide/export-save-publish/export/overview.md +576 -0
- package/assets/docs/guide/export-save-publish/export/partial-export.md +694 -0
- package/assets/docs/guide/export-save-publish/export/size-limits.md +401 -0
- package/assets/docs/guide/export-save-publish/export/to-html5.md +474 -0
- package/assets/docs/guide/export-save-publish/export/to-jpeg.md +312 -0
- package/assets/docs/guide/export-save-publish/export/to-mp4.md +364 -0
- package/assets/docs/guide/export-save-publish/export/to-pdf.md +389 -0
- package/assets/docs/guide/export-save-publish/export/to-png.md +255 -0
- package/assets/docs/guide/export-save-publish/export/to-raw-data.md +303 -0
- package/assets/docs/guide/export-save-publish/export/to-webp.md +261 -0
- package/assets/docs/guide/export-save-publish/export/with-color-mask.md +278 -0
- package/assets/docs/guide/export-save-publish/export.md +36 -0
- package/assets/docs/guide/export-save-publish/for-printing.md +423 -0
- package/assets/docs/guide/export-save-publish/for-social-media.md +318 -0
- package/assets/docs/guide/export-save-publish/pre-export-validation.md +698 -0
- package/assets/docs/guide/export-save-publish/save.md +340 -0
- package/assets/docs/guide/export-save-publish/store-custom-metadata.md +367 -0
- package/assets/docs/guide/file-format-support.md +34 -0
- package/assets/docs/guide/fills/color.md +678 -0
- package/assets/docs/guide/fills/image.md +539 -0
- package/assets/docs/guide/fills/overview.md +144 -0
- package/assets/docs/guide/fills/video.md +641 -0
- package/assets/docs/guide/fills.md +24 -0
- package/assets/docs/guide/filters-and-effects/apply.md +1019 -0
- package/assets/docs/guide/filters-and-effects/blur.md +382 -0
- package/assets/docs/guide/filters-and-effects/chroma-key-green-screen.md +445 -0
- package/assets/docs/guide/filters-and-effects/create-custom-filters.md +614 -0
- package/assets/docs/guide/filters-and-effects/create-custom-lut-filter.md +426 -0
- package/assets/docs/guide/filters-and-effects/distortion.md +527 -0
- package/assets/docs/guide/filters-and-effects/duotone.md +602 -0
- package/assets/docs/guide/filters-and-effects/gradients.md +1311 -0
- package/assets/docs/guide/filters-and-effects/overview.md +22 -0
- package/assets/docs/guide/filters-and-effects/support.md +623 -0
- package/assets/docs/guide/filters-and-effects.md +28 -0
- package/assets/docs/guide/get-started/agent-skills.md +119 -0
- package/assets/docs/guide/get-started/build-with-ai.md +45 -0
- package/assets/docs/guide/get-started/mcp-server.md +119 -0
- package/assets/docs/guide/get-started/overview.md +28 -0
- package/assets/docs/guide/get-started/vanilla-js/quickstart.md +175 -0
- package/assets/docs/guide/grid-and-rulers.md +222 -0
- package/assets/docs/guide/guides/export-save-publish/export/audio.md +224 -0
- package/assets/docs/guide/guides/text/rendering-internals.md +796 -0
- package/assets/docs/guide/guides.md +49 -0
- package/assets/docs/guide/import-media/asset-library.md +23 -0
- package/assets/docs/guide/import-media/asset-panel/basics.md +324 -0
- package/assets/docs/guide/import-media/asset-panel/customize.md +478 -0
- package/assets/docs/guide/import-media/asset-panel/refresh-assets.md +415 -0
- package/assets/docs/guide/import-media/asset-panel/thumbnails.md +633 -0
- package/assets/docs/guide/import-media/capture-from-camera/record-video.md +137 -0
- package/assets/docs/guide/import-media/capture-from-camera.md +20 -0
- package/assets/docs/guide/import-media/concepts.md +173 -0
- package/assets/docs/guide/import-media/content-json-schema.md +615 -0
- package/assets/docs/guide/import-media/default-assets.md +381 -0
- package/assets/docs/guide/import-media/edit-or-remove-assets.md +489 -0
- package/assets/docs/guide/import-media/file-format-support.md +178 -0
- package/assets/docs/guide/import-media/from-local-source/user-upload.md +438 -0
- package/assets/docs/guide/import-media/from-local-source.md +20 -0
- package/assets/docs/guide/import-media/from-remote-source/asset-versioning.md +390 -0
- package/assets/docs/guide/import-media/from-remote-source/getty-images.md +627 -0
- package/assets/docs/guide/import-media/from-remote-source/imgly-premium-assets.md +625 -0
- package/assets/docs/guide/import-media/from-remote-source/pexels.md +692 -0
- package/assets/docs/guide/import-media/from-remote-source/remote-asset.md +473 -0
- package/assets/docs/guide/import-media/from-remote-source/soundstripe.md +497 -0
- package/assets/docs/guide/import-media/from-remote-source/third-party.md +51 -0
- package/assets/docs/guide/import-media/from-remote-source/unsplash.md +914 -0
- package/assets/docs/guide/import-media/from-remote-source/your-server.md +764 -0
- package/assets/docs/guide/import-media/from-remote-source.md +28 -0
- package/assets/docs/guide/import-media/overview.md +32 -0
- package/assets/docs/guide/import-media/retrieve-mimetype.md +274 -0
- package/assets/docs/guide/import-media/size-limits.md +20 -0
- package/assets/docs/guide/import-media/source-sets.md +476 -0
- package/assets/docs/guide/import-media.md +32 -0
- package/assets/docs/guide/insert-media/audio.md +291 -0
- package/assets/docs/guide/insert-media/images.md +380 -0
- package/assets/docs/guide/insert-media/position-and-align.md +734 -0
- package/assets/docs/guide/insert-media/shapes-or-stickers.md +799 -0
- package/assets/docs/guide/insert-media/videos.md +308 -0
- package/assets/docs/guide/insert-media.md +24 -0
- package/assets/docs/guide/key-capabilities.md +24 -0
- package/assets/docs/guide/key-concepts.md +83 -0
- package/assets/docs/guide/licensing.md +45 -0
- package/assets/docs/guide/llms-txt.md +53 -0
- package/assets/docs/guide/open-the-editor/blank-canvas.md +124 -0
- package/assets/docs/guide/open-the-editor/from-htmlcanvas.md +228 -0
- package/assets/docs/guide/open-the-editor/from-image.md +205 -0
- package/assets/docs/guide/open-the-editor/from-template.md +189 -0
- package/assets/docs/guide/open-the-editor/from-video.md +274 -0
- package/assets/docs/guide/open-the-editor/import-design/from-archive.md +504 -0
- package/assets/docs/guide/open-the-editor/import-design/from-indesign.md +680 -0
- package/assets/docs/guide/open-the-editor/import-design/from-photoshop.md +865 -0
- package/assets/docs/guide/open-the-editor/import-design.md +481 -0
- package/assets/docs/guide/open-the-editor/load-scene.md +178 -0
- package/assets/docs/guide/open-the-editor/overview.md +20 -0
- package/assets/docs/guide/open-the-editor/set-zoom-level.md +303 -0
- package/assets/docs/guide/open-the-editor/uri-resolver.md +347 -0
- package/assets/docs/guide/open-the-editor.md +29 -0
- package/assets/docs/guide/outlines/overview.md +14 -0
- package/assets/docs/guide/outlines/shadows-and-glows.md +515 -0
- package/assets/docs/guide/outlines/strokes.md +292 -0
- package/assets/docs/guide/outlines.md +22 -0
- package/assets/docs/guide/overview.md +22 -0
- package/assets/docs/guide/performance.md +217 -0
- package/assets/docs/guide/plugins/asset-sources.md +553 -0
- package/assets/docs/guide/plugins/print-ready-pdf.md +549 -0
- package/assets/docs/guide/plugins.md +36 -0
- package/assets/docs/guide/rules/asset-handling.md +180 -0
- package/assets/docs/guide/rules/common-pitfalls.md +272 -0
- package/assets/docs/guide/rules/content-fill-mode.md +29 -0
- package/assets/docs/guide/rules/enforce-brand-guidelines.md +672 -0
- package/assets/docs/guide/rules/lock-content.md +478 -0
- package/assets/docs/guide/rules/moderate-content.md +761 -0
- package/assets/docs/guide/rules/overview.md +514 -0
- package/assets/docs/guide/rules/silent-init-errors.md +137 -0
- package/assets/docs/guide/rules/verify-properties-before-use.md +78 -0
- package/assets/docs/guide/rules.md +23 -0
- package/assets/docs/guide/security.md +199 -0
- package/assets/docs/guide/serve-assets.md +332 -0
- package/assets/docs/guide/settings.md +199 -0
- package/assets/docs/guide/shapes.md +23 -0
- package/assets/docs/guide/starterkits/3d-mockup-editor.md +748 -0
- package/assets/docs/guide/starterkits/advanced-editor.md +698 -0
- package/assets/docs/guide/starterkits/advanced-video-editor.md +696 -0
- package/assets/docs/guide/starterkits/ai-editor.md +749 -0
- package/assets/docs/guide/starterkits/airtable-image-editor.md +672 -0
- package/assets/docs/guide/starterkits/apparel-ui.md +188 -0
- package/assets/docs/guide/starterkits/assets.md +27 -0
- package/assets/docs/guide/starterkits/auto-resize.md +586 -0
- package/assets/docs/guide/starterkits/automated-video-generation.md +692 -0
- package/assets/docs/guide/starterkits/background-removal-editor.md +480 -0
- package/assets/docs/guide/starterkits/content-moderation.md +863 -0
- package/assets/docs/guide/starterkits/creative-automation.md +28 -0
- package/assets/docs/guide/starterkits/custom-built-uis.md +26 -0
- package/assets/docs/guide/starterkits/customization.md +29 -0
- package/assets/docs/guide/starterkits/cutout-lines-editor.md +470 -0
- package/assets/docs/guide/starterkits/data-merge.md +850 -0
- package/assets/docs/guide/starterkits/design-editor.md +698 -0
- package/assets/docs/guide/starterkits/design-generation.md +719 -0
- package/assets/docs/guide/starterkits/design-validation.md +808 -0
- package/assets/docs/guide/starterkits/editor-ui-configurations.md +14 -0
- package/assets/docs/guide/starterkits/export-options.md +724 -0
- package/assets/docs/guide/starterkits/export-using-renderer.md +708 -0
- package/assets/docs/guide/starterkits/extensibility.md +28 -0
- package/assets/docs/guide/starterkits/force-crop-editor.md +675 -0
- package/assets/docs/guide/starterkits/form-based-template-adoption.md +522 -0
- package/assets/docs/guide/starterkits/getty-images-editor.md +700 -0
- package/assets/docs/guide/starterkits/html5-ads-exporter.md +719 -0
- package/assets/docs/guide/starterkits/indesign-template-import.md +580 -0
- package/assets/docs/guide/starterkits/layouts-editor.md +724 -0
- package/assets/docs/guide/starterkits/mobile-ui.md +185 -0
- package/assets/docs/guide/starterkits/mockup-editor.md +745 -0
- package/assets/docs/guide/starterkits/multi-image-generation.md +542 -0
- package/assets/docs/guide/starterkits/page-sizes-editor.md +657 -0
- package/assets/docs/guide/starterkits/pexels-image-editor.md +665 -0
- package/assets/docs/guide/starterkits/photo-editor.md +755 -0
- package/assets/docs/guide/starterkits/photo-ui.md +186 -0
- package/assets/docs/guide/starterkits/photobook-ui.md +188 -0
- package/assets/docs/guide/starterkits/placeholders.md +678 -0
- package/assets/docs/guide/starterkits/player.md +405 -0
- package/assets/docs/guide/starterkits/plugins.md +25 -0
- package/assets/docs/guide/starterkits/postcard-editor.md +202 -0
- package/assets/docs/guide/starterkits/pptx-template-import.md +581 -0
- package/assets/docs/guide/starterkits/print-ready-pdf-editor.md +746 -0
- package/assets/docs/guide/starterkits/product-editor.md +773 -0
- package/assets/docs/guide/starterkits/psd-template-import.md +580 -0
- package/assets/docs/guide/starterkits/qr-code-editor.md +470 -0
- package/assets/docs/guide/starterkits/single-page-editor.md +661 -0
- package/assets/docs/guide/starterkits/start-with-image.md +684 -0
- package/assets/docs/guide/starterkits/start-with-video.md +651 -0
- package/assets/docs/guide/starterkits/t-shirt-designer.md +742 -0
- package/assets/docs/guide/starterkits/templating.md +23 -0
- package/assets/docs/guide/starterkits/theming.md +662 -0
- package/assets/docs/guide/starterkits/translation-internationalization.md +662 -0
- package/assets/docs/guide/starterkits/unsplash-editor.md +839 -0
- package/assets/docs/guide/starterkits/vectorizer-editor.md +466 -0
- package/assets/docs/guide/starterkits/version-history.md +745 -0
- package/assets/docs/guide/starterkits/video-animations.md +853 -0
- package/assets/docs/guide/starterkits/video-captions.md +884 -0
- package/assets/docs/guide/starterkits/video-editing.md +25 -0
- package/assets/docs/guide/starterkits/video-editor.md +696 -0
- package/assets/docs/guide/starterkits/video-export-options.md +676 -0
- package/assets/docs/guide/starterkits/viewer.md +400 -0
- package/assets/docs/guide/starterkits.md +41 -0
- package/assets/docs/guide/stickers-and-shapes/combine.md +743 -0
- package/assets/docs/guide/stickers-and-shapes/create-cutout.md +425 -0
- package/assets/docs/guide/stickers-and-shapes/create-edit/create-shapes.md +794 -0
- package/assets/docs/guide/stickers-and-shapes/create-edit/create-stickers.md +290 -0
- package/assets/docs/guide/stickers-and-shapes/create-edit/edit-shapes.md +211 -0
- package/assets/docs/guide/stickers-and-shapes/create-edit/vector-edit.md +362 -0
- package/assets/docs/guide/stickers-and-shapes/insert-qr-code.md +208 -0
- package/assets/docs/guide/stickers.md +21 -0
- package/assets/docs/guide/text/add.md +641 -0
- package/assets/docs/guide/text/adjust-spacing.md +288 -0
- package/assets/docs/guide/text/auto-size.md +404 -0
- package/assets/docs/guide/text/custom-fonts.md +401 -0
- package/assets/docs/guide/text/decorations.md +330 -0
- package/assets/docs/guide/text/edit.md +458 -0
- package/assets/docs/guide/text/effects.md +244 -0
- package/assets/docs/guide/text/emojis.md +310 -0
- package/assets/docs/guide/text/enumerations.md +258 -0
- package/assets/docs/guide/text/language-support.md +604 -0
- package/assets/docs/guide/text/overview.md +14 -0
- package/assets/docs/guide/text/styling.md +390 -0
- package/assets/docs/guide/text/text-designs.md +834 -0
- package/assets/docs/guide/text.md +33 -0
- package/assets/docs/guide/to-v1-10.md +131 -0
- package/assets/docs/guide/to-v1-13.md +165 -0
- package/assets/docs/guide/to-v1-19.md +315 -0
- package/assets/docs/guide/to-v1-32.md +110 -0
- package/assets/docs/guide/to-v1-69.md +468 -0
- package/assets/docs/guide/to-v1-72.md +193 -0
- package/assets/docs/guide/upgrade.md +25 -0
- package/assets/docs/guide/use-templates/apply-template.md +279 -0
- package/assets/docs/guide/use-templates/generate.md +405 -0
- package/assets/docs/guide/use-templates/library.md +450 -0
- package/assets/docs/guide/use-templates/overview.md +20 -0
- package/assets/docs/guide/use-templates/programmatic.md +482 -0
- package/assets/docs/guide/use-templates/replace-content.md +399 -0
- package/assets/docs/guide/user-interface/ai-integration/audio-generation.md +428 -0
- package/assets/docs/guide/user-interface/ai-integration/auto-captions.md +337 -0
- package/assets/docs/guide/user-interface/ai-integration/custom-provider.md +853 -0
- package/assets/docs/guide/user-interface/ai-integration/gateway-provider.md +1045 -0
- package/assets/docs/guide/user-interface/ai-integration/image-generation.md +641 -0
- package/assets/docs/guide/user-interface/ai-integration/integrate.md +966 -0
- package/assets/docs/guide/user-interface/ai-integration/proxy-server.md +99 -0
- package/assets/docs/guide/user-interface/ai-integration/text-generation.md +498 -0
- package/assets/docs/guide/user-interface/ai-integration/video-generation.md +493 -0
- package/assets/docs/guide/user-interface/ai-integration.md +30 -0
- package/assets/docs/guide/user-interface/appearance/change-ui-font.md +316 -0
- package/assets/docs/guide/user-interface/appearance/custom-labels.md +509 -0
- package/assets/docs/guide/user-interface/appearance/icons.md +373 -0
- package/assets/docs/guide/user-interface/appearance/theming.md +665 -0
- package/assets/docs/guide/user-interface/appearance.md +23 -0
- package/assets/docs/guide/user-interface/build-your-own-ui.md +620 -0
- package/assets/docs/guide/user-interface/customization/canvas-menu.md +412 -0
- package/assets/docs/guide/user-interface/customization/canvas.md +281 -0
- package/assets/docs/guide/user-interface/customization/color-palette.md +413 -0
- package/assets/docs/guide/user-interface/customization/crop-presets.md +384 -0
- package/assets/docs/guide/user-interface/customization/disable-or-enable.md +676 -0
- package/assets/docs/guide/user-interface/customization/dock.md +399 -0
- package/assets/docs/guide/user-interface/customization/force-crop.md +289 -0
- package/assets/docs/guide/user-interface/customization/inspector-bar.md +371 -0
- package/assets/docs/guide/user-interface/customization/navigation-bar.md +516 -0
- package/assets/docs/guide/user-interface/customization/page-format.md +436 -0
- package/assets/docs/guide/user-interface/customization/panel.md +605 -0
- package/assets/docs/guide/user-interface/customization/quick-start/add-action-buttons.md +531 -0
- package/assets/docs/guide/user-interface/customization/quick-start/add-dock-buttons.md +358 -0
- package/assets/docs/guide/user-interface/customization/quick-start/create-custom-components.md +374 -0
- package/assets/docs/guide/user-interface/customization/quick-start/reorder-components.md +323 -0
- package/assets/docs/guide/user-interface/customization/quick-start/show-hide-components.md +294 -0
- package/assets/docs/guide/user-interface/customization/quick-start.md +12 -0
- package/assets/docs/guide/user-interface/customization/reference/component-order-api.md +519 -0
- package/assets/docs/guide/user-interface/customization/reference/component-reference.md +333 -0
- package/assets/docs/guide/user-interface/customization/reference.md +12 -0
- package/assets/docs/guide/user-interface/customization.md +39 -0
- package/assets/docs/guide/user-interface/localization.md +633 -0
- package/assets/docs/guide/user-interface/overview.md +167 -0
- package/assets/docs/guide/user-interface/ui-extensions/add-custom-feature.md +411 -0
- package/assets/docs/guide/user-interface/ui-extensions/asset-library.md +721 -0
- package/assets/docs/guide/user-interface/ui-extensions/create-custom-panel.md +331 -0
- package/assets/docs/guide/user-interface/ui-extensions/customize-behaviour.md +553 -0
- package/assets/docs/guide/user-interface/ui-extensions/notifications-and-dialogs.md +672 -0
- package/assets/docs/guide/user-interface/ui-extensions/quick-actions.md +415 -0
- package/assets/docs/guide/user-interface/ui-extensions/register-new-component.md +521 -0
- package/assets/docs/guide/user-interface/ui-extensions.md +26 -0
- package/assets/docs/guide/user-interface.md +25 -0
- package/assets/docs/guide/what-is-cesdk.md +319 -0
- package/assets/docs/handbook/SKILL.md +521 -0
- package/assets/prompts/evals-assetGenerate.md +12 -0
- package/assets/prompts/evals-brutalistCore.md +34 -0
- package/assets/prompts/evals-danskCatalogue.md +31 -0
- package/assets/prompts/evals-exportRoundTrip.md +12 -0
- package/assets/prompts/evals-inspectPriorCode.md +16 -0
- package/assets/prompts/evals-listProjectFiles.md +6 -0
- package/assets/prompts/evals-readAndExplainScript.md +6 -0
- package/assets/prompts/evals-resumeAcrossRestart.md +15 -0
- package/assets/prompts/evals-rewindRecovery.md +10 -0
- package/assets/prompts/evals-searchAcrossFiles.md +6 -0
- package/assets/prompts/evals-weddingCard.md +20 -0
- package/assets/prompts/explain.md +6 -0
- package/assets/prompts/review.md +6 -0
- package/dist/assets/inline.generated.d.ts +2 -0
- package/dist/assets/inline.generated.d.ts.map +1 -0
- package/dist/assets/inline.generated.js +413 -0
- package/dist/assets/inline.generated.js.map +1 -0
- package/dist/assets/load-browser.d.ts +8 -0
- package/dist/assets/load-browser.d.ts.map +1 -0
- package/dist/assets/load-browser.js +11 -0
- package/dist/assets/load-browser.js.map +1 -0
- package/dist/assets/load-node.d.ts +8 -0
- package/dist/assets/load-node.d.ts.map +1 -0
- package/dist/assets/load-node.js +11 -0
- package/dist/assets/load-node.js.map +1 -0
- package/dist/cli/http.d.ts +2 -0
- package/dist/cli/http.d.ts.map +1 -0
- package/dist/cli/http.js +231 -0
- package/dist/cli/http.js.map +1 -0
- package/dist/cli/redirect-console.d.ts +10 -0
- package/dist/cli/redirect-console.d.ts.map +1 -0
- package/dist/cli/redirect-console.js +18 -0
- package/dist/cli/redirect-console.js.map +1 -0
- package/dist/cli/resolve-license.d.ts +2 -0
- package/dist/cli/resolve-license.d.ts.map +1 -0
- package/dist/cli/resolve-license.js +13 -0
- package/dist/cli/resolve-license.js.map +1 -0
- package/dist/cli/stdio.d.ts +2 -0
- package/dist/cli/stdio.d.ts.map +1 -0
- package/dist/cli/stdio.js +124 -0
- package/dist/cli/stdio.js.map +1 -0
- package/dist/cli/trial-license.generated.d.ts +2 -0
- package/dist/cli/trial-license.generated.d.ts.map +1 -0
- package/dist/cli/trial-license.generated.js +4 -0
- package/dist/cli/trial-license.generated.js.map +1 -0
- package/dist/cli.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +64 -0
- package/dist/cli.js.map +1 -0
- package/dist/config.d.ts +61 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/config.js +102 -0
- package/dist/config.js.map +1 -0
- package/dist/cross-ref.d.ts +2 -0
- package/dist/cross-ref.d.ts.map +1 -0
- package/dist/cross-ref.js +31 -0
- package/dist/cross-ref.js.map +1 -0
- package/dist/dashboard/router.d.ts +3 -0
- package/dist/dashboard/router.d.ts.map +1 -0
- package/dist/dashboard/router.js +19 -0
- package/dist/dashboard/router.js.map +1 -0
- package/dist/dashboard/spa-assets.generated.d.ts +2 -0
- package/dist/dashboard/spa-assets.generated.d.ts.map +1 -0
- package/dist/dashboard/spa-assets.generated.js +220 -0
- package/dist/dashboard/spa-assets.generated.js.map +1 -0
- package/dist/engine/asset-sources.d.ts +17 -0
- package/dist/engine/asset-sources.d.ts.map +1 -0
- package/dist/engine/asset-sources.js +75 -0
- package/dist/engine/asset-sources.js.map +1 -0
- package/dist/engine/cesdk-adapter.d.ts +10 -0
- package/dist/engine/cesdk-adapter.d.ts.map +1 -0
- package/dist/engine/cesdk-adapter.js +19 -0
- package/dist/engine/cesdk-adapter.js.map +1 -0
- package/dist/engine/index.d.ts +3 -0
- package/dist/engine/index.d.ts.map +1 -0
- package/dist/engine/index.js +3 -0
- package/dist/engine/index.js.map +1 -0
- package/dist/engine/mutex.d.ts +5 -0
- package/dist/engine/mutex.d.ts.map +1 -0
- package/dist/engine/mutex.js +42 -0
- package/dist/engine/mutex.js.map +1 -0
- package/dist/engine/session.d.ts +50 -0
- package/dist/engine/session.d.ts.map +1 -0
- package/dist/engine/session.js +95 -0
- package/dist/engine/session.js.map +1 -0
- package/dist/engine/uri-resolver.d.ts +14 -0
- package/dist/engine/uri-resolver.d.ts.map +1 -0
- package/dist/engine/uri-resolver.js +12 -0
- package/dist/engine/uri-resolver.js.map +1 -0
- package/dist/frontmatter.d.ts +15 -0
- package/dist/frontmatter.d.ts.map +1 -0
- package/dist/frontmatter.js +46 -0
- package/dist/frontmatter.js.map +1 -0
- package/dist/gateway/hosted-stub.d.ts +6 -0
- package/dist/gateway/hosted-stub.d.ts.map +1 -0
- package/dist/gateway/hosted-stub.js +11 -0
- package/dist/gateway/hosted-stub.js.map +1 -0
- package/dist/gateway/index.d.ts +4 -0
- package/dist/gateway/index.d.ts.map +1 -0
- package/dist/gateway/index.js +4 -0
- package/dist/gateway/index.js.map +1 -0
- package/dist/gateway/local.d.ts +14 -0
- package/dist/gateway/local.d.ts.map +1 -0
- package/dist/gateway/local.js +41 -0
- package/dist/gateway/local.js.map +1 -0
- package/dist/gateway/types.d.ts +24 -0
- package/dist/gateway/types.d.ts.map +1 -0
- package/dist/gateway/types.js +7 -0
- package/dist/gateway/types.js.map +1 -0
- package/dist/http/server.d.ts +80 -0
- package/dist/http/server.d.ts.map +1 -0
- package/dist/http/server.js +183 -0
- package/dist/http/server.js.map +1 -0
- package/dist/http/session-manager.d.ts +42 -0
- package/dist/http/session-manager.d.ts.map +1 -0
- package/dist/http/session-manager.js +82 -0
- package/dist/http/session-manager.js.map +1 -0
- package/dist/http/workspace-auth.d.ts +9 -0
- package/dist/http/workspace-auth.d.ts.map +1 -0
- package/dist/http/workspace-auth.js +29 -0
- package/dist/http/workspace-auth.js.map +1 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -0
- package/dist/metrics/mount.d.ts +11 -0
- package/dist/metrics/mount.d.ts.map +1 -0
- package/dist/metrics/mount.js +13 -0
- package/dist/metrics/mount.js.map +1 -0
- package/dist/metrics/recorder.d.ts +55 -0
- package/dist/metrics/recorder.d.ts.map +1 -0
- package/dist/metrics/recorder.js +97 -0
- package/dist/metrics/recorder.js.map +1 -0
- package/dist/revisions/hash.d.ts +7 -0
- package/dist/revisions/hash.d.ts.map +1 -0
- package/dist/revisions/hash.js +24 -0
- package/dist/revisions/hash.js.map +1 -0
- package/dist/revisions/index.d.ts +4 -0
- package/dist/revisions/index.d.ts.map +1 -0
- package/dist/revisions/index.js +4 -0
- package/dist/revisions/index.js.map +1 -0
- package/dist/revisions/store.d.ts +69 -0
- package/dist/revisions/store.d.ts.map +1 -0
- package/dist/revisions/store.js +196 -0
- package/dist/revisions/store.js.map +1 -0
- package/dist/revisions/types.d.ts +39 -0
- package/dist/revisions/types.d.ts.map +1 -0
- package/dist/revisions/types.js +2 -0
- package/dist/revisions/types.js.map +1 -0
- package/dist/server.d.ts +51 -0
- package/dist/server.d.ts.map +1 -0
- package/dist/server.js +175 -0
- package/dist/server.js.map +1 -0
- package/dist/skill-tools.d.ts +3 -0
- package/dist/skill-tools.d.ts.map +1 -0
- package/dist/skill-tools.js +105 -0
- package/dist/skill-tools.js.map +1 -0
- package/dist/test/test/cli/dispatcher.test.d.ts +2 -0
- package/dist/test/test/cli/dispatcher.test.d.ts.map +1 -0
- package/dist/test/test/cli/dispatcher.test.js +47 -0
- package/dist/test/test/cli/dispatcher.test.js.map +1 -0
- package/dist/test/test/cross-ref.test.d.ts +2 -0
- package/dist/test/test/cross-ref.test.d.ts.map +1 -0
- package/dist/test/test/cross-ref.test.js +39 -0
- package/dist/test/test/cross-ref.test.js.map +1 -0
- package/dist/test/test/engine/session.test.d.ts +2 -0
- package/dist/test/test/engine/session.test.d.ts.map +1 -0
- package/dist/test/test/engine/session.test.js +144 -0
- package/dist/test/test/engine/session.test.js.map +1 -0
- package/dist/test/test/engine/uri-resolver.test.d.ts +2 -0
- package/dist/test/test/engine/uri-resolver.test.d.ts.map +1 -0
- package/dist/test/test/engine/uri-resolver.test.js +38 -0
- package/dist/test/test/engine/uri-resolver.test.js.map +1 -0
- package/dist/test/test/frontmatter.test.d.ts +2 -0
- package/dist/test/test/frontmatter.test.d.ts.map +1 -0
- package/dist/test/test/frontmatter.test.js +55 -0
- package/dist/test/test/frontmatter.test.js.map +1 -0
- package/dist/test/test/gateway/hosted-stub.test.d.ts +2 -0
- package/dist/test/test/gateway/hosted-stub.test.d.ts.map +1 -0
- package/dist/test/test/gateway/hosted-stub.test.js +11 -0
- package/dist/test/test/gateway/hosted-stub.test.js.map +1 -0
- package/dist/test/test/gateway/local.test.d.ts +2 -0
- package/dist/test/test/gateway/local.test.d.ts.map +1 -0
- package/dist/test/test/gateway/local.test.js +29 -0
- package/dist/test/test/gateway/local.test.js.map +1 -0
- package/dist/test/test/handbook-contract.test.d.ts +2 -0
- package/dist/test/test/handbook-contract.test.d.ts.map +1 -0
- package/dist/test/test/handbook-contract.test.js +71 -0
- package/dist/test/test/handbook-contract.test.js.map +1 -0
- package/dist/test/test/http/server.test.d.ts +2 -0
- package/dist/test/test/http/server.test.d.ts.map +1 -0
- package/dist/test/test/http/server.test.js +245 -0
- package/dist/test/test/http/server.test.js.map +1 -0
- package/dist/test/test/http/session-manager.test.d.ts +2 -0
- package/dist/test/test/http/session-manager.test.d.ts.map +1 -0
- package/dist/test/test/http/session-manager.test.js +83 -0
- package/dist/test/test/http/session-manager.test.js.map +1 -0
- package/dist/test/test/revisions/hash.test.d.ts +2 -0
- package/dist/test/test/revisions/hash.test.d.ts.map +1 -0
- package/dist/test/test/revisions/hash.test.js +33 -0
- package/dist/test/test/revisions/hash.test.js.map +1 -0
- package/dist/test/test/revisions/store.test.d.ts +2 -0
- package/dist/test/test/revisions/store.test.d.ts.map +1 -0
- package/dist/test/test/revisions/store.test.js +245 -0
- package/dist/test/test/revisions/store.test.js.map +1 -0
- package/dist/test/test/server.test.d.ts +2 -0
- package/dist/test/test/server.test.d.ts.map +1 -0
- package/dist/test/test/server.test.js +157 -0
- package/dist/test/test/server.test.js.map +1 -0
- package/dist/test/test/skill-tools.test.d.ts +2 -0
- package/dist/test/test/skill-tools.test.d.ts.map +1 -0
- package/dist/test/test/skill-tools.test.js +84 -0
- package/dist/test/test/skill-tools.test.js.map +1 -0
- package/dist/test/test/smoke.test.d.ts +2 -0
- package/dist/test/test/smoke.test.d.ts.map +1 -0
- package/dist/test/test/smoke.test.js +8 -0
- package/dist/test/test/smoke.test.js.map +1 -0
- package/dist/test/test/tools/asset-generate.test.d.ts +2 -0
- package/dist/test/test/tools/asset-generate.test.d.ts.map +1 -0
- package/dist/test/test/tools/asset-generate.test.js +66 -0
- package/dist/test/test/tools/asset-generate.test.js.map +1 -0
- package/dist/test/test/tools/edit.test.d.ts +2 -0
- package/dist/test/test/tools/edit.test.d.ts.map +1 -0
- package/dist/test/test/tools/edit.test.js +205 -0
- package/dist/test/test/tools/edit.test.js.map +1 -0
- package/dist/test/test/tools/export.test.d.ts +2 -0
- package/dist/test/test/tools/export.test.d.ts.map +1 -0
- package/dist/test/test/tools/export.test.js +144 -0
- package/dist/test/test/tools/export.test.js.map +1 -0
- package/dist/test/test/tools/history.test.d.ts +2 -0
- package/dist/test/test/tools/history.test.d.ts.map +1 -0
- package/dist/test/test/tools/history.test.js +29 -0
- package/dist/test/test/tools/history.test.js.map +1 -0
- package/dist/test/test/tools/inspect.test.d.ts +2 -0
- package/dist/test/test/tools/inspect.test.d.ts.map +1 -0
- package/dist/test/test/tools/inspect.test.js +62 -0
- package/dist/test/test/tools/inspect.test.js.map +1 -0
- package/dist/test/test/tools/list.test.d.ts +2 -0
- package/dist/test/test/tools/list.test.d.ts.map +1 -0
- package/dist/test/test/tools/list.test.js +23 -0
- package/dist/test/test/tools/list.test.js.map +1 -0
- package/dist/test/test/tools/open-editor.test.d.ts +2 -0
- package/dist/test/test/tools/open-editor.test.d.ts.map +1 -0
- package/dist/test/test/tools/open-editor.test.js +53 -0
- package/dist/test/test/tools/open-editor.test.js.map +1 -0
- package/dist/test/test/tools/preview.test.d.ts +2 -0
- package/dist/test/test/tools/preview.test.d.ts.map +1 -0
- package/dist/test/test/tools/preview.test.js +73 -0
- package/dist/test/test/tools/preview.test.js.map +1 -0
- package/dist/test/test/tools/rename.test.d.ts +2 -0
- package/dist/test/test/tools/rename.test.d.ts.map +1 -0
- package/dist/test/test/tools/rename.test.js +17 -0
- package/dist/test/test/tools/rename.test.js.map +1 -0
- package/dist/test/test/viewer/broadcaster.test.d.ts +2 -0
- package/dist/test/test/viewer/broadcaster.test.d.ts.map +1 -0
- package/dist/test/test/viewer/broadcaster.test.js +53 -0
- package/dist/test/test/viewer/broadcaster.test.js.map +1 -0
- package/dist/test/test/viewer/resource-route.test.d.ts +2 -0
- package/dist/test/test/viewer/resource-route.test.d.ts.map +1 -0
- package/dist/test/test/viewer/resource-route.test.js +70 -0
- package/dist/test/test/viewer/resource-route.test.js.map +1 -0
- package/dist/test/test/viewer/router.test.d.ts +2 -0
- package/dist/test/test/viewer/router.test.d.ts.map +1 -0
- package/dist/test/test/viewer/router.test.js +171 -0
- package/dist/test/test/viewer/router.test.js.map +1 -0
- package/dist/test/test/viewer/url-builder.test.d.ts +2 -0
- package/dist/test/test/viewer/url-builder.test.d.ts.map +1 -0
- package/dist/test/test/viewer/url-builder.test.js +31 -0
- package/dist/test/test/viewer/url-builder.test.js.map +1 -0
- package/dist/test/test/workspace/hosted-stub.test.d.ts +2 -0
- package/dist/test/test/workspace/hosted-stub.test.d.ts.map +1 -0
- package/dist/test/test/workspace/hosted-stub.test.js +30 -0
- package/dist/test/test/workspace/hosted-stub.test.js.map +1 -0
- package/dist/test/test/workspace/in-memory.test.d.ts +2 -0
- package/dist/test/test/workspace/in-memory.test.d.ts.map +1 -0
- package/dist/test/test/workspace/in-memory.test.js +4 -0
- package/dist/test/test/workspace/in-memory.test.js.map +1 -0
- package/dist/test/test/workspace/node-fs.test.d.ts +2 -0
- package/dist/test/test/workspace/node-fs.test.d.ts.map +1 -0
- package/dist/test/test/workspace/node-fs.test.js +20 -0
- package/dist/test/test/workspace/node-fs.test.js.map +1 -0
- package/dist/test/test/workspace/shared-contract.d.ts +3 -0
- package/dist/test/test/workspace/shared-contract.d.ts.map +1 -0
- package/dist/test/test/workspace/shared-contract.js +92 -0
- package/dist/test/test/workspace/shared-contract.js.map +1 -0
- package/dist/test/tsconfig.test.tsbuildinfo +1 -0
- package/dist/test/vitest.config.d.ts +3 -0
- package/dist/test/vitest.config.d.ts.map +1 -0
- package/dist/test/vitest.config.js +8 -0
- package/dist/test/vitest.config.js.map +1 -0
- package/dist/tools/asset-generate.d.ts +12 -0
- package/dist/tools/asset-generate.d.ts.map +1 -0
- package/dist/tools/asset-generate.js +112 -0
- package/dist/tools/asset-generate.js.map +1 -0
- package/dist/tools/asset-search.d.ts +10 -0
- package/dist/tools/asset-search.d.ts.map +1 -0
- package/dist/tools/asset-search.js +120 -0
- package/dist/tools/asset-search.js.map +1 -0
- package/dist/tools/content-types.d.ts +11 -0
- package/dist/tools/content-types.d.ts.map +1 -0
- package/dist/tools/content-types.js +2 -0
- package/dist/tools/content-types.js.map +1 -0
- package/dist/tools/edit.d.ts +29 -0
- package/dist/tools/edit.d.ts.map +1 -0
- package/dist/tools/edit.js +165 -0
- package/dist/tools/edit.js.map +1 -0
- package/dist/tools/engine.d.ts +31 -0
- package/dist/tools/engine.d.ts.map +1 -0
- package/dist/tools/engine.js +59 -0
- package/dist/tools/engine.js.map +1 -0
- package/dist/tools/export.d.ts +19 -0
- package/dist/tools/export.d.ts.map +1 -0
- package/dist/tools/export.js +179 -0
- package/dist/tools/export.js.map +1 -0
- package/dist/tools/history.d.ts +7 -0
- package/dist/tools/history.d.ts.map +1 -0
- package/dist/tools/history.js +54 -0
- package/dist/tools/history.js.map +1 -0
- package/dist/tools/index.d.ts +35 -0
- package/dist/tools/index.d.ts.map +1 -0
- package/dist/tools/index.js +72 -0
- package/dist/tools/index.js.map +1 -0
- package/dist/tools/inspect.d.ts +7 -0
- package/dist/tools/inspect.d.ts.map +1 -0
- package/dist/tools/inspect.js +80 -0
- package/dist/tools/inspect.js.map +1 -0
- package/dist/tools/list.d.ts +7 -0
- package/dist/tools/list.d.ts.map +1 -0
- package/dist/tools/list.js +18 -0
- package/dist/tools/list.js.map +1 -0
- package/dist/tools/metrics.d.ts +11 -0
- package/dist/tools/metrics.d.ts.map +1 -0
- package/dist/tools/metrics.js +28 -0
- package/dist/tools/metrics.js.map +1 -0
- package/dist/tools/open-editor.d.ts +10 -0
- package/dist/tools/open-editor.d.ts.map +1 -0
- package/dist/tools/open-editor.js +62 -0
- package/dist/tools/open-editor.js.map +1 -0
- package/dist/tools/preview.d.ts +12 -0
- package/dist/tools/preview.d.ts.map +1 -0
- package/dist/tools/preview.js +104 -0
- package/dist/tools/preview.js.map +1 -0
- package/dist/tools/rename.d.ts +7 -0
- package/dist/tools/rename.d.ts.map +1 -0
- package/dist/tools/rename.js +39 -0
- package/dist/tools/rename.js.map +1 -0
- package/dist/tools/result.d.ts +12 -0
- package/dist/tools/result.d.ts.map +1 -0
- package/dist/tools/result.js +55 -0
- package/dist/tools/result.js.map +1 -0
- package/dist/tools/save.d.ts +19 -0
- package/dist/tools/save.d.ts.map +1 -0
- package/dist/tools/save.js +117 -0
- package/dist/tools/save.js.map +1 -0
- package/dist/viewer/broadcaster.d.ts +13 -0
- package/dist/viewer/broadcaster.d.ts.map +1 -0
- package/dist/viewer/broadcaster.js +44 -0
- package/dist/viewer/broadcaster.js.map +1 -0
- package/dist/viewer/index.d.ts +7 -0
- package/dist/viewer/index.d.ts.map +1 -0
- package/dist/viewer/index.js +7 -0
- package/dist/viewer/index.js.map +1 -0
- package/dist/viewer/listener.d.ts +16 -0
- package/dist/viewer/listener.d.ts.map +1 -0
- package/dist/viewer/listener.js +30 -0
- package/dist/viewer/listener.js.map +1 -0
- package/dist/viewer/presigned-r2-url-builder.d.ts +30 -0
- package/dist/viewer/presigned-r2-url-builder.d.ts.map +1 -0
- package/dist/viewer/presigned-r2-url-builder.js +40 -0
- package/dist/viewer/presigned-r2-url-builder.js.map +1 -0
- package/dist/viewer/resource-route.d.ts +9 -0
- package/dist/viewer/resource-route.d.ts.map +1 -0
- package/dist/viewer/resource-route.js +59 -0
- package/dist/viewer/resource-route.js.map +1 -0
- package/dist/viewer/router.d.ts +20 -0
- package/dist/viewer/router.d.ts.map +1 -0
- package/dist/viewer/router.js +142 -0
- package/dist/viewer/router.js.map +1 -0
- package/dist/viewer/session-mount.d.ts +10 -0
- package/dist/viewer/session-mount.d.ts.map +1 -0
- package/dist/viewer/session-mount.js +24 -0
- package/dist/viewer/session-mount.js.map +1 -0
- package/dist/viewer/spa-assets.generated.d.ts +2 -0
- package/dist/viewer/spa-assets.generated.d.ts.map +1 -0
- package/dist/viewer/spa-assets.generated.js +989 -0
- package/dist/viewer/spa-assets.generated.js.map +1 -0
- package/dist/viewer/url-builder.d.ts +48 -0
- package/dist/viewer/url-builder.d.ts.map +1 -0
- package/dist/viewer/url-builder.js +38 -0
- package/dist/viewer/url-builder.js.map +1 -0
- package/dist/workspace/hosted-stub.d.ts +28 -0
- package/dist/workspace/hosted-stub.d.ts.map +1 -0
- package/dist/workspace/hosted-stub.js +44 -0
- package/dist/workspace/hosted-stub.js.map +1 -0
- package/dist/workspace/in-memory.d.ts +23 -0
- package/dist/workspace/in-memory.d.ts.map +1 -0
- package/dist/workspace/in-memory.js +161 -0
- package/dist/workspace/in-memory.js.map +1 -0
- package/dist/workspace/index.d.ts +6 -0
- package/dist/workspace/index.d.ts.map +1 -0
- package/dist/workspace/index.js +6 -0
- package/dist/workspace/index.js.map +1 -0
- package/dist/workspace/node-fs.d.ts +23 -0
- package/dist/workspace/node-fs.d.ts.map +1 -0
- package/dist/workspace/node-fs.js +90 -0
- package/dist/workspace/node-fs.js.map +1 -0
- package/dist/workspace/s3.d.ts +32 -0
- package/dist/workspace/s3.d.ts.map +1 -0
- package/dist/workspace/s3.js +191 -0
- package/dist/workspace/s3.js.map +1 -0
- package/dist/workspace/scoped.d.ts +32 -0
- package/dist/workspace/scoped.d.ts.map +1 -0
- package/dist/workspace/scoped.js +76 -0
- package/dist/workspace/scoped.js.map +1 -0
- package/dist/workspace/types.d.ts +75 -0
- package/dist/workspace/types.d.ts.map +1 -0
- package/dist/workspace/types.js +18 -0
- package/dist/workspace/types.js.map +1 -0
- package/package.json +80 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
> This is one page of the CE.SDK Vanilla JS/TS documentation. For a complete overview, see the [Vanilla JS/TS Documentation Index](https://img.ly/docs/cesdk/js.md). For all docs in one file, see [llms-full.txt](./llms-full.txt.md).
|
|
2
|
+
|
|
3
|
+
**Navigation:** [Guides](./guides.md) > [Filters and Effects](./filters-and-effects.md)
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Related Pages
|
|
10
|
+
|
|
11
|
+
- [Filters & Effects Library](./filters-and-effects/overview.md) - Enhance visual elements with filters and effects such as blur, duotone, LUTs, and chroma keying.
|
|
12
|
+
- [Supported Filters and Effects](./filters-and-effects/support.md) - View the full list of visual effects and filters available in CE.SDK, including both built-in and custom options.
|
|
13
|
+
- [Apply Filters and Effects](./filters-and-effects/apply.md) - Apply filters and effects to design elements to enhance images and create visual transformations.
|
|
14
|
+
- [Create Custom Filters](./filters-and-effects/create-custom-filters.md) - Extend CE.SDK with custom LUT filter asset sources for brand-specific color grading and filter collections.
|
|
15
|
+
- [Chroma Key (Green Screen)](./filters-and-effects/chroma-key-green-screen.md) - Apply the green screen effect to images and videos, replacing specific colors with transparency for compositing workflows.
|
|
16
|
+
- [Blur Effects](./filters-and-effects/blur.md) - Apply blur effects to design elements to create depth, focus attention, or soften backgrounds.
|
|
17
|
+
- [Create a Custom LUT Filter](./filters-and-effects/create-custom-lut-filter.md) - Create and apply custom LUT filters to achieve consistent, brand-aligned visual styles.
|
|
18
|
+
- [Distortion Effects](./filters-and-effects/distortion.md) - Apply distortion effects to warp, shift, and transform design elements for dynamic artistic visuals in CE.SDK.
|
|
19
|
+
- [Duotone](./filters-and-effects/duotone.md) - Apply duotone effects to images, mapping tones to two colors for stylized visuals, vintage aesthetics, or brand-specific treatments.
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## More Resources
|
|
24
|
+
|
|
25
|
+
- **[Vanilla JS/TS Documentation Index](https://img.ly/docs/cesdk/js.md)** - Browse all Vanilla JS/TS documentation
|
|
26
|
+
- **[Complete Documentation](./llms-full.txt.md)** - Full documentation in one file (for LLMs)
|
|
27
|
+
- **[Web Documentation](./js.md)** - Interactive documentation with examples
|
|
28
|
+
- **[Support](mailto:support@img.ly)** - Contact IMG.LY support
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
> This is one page of the CE.SDK Vanilla JS/TS documentation. For a complete overview, see the [Vanilla JS/TS Documentation Index](https://img.ly/docs/cesdk/js.md). For all docs in one file, see [llms-full.txt](./llms-full.txt.md).
|
|
2
|
+
|
|
3
|
+
**Navigation:** [Get Started](./get-started/overview.md) > [Build with AI](./get-started/build-with-ai.md) > [Agent Skills](./get-started/agent-skills.md)
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
The CE.SDK Agent Skills plugin gives AI coding assistants bundled documentation, guided code generation, and autonomous project scaffolding for building applications with CreativeEditor SDK across 10 Web frameworks.
|
|
8
|
+
|
|
9
|
+
## What Are Agent Skills?
|
|
10
|
+
|
|
11
|
+
[Agent Skills](https://agentskills.io) are portable knowledge packs that plug into AI coding assistants. By installing the CE.SDK skills, you get:
|
|
12
|
+
|
|
13
|
+
- **Offline documentation**: All guides, API references, and best practices bundled locally — no external API calls
|
|
14
|
+
- **Guided code generation**: Build and explain skills that walk through CE.SDK implementation step by step
|
|
15
|
+
- **Autonomous scaffolding**: A builder agent that creates complete CE.SDK projects from scratch
|
|
16
|
+
|
|
17
|
+
## Available Skills
|
|
18
|
+
|
|
19
|
+
| Skill | Description |
|
|
20
|
+
| ---------------- | ------------------------------------------------------------------------ |
|
|
21
|
+
| `docs-react` | Look up CE.SDK React reference guides and documentation |
|
|
22
|
+
| `docs-vue` | Look up CE.SDK Vue.js reference guides and documentation |
|
|
23
|
+
| `docs-svelte` | Look up CE.SDK Svelte reference guides and documentation |
|
|
24
|
+
| `docs-sveltekit` | Look up CE.SDK SvelteKit reference guides and documentation |
|
|
25
|
+
| `docs-angular` | Look up CE.SDK Angular reference guides and documentation |
|
|
26
|
+
| `docs-nextjs` | Look up CE.SDK Next.js reference guides and documentation |
|
|
27
|
+
| `docs-nuxtjs` | Look up CE.SDK Nuxt.js reference guides and documentation |
|
|
28
|
+
| `docs-electron` | Look up CE.SDK Electron reference guides and documentation |
|
|
29
|
+
| `docs-js` | Look up CE.SDK Vanilla JavaScript reference guides and documentation |
|
|
30
|
+
| `docs-node` | Look up CE.SDK Node.js reference guides and documentation |
|
|
31
|
+
| `build` | Implement features, write code, and set up CE.SDK Web projects |
|
|
32
|
+
| `explain` | Explain how CE.SDK Web features work — concepts, architecture, workflows |
|
|
33
|
+
|
|
34
|
+
The plugin also includes a **builder** agent that autonomously scaffolds complete CE.SDK web applications — detecting your framework, applying starter kit templates, and implementing features end-to-end.
|
|
35
|
+
|
|
36
|
+
## Setup Instructions
|
|
37
|
+
|
|
38
|
+
### Claude Code Plugin
|
|
39
|
+
|
|
40
|
+
Add the marketplace and install the plugin:
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
# Add the marketplace (one-time setup)
|
|
44
|
+
claude plugin marketplace add imgly/agent-skills
|
|
45
|
+
|
|
46
|
+
# Install the plugin
|
|
47
|
+
claude plugin install cesdk@imgly
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
### Vercel Skills CLI
|
|
51
|
+
|
|
52
|
+
Install using the [Vercel Skills CLI](https://github.com/vercel-labs/skills):
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
# Install all skills for Claude Code
|
|
56
|
+
npx skills add imgly/agent-skills -a claude-code
|
|
57
|
+
|
|
58
|
+
# Install a specific skill only
|
|
59
|
+
npx skills add imgly/agent-skills --skill docs-react -a claude-code
|
|
60
|
+
|
|
61
|
+
# List available skills first
|
|
62
|
+
npx skills add imgly/agent-skills --list
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
### Manual Copy
|
|
66
|
+
|
|
67
|
+
For any skills-compatible agent, copy skill folders directly from the [GitHub repository](https://github.com/imgly/agent-skills):
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
# Clone the repo
|
|
71
|
+
git clone https://github.com/imgly/agent-skills.git
|
|
72
|
+
|
|
73
|
+
# Copy a specific skill into your Claude Code project
|
|
74
|
+
cp -r agent-skills/plugins/cesdk/skills/docs-react .claude/skills/cesdk-docs-react
|
|
75
|
+
|
|
76
|
+
# Or copy the builder agent
|
|
77
|
+
cp agent-skills/plugins/cesdk/agents/builder.md .claude/agents/cesdk-builder.md
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
## Usage
|
|
81
|
+
|
|
82
|
+
Once installed, invoke skills with slash commands in your AI coding assistant:
|
|
83
|
+
|
|
84
|
+
### Look up documentation
|
|
85
|
+
|
|
86
|
+
```
|
|
87
|
+
/cesdk:docs-react configuration
|
|
88
|
+
/cesdk:docs-vue getting started
|
|
89
|
+
/cesdk:docs-nextjs server-side rendering
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
### Build a feature
|
|
93
|
+
|
|
94
|
+
```
|
|
95
|
+
/cesdk:build add text overlays to images
|
|
96
|
+
/cesdk:build create a photo editor with filters
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
### Explain a concept
|
|
100
|
+
|
|
101
|
+
```
|
|
102
|
+
/cesdk:explain how the block hierarchy works
|
|
103
|
+
/cesdk:explain export pipeline and output formats
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
## How It Works
|
|
107
|
+
|
|
108
|
+
Each documentation skill bundles the complete CE.SDK guides and API references for its framework in a compressed index. Skills read directly from these local files — no external services or MCP servers are required.
|
|
109
|
+
|
|
110
|
+
The build skill includes starter kit templates for common use cases like design editors, video editors, and photo editors. It detects your project's framework and generates code accordingly.
|
|
111
|
+
|
|
112
|
+
---
|
|
113
|
+
|
|
114
|
+
## More Resources
|
|
115
|
+
|
|
116
|
+
- **[Vanilla JS/TS Documentation Index](https://img.ly/docs/cesdk/js.md)** - Browse all Vanilla JS/TS documentation
|
|
117
|
+
- **[Complete Documentation](./llms-full.txt.md)** - Full documentation in one file (for LLMs)
|
|
118
|
+
- **[Web Documentation](./js.md)** - Interactive documentation with examples
|
|
119
|
+
- **[Support](mailto:support@img.ly)** - Contact IMG.LY support
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
> This is one page of the CE.SDK Vanilla JS/TS documentation. For a complete overview, see the [Vanilla JS/TS Documentation Index](https://img.ly/docs/cesdk/js.md). For all docs in one file, see [llms-full.txt](./llms-full.txt.md).
|
|
2
|
+
|
|
3
|
+
**Navigation:** [Get Started](./get-started/overview.md) > [Build with AI](./get-started/build-with-ai.md)
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
Give your AI coding assistant full context about CE.SDK to generate accurate
|
|
8
|
+
code and get instant answers. Choose the integration that fits your workflow.
|
|
9
|
+
|
|
10
|
+
## Choose Your Approach
|
|
11
|
+
|
|
12
|
+
### Using a Coding Agent?
|
|
13
|
+
|
|
14
|
+
If you're working with an AI coding assistant like Claude Code or OpenAI Codex, install our **Agent Skills** for the best experience. Skills bundle offline documentation, guided code generation and autonomous project scaffolding directly into your agent.
|
|
15
|
+
|
|
16
|
+
[Set Up Agent Skills](./get-started/agent-skills.md)
|
|
17
|
+
|
|
18
|
+
### Using an AI-Powered IDE?
|
|
19
|
+
|
|
20
|
+
Connect your IDE to our **MCP Server** for real-time documentation search. Works with Claude Desktop, Cursor, VS Code Copilot, Windsurf and any MCP-compatible tool.
|
|
21
|
+
|
|
22
|
+
[Connect MCP Server](./get-started/mcp-server.md)
|
|
23
|
+
|
|
24
|
+
### Need Raw Documentation for AI?
|
|
25
|
+
|
|
26
|
+
Download our **LLMs.txt** files to manually load CE.SDK documentation into any AI tool. Available as a compact index or full documentation bundle.
|
|
27
|
+
|
|
28
|
+
[Download LLMs.txt](./llms-txt.md)
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## Related Pages
|
|
33
|
+
|
|
34
|
+
- [Agent Skills](./get-started/agent-skills.md) - Install CE.SDK documentation and code generation skills for AI coding assistants.
|
|
35
|
+
- [MCP Server](./get-started/mcp-server.md) - Connect AI assistants to CE.SDK documentation using the Model Context Protocol (MCP) server.
|
|
36
|
+
- [LLMs.txt](./llms-txt.md) - Our documentation is available in LLMs.txt format
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## More Resources
|
|
41
|
+
|
|
42
|
+
- **[Vanilla JS/TS Documentation Index](https://img.ly/docs/cesdk/js.md)** - Browse all Vanilla JS/TS documentation
|
|
43
|
+
- **[Complete Documentation](./llms-full.txt.md)** - Full documentation in one file (for LLMs)
|
|
44
|
+
- **[Web Documentation](./js.md)** - Interactive documentation with examples
|
|
45
|
+
- **[Support](mailto:support@img.ly)** - Contact IMG.LY support
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
> This is one page of the CE.SDK Vanilla JS/TS documentation. For a complete overview, see the [Vanilla JS/TS Documentation Index](https://img.ly/docs/cesdk/js.md). For all docs in one file, see [llms-full.txt](./llms-full.txt.md).
|
|
2
|
+
|
|
3
|
+
**Navigation:** [Get Started](./get-started/overview.md) > [Build with AI](./get-started/build-with-ai.md) > [MCP Server](./get-started/mcp-server.md)
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
The CE.SDK MCP server provides a standardized interface that allows any compatible AI assistant to search and access our documentation. This enables AI tools like Claude, Cursor, and VS Code Copilot to provide more accurate, context-aware help when working with CE.SDK.
|
|
8
|
+
|
|
9
|
+
## What is MCP?
|
|
10
|
+
|
|
11
|
+
The [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) is an open standard that enables AI assistants to securely connect to external data sources. By connecting your AI tools to our MCP server, you get:
|
|
12
|
+
|
|
13
|
+
- **Accurate answers**: AI assistants can search and retrieve the latest CE.SDK documentation
|
|
14
|
+
- **Context-aware help**: Get platform-specific guidance for your development environment
|
|
15
|
+
- **Up-to-date information**: Always access current documentation without relying on training data
|
|
16
|
+
|
|
17
|
+
## Available Tools
|
|
18
|
+
|
|
19
|
+
The MCP server exposes two tools:
|
|
20
|
+
|
|
21
|
+
| Tool | Description |
|
|
22
|
+
| -------- | --------------------------------------------- |
|
|
23
|
+
| `search` | Search documentation by query string |
|
|
24
|
+
| `fetch` | Retrieve the full content of a document by ID |
|
|
25
|
+
|
|
26
|
+
## Server Endpoint
|
|
27
|
+
|
|
28
|
+
| URL | Transport |
|
|
29
|
+
| ------------------------ | --------------- |
|
|
30
|
+
| `https://mcp.img.ly/mcp` | Streamable HTTP |
|
|
31
|
+
|
|
32
|
+
No authentication is required.
|
|
33
|
+
|
|
34
|
+
## Setup Instructions
|
|
35
|
+
|
|
36
|
+
### Claude Code
|
|
37
|
+
|
|
38
|
+
Add the MCP server with a single command:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
claude mcp add --transport http imgly_docs https://mcp.img.ly/mcp
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
### Claude Desktop
|
|
45
|
+
|
|
46
|
+
1. Open Claude Desktop and go to **Settings** (click your profile icon)
|
|
47
|
+
2. Navigate to **Connectors** in the sidebar
|
|
48
|
+
3. Click **Add custom connector**
|
|
49
|
+
4. Enter the URL: `https://mcp.img.ly/mcp`
|
|
50
|
+
5. Click **Add** to connect
|
|
51
|
+
|
|
52
|
+
### Cursor
|
|
53
|
+
|
|
54
|
+
Add the following to your Cursor MCP configuration. You can use either:
|
|
55
|
+
|
|
56
|
+
- **Project-specific**: `.cursor/mcp.json` in your project root
|
|
57
|
+
- **Global**: `~/.cursor/mcp.json`
|
|
58
|
+
|
|
59
|
+
```json
|
|
60
|
+
{
|
|
61
|
+
"mcpServers": {
|
|
62
|
+
"imgly_docs": {
|
|
63
|
+
"url": "https://mcp.img.ly/mcp"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
### VS Code
|
|
70
|
+
|
|
71
|
+
Add to your workspace configuration at `.vscode/mcp.json`:
|
|
72
|
+
|
|
73
|
+
```json
|
|
74
|
+
{
|
|
75
|
+
"servers": {
|
|
76
|
+
"imgly_docs": {
|
|
77
|
+
"type": "http",
|
|
78
|
+
"url": "https://mcp.img.ly/mcp"
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
### Windsurf
|
|
85
|
+
|
|
86
|
+
Add the following to your Windsurf MCP configuration at `~/.codeium/windsurf/mcp_config.json`:
|
|
87
|
+
|
|
88
|
+
```json
|
|
89
|
+
{
|
|
90
|
+
"mcpServers": {
|
|
91
|
+
"imgly_docs": {
|
|
92
|
+
"serverUrl": "https://mcp.img.ly/mcp"
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
### Other Clients
|
|
99
|
+
|
|
100
|
+
For other MCP-compatible clients, use the endpoint `https://mcp.img.ly/mcp` with HTTP transport. Refer to your client's documentation for the specific configuration format.
|
|
101
|
+
|
|
102
|
+
## Usage
|
|
103
|
+
|
|
104
|
+
Once configured, your AI assistant will automatically have access to CE.SDK documentation. You can ask questions like:
|
|
105
|
+
|
|
106
|
+
- "How do I add a text block in CE.SDK?"
|
|
107
|
+
- "Show me how to export a design as PNG"
|
|
108
|
+
- "What are the available blend modes?"
|
|
109
|
+
|
|
110
|
+
The AI will search our documentation and provide answers based on the latest CE.SDK guides and API references.
|
|
111
|
+
|
|
112
|
+
---
|
|
113
|
+
|
|
114
|
+
## More Resources
|
|
115
|
+
|
|
116
|
+
- **[Vanilla JS/TS Documentation Index](https://img.ly/docs/cesdk/js.md)** - Browse all Vanilla JS/TS documentation
|
|
117
|
+
- **[Complete Documentation](./llms-full.txt.md)** - Full documentation in one file (for LLMs)
|
|
118
|
+
- **[Web Documentation](./js.md)** - Interactive documentation with examples
|
|
119
|
+
- **[Support](mailto:support@img.ly)** - Contact IMG.LY support
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
> This is one page of the CE.SDK Vanilla JS/TS documentation. For a complete overview, see the [Vanilla JS/TS Documentation Index](https://img.ly/docs/cesdk/js.md). For all docs in one file, see [llms-full.txt](./llms-full.txt.md).
|
|
2
|
+
|
|
3
|
+
**Navigation:** [Get Started](./get-started/overview.md)
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
Everything you need to integrate CE.SDK into your application. Learn what the
|
|
8
|
+
SDK offers, get up and running with starter kits, explore AI-powered
|
|
9
|
+
workflows, and understand our licensing model.
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## Related Pages
|
|
14
|
+
|
|
15
|
+
- [Javascript Creative Editor SDK](./what-is-cesdk.md) - CreativeEditor SDK offers a fully-featured JavaScript library for creating and editing rich visual designs directly within the browser.
|
|
16
|
+
- [Capabilities](./capabilities.md) - Explore the full list of CE.SDK capabilities available for your platform, including design, video, image, text, and more.
|
|
17
|
+
- [Quickstart](./get-started/vanilla-js/quickstart.md) - Get started with CE.SDK by choosing a starter kit
|
|
18
|
+
- [Build with AI](./get-started/build-with-ai.md) - Give your AI coding assistant context about CE.SDK to generate accurate code and get instant answers.
|
|
19
|
+
- [Licensing](./licensing.md) - Understand CE.SDK’s flexible licensing, trial options, and how keys work across dev, staging, and production.
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## More Resources
|
|
24
|
+
|
|
25
|
+
- **[Vanilla JS/TS Documentation Index](https://img.ly/docs/cesdk/js.md)** - Browse all Vanilla JS/TS documentation
|
|
26
|
+
- **[Complete Documentation](./llms-full.txt.md)** - Full documentation in one file (for LLMs)
|
|
27
|
+
- **[Web Documentation](./js.md)** - Interactive documentation with examples
|
|
28
|
+
- **[Support](mailto:support@img.ly)** - Contact IMG.LY support
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
> This is one page of the CE.SDK Vanilla JS/TS documentation. For a complete overview, see the [Vanilla JS/TS Documentation Index](https://img.ly/docs/cesdk/js.md). For all docs in one file, see [llms-full.txt](./llms-full.txt.md).
|
|
2
|
+
|
|
3
|
+
**Navigation:** [Get Started](./get-started/overview.md) > [Quickstart JS/TS](./get-started/vanilla-js/quickstart.md)
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
Get started with CE.SDK. Choose a starter kit below to see it in action, then
|
|
8
|
+
follow the integration guide.
|
|
9
|
+
|
|
10
|
+
## Starter Kits
|
|
11
|
+
|
|
12
|
+
Try the live demos below to see each editor in action, then get started with the one that fits your use case.
|
|
13
|
+
|
|
14
|
+
<SolutionGrid>
|
|
15
|
+
<SolutionCard title="Photo Editor" description="This CE.SDK editor configuration is equipped with the essentials for photo editing and includes advanced tools such as background removal." contentId="r6kq0u" liveExampleUrl="/examples/starterkit-photo-editor/" heroImage={photoHero} />
|
|
16
|
+
|
|
17
|
+
<SolutionCard title="Design Editor" description="Our easy to use editor variant focused on layout, text, and images is ideal for adapting existing templates." contentId="8unj9u" liveExampleUrl="/examples/starterkit-design-editor/" heroImage={designHero} />
|
|
18
|
+
|
|
19
|
+
<SolutionCard title="Design Editor (Advanced)" description="Our editor variant for professional users, grants granular control over designs." contentId="87riel" liveExampleUrl="/examples/starterkit-advanced-design-editor/" heroImage={advancedHero} />
|
|
20
|
+
|
|
21
|
+
<SolutionCard title="Design Viewer" description="Lightweight design viewing for your web app—pan, zoom, and navigate multi-page designs. Runs entirely in the browser with no server dependencies." contentId="zgs556" liveExampleUrl="/examples/starterkit-design-viewer/" heroImage={viewerHero} />
|
|
22
|
+
|
|
23
|
+
<SolutionCard title="Video Editor" description="Take the Video Editor for a test run and see how powerful editing features meet seamless and intuitive design. All with fully customizable UI and asset library." contentId="e1nlor" liveExampleUrl="/examples/starterkit-video-editor/" heroImage={videoHero} />
|
|
24
|
+
|
|
25
|
+
<SolutionCard title="Video Editor (Advanced)" description="Comprehensive video editing for your web app—professional tools for timeline editing, visual effects, and MP4 export. Runs entirely in the browser with no server dependencies." contentId="2a68z2" liveExampleUrl="/examples/starterkit-advanced-video-editor/" heroImage={advancedVideoHero} />
|
|
26
|
+
|
|
27
|
+
<SolutionCard title="Video Player" description="Lightweight video playback for your web app—play, pause, and navigate video content. Runs entirely in the browser with no server dependencies." contentId="6sjm1w" liveExampleUrl="/examples/starterkit-video-player/" heroImage={playerHero} />
|
|
28
|
+
|
|
29
|
+
<SolutionCard title="AI Editor" description="Quickly add AI-powered visual editing and media generation to your web app — seamlessly connect any AI model." contentId="4z6j9l" liveExampleUrl="/examples/starterkit-ai-editor/" heroImage={aiHero} />
|
|
30
|
+
|
|
31
|
+
<SolutionCard title="T-Shirt Designer" description="Apparel Editor for creating print-ready design." contentId="jwinqr" liveExampleUrl="/examples/starterkit-t-shirt-designer/" heroImage={tshirtHero} />
|
|
32
|
+
|
|
33
|
+
<SolutionCard title="Product Editor" description="Product Editor for customizing any product with print-ready designs." contentId="p7m8k2" liveExampleUrl="/examples/starterkit-product-editor/" heroImage={productHero} />
|
|
34
|
+
</SolutionGrid>
|
|
35
|
+
|
|
36
|
+
### Video Editing
|
|
37
|
+
|
|
38
|
+
Create and edit video compositions with timeline editing, captions, animations, and template-based generation.
|
|
39
|
+
|
|
40
|
+
<SolutionGrid>
|
|
41
|
+
<SolutionCard title="Start with Video" description="Initialize the editor with a video matching the page size." contentId="swv001" liveExampleUrl="/examples/starterkit-start-with-video/" heroImage={startWithVideoHero} />
|
|
42
|
+
|
|
43
|
+
<SolutionCard title="Video Captions" description="Enhance video creation by importing, customizing, and styling captions directly within the editor." contentId="vcap01" liveExampleUrl="/examples/starterkit-video-captions/" heroImage={videoCaptionsHero} />
|
|
44
|
+
|
|
45
|
+
<SolutionCard title="Video Animations" description="Effortlessly add animations to any element in CE.SDK videos using our extensive preset library." contentId="vanim1" liveExampleUrl="/examples/starterkit-video-animations/" heroImage={videoAnimationsHero} />
|
|
46
|
+
|
|
47
|
+
<SolutionCard title="Automated Video Generation" description="Streamline asset production with video placeholders." contentId="8om1qg" heroImage={automatedVideoHero} />
|
|
48
|
+
</SolutionGrid>
|
|
49
|
+
|
|
50
|
+
### Plugins
|
|
51
|
+
|
|
52
|
+
Add powerful custom functionality to the editor in a matter of seconds.
|
|
53
|
+
|
|
54
|
+
<SolutionGrid>
|
|
55
|
+
<SolutionCard title="Background Removal Editor" description="Effortlessly remove background from images directly in the browser with no additional costs and privacy concerns." contentId="bgrmv1" liveExampleUrl="/examples/starterkit-background-removal-editor/" heroImage={bgRemovalHero} />
|
|
56
|
+
|
|
57
|
+
<SolutionCard title="QR Code Editor" description="Easily generate and customize QR codes within CE.SDK." contentId="qrcde1" liveExampleUrl="/examples/starterkit-qr-code-editor/" heroImage={qrCodeHero} />
|
|
58
|
+
|
|
59
|
+
<SolutionCard title="Cutout Lines Editor" description="CE.SDK's cutout plugin enables effortless creation and customization of cutout shapes for web-to-print users." contentId="ctltl1" liveExampleUrl="/examples/starterkit-cutout-lines-editor/" heroImage={cutoutHero} />
|
|
60
|
+
|
|
61
|
+
<SolutionCard title="Vectorizer Editor" description="Transform your pixel-based images into scalable vector graphics with Vectorizer Plugin." contentId="vctre1" liveExampleUrl="/examples/starterkit-vectorizer-editor/" heroImage={vectorizerHero} />
|
|
62
|
+
</SolutionGrid>
|
|
63
|
+
|
|
64
|
+
### Custom Built UIs
|
|
65
|
+
|
|
66
|
+
Fully custom UIs built with React using the Engine API. Freely adapt to your use case.
|
|
67
|
+
|
|
68
|
+
<SolutionGrid>
|
|
69
|
+
<SolutionCard title="Postcard UI" description="Built to facilitate optimal post- and greeting-card design, from changing accent colors and selecting fonts to custom messages and pictures." contentId="03mijr" liveExampleUrl="/examples/starterkit-postcard-ui/" heroImage={postcardHero} />
|
|
70
|
+
|
|
71
|
+
<SolutionCard title="Photobook UI" description="Custom UI for building photo books focusing on theming, page layouts, and managing photo assets." contentId="m5ob81" liveExampleUrl="/examples/starterkit-photobook-ui/" heroImage={photobookHero} />
|
|
72
|
+
|
|
73
|
+
<SolutionCard title="Mobile UI" description="Easily build custom mobile UIs and provide a seamless design editing experience for your users, on both iOS and Android." contentId="h7k2m1" liveExampleUrl="/examples/starterkit-mobile-ui/" heroImage={mobileUiHero} />
|
|
74
|
+
|
|
75
|
+
<SolutionCard title="Photo UI" description="Photo UI is equipped with advanced photo editing options while remaining easy and intuitive to use. Try the demo and see for yourself." contentId="w9p3t6" liveExampleUrl="/examples/starterkit-photo-ui/" heroImage={photoUiHero} />
|
|
76
|
+
|
|
77
|
+
<SolutionCard title="Apparel UI" description="Custom, mobile apparel UI for creating print-ready design." contentId="ec0cfb" liveExampleUrl="/examples/starterkit-apparel-ui/" heroImage={apparelHero} />
|
|
78
|
+
</SolutionGrid>
|
|
79
|
+
|
|
80
|
+
### Customization
|
|
81
|
+
|
|
82
|
+
Configure the editor UI to fit your design—theming, localization, export options, and layout controls.
|
|
83
|
+
|
|
84
|
+
<SolutionGrid>
|
|
85
|
+
<SolutionCard title="Theming" description="Effortlessly adapt the UI of the CreativeEditor SDK to best match your app. With Theming you can easily change elements like theme, scaling, and background." contentId="jkl012" liveExampleUrl="/examples/starterkit-theming/" heroImage={themingHero} />
|
|
86
|
+
|
|
87
|
+
<SolutionCard title="Translation & Internationalization" description="Ships with English and German. Supports translations for any language." contentId="lngde1" liveExampleUrl="/examples/starterkit-translation-internationalization/" heroImage={translationHero} />
|
|
88
|
+
|
|
89
|
+
<SolutionCard title="Single Page Editor" description="The editor shows only one active page at a time." contentId="sngpg1" liveExampleUrl="/examples/starterkit-single-page-editor/" heroImage={singlePageHero} />
|
|
90
|
+
|
|
91
|
+
<SolutionCard title="Start With Image" description="Initialize the editor with an image matching the page size." contentId="stwim1" liveExampleUrl="/examples/starterkit-start-with-image/" heroImage={startWithImageHero} />
|
|
92
|
+
|
|
93
|
+
<SolutionCard title="Export Options Editor" description="Export designs in JPG, PNG, or PDF with custom quality, page ranges, and dimensions using CE.SDK's advanced export features." contentId="expopt" liveExampleUrl="/examples/starterkit-export-options/" heroImage={exportOptionsHero} />
|
|
94
|
+
|
|
95
|
+
<SolutionCard title="Force Crop Editor" description="Start editing with predefined crop presets to simplify content creation and maintain layout consistency." contentId="fcrp01" liveExampleUrl="/examples/starterkit-force-crop-editor/" heroImage={forceCropHero} />
|
|
96
|
+
|
|
97
|
+
<SolutionCard title="Print-Ready PDF Editor" description="Deliver print-ready CMYK PDF/X-3 files straight from your web app. Perfect for web-to-print and marketing automation." contentId="prpdf1" liveExampleUrl="/examples/starterkit-print-ready-pdf-editor/" heroImage={printPdfHero} />
|
|
98
|
+
|
|
99
|
+
<SolutionCard title="Video Export Options" description="Choose a suitable Frames per Second option and export videos in SD, HD, FHD, 2K, 4K, or define custom quality." contentId="veo001" liveExampleUrl="/examples/starterkit-video-export-options/" heroImage={videoExportHero} />
|
|
100
|
+
</SolutionGrid>
|
|
101
|
+
|
|
102
|
+
### Assets
|
|
103
|
+
|
|
104
|
+
Leverage the versatile asset API to add custom asset sources or create new asset types.
|
|
105
|
+
|
|
106
|
+
<SolutionGrid>
|
|
107
|
+
<SolutionCard title="Unsplash Editor" description="CE.SDK can include assets from third-party libraries accessible via API. Search and browse images from Unsplash in the editor." contentId="u5sp1h" liveExampleUrl="/examples/starterkit-unsplash-asset-source/" heroImage={unsplashHero} />
|
|
108
|
+
|
|
109
|
+
<SolutionCard title="Pexels Image Editor" description="CE.SDK can include assets from third-party libraries accessible via API. Search and browse images from Pexels in the editor." contentId="pxlsie" liveExampleUrl="/examples/starterkit-pexels-image-asset-source/" heroImage={pexelsHero} />
|
|
110
|
+
|
|
111
|
+
<SolutionCard title="Getty Images Editor" description="CE.SDK can include assets from third-party libraries accessible via API. Search and browse images from Getty Images in the editor." contentId="gtyie1" liveExampleUrl="/examples/starterkit-getty-images-asset-source/" heroImage={gettyHero} />
|
|
112
|
+
|
|
113
|
+
<SolutionCard title="Airtable Image Editor" description="CE.SDK can include assets from third-party libraries accessible via API. Search and browse images from an Airtable spreadsheet in the editor." contentId="artbl1" liveExampleUrl="/examples/starterkit-airtable-image-asset-source/" heroImage={airtableHero} />
|
|
114
|
+
|
|
115
|
+
<SolutionCard title="Layouts Editor" description="Allow users to select different layouts without changing page content." contentId="layot1" liveExampleUrl="/examples/starterkit-layouts-asset-source/" heroImage={layoutsHero} />
|
|
116
|
+
|
|
117
|
+
<SolutionCard title="Page Sizes Editor" description="Automatically adapt the same design or template to different page sizes and easily scale marketing campaigns and print materials across platforms." contentId="pgsz01" liveExampleUrl="/examples/starterkit-page-sizes-asset-source/" heroImage={pageSizesHero} />
|
|
118
|
+
</SolutionGrid>
|
|
119
|
+
|
|
120
|
+
### Templating
|
|
121
|
+
|
|
122
|
+
Create templates by defining placeholders, constraints, and premium content libraries.
|
|
123
|
+
|
|
124
|
+
<SolutionGrid>
|
|
125
|
+
<SolutionCard title="Placeholders" description="Ensure staying on brand and simplify the design process by defining placeholders and design constraints." contentId="ghi789" liveExampleUrl="/examples/starterkit-placeholders/" heroImage={placeholdersHero} />
|
|
126
|
+
|
|
127
|
+
<SolutionCard title="Form-Based Template Adoption" description="Use a form-based custom panel in CE.SDK to enable users to easily customize templates." contentId="fbtmp1" liveExampleUrl="/examples/starterkit-form-based-template-adoption/" heroImage={formTemplateHero} />
|
|
128
|
+
</SolutionGrid>
|
|
129
|
+
|
|
130
|
+
### Creative Automation
|
|
131
|
+
|
|
132
|
+
Create dynamic templates to auto-generate image and design variations from data sources.
|
|
133
|
+
|
|
134
|
+
<SolutionGrid>
|
|
135
|
+
<SolutionCard title="3D Mockup Editor" description="Integrate CE.SDK with 3D libraries for real-time, interactive design previews on products. Enhance accuracy and boost conversions with lifelike visuals." contentId="od0zz3" liveExampleUrl="/examples/starterkit-3d-product-preview/" heroImage={mockup3dHero} />
|
|
136
|
+
|
|
137
|
+
<SolutionCard title="Mockup Editor" description="Easily visualize the final product with the Mockup Editor. Suitable for apparel, postcards, posters, business cards, and social media product designs." contentId="e8eejr" liveExampleUrl="/examples/starterkit-product-preview/" heroImage={mockupHero} />
|
|
138
|
+
|
|
139
|
+
<SolutionCard title="Design Generator" description="Automatically generate ready-to-use designs from a set of input parameters." contentId="v8y4l9" liveExampleUrl="/examples/starterkit-automatic-design-generation/" heroImage={designGenHero} />
|
|
140
|
+
|
|
141
|
+
<SolutionCard title="Multi Image Generation" description="Generate multiple image variants for a single data point." contentId="g7jzku" liveExampleUrl="/examples/starterkit-multi-image-generation/" heroImage={multiImageHero} />
|
|
142
|
+
|
|
143
|
+
<SolutionCard title="Data Merge" description="Generate a batch of images from a set of data, for instance team cards." contentId="d4evnm" liveExampleUrl="/examples/starterkit-batch-image-generation/" heroImage={dataMergeHero} />
|
|
144
|
+
|
|
145
|
+
<SolutionCard title="Auto-Resizer" description="Automatically generate size variations of your design and easily scale your marketing materials across different platforms." contentId="t2jxae" liveExampleUrl="/examples/starterkit-automated-resizing/" heroImage={autoResizeHero} />
|
|
146
|
+
|
|
147
|
+
<SolutionCard title="Export Using Renderer" description="The Renderer brings CE.SDK's design engine to your backend with fast, compliant, enterprise-ready export for images, PDFs, and video, enabling organizations to generate media at scale with full fidelity and predictable performance." contentId="exprnd" liveExampleUrl="/examples/starterkit-export-using-renderer/" heroImage={exportRendererHero} />
|
|
148
|
+
</SolutionGrid>
|
|
149
|
+
|
|
150
|
+
### Extensibility
|
|
151
|
+
|
|
152
|
+
Extend editor functionality with file format imports, content moderation, design validation, and version history.
|
|
153
|
+
|
|
154
|
+
<SolutionGrid>
|
|
155
|
+
<SolutionCard title="Photoshop Template Import" description="Transform your existing Photoshop templates for use in the CE.SDK with our Importer. Preserve design elements and streamline the transition between platforms." contentId="psd001" liveExampleUrl="/examples/starterkit-psd-template-import/" heroImage={psdHero} />
|
|
156
|
+
|
|
157
|
+
<SolutionCard title="PowerPoint Template Import" description="Transform PowerPoint slides into editable CE.SDK designs. All formatting preserved." contentId="pptx01" liveExampleUrl="/examples/starterkit-pptx-template-import/" heroImage={pptxHero} />
|
|
158
|
+
|
|
159
|
+
<SolutionCard title="InDesign Template Import" description="Transform your existing InDesign templates for use in the CE.SDK with our Importer. Preserve design elements and streamline the transition between platforms." contentId="idml01" liveExampleUrl="/examples/starterkit-indesign-template-import/" heroImage={indesignHero} />
|
|
160
|
+
|
|
161
|
+
<SolutionCard title="Content Moderation" description="Content moderation made easy. Decide what type of imagery to restrict and receive automatic notifications flagging content that might be violating your guidelines." contentId="abc123" liveExampleUrl="/examples/starterkit-content-moderation/" heroImage={contentModHero} />
|
|
162
|
+
|
|
163
|
+
<SolutionCard title="Design Validation" description="Reduce the risk of misprints and speed up validation process thanks to design validation. Automatic error notifications will let you know if the design is not print-ready." contentId="def456" liveExampleUrl="/examples/starterkit-design-validation/" heroImage={designValHero} />
|
|
164
|
+
|
|
165
|
+
<SolutionCard title="Version History" description="With Version History, you can monitor changes made to each design and easily restore past versions if needed." contentId="vh1st0" liveExampleUrl="/examples/starterkit-version-history/" heroImage={versionHistoryHero} />
|
|
166
|
+
</SolutionGrid>
|
|
167
|
+
|
|
168
|
+
---
|
|
169
|
+
|
|
170
|
+
## More Resources
|
|
171
|
+
|
|
172
|
+
- **[Vanilla JS/TS Documentation Index](https://img.ly/docs/cesdk/js.md)** - Browse all Vanilla JS/TS documentation
|
|
173
|
+
- **[Complete Documentation](./llms-full.txt.md)** - Full documentation in one file (for LLMs)
|
|
174
|
+
- **[Web Documentation](./js.md)** - Interactive documentation with examples
|
|
175
|
+
- **[Support](mailto:support@img.ly)** - Contact IMG.LY support
|