{
  "schemaVersion": "1.0",
  "item": {
    "slug": "requesting-code-review",
    "name": "Requesting Code Review",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/zlc000190/requesting-code-review",
    "canonicalUrl": "https://clawhub.ai/zlc000190/requesting-code-review",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/requesting-code-review",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=requesting-code-review",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "code-reviewer.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": "requesting-code-review",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-08T03:40:48.678Z",
      "expiresAt": "2026-05-15T03:40:48.678Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=requesting-code-review",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=requesting-code-review",
        "contentDisposition": "attachment; filename=\"requesting-code-review-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "requesting-code-review"
      },
      "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/requesting-code-review"
    },
    "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/requesting-code-review",
    "agentPageUrl": "https://openagent3.xyz/skills/requesting-code-review/agent",
    "manifestUrl": "https://openagent3.xyz/skills/requesting-code-review/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/requesting-code-review/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": "Requesting Code Review",
        "body": "Dispatch superpowers:code-reviewer subagent to catch issues before they cascade.\n\nCore principle: Review early, review often."
      },
      {
        "title": "When to Request Review",
        "body": "Mandatory:\n\nAfter each task in subagent-driven development\nAfter completing major feature\nBefore merge to main\n\nOptional but valuable:\n\nWhen stuck (fresh perspective)\nBefore refactoring (baseline check)\nAfter fixing complex bug"
      },
      {
        "title": "How to Request",
        "body": "1. Get git SHAs:\n\nBASE_SHA=$(git rev-parse HEAD~1)  # or origin/main\nHEAD_SHA=$(git rev-parse HEAD)\n\n2. Dispatch code-reviewer subagent:\n\nUse Task tool with superpowers:code-reviewer type, fill template at code-reviewer.md\n\nPlaceholders:\n\n{WHAT_WAS_IMPLEMENTED} - What you just built\n{PLAN_OR_REQUIREMENTS} - What it should do\n{BASE_SHA} - Starting commit\n{HEAD_SHA} - Ending commit\n{DESCRIPTION} - Brief summary\n\n3. Act on feedback:\n\nFix Critical issues immediately\nFix Important issues before proceeding\nNote Minor issues for later\nPush back if reviewer is wrong (with reasoning)"
      },
      {
        "title": "Example",
        "body": "[Just completed Task 2: Add verification function]\n\nYou: Let me request code review before proceeding.\n\nBASE_SHA=$(git log --oneline | grep \"Task 1\" | head -1 | awk '{print $1}')\nHEAD_SHA=$(git rev-parse HEAD)\n\n[Dispatch superpowers:code-reviewer subagent]\n  WHAT_WAS_IMPLEMENTED: Verification and repair functions for conversation index\n  PLAN_OR_REQUIREMENTS: Task 2 from docs/plans/deployment-plan.md\n  BASE_SHA: a7981ec\n  HEAD_SHA: 3df7661\n  DESCRIPTION: Added verifyIndex() and repairIndex() with 4 issue types\n\n[Subagent returns]:\n  Strengths: Clean architecture, real tests\n  Issues:\n    Important: Missing progress indicators\n    Minor: Magic number (100) for reporting interval\n  Assessment: Ready to proceed\n\nYou: [Fix progress indicators]\n[Continue to Task 3]"
      },
      {
        "title": "Integration with Workflows",
        "body": "Subagent-Driven Development:\n\nReview after EACH task\nCatch issues before they compound\nFix before moving to next task\n\nExecuting Plans:\n\nReview after each batch (3 tasks)\nGet feedback, apply, continue\n\nAd-Hoc Development:\n\nReview before merge\nReview when stuck"
      },
      {
        "title": "Red Flags",
        "body": "Never:\n\nSkip review because \"it's simple\"\nIgnore Critical issues\nProceed with unfixed Important issues\nArgue with valid technical feedback\n\nIf reviewer wrong:\n\nPush back with technical reasoning\nShow code/tests that prove it works\nRequest clarification\n\nSee template at: requesting-code-review/code-reviewer.md"
      }
    ],
    "body": "Requesting Code Review\n\nDispatch superpowers:code-reviewer subagent to catch issues before they cascade.\n\nCore principle: Review early, review often.\n\nWhen to Request Review\n\nMandatory:\n\nAfter each task in subagent-driven development\nAfter completing major feature\nBefore merge to main\n\nOptional but valuable:\n\nWhen stuck (fresh perspective)\nBefore refactoring (baseline check)\nAfter fixing complex bug\nHow to Request\n\n1. Get git SHAs:\n\nBASE_SHA=$(git rev-parse HEAD~1)  # or origin/main\nHEAD_SHA=$(git rev-parse HEAD)\n\n\n2. Dispatch code-reviewer subagent:\n\nUse Task tool with superpowers:code-reviewer type, fill template at code-reviewer.md\n\nPlaceholders:\n\n{WHAT_WAS_IMPLEMENTED} - What you just built\n{PLAN_OR_REQUIREMENTS} - What it should do\n{BASE_SHA} - Starting commit\n{HEAD_SHA} - Ending commit\n{DESCRIPTION} - Brief summary\n\n3. Act on feedback:\n\nFix Critical issues immediately\nFix Important issues before proceeding\nNote Minor issues for later\nPush back if reviewer is wrong (with reasoning)\nExample\n[Just completed Task 2: Add verification function]\n\nYou: Let me request code review before proceeding.\n\nBASE_SHA=$(git log --oneline | grep \"Task 1\" | head -1 | awk '{print $1}')\nHEAD_SHA=$(git rev-parse HEAD)\n\n[Dispatch superpowers:code-reviewer subagent]\n  WHAT_WAS_IMPLEMENTED: Verification and repair functions for conversation index\n  PLAN_OR_REQUIREMENTS: Task 2 from docs/plans/deployment-plan.md\n  BASE_SHA: a7981ec\n  HEAD_SHA: 3df7661\n  DESCRIPTION: Added verifyIndex() and repairIndex() with 4 issue types\n\n[Subagent returns]:\n  Strengths: Clean architecture, real tests\n  Issues:\n    Important: Missing progress indicators\n    Minor: Magic number (100) for reporting interval\n  Assessment: Ready to proceed\n\nYou: [Fix progress indicators]\n[Continue to Task 3]\n\nIntegration with Workflows\n\nSubagent-Driven Development:\n\nReview after EACH task\nCatch issues before they compound\nFix before moving to next task\n\nExecuting Plans:\n\nReview after each batch (3 tasks)\nGet feedback, apply, continue\n\nAd-Hoc Development:\n\nReview before merge\nReview when stuck\nRed Flags\n\nNever:\n\nSkip review because \"it's simple\"\nIgnore Critical issues\nProceed with unfixed Important issues\nArgue with valid technical feedback\n\nIf reviewer wrong:\n\nPush back with technical reasoning\nShow code/tests that prove it works\nRequest clarification\n\nSee template at: requesting-code-review/code-reviewer.md"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/zlc000190/requesting-code-review",
    "publisherUrl": "https://clawhub.ai/zlc000190/requesting-code-review",
    "owner": "zlc000190",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/requesting-code-review",
    "downloadUrl": "https://openagent3.xyz/downloads/requesting-code-review",
    "agentUrl": "https://openagent3.xyz/skills/requesting-code-review/agent",
    "manifestUrl": "https://openagent3.xyz/skills/requesting-code-review/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/requesting-code-review/agent.md"
  }
}