{
  "schemaVersion": "1.0",
  "item": {
    "slug": "codeberg",
    "name": "Codeberg",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/razzeee/codeberg",
    "canonicalUrl": "https://clawhub.ai/razzeee/codeberg",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/codeberg",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=codeberg",
    "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": "codeberg",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T22:20:34.316Z",
      "expiresAt": "2026-05-08T22:20:34.316Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=codeberg",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=codeberg",
        "contentDisposition": "attachment; filename=\"codeberg-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "codeberg"
      },
      "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/codeberg"
    },
    "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/codeberg",
    "agentPageUrl": "https://openagent3.xyz/skills/codeberg/agent",
    "manifestUrl": "https://openagent3.xyz/skills/codeberg/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/codeberg/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": "Codeberg Skill",
        "body": "Use the tea CLI to interact with Codeberg. Codeberg is a Forgejo instance, and the tea CLI is fully compatible with it."
      },
      {
        "title": "Pull Requests",
        "body": "List open pull requests:\n\ntea pulls --repo owner/repo\n\nCheck details of a PR:\n\ntea pr 55 --repo owner/repo"
      },
      {
        "title": "Issues",
        "body": "List open issues:\n\ntea issues --repo owner/repo\n\nView an issue:\n\ntea issue 123 --repo owner/repo"
      },
      {
        "title": "Actions (CI/CD)",
        "body": "List repository secrets:\n\ntea actions secrets list --repo owner/repo\n\nList repository variables:\n\ntea actions variables list --repo owner/repo"
      },
      {
        "title": "API for Advanced Queries",
        "body": "The tea api command is useful for accessing data not available through other subcommands.\n\nGet PR with specific fields (requires jq for filtering):\n\ntea api repos/owner/repo/pulls/55 | jq '.title, .state, .user.login'"
      },
      {
        "title": "Logins",
        "body": "To use tea with Codeberg, you first need to add your login:\n\ntea login add --name codeberg --url https://codeberg.org --token <your-token>\n\nThen you can use --login codeberg in your commands:\n\ntea pulls --repo owner/repo --login codeberg\n\nList all configured logins:\n\ntea logins"
      }
    ],
    "body": "Codeberg Skill\n\nUse the tea CLI to interact with Codeberg. Codeberg is a Forgejo instance, and the tea CLI is fully compatible with it.\n\nPull Requests\n\nList open pull requests:\n\ntea pulls --repo owner/repo\n\n\nCheck details of a PR:\n\ntea pr 55 --repo owner/repo\n\nIssues\n\nList open issues:\n\ntea issues --repo owner/repo\n\n\nView an issue:\n\ntea issue 123 --repo owner/repo\n\nActions (CI/CD)\n\nList repository secrets:\n\ntea actions secrets list --repo owner/repo\n\n\nList repository variables:\n\ntea actions variables list --repo owner/repo\n\nAPI for Advanced Queries\n\nThe tea api command is useful for accessing data not available through other subcommands.\n\nGet PR with specific fields (requires jq for filtering):\n\ntea api repos/owner/repo/pulls/55 | jq '.title, .state, .user.login'\n\nLogins\n\nTo use tea with Codeberg, you first need to add your login:\n\ntea login add --name codeberg --url https://codeberg.org --token <your-token>\n\n\nThen you can use --login codeberg in your commands:\n\ntea pulls --repo owner/repo --login codeberg\n\n\nList all configured logins:\n\ntea logins"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/razzeee/codeberg",
    "publisherUrl": "https://clawhub.ai/razzeee/codeberg",
    "owner": "razzeee",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/codeberg",
    "downloadUrl": "https://openagent3.xyz/downloads/codeberg",
    "agentUrl": "https://openagent3.xyz/skills/codeberg/agent",
    "manifestUrl": "https://openagent3.xyz/skills/codeberg/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/codeberg/agent.md"
  }
}