Install skill from registry / GitHub repo
curl --request POST \
--url https://flowra.dev/api/v1/skills/registry/install \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"repo": "vercel-labs/agent-skills",
"registryId": "sk_abc123",
"skillPath": "skills/frontend-design",
"skillId": "ai-video-generation",
"slug": "frontend-design"
}
'import requests
url = "https://flowra.dev/api/v1/skills/registry/install"
payload = {
"repo": "vercel-labs/agent-skills",
"registryId": "sk_abc123",
"skillPath": "skills/frontend-design",
"skillId": "ai-video-generation",
"slug": "frontend-design"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
repo: 'vercel-labs/agent-skills',
registryId: 'sk_abc123',
skillPath: 'skills/frontend-design',
skillId: 'ai-video-generation',
slug: 'frontend-design'
})
};
fetch('https://flowra.dev/api/v1/skills/registry/install', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://flowra.dev/api/v1/skills/registry/install",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'repo' => 'vercel-labs/agent-skills',
'registryId' => 'sk_abc123',
'skillPath' => 'skills/frontend-design',
'skillId' => 'ai-video-generation',
'slug' => 'frontend-design'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://flowra.dev/api/v1/skills/registry/install"
payload := strings.NewReader("{\n \"repo\": \"vercel-labs/agent-skills\",\n \"registryId\": \"sk_abc123\",\n \"skillPath\": \"skills/frontend-design\",\n \"skillId\": \"ai-video-generation\",\n \"slug\": \"frontend-design\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://flowra.dev/api/v1/skills/registry/install")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"repo\": \"vercel-labs/agent-skills\",\n \"registryId\": \"sk_abc123\",\n \"skillPath\": \"skills/frontend-design\",\n \"skillId\": \"ai-video-generation\",\n \"slug\": \"frontend-design\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://flowra.dev/api/v1/skills/registry/install")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"repo\": \"vercel-labs/agent-skills\",\n \"registryId\": \"sk_abc123\",\n \"skillPath\": \"skills/frontend-design\",\n \"skillId\": \"ai-video-generation\",\n \"slug\": \"frontend-design\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Operation completed successfully",
"data": {
"id": "",
"slug": "",
"name": "",
"description": "",
"instructions": "",
"category": "",
"tags": [
""
],
"source": "custom",
"registryMeta": {},
"presets": {},
"isPublic": true,
"version": "",
"activeStatus": true,
"files": [
{
"path": "",
"sizeBytes": 0,
"contentType": ""
}
],
"packageFileCount": 0,
"sourceUrl": "",
"skillsShUrl": "",
"isCreator": true,
"installCount": 0,
"changed": true
}
}Skills
Install skill from registry / GitHub repo
Fetches a skill from the skills.sh registry or a GitHub repo and adds it to My Skills.
POST
/
api
/
v1
/
skills
/
registry
/
install
Install skill from registry / GitHub repo
curl --request POST \
--url https://flowra.dev/api/v1/skills/registry/install \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"repo": "vercel-labs/agent-skills",
"registryId": "sk_abc123",
"skillPath": "skills/frontend-design",
"skillId": "ai-video-generation",
"slug": "frontend-design"
}
'import requests
url = "https://flowra.dev/api/v1/skills/registry/install"
payload = {
"repo": "vercel-labs/agent-skills",
"registryId": "sk_abc123",
"skillPath": "skills/frontend-design",
"skillId": "ai-video-generation",
"slug": "frontend-design"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
repo: 'vercel-labs/agent-skills',
registryId: 'sk_abc123',
skillPath: 'skills/frontend-design',
skillId: 'ai-video-generation',
slug: 'frontend-design'
})
};
fetch('https://flowra.dev/api/v1/skills/registry/install', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://flowra.dev/api/v1/skills/registry/install",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'repo' => 'vercel-labs/agent-skills',
'registryId' => 'sk_abc123',
'skillPath' => 'skills/frontend-design',
'skillId' => 'ai-video-generation',
'slug' => 'frontend-design'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://flowra.dev/api/v1/skills/registry/install"
payload := strings.NewReader("{\n \"repo\": \"vercel-labs/agent-skills\",\n \"registryId\": \"sk_abc123\",\n \"skillPath\": \"skills/frontend-design\",\n \"skillId\": \"ai-video-generation\",\n \"slug\": \"frontend-design\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://flowra.dev/api/v1/skills/registry/install")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"repo\": \"vercel-labs/agent-skills\",\n \"registryId\": \"sk_abc123\",\n \"skillPath\": \"skills/frontend-design\",\n \"skillId\": \"ai-video-generation\",\n \"slug\": \"frontend-design\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://flowra.dev/api/v1/skills/registry/install")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"repo\": \"vercel-labs/agent-skills\",\n \"registryId\": \"sk_abc123\",\n \"skillPath\": \"skills/frontend-design\",\n \"skillId\": \"ai-video-generation\",\n \"slug\": \"frontend-design\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Operation completed successfully",
"data": {
"id": "",
"slug": "",
"name": "",
"description": "",
"instructions": "",
"category": "",
"tags": [
""
],
"source": "custom",
"registryMeta": {},
"presets": {},
"isPublic": true,
"version": "",
"activeStatus": true,
"files": [
{
"path": "",
"sizeBytes": 0,
"contentType": ""
}
],
"packageFileCount": 0,
"sourceUrl": "",
"skillsShUrl": "",
"isCreator": true,
"installCount": 0,
"changed": true
}
}Authorizations
Project API key. Create and manage keys in the dashboard under Project → API Keys. Send as header: x-api-key:
Body
application/json
GitHub owner/repo (e.g. vercel-labs/agent-skills)
Example:
"vercel-labs/agent-skills"
skills.sh search / registry id if known
Example:
"sk_abc123"
Path to skill folder or SKILL.md inside repo
Example:
"skills/frontend-design"
Skill folder name / id from skills.sh (used to locate SKILL.md when path is unknown)
Example:
"ai-video-generation"
Override slug after install
Maximum string length:
64Example:
"frontend-design"
Response
200 - application/json
Operation completed successfully
Success status
Example:
true
Success message
Example:
"Operation completed successfully"
Show child attributes
Show child attributes
Example:
{
"id": "",
"slug": "",
"name": "",
"description": "",
"instructions": "",
"category": "",
"tags": [""],
"source": "custom",
"registryMeta": {},
"presets": {},
"isPublic": true,
"version": "",
"activeStatus": true,
"files": [
{
"path": "",
"sizeBytes": 0,
"contentType": ""
}
],
"packageFileCount": 0,
"sourceUrl": "",
"skillsShUrl": "",
"isCreator": true,
"installCount": 0,
"changed": true
}
Was this page helpful?