# Send SkedGo TripGo API to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "skedgo-tripgo-api",
    "name": "SkedGo TripGo API",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/guanyu-zhang/skedgo-tripgo-api",
    "canonicalUrl": "https://clawhub.ai/guanyu-zhang/skedgo-tripgo-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/skedgo-tripgo-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skedgo-tripgo-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/configuration-available-regions.sh",
      "scripts/configuration-pois-for-a-transport-mode.sh",
      "scripts/configuration-tsps-per-region.sh",
      "scripts/geocode-search-and-autocompletion.sh",
      "scripts/locations-additional-details-for-a-coordinate.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "skedgo-tripgo-api",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-08T20:49:42.317Z",
      "expiresAt": "2026-05-15T20:49:42.317Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skedgo-tripgo-api",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skedgo-tripgo-api",
        "contentDisposition": "attachment; filename=\"skedgo-tripgo-api-1.0.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "skedgo-tripgo-api"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/skedgo-tripgo-api"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/skedgo-tripgo-api",
    "downloadUrl": "https://openagent3.xyz/downloads/skedgo-tripgo-api",
    "agentUrl": "https://openagent3.xyz/skills/skedgo-tripgo-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/skedgo-tripgo-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/skedgo-tripgo-api/agent.md"
  }
}
```
## Documentation

### SkedGo TripGo API Skill

This skill provides a complete interface to the SkedGo TripGo API, enabling agents to perform multimodal routing, retrieve public transport information, manage trips, and perform geocoding.

### Overview

The TripGo API is a platform for multimodal transport, allowing users to plan trips combining public transport, car, bike, taxi, rideshare, and more. This skill encapsulates the API endpoints into modular scripts and documentation references.

Global Skill Location: ~/.openclaw/skills/skedgo-tripgo-api/

### Configuration

To use this skill, you must set the following environment variables:

TRIPGO_API_KEY: Your TripGo API key (header: X-TripGo-Key).
TRIPGO_BASE_URL: (Optional) Base URL for the API. Defaults to https://api.tripgo.com/v1.
TRIPGO_WEBHOOK_ALLOWLIST: (Optional, recommended) Comma-separated allowlist of webhook domains (e.g. example.com,webhooks.example.org).
TRIPGO_ALLOW_UNSAFE_WEBHOOK: (Optional, default false) Set to true to bypass webhook allowlist checks for trusted/manual debugging only.

### Runtime Requirements

Install these binaries before running scripts:

curl (required): API requests
jq (required): JSON validation, safe JSON construction, and URL encoding
python3 (optional): pretty-printing for a few scripts

### Security Notes

Scripts that accept JSON parameters validate those values with jq before sending requests.
Scripts that send query parameters URL-encode user-provided values.
Webhook hook registration enforces https:// and domain allowlisting by default (TRIPGO_WEBHOOK_ALLOWLIST) to reduce exfiltration risk.
API key usage is expected: requests send X-TripGo-Key to the configured TripGo base URL.

### Directory Structure

SKILL.md: This file.
references/: Detailed documentation for each API section.
scripts/: Executable Bash scripts for each API endpoint.

### References (references/)

Documentation is organized by API section. Load these files to understand specific endpoints, parameters, and response structures.

references/configuration.md: Regions, TSPs, and POIs.
references/routing.md: Journey planning and routing (A-to-B, multi-point).
references/trips.md: Trip management (save, update, real-time hooks).
references/ttp.md: Travelling Tourist Problem (Deprecated).
references/geocode.md: Search and autocompletion.
references/locations.md: Location services and POIs.
references/public-transport.md: Public transport operators, routes, services, and real-time data.

### Scripts (scripts/)

Each script corresponds to a specific API endpoint. They are designed to be executed directly or used as templates.

Naming Convention: scripts/<section>-<function-name>.sh

Configuration

scripts/configuration-available-regions.sh
scripts/configuration-tsps-per-region.sh
scripts/configuration-pois-for-a-transport-mode.sh

Routing

scripts/routing-a-to-b-trips.sh
scripts/routing-a-to-b-to-c-trip.sh
scripts/routing-all-day-routing-between-events.sh
scripts/routing-all-day-routing-between-events-deprecated.sh (Deprecated)

Trips

scripts/trips-retrieve-previously-computed-trip.sh
scripts/trips-save-trip-for-later-use.sh
scripts/trips-update-trip-with-real-time-data.sh
scripts/trips-gets-hooked-urls.sh
scripts/trips-hooks-a-trip-to-real-time-updates.sh
scripts/trips-removes-a-hooks-from-a-trip.sh
scripts/trips-mark-trip-as-planned-by-a-user.sh

TTP (Deprecated)

scripts/ttp-create-travelling-tourist-problem-deprecated.sh
scripts/ttp-delete-travelling-tourist-problem-deprecated.sh
scripts/ttp-delete-travelling-tourist-problem-solution-deprecated.sh

Geocode

scripts/geocode-search-and-autocompletion.sh

Locations

scripts/locations-pois-for-a-circular-region.sh
scripts/locations-pois-for-map-region-using-cell-ids.sh
scripts/locations-additional-details-for-a-coordinate.sh

Public Transport

scripts/public-transport-operators-for-a-region-or-group-of-regions.sh
scripts/public-transport-routes-for-a-region-or-operator.sh
scripts/public-transport-details-of-a-route.sh
scripts/public-transport-services-for-a-route.sh
scripts/public-transport-departure-timetable-for-a-stop.sh
scripts/public-transport-real-time-information-for-a-service.sh
scripts/public-transport-get-details-of-a-service.sh
scripts/public-transport-get-real-time-alerts.sh

### Usage Constraints

Do NOT invent parameters. All scripts use parameters explicitly documented in references/.
Deprecated Endpoints: Some scripts are marked as deprecated (e.g., TTP section). Use with caution or avoid if possible.
Verification: If a parameter or field is marked as "To be confirmed" in the references, verify with a live API call before relying on it in production.
Environment: Ensure TRIPGO_API_KEY is set in the environment before running any script.

### Example

Searching for a location:

export TRIPGO_API_KEY="your_key_here"
./scripts/geocode-search-and-autocompletion.sh --query "Sydney Opera House" --near "(-33.8688,151.2093)"

Planning a trip:

./scripts/routing-a-to-b-trips.sh --from "(lat,lng)" --to "(lat,lng)" --region "AU_NSW_Sydney"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: guanyu-zhang
- Version: 1.0.3
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-08T20:49:42.317Z
- Expires at: 2026-05-15T20:49:42.317Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/skedgo-tripgo-api)
- [Send to Agent page](https://openagent3.xyz/skills/skedgo-tripgo-api/agent)
- [JSON manifest](https://openagent3.xyz/skills/skedgo-tripgo-api/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/skedgo-tripgo-api/agent.md)
- [Download page](https://openagent3.xyz/downloads/skedgo-tripgo-api)