gorgias — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited gorgias (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.

Manage your e-commerce helpdesk from chat -- create and update tickets, manage customer data, organize support teams, and configure account settings. Powered by ClawLink for hosted OAuth.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Gorgias |
|---|---|---|
![]() | ![]() | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect Gorgias |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Gorgias API │
│ (User Chat) │ │ (OAuth) │ │ │
└─────────────────┘ └──────────────┘ └──────────────────┘openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart// 1. List support tickets
clawlink_call_tool({ tool: "gorgias_list_tickets", parameters: {} })
// 2. Get a specific customer
clawlink_call_tool({ tool: "gorgias_get_customer", parameters: { customer_id: "12345" } })
// 3. Create a new ticket
clawlink_call_tool({ tool: "gorgias_create_ticket", parameters: { subject: "Order inquiry", customer_id: "12345" } })ClawLink handles OAuth with Gorgias. No API keys needed. Connect at claw-link.dev/dashboard?add=gorgias.
// List connections
clawlink_list_integrations()
// Verify by fetching account info
clawlink_call_tool({ tool: "gorgias_get_account", parameters: {} })| Tool | Description | Mode |
|---|---|---|
gorgias_list_tickets | List tickets with filtering options | Read |
gorgias_get_ticket | Get a specific ticket by ID | Read |
gorgias_create_ticket | Create a new support ticket | Write |
gorgias_update_ticket | Update an existing ticket | Write |
gorgias_delete_ticket | Delete a specific ticket | Write |
gorgias_add_ticket_tags | Add tags to a ticket | Write |
gorgias_remove_ticket_tags | Remove tags from a ticket | Write |
gorgias_set_ticket_tags | Replace all tags on a ticket | Write |
gorgias_list_ticket_tags | List all tags for a ticket | Read |
gorgias_list_ticket_field_values | List field values for a ticket | Read |
gorgias_delete_ticket_field_value | Delete a specific ticket field value | Write |
| Tool | Description | Mode |
|---|---|---|
gorgias_list_customers | List customers with filtering | Read |
gorgias_get_customer | Get a specific customer by ID | Read |
gorgias_create_customer | Create a new customer | Write |
gorgias_update_customer | Update an existing customer | Write |
gorgias_delete_customer | Delete a specific customer | Write |
gorgias_delete_customers | Delete multiple customers | Write |
gorgias_merge_customers | Merge two customers into one | Write |
gorgias_set_customer_data | Set complete data object for a customer | Write |
gorgias_list_customer_field_values | List field values for a customer | Read |
gorgias_delete_customer_field_value | Delete a specific customer field value | Write |
| Tool | Description | Mode |
|---|---|---|
gorgias_list_events | List events with filtering options | Read |
gorgias_get_event | Get a specific event by ID | Read |
| Tool | Description | Mode |
|---|---|---|
gorgias_list_teams | List all teams | Read |
gorgias_get_team | Get a specific team by ID | Read |
gorgias_create_team | Create a new team | Write |
gorgias_update_team | Update an existing team | Write |
gorgias_delete_team | Delete a specific team | Write |
| Tool | Description | Mode |
|---|---|---|
gorgias_get_account | Get Gorgias account information | Read |
gorgias_list_account_settings | List all account settings | Read |
gorgias_create_account_setting | Create a new account setting | Write |
gorgias_update_account_setting | Update an existing account setting | Write |
// List open tickets
const tickets = await clawlink_call_tool({
tool: "gorgias_list_tickets",
parameters: { status: "open", limit: 10 }
});
// Update a ticket
await clawlink_call_tool({
tool: "gorgias_update_ticket",
parameters: {
ticket_id: "67890",
status: "closed",
comment: "Resolved via automated workflow."
}
});// Find a customer
const customers = await clawlink_call_tool({
tool: "gorgias_list_customers",
parameters: { email: "[email protected]" }
});
// Update customer data
await clawlink_call_tool({
tool: "gorgias_update_customer",
parameters: {
customer_id: "12345",
name: "Jane Smith",
data: { vip: true }
}
});// Add tags to a ticket
await clawlink_call_tool({
tool: "gorgias_add_ticket_tags",
parameters: {
ticket_id: "67890",
tags: ["urgent", "billing"]
}
});
// List teams
const teams = await clawlink_call_tool({
tool: "gorgias_list_teams",
parameters: {}
});clawlink_list_integrations to confirm gorgias is connected.clawlink_list_tools --integration gorgias to see the live catalog.clawlink_search_tools({ query: "ticket", integration: "gorgias" }) to find specific tools.READ (safe): list_tickets → get_customer → list_teams → list_events
WRITE (confirm): create_ticket → update_customer → add_ticket_tags → create_team
DELETE (high): delete_ticket → delete_customer → merge_customers → delete_team| Status / Error | Meaning |
|---|---|
| 401 Unauthorized | OAuth token expired -- reconnect at dashboard |
| 403 Forbidden | Insufficient permissions for this action |
| 404 Not Found | Ticket, customer, or team ID does not exist |
| 409 Conflict | Duplicate customer or ticket |
| 429 Rate Limited | Too many requests -- apply exponential backoff |
clawlink_list_integrations to confirm pairinggorgias_list_tickets to confirm valid ticket IDsPowered by [ClawLink](https://claw-link.dev/?utm_source=clawhub&utm_medium=referral&utm_content=gorgias) -- an integration hub for OpenClaw

~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.