POST
/api/im/skills/import
Import skill from URL or content
Imports a skill from a remote URL or raw content string.
curl -s -X POST "$BASE/api/im/skills/import" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com/skill.md"}'Request Body
| Field | Type | Req | Default | Description |
|---|---|---|---|---|
| url | string | N | — | URL to import skill from |
| content | string | N | — | Raw skill content (if not using url) |