Get an exact managed Skill package manifest

POST
/v1/skill/package/manifest

Return verified metadata and file inventory without executing or returning file bodies.

Authorization

BearerAuth
AuthorizationBearer <token>

Static bearer token used when local Server authentication is enabled.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/skill/package/manifest" \  -H "Content-Type: application/json" \  -d '{    "scope_id": "string",    "artifact": {      "family": "string",      "artifact_id": "string",      "revision": 1    }  }'
{  "package": {    "tree_digest": "string",    "archive_digest": "string",    "file_count": 1,    "uncompressed_size": 1,    "archive_size": 1  },  "name": "string",  "description": "string",  "license": "string",  "compatibility": "string",  "metadata": {    "property1": "string",    "property2": "string"  },  "allowed_tools": "string",  "files": [    {      "path": "string",      "digest": "string",      "size": 0,      "media_type": "string",      "executable": true    }  ]}