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.
What Are Agent Skills?#
Agent Skills are portable knowledge packs that plug into AI coding assistants. By installing the CE.SDK skills, you get:
- Offline documentation: All guides, API references, and best practices bundled locally — no external API calls
- Guided code generation: Build and explain skills that walk through CE.SDK implementation step by step
- Autonomous scaffolding: A builder agent that creates complete CE.SDK projects from scratch
Available Skills#
| Skill | Description |
|---|---|
docs-react |
Look up CE.SDK React reference guides and documentation |
docs-vue |
Look up CE.SDK Vue.js reference guides and documentation |
docs-svelte |
Look up CE.SDK Svelte reference guides and documentation |
docs-sveltekit |
Look up CE.SDK SvelteKit reference guides and documentation |
docs-angular |
Look up CE.SDK Angular reference guides and documentation |
docs-nextjs |
Look up CE.SDK Next.js reference guides and documentation |
docs-nuxtjs |
Look up CE.SDK Nuxt.js reference guides and documentation |
docs-electron |
Look up CE.SDK Electron reference guides and documentation |
docs-js |
Look up CE.SDK Vanilla JavaScript reference guides and documentation |
docs-node |
Look up CE.SDK Node.js reference guides and documentation |
build |
Implement features, write code, and set up CE.SDK Web projects |
explain |
Explain how CE.SDK Web features work — concepts, architecture, workflows |
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.
Setup Instructions#
Claude Code Plugin#
Add the marketplace and install the plugin:
# Add the marketplace (one-time setup)claude plugin marketplace add imgly/agent-skills
# Install the pluginclaude plugin install cesdk@imglyVercel Skills CLI#
Install using the Vercel Skills CLI:
# Install all skills for Claude Codenpx skills add imgly/agent-skills -a claude-code
# Install a specific skill onlynpx skills add imgly/agent-skills --skill docs-react -a claude-code
# List available skills firstnpx skills add imgly/agent-skills --listManual Copy#
For any skills-compatible agent, copy skill folders directly from the GitHub repository:
# Clone the repogit clone https://github.com/imgly/agent-skills.git
# Copy a specific skill into your Claude Code projectcp -r agent-skills/plugins/cesdk/skills/docs-react .claude/skills/cesdk-docs-react
# Or copy the builder agentcp agent-skills/plugins/cesdk/agents/builder.md .claude/agents/cesdk-builder.mdPrerelease and Nightly Versions#
By default every install method above tracks the latest stable CE.SDK release. If you build against a prerelease or nightly engine build (for example @cesdk/node-native on the next or dev npm dist-tag), you can install the matching skills from a dedicated release channel. The channels mirror the npm dist-tag names:
| Channel | Branch | Matches engine dist-tag | Contents |
|---|---|---|---|
| Stable | main / latest |
latest |
Latest stable release (default) |
| Prerelease | next |
next |
Latest release candidate (e.g. 1.77.0-rc.4) |
| Nightly | dev |
dev |
Latest nightly build (e.g. 1.78.0-nightly.20260630) |
Every published version is also available under an exact v<version> git tag for pinning, so you can either track a moving channel (latest of that kind) or pin to one specific build. All three install methods accept a channel branch or a version tag.
Claude Code Plugin#
Pin the marketplace to a channel branch or a version tag with the @<ref> suffix:
# Prerelease (release candidate) channel — latest rcclaude plugin marketplace add imgly/agent-skills@nextclaude plugin install cesdk@imgly
# Nightly channel — latest nightlyclaude plugin marketplace add imgly/agent-skills@devclaude plugin install cesdk@imgly
# A specific published versionclaude plugin marketplace add imgly/agent-skills@v1.78.0-nightly.20260630claude plugin install cesdk@imglyVercel Skills CLI#
Specify a channel branch or version tag with the #<ref> fragment (or an equivalent /tree/<ref> URL):
# Nightly channel — latest nightlynpx skills add imgly/agent-skills#dev -a claude-code
# A specific published versionnpx skills add imgly/agent-skills#v1.78.0-nightly.20260630 -a claude-code
# A single skill from a pinned version (`@` selects the skill)npx skills add imgly/agent-skills#v1.78.0-nightly.20260630@docs-node -a claude-codeManual Copy#
Clone a specific channel branch or an exact version tag:
# Nightly channel — latest nightlygit clone -b dev https://github.com/imgly/agent-skills.git
# A specific published versiongit clone -b v1.78.0-nightly.20260630 https://github.com/imgly/agent-skills.gitUsage#
Once installed, invoke skills with slash commands in your AI coding assistant:
Look up documentation#
/cesdk:docs-react configuration/cesdk:docs-vue getting started/cesdk:docs-nextjs server-side renderingBuild a feature#
/cesdk:build add text overlays to images/cesdk:build create a photo editor with filtersExplain a concept#
/cesdk:explain how the block hierarchy works/cesdk:explain export pipeline and output formatsHow It Works#
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.
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.