Agent SwarmAgent Swarm

Skills

Skills API endpoints

GET
/api/agents/{id}/skills

Authorization

bearerAuth
AuthorizationBearer <token>

API key via Authorization: Bearer <API_KEY>

In: header

Path Parameters

id*string

Response Body

curl -X GET "http://localhost:3013/api/agents/string/skills"
Empty
GET
/api/skills

Authorization

bearerAuth
AuthorizationBearer <token>

API key via Authorization: Bearer <API_KEY>

In: header

Query Parameters

type?string
scope?string
agentId?string
enabled?string
search?string

Response Body

curl -X GET "http://localhost:3013/api/skills"
Empty
POST
/api/skills

Authorization

bearerAuth
AuthorizationBearer <token>

API key via Authorization: Bearer <API_KEY>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

curl -X POST "http://localhost:3013/api/skills" \  -H "Content-Type: application/json" \  -d '{    "content": "string"  }'
Empty
Empty
DELETE
/api/skills/{id}

Authorization

bearerAuth
AuthorizationBearer <token>

API key via Authorization: Bearer <API_KEY>

In: header

Path Parameters

id*string

Response Body

curl -X DELETE "http://localhost:3013/api/skills/string"
Empty
Empty
GET
/api/skills/{id}

Authorization

bearerAuth
AuthorizationBearer <token>

API key via Authorization: Bearer <API_KEY>

In: header

Path Parameters

id*string

Response Body

curl -X GET "http://localhost:3013/api/skills/string"
Empty
Empty
PUT
/api/skills/{id}

Authorization

bearerAuth
AuthorizationBearer <token>

API key via Authorization: Bearer <API_KEY>

In: header

Path Parameters

id*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

[key: string]?unknown

Response Body

curl -X PUT "http://localhost:3013/api/skills/string" \  -H "Content-Type: application/json" \  -d '{    "property1": null,    "property2": null  }'
Empty
Empty
POST
/api/skills/{id}/install

Authorization

bearerAuth
AuthorizationBearer <token>

API key via Authorization: Bearer <API_KEY>

In: header

Path Parameters

id*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

agentId*string

Response Body

curl -X POST "http://localhost:3013/api/skills/string/install" \  -H "Content-Type: application/json" \  -d '{    "agentId": "string"  }'
Empty
Empty
DELETE
/api/skills/{id}/install/{agentId}

Authorization

bearerAuth
AuthorizationBearer <token>

API key via Authorization: Bearer <API_KEY>

In: header

Path Parameters

id*string
agentId*string

Response Body

curl -X DELETE "http://localhost:3013/api/skills/string/install/string"
Empty
POST
/api/skills/install-remote

Authorization

bearerAuth
AuthorizationBearer <token>

API key via Authorization: Bearer <API_KEY>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

curl -X POST "http://localhost:3013/api/skills/install-remote" \  -H "Content-Type: application/json" \  -d '{    "sourceRepo": "string"  }'
Empty
Empty
POST
/api/skills/sync-filesystem

Authorization

bearerAuth
AuthorizationBearer <token>

API key via Authorization: Bearer <API_KEY>

In: header

Response Body

curl -X POST "http://localhost:3013/api/skills/sync-filesystem"
Empty
POST
/api/skills/sync-remote

Authorization

bearerAuth
AuthorizationBearer <token>

API key via Authorization: Bearer <API_KEY>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

curl -X POST "http://localhost:3013/api/skills/sync-remote" \  -H "Content-Type: application/json" \  -d '{}'
Empty