{
  "schemaVersion": "1.0",
  "item": {
    "slug": "cycle",
    "name": "Cycle",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/cycle",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/cycle",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/cycle",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cycle",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "discovery.md",
      "examples.md",
      "implementation.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",
      "slug": "cycle",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T07:19:35.122Z",
      "expiresAt": "2026-05-09T07:19:35.122Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cycle",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cycle",
        "contentDisposition": "attachment; filename=\"cycle-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "cycle"
      },
      "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/cycle"
    },
    "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/cycle",
    "agentPageUrl": "https://openagent3.xyz/skills/cycle/agent",
    "manifestUrl": "https://openagent3.xyz/skills/cycle/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/cycle/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": "What is a Cycle?",
        "body": "A structured workflow optimized for a specific goal. Examples:\n\ncode — Request → Plan → Execute → Verify → Deliver\nresearch — Question → Search → Synthesize → Report\ncontent — Idea → Draft → Critique → Refine → Publish"
      },
      {
        "title": "When to Propose",
        "body": "User repeats similar multi-step processes\nCurrent workflow has inefficiencies or skipped steps\nUser asks \"how should I approach X every time?\""
      },
      {
        "title": "Design Process",
        "body": "Goal — What does this cycle produce? Be specific.\nMap — How does user currently do it? Where do they get stuck?\nPhases — 3-6 sequential steps with clear input/output each\nHandoffs — Automatic, gated (needs user), or conditional\nMemory — Preferences, patterns, things to avoid\n\nCheck discovery.md for questions to ask users when designing."
      },
      {
        "title": "Phase Structure",
        "body": "Each phase needs: clear input → output, validation before proceeding, can delegate to sub-agent.\n\nCheck implementation.md for how to structure cycle skills."
      },
      {
        "title": "Cycle vs Loop",
        "body": "CycleLoopDifferent phases in sequenceSame action repeatedProduces complete outputRefines until criteriaDesign once, use many timesCreated per task\n\nThey combine: cycles can use loops within phases. Check examples.md for cycle patterns.\n\nRelated: For iterating until success criteria are met (same action repeated), see the loop skill."
      }
    ],
    "body": "What is a Cycle?\n\nA structured workflow optimized for a specific goal. Examples:\n\ncode — Request → Plan → Execute → Verify → Deliver\nresearch — Question → Search → Synthesize → Report\ncontent — Idea → Draft → Critique → Refine → Publish\nWhen to Propose\nUser repeats similar multi-step processes\nCurrent workflow has inefficiencies or skipped steps\nUser asks \"how should I approach X every time?\"\nDesign Process\nGoal — What does this cycle produce? Be specific.\nMap — How does user currently do it? Where do they get stuck?\nPhases — 3-6 sequential steps with clear input/output each\nHandoffs — Automatic, gated (needs user), or conditional\nMemory — Preferences, patterns, things to avoid\n\nCheck discovery.md for questions to ask users when designing.\n\nPhase Structure\n\nEach phase needs: clear input → output, validation before proceeding, can delegate to sub-agent.\n\nCheck implementation.md for how to structure cycle skills.\n\nCycle vs Loop\nCycle\tLoop\nDifferent phases in sequence\tSame action repeated\nProduces complete output\tRefines until criteria\nDesign once, use many times\tCreated per task\n\nThey combine: cycles can use loops within phases. Check examples.md for cycle patterns.\n\nRelated: For iterating until success criteria are met (same action repeated), see the loop skill."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/cycle",
    "publisherUrl": "https://clawhub.ai/ivangdavila/cycle",
    "owner": "ivangdavila",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/cycle",
    "downloadUrl": "https://openagent3.xyz/downloads/cycle",
    "agentUrl": "https://openagent3.xyz/skills/cycle/agent",
    "manifestUrl": "https://openagent3.xyz/skills/cycle/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/cycle/agent.md"
  }
}