curl --request GET \
--url https://api.getcargo.io/v1/context/skills/content \
--header 'Authorization: Bearer <token>'{
"skill": {
"name": "<string>",
"description": "<string>",
"path": "<string>"
},
"content": "<string>"
}Get a specific skill by its path from the context repository.
curl --request GET \
--url https://api.getcargo.io/v1/context/skills/content \
--header 'Authorization: Bearer <token>'{
"skill": {
"name": "<string>",
"description": "<string>",
"path": "<string>"
},
"content": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Full path to the skill folder in the repository.
Was this page helpful?