Canvas
Create a shareable interactive markdown canvas and return https://canvas.n3wth.com/c/{slug}.
Create and share interactive markdown canvases via canvas.n3wth.com. Push source, get a rendered preview URL, and iterate in place. Use when humans or agents should open the output by URL.
Capabilities
Use cases
Try it
Example prompts to use with this skill
Create a canvas with markdown content
curl -sS -X POST "$CANVAS_SITE_URL/agent/v1/canvases" \
-H "Authorization: Bearer $CANVAS_AGENT_TOKEN" \
-H "Content-Type: application/json" \
-d '{"title": "My doc", "source": "# Hello\n\nThis is **markdown**."}'
Returns `https://canvas.n3wth.com/c/{slug}` to open.Update an existing canvas
curl -sS -X PUT "$CANVAS_SITE_URL/agent/v1/canvases/$SLUG/source" \
-H "Authorization: Bearer $CANVAS_AGENT_TOKEN" \
-H "Content-Type: application/json" \
-d '{"source": "# Updated\n\nNew content."}'
Open tabs at https://canvas.n3wth.com/c/$SLUG re-render automatically.Add to your AI assistant
Choose your AI assistant and run the command in your terminal
curl -fsSL https://raw.githubusercontent.com/n3wth/canvas/main/skills/canvas/SKILL.md -o ~/.cursor/skills/canvas.mdCopycurl -fsSL https://raw.githubusercontent.com/n3wth/canvas/main/skills/canvas/SKILL.md -o ~/.windsurf/skills/canvas.mdCopycurl -fsSL https://raw.githubusercontent.com/n3wth/canvas/main/skills/canvas/SKILL.md -o ~/.copilot/skills/canvas.mdCopyDiscussions
Sign in with GitHub to join the discussion.
Loading...
Related skills
GSAP Animations
Create production-ready GSAP animations with ScrollTrigger, SplitText, and other plugins. Build scroll effects, text animations, hero entrances, and micro-interactions.
MCP Builder
Build MCP (Model Context Protocol) servers that let LLMs interact with external services.