docs(agents): document agent label checklist when opening a PR#393
docs(agents): document agent label checklist when opening a PR#393castrojo wants to merge 3 commits into
Conversation
Onboards projectbluefin/common into the hive agent workflow. - bonedigger.yml: reusable lifecycle bot (/claim /unclaim /approve) with Common ⚙️ branding. Auto-creates queue/agent-ready, queue/claimed, and all lifecycle labels on first run. - hive-status-sync.yml: hourly sync of hive agent formation status to the todo.projectbluefin.io project (PVT_kwDOCCE0ds4BLZBC). Reports common's CI state and issue queue counts. Requires PROJECT_TOKEN secret. Needs: add PROJECT_TOKEN secret to projectbluefin/common, add P0 label. Assisted-by: Claude Sonnet 4.6 via GitHub Copilot CLI
Documents ~/src/hive-status as the deterministic, zero-auth entry point for hive priority triage at the start of every agent session. Covers P0/P1 interpretation, advisory item ranking, hive label taxonomy, and follow-up gh search commands. Assisted-by: Claude Sonnet 4.6 via GitHub Copilot Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
When an agent opens a PR: remove queue/agent-ready from the issue, add queue/claimed to both the issue and the PR. Assisted-by: Claude Sonnet 4.6 via GitHub Copilot Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
|
Warning Review limit reached
More reviews will be available in 29 minutes and 51 seconds. Learn how PR review limits work. Your organization has run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans include higher PR review limits than trial, open-source, and free plans. In all cases, reviews become available again over time. During sustained high-volume PR review activity, CodeRabbit may temporarily slow when the next review becomes available. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (4)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
hanthor
left a comment
There was a problem hiding this comment.
bonedigger.yml calls a reusable workflow pinned to @main with secrets: inherit:
uses: projectbluefin/bonedigger/.github/workflows/lifecycle.yml@main
Any future push to projectbluefin/bonedigger's main branch will run with access to all secrets in this repo. Pin to a specific commit SHA to prevent unintended changes from automatically inheriting those permissions.
Also: PR #391 adds the same two workflow files. Close #391 before merging this one to avoid a merge conflict.
|
LGTM — can't self-approve (castrojo authored), flagging for 2nd review.
Note: PR #391 covers only the two workflow files (subset of this PR). Recommend closing #391 in favor of this one. |
hanthor
left a comment
There was a problem hiding this comment.
Two blocking issues remain:
- Both #391 and #393 add identical
.github/workflows/bonedigger.ymland.github/workflows/hive-status-sync.yml, so whichever lands second will conflict unless one PR drops those workflow files. bonedigger.ymlstill usesprojectbluefin/bonedigger/.github/workflows/lifecycle.yml@mainwithsecrets: inherit. Please pin that reusable workflow to a specific commit SHA before merging.
Agents were not updating labels after opening a PR, leaving issues appearing unclaimed in the queue.
Add one-liner to the issue lifecycle section: when an agent opens a PR, remove
queue/agent-readyfrom the issue and addqueue/claimedto both issue and PR.Assisted-by: Claude Sonnet 4.6 via GitHub Copilot