AXe Skills HubSearch /

← All skills

axe-compose-artifact

AXe First-party 

Reference: full SKILL.md

Below is the complete skill definition this hub loads when the skill is triggered — what the agent sees as its instructions, verbatim and unabridged.

AXE Compose Artifact

CRUD interface for Compose AI-powered design artifacts.

API

Base: https://compose.casa

Create artifact

curl -s -X POST https://compose.casa/api/artifacts \
  -H "Content-Type: application/json" \
  -d '{"title":"<title>","content":"<html-or-svg>","type":"html"}'

Read artifact

curl -s https://compose.casa/api/artifacts/<id>

Update artifact

curl -s -X PUT https://compose.casa/api/artifacts/<id> \
  -H "Content-Type: application/json" \
  -d '{"content":"<updated-content>"}'

Delete artifact

curl -s -X DELETE https://compose.casa/api/artifacts/<id>

Viewer

Raw artifact render: https://compose.casa/raw/<id>

Embeddable via iframe. Supports HTML, SVG, and Markdown.

MCP Tools

ToolPurpose
composeCreate/update artifacts
canvasRender to canvas viewer
recallSearch existing artifacts

MCP server: https://compose.casa/mcp (HTTP) or /opt/axecloud-mcp/ (stdio)

Surfaces

DomainPurpose
compose.casaAPI + viewer
compose.com.imConsumer app
axe.onl/composeDesign studio (future)

Metadata

Category
Agent Ops
Tier
community
Version
1.0.0
License
MIT
Path
skills/axe-compose-artifact/SKILL.md

Use with an agent

Fetch this skill’s definition over the open API — no key required.

curl -s /v1/skills/axe-compose-artifact

View source ↗