{ "opencollection": "1.0.0", "info": { "name": "Amigo Account Skills API", "version": "0.1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Skills", "type": "folder" }, "items": [ { "info": { "name": "List skills", "type": "http" }, "http": { "method": "GET", "url": "https://api.amigo.ai/v1/:workspace_id/skills", "params": [ { "name": "workspace_id", "value": "", "type": "path" }, { "name": "enabled", "value": "", "type": "query" }, { "name": "search", "value": "", "type": "query" }, { "name": "sort_by", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" }, { "name": "continuation_token", "value": "", "type": "query" } ] }, "docs": "List skills for a workspace with pagination. Optionally filter by enabled status. Requires `Skill.view` permission." }, { "info": { "name": "Create a skill", "type": "http" }, "http": { "method": "POST", "url": "https://api.amigo.ai/v1/:workspace_id/skills", "params": [ { "name": "workspace_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create a new companion agent skill in a workspace. Requires `Skill.create` permission." }, { "info": { "name": "Get a skill", "type": "http" }, "http": { "method": "GET", "url": "https://api.amigo.ai/v1/:workspace_id/skills/:skill_id", "params": [ { "name": "workspace_id", "value": "", "type": "path" }, { "name": "skill_id", "value": "", "type": "path" } ] }, "docs": "Retrieve a skill by ID. Requires `Skill.view` permission." }, { "info": { "name": "Update a skill", "type": "http" }, "http": { "method": "PUT", "url": "https://api.amigo.ai/v1/:workspace_id/skills/:skill_id", "params": [ { "name": "workspace_id", "value": "", "type": "path" }, { "name": "skill_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a skill's configuration in place.\n\n**Field semantics.** Omitted fields and explicit ``null`` are treated identically — both leave the existing value unchanged. Empty-string is rejected with 422 for fields that carry a ``minLength`` bound (``model``). Clearing a previously-set optional value back to ``null`` is not currently supported via PUT.\n\nRequires `Skill.update` permission." }, { "info": { "name": "Delete a skill", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.amigo.ai/v1/:workspace_id/skills/:skill_id", "params": [ { "name": "workspace_id", "value": "", "type": "path" }, { "name": "skill_id", "value": "", "type": "path" } ] }, "docs": "Delete a skill.\n\n**Not idempotent.** A second concurrent caller racing the same delete will receive ``404 Not Found`` once the row is gone — clients should treat 404 as success-equivalent for cleanup workflows. Requires `Skill.delete` permission." }, { "info": { "name": "Get skill references", "type": "http" }, "http": { "method": "GET", "url": "https://api.amigo.ai/v1/:workspace_id/skills/:skill_id/references", "params": [ { "name": "workspace_id", "value": "", "type": "path" }, { "name": "skill_id", "value": "", "type": "path" } ] }, "docs": "Find all HSMs and services that reference this skill's slug in their latest version's tool_call_specs. Requires `Skill.view` permission." }, { "info": { "name": "Test a skill", "type": "http" }, "http": { "method": "POST", "url": "https://api.amigo.ai/v1/:workspace_id/skills/:skill_id/test", "params": [ { "name": "workspace_id", "value": "", "type": "path" }, { "name": "skill_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Execute a skill in isolation with the given input." } ] } ], "bundled": true }