{
  "schemaVersion": "1.0",
  "item": {
    "slug": "perpetua",
    "name": "Perpetua",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/DanielKillenberger/perpetua",
    "canonicalUrl": "https://clawhub.ai/DanielKillenberger/perpetua",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/perpetua",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=perpetua",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/perpetua"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/perpetua",
    "agentPageUrl": "https://openagent3.xyz/skills/perpetua/agent",
    "manifestUrl": "https://openagent3.xyz/skills/perpetua/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/perpetua/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Overview",
        "body": "Use Perpetua.sh hosted API as the default path:\n\nBase URL: https://www.perpetua.sh\nAPI routes: /api/*\nAuth: Authorization: Bearer $PERPETUA_API_KEY\n\nLoad secrets with:\n\nop run --env-file=\"$HOME/.openclaw/secrets.env\" -- <command>"
      },
      {
        "title": "Credentials",
        "body": "Set API key via env var from any secret source (1Password, CI, .env, secret manager):\n\nexport PERPETUA_API_KEY=\"<your-key>\""
      },
      {
        "title": "Core endpoints (hosted)",
        "body": "# Connection status summary\ncurl -s \"https://www.perpetua.sh/api/status\" \\\n  -H \"Authorization: Bearer $PERPETUA_API_KEY\"\n\n# Active connections\ncurl -s \"https://www.perpetua.sh/api/connections\" \\\n  -H \"Authorization: Bearer $PERPETUA_API_KEY\"\n\n# Providers\ncurl -s \"https://www.perpetua.sh/api/providers\" \\\n  -H \"Authorization: Bearer $PERPETUA_API_KEY\""
      },
      {
        "title": "Proxy call pattern",
        "body": "GET https://www.perpetua.sh/api/proxy/:provider/:path\nAuthorization: Bearer $PERPETUA_API_KEY\n\nOptional: ?account=default for explicit account selection."
      },
      {
        "title": "Oura examples",
        "body": "Avoid huge endpoints (daily_activity, detailed sleep) unless explicitly needed.\n\n# Daily sleep\ncurl -s \"https://www.perpetua.sh/api/proxy/oura/v2/usercollection/daily_sleep?start_date=YYYY-MM-DD&end_date=YYYY-MM-DD&account=default\" \\\n  -H \"Authorization: Bearer $PERPETUA_API_KEY\" | jq .\n\n# Daily readiness\ncurl -s \"https://www.perpetua.sh/api/proxy/oura/v2/usercollection/daily_readiness?start_date=YYYY-MM-DD&end_date=YYYY-MM-DD&account=default\" \\\n  -H \"Authorization: Bearer $PERPETUA_API_KEY\" | jq .\n\n# Workout\ncurl -s \"https://www.perpetua.sh/api/proxy/oura/v2/usercollection/workout?start_date=YYYY-MM-DD&end_date=YYYY-MM-DD&account=default\" \\\n  -H \"Authorization: Bearer $PERPETUA_API_KEY\" | jq ."
      },
      {
        "title": "Google Calendar examples",
        "body": "# Upcoming primary calendar events\ncurl -s \"https://www.perpetua.sh/api/proxy/gcal/calendars/primary/events?account=default&maxResults=10&orderBy=startTime&singleEvents=true&timeMin=$(date -u +%Y-%m-%dT%H:%M:%SZ)\" \\\n  -H \"Authorization: Bearer $PERPETUA_API_KEY\" | jq '[.items[] | {summary, start}]'\n\n# Calendar list\ncurl -s \"https://www.perpetua.sh/api/proxy/gcal/users/me/calendarList?account=default\" \\\n  -H \"Authorization: Bearer $PERPETUA_API_KEY\" | jq ."
      },
      {
        "title": "Connection management (hosted)",
        "body": "# Start OAuth flow for provider\ncurl -s -X POST \"https://www.perpetua.sh/api/auth/connect/:provider/start\" \\\n  -H \"Authorization: Bearer $PERPETUA_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"account\":\"default\"}' | jq .authUrl"
      },
      {
        "title": "Troubleshooting",
        "body": "401 → wrong/expired API key\n403/404 on provider routes → missing connection or wrong provider/account\n5xx → hosted service issue; retry and/or notify Daniel"
      },
      {
        "title": "Local OSS note",
        "body": "Local http://localhost:3001 is for OSS development only. Default operational path in this workspace is hosted Perpetua.sh."
      }
    ],
    "body": "Perpetua Skill (Hosted)\nOverview\n\nUse Perpetua.sh hosted API as the default path:\n\nBase URL: https://www.perpetua.sh\nAPI routes: /api/*\nAuth: Authorization: Bearer $PERPETUA_API_KEY\n\nLoad secrets with:\n\nop run --env-file=\"$HOME/.openclaw/secrets.env\" -- <command>\n\nCredentials\n\nSet API key via env var from any secret source (1Password, CI, .env, secret manager):\n\nexport PERPETUA_API_KEY=\"<your-key>\"\n\nCore endpoints (hosted)\n# Connection status summary\ncurl -s \"https://www.perpetua.sh/api/status\" \\\n  -H \"Authorization: Bearer $PERPETUA_API_KEY\"\n\n# Active connections\ncurl -s \"https://www.perpetua.sh/api/connections\" \\\n  -H \"Authorization: Bearer $PERPETUA_API_KEY\"\n\n# Providers\ncurl -s \"https://www.perpetua.sh/api/providers\" \\\n  -H \"Authorization: Bearer $PERPETUA_API_KEY\"\n\nProxy call pattern\nGET https://www.perpetua.sh/api/proxy/:provider/:path\nAuthorization: Bearer $PERPETUA_API_KEY\n\n\nOptional: ?account=default for explicit account selection.\n\nOura examples\n\nAvoid huge endpoints (daily_activity, detailed sleep) unless explicitly needed.\n\n# Daily sleep\ncurl -s \"https://www.perpetua.sh/api/proxy/oura/v2/usercollection/daily_sleep?start_date=YYYY-MM-DD&end_date=YYYY-MM-DD&account=default\" \\\n  -H \"Authorization: Bearer $PERPETUA_API_KEY\" | jq .\n\n# Daily readiness\ncurl -s \"https://www.perpetua.sh/api/proxy/oura/v2/usercollection/daily_readiness?start_date=YYYY-MM-DD&end_date=YYYY-MM-DD&account=default\" \\\n  -H \"Authorization: Bearer $PERPETUA_API_KEY\" | jq .\n\n# Workout\ncurl -s \"https://www.perpetua.sh/api/proxy/oura/v2/usercollection/workout?start_date=YYYY-MM-DD&end_date=YYYY-MM-DD&account=default\" \\\n  -H \"Authorization: Bearer $PERPETUA_API_KEY\" | jq .\n\nGoogle Calendar examples\n# Upcoming primary calendar events\ncurl -s \"https://www.perpetua.sh/api/proxy/gcal/calendars/primary/events?account=default&maxResults=10&orderBy=startTime&singleEvents=true&timeMin=$(date -u +%Y-%m-%dT%H:%M:%SZ)\" \\\n  -H \"Authorization: Bearer $PERPETUA_API_KEY\" | jq '[.items[] | {summary, start}]'\n\n# Calendar list\ncurl -s \"https://www.perpetua.sh/api/proxy/gcal/users/me/calendarList?account=default\" \\\n  -H \"Authorization: Bearer $PERPETUA_API_KEY\" | jq .\n\nConnection management (hosted)\n# Start OAuth flow for provider\ncurl -s -X POST \"https://www.perpetua.sh/api/auth/connect/:provider/start\" \\\n  -H \"Authorization: Bearer $PERPETUA_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"account\":\"default\"}' | jq .authUrl\n\nTroubleshooting\n401 → wrong/expired API key\n403/404 on provider routes → missing connection or wrong provider/account\n5xx → hosted service issue; retry and/or notify Daniel\nLocal OSS note\n\nLocal http://localhost:3001 is for OSS development only. Default operational path in this workspace is hosted Perpetua.sh."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/DanielKillenberger/perpetua",
    "publisherUrl": "https://clawhub.ai/DanielKillenberger/perpetua",
    "owner": "DanielKillenberger",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/perpetua",
    "downloadUrl": "https://openagent3.xyz/downloads/perpetua",
    "agentUrl": "https://openagent3.xyz/skills/perpetua/agent",
    "manifestUrl": "https://openagent3.xyz/skills/perpetua/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/perpetua/agent.md"
  }
}