{
  "schemaVersion": "1.0",
  "item": {
    "slug": "opencode-omo",
    "name": "Opencode Omo",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/IISweetHeartII/opencode-omo",
    "canonicalUrl": "https://clawhub.ai/IISweetHeartII/opencode-omo",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/opencode-omo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=opencode-omo",
    "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",
      "slug": "opencode-omo",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T17:56:48.606Z",
      "expiresAt": "2026-05-13T17:56:48.606Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=opencode-omo",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=opencode-omo",
        "contentDisposition": "attachment; filename=\"opencode-omo-0.3.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "opencode-omo"
      },
      "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/opencode-omo"
    },
    "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/opencode-omo",
    "agentPageUrl": "https://openagent3.xyz/skills/opencode-omo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/opencode-omo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/opencode-omo/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": "OpenCode + Oh-My-OpenCode Operator",
        "body": "This skill is an operating guide for using OpenCode as your coding runtime, with Oh-My-OpenCode orchestration through Sisyphus, Prometheus, and Atlas."
      },
      {
        "title": "What this skill gives you",
        "body": "One-shot delivery with ulw for focused coding requests.\nPlan-to-execution workflow via @plan and /start-work.\nRepeatable defaults so code quality stays consistent across runs."
      },
      {
        "title": "Core rules",
        "body": "Do not edit code directly outside OpenCode unless explicitly asked.\nPrefer Sisyphus-first execution for coding tasks.\nFor complex work: plan with Prometheus (@plan) then execute with Atlas (/start-work)."
      },
      {
        "title": "Verify Oh-My-OpenCode plugin",
        "body": "cat ~/.config/opencode/opencode.json | grep \"oh-my-opencode\"\n\nIf the command returns output, the plugin is installed.\n\nYou can also run the bundled checker:\n\n./scripts/check-omo.sh"
      },
      {
        "title": "Run one-shot coding (Sisyphus + ultrawork)",
        "body": "opencode run --agent sisyphus \"ulw implement JWT auth in this service and add tests\"\n\nOr use the bundled helper:\n\n./scripts/run-ulw.sh \"implement JWT auth in this service and add tests\""
      },
      {
        "title": "Start interactive OpenCode (Sisyphus)",
        "body": "opencode --agent sisyphus\n\nInside OpenCode:\n\nUse @plan \"...\" to invoke Prometheus planning.\nUse /start-work to let Atlas execute the plan."
      },
      {
        "title": "Failure handling",
        "body": "If the agent asks clarifying questions mid-implementation, answer them in plan mode (Prometheus) and re-run execution.\nIf you need more determinism, re-run with ulw and a smaller, explicit request."
      },
      {
        "title": "Integration with other skills",
        "body": "agent-selfie: pair structured coding workflows with generated visual assets.\ngemini-image-gen: use the same workflow discipline for image generation automations.\nagentgram: publish progress updates, findings, and demos produced from your workflow runs."
      },
      {
        "title": "Changelog",
        "body": "v0.3.0: Added bidirectional ecosystem links and bundled workflow helper scripts.\nv0.2.0: Reworked positioning, quick start, and metadata for clearer marketplace onboarding.\nv0.1.0: Initial release with Sisyphus/Prometheus/Atlas workflow guidance."
      }
    ],
    "body": "OpenCode + Oh-My-OpenCode Operator\n\nThis skill is an operating guide for using OpenCode as your coding runtime, with Oh-My-OpenCode orchestration through Sisyphus, Prometheus, and Atlas.\n\nWhat this skill gives you\nOne-shot delivery with ulw for focused coding requests.\nPlan-to-execution workflow via @plan and /start-work.\nRepeatable defaults so code quality stays consistent across runs.\nCore rules\nDo not edit code directly outside OpenCode unless explicitly asked.\nPrefer Sisyphus-first execution for coding tasks.\nFor complex work: plan with Prometheus (@plan) then execute with Atlas (/start-work).\nQuick start\nVerify Oh-My-OpenCode plugin\ncat ~/.config/opencode/opencode.json | grep \"oh-my-opencode\"\n\n\nIf the command returns output, the plugin is installed.\n\nYou can also run the bundled checker:\n\n./scripts/check-omo.sh\n\nRun one-shot coding (Sisyphus + ultrawork)\nopencode run --agent sisyphus \"ulw implement JWT auth in this service and add tests\"\n\n\nOr use the bundled helper:\n\n./scripts/run-ulw.sh \"implement JWT auth in this service and add tests\"\n\nStart interactive OpenCode (Sisyphus)\nopencode --agent sisyphus\n\n\nInside OpenCode:\n\nUse @plan \"...\" to invoke Prometheus planning.\nUse /start-work to let Atlas execute the plan.\nFailure handling\nIf the agent asks clarifying questions mid-implementation, answer them in plan mode (Prometheus) and re-run execution.\nIf you need more determinism, re-run with ulw and a smaller, explicit request.\nIntegration with other skills\nagent-selfie: pair structured coding workflows with generated visual assets.\ngemini-image-gen: use the same workflow discipline for image generation automations.\nagentgram: publish progress updates, findings, and demos produced from your workflow runs.\nChangelog\nv0.3.0: Added bidirectional ecosystem links and bundled workflow helper scripts.\nv0.2.0: Reworked positioning, quick start, and metadata for clearer marketplace onboarding.\nv0.1.0: Initial release with Sisyphus/Prometheus/Atlas workflow guidance."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/IISweetHeartII/opencode-omo",
    "publisherUrl": "https://clawhub.ai/IISweetHeartII/opencode-omo",
    "owner": "IISweetHeartII",
    "version": "0.3.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/opencode-omo",
    "downloadUrl": "https://openagent3.xyz/downloads/opencode-omo",
    "agentUrl": "https://openagent3.xyz/skills/opencode-omo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/opencode-omo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/opencode-omo/agent.md"
  }
}