dune-app-review

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Dune App Review

Dune App Review

Fetch the official review command and follow it exactly:
bash
gh api repos/cognitedata/dune-app-reviews/contents/.claude/commands/dune-review.md \
  --jq '.content' | base64 -d
Adapt it for a local developer review:
  • Treat the current workspace as the app under review.
  • Skip all ticket, PR, overview, submodule, and
    reviews/<TICKET-ID>/...
    setup steps.
  • If the upstream command asks for Jira ticket or PR input, ignore that requirement and continue with the local codebase.
  • Use
    reviews/dune-app-review/feedback-round-<N>/
    as the artifact directory for local reviews.
  • If no local feedback round exists yet, use
    reviews/dune-app-review/feedback-round-1/
    . For reruns, increment the round number.
After the review artifacts are written, fetch the official verification command and follow it too:
bash
gh api repos/cognitedata/dune-app-reviews/contents/.claude/commands/dune-review-verify.md \
  --jq '.content' | base64 -d
Adapt verification the same way:
  • Skip ticket and feedback-round lookup.
  • Read the three artifacts from
    reviews/dune-app-review/feedback-round-<N>/
    instead of
    reviews/<TICKET-ID>/feedback-round-N/
    .
  • Verify the review against the local source code before declaring it complete.
获取官方评审命令并严格执行:
bash
gh api repos/cognitedata/dune-app-reviews/contents/.claude/commands/dune-review.md \
  --jq '.content' | base64 -d
针对本地开发者评审进行适配:
  • 当前工作区视为待评审应用。
  • 跳过所有工单、PR、概述、子模块以及
    reviews/<TICKET-ID>/...
    的设置步骤。
  • 如果上游命令要求输入Jira工单或PR信息,忽略该要求并继续处理本地代码库。
  • 使用
    reviews/dune-app-review/feedback-round-<N>/
    作为本地评审的成果物目录。
  • 如果尚未存在本地反馈轮次,使用
    reviews/dune-app-review/feedback-round-1/
    。重新运行时,递增轮次编号。
生成评审成果物后,获取官方验证命令并同样执行:
bash
gh api repos/cognitedata/dune-app-reviews/contents/.claude/commands/dune-review-verify.md \
  --jq '.content' | base64 -d
按同样方式适配验证步骤:
  • 跳过工单和反馈轮次查找。
  • reviews/dune-app-review/feedback-round-<N>/
    而非
    reviews/<TICKET-ID>/feedback-round-N/
    读取三类成果物。
  • 在宣布评审完成前,针对本地源代码验证评审结果。