# Send Traefik 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": "traefik",
    "name": "Traefik",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/traefik",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/traefik",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/traefik",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=traefik",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "traefik",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T04:52:08.206Z",
      "expiresAt": "2026-05-17T04:52:08.206Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=traefik",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=traefik",
        "contentDisposition": "attachment; filename=\"traefik-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "traefik"
      },
      "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/traefik"
    },
    "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/traefik",
    "downloadUrl": "https://openagent3.xyz/downloads/traefik",
    "agentUrl": "https://openagent3.xyz/skills/traefik/agent",
    "manifestUrl": "https://openagent3.xyz/skills/traefik/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/traefik/agent.md"
  }
}
```
## Documentation

### Router Basics

Router must have rule AND service — missing either = not working
Rule priority: longer rules win by default — explicit priority to override
Host() is case-insensitive — Host(\\example.com\`)\` matches Example.com
Multiple hosts: Host(\\a.com\`) || Host(\`b.com\`)\` — OR logic

### Docker Labels Syntax

Labels on container, not compose service level — deploy.labels for Swarm
Backticks for rules in Docker Compose — Host(\\example.com\`)\` with escaping
Enable per-container: traefik.enable=true — if exposedByDefault=false
Service name auto-generated from container — or set explicitly with traefik.http.services.myservice.loadbalancer.server.port=80

### TLS and Certificates

EntryPoint websecure needs TLS config — otherwise plain HTTP on 443
Let's Encrypt: certificatesResolvers.myresolver.acme.email required — registration fails without
HTTP challenge needs port 80 open — DNS challenge for wildcard or closed 80
tls=true on router activates TLS — tls.certresolver=myresolver for auto-cert
Staging ACME for testing — caServer to staging URL, avoids rate limits

### EntryPoints

Define in static config — --entrypoints.web.address=:80
Redirect HTTP to HTTPS at entrypoint level — cleaner than per-router middleware
Router binds to entrypoint with entryPoints=web,websecure — comma-separated list

### Middlewares

Chain order matters — first middleware wraps all following
Middleware defined once, used by many routers — middlewares=auth,compress
Common: stripPrefix, redirectScheme, basicAuth, rateLimit
BasicAuth: use htpasswd format — escape $ in Docker Compose with $$

### Service Configuration

loadbalancer.server.port when container exposes multiple — Traefik can't guess
Health check: healthcheck.path=/health — removes unhealthy from rotation
Sticky sessions: loadbalancer.sticky.cookie.name=srv_id — for stateful apps

### Common Mistakes

Router without entryPoint — defaults may not be what you expect
Forgetting traefik.docker.network with multiple networks — Traefik picks wrong one
ACME storage not persisted — certificates regenerated, hits rate limit
Dashboard exposed without auth — api.insecure=true is dangerous in production
PathPrefix without StripPrefix — backend receives full path, may 404
Services on different ports — each needs explicit port label

### File Provider

watch=true for hot reload — otherwise restart Traefik on changes
Can coexist with Docker provider — useful for external services
Define routers, services, middlewares in YAML — same concepts as labels

### Debugging

--log.level=DEBUG for troubleshooting — verbose but helpful
Dashboard shows routers, services, middlewares — verify configuration
--api.insecure=true for local dev only — secure with auth in production
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.0
## 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-10T04:52:08.206Z
- Expires at: 2026-05-17T04:52:08.206Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/traefik)
- [Send to Agent page](https://openagent3.xyz/skills/traefik/agent)
- [JSON manifest](https://openagent3.xyz/skills/traefik/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/traefik/agent.md)
- [Download page](https://openagent3.xyz/downloads/traefik)