This commit is contained in:
a2a-platform
2026-06-27 01:02:54 +00:00
commit dcf20c131f
37 changed files with 83787 additions and 0 deletions

49
skills/sites/SKILL.md Normal file
View File

@@ -0,0 +1,49 @@
---
name: sites-routes
description: Handle 4 OpenAPI operation(s) under /v2/sites for the sites route group.
---
# sites API Routes
Handle 4 OpenAPI operation(s) under /v2/sites for the sites route group.
Use the generated operation tools to make real API calls. Do not invent API responses.
If a tool reports missing setup, return the exact setup field name to the caller.
For write, update, or delete operations, state the intended action before calling the tool.
## Operations
### list_sites
- Operation ID: `list_sites`
- Route: `GET /v2/sites`
- Mode: READ
- Summary: ListSites
### delete_snippet
- Operation ID: `delete_snippet`
- Route: `DELETE /v2/sites/{site_id}/snippet`
- Mode: WRITE
- Summary: DeleteSnippet
- Parameters:
- `site_id` in `path` required
### retrieve_snippet
- Operation ID: `retrieve_snippet`
- Route: `GET /v2/sites/{site_id}/snippet`
- Mode: READ
- Summary: RetrieveSnippet
- Parameters:
- `site_id` in `path` required
### upsert_snippet
- Operation ID: `upsert_snippet`
- Route: `POST /v2/sites/{site_id}/snippet`
- Mode: WRITE
- Summary: UpsertSnippet
- Parameters:
- `site_id` in `path` required
- Body: JSON request body accepted.