docs: add Intelligence Over Scripts to system prompt and PR issue-linkage guidance#2446
Conversation
…kage guidance - Add Intelligence Over Scripts as a core principle in build.txt so every worker session has it in the reasoning chain, not just in subagent docs that may never be read - Add mandatory issue-linkage guidance to full-loop.md PR Create step: workers must search for ALL related issues (regardless of title format) and include closing keywords for each in the PR body - Root cause: duplicate issues created under different title formats (coderabbit: vs t1234:) bypassed title-prefix dedup, and workers closing duplicates with comments instead of PR keywords left no GitHub PR-issue link
|
Warning Rate limit exceeded
⌛ How to resolve this issue?After the wait time has elapsed, 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 have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. 📒 Files selected for processing (2)
✨ 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 |
|
Warning You have reached your daily quota limit. Please wait up to 24 hours and I will start processing your requests again! |
🔍 Code Quality Report�[0;35m[MONITOR]�[0m Code Review Monitoring Report �[0;34m[INFO]�[0m Latest Quality Status: �[0;34m[INFO]�[0m Recent monitoring activity: 📈 Current Quality Metrics
Generated on: Fri Feb 27 03:18:34 UTC 2026 Generated by AI DevOps Framework Code Review Monitoring |
|



Summary
build.txt(the system prompt loaded by every worker) so it's in the active reasoning chain — not buried inarchitecture.mdwhere headless workers may never read itfull-loop.mdStep 4 (PR Create): workers must search for ALL related issues before composing the PR body and includeCloses #NNNfor each matchProblem
PRs weren't connecting to the issues they resolved (observed on #2421, #2341):
coderabbit: Fix X, thenclaim-task-id.shcreatest1234: Fix Xfor the same task. The deterministic title-prefix dedup (startswith("t1234:")) misses the CodeRabbit-format issue entirely..localdomains / LocalWP to build-plus.md Domain Expertise Check #2421, but comments don't create GitHub PR-issue links. OnlyCloses/Fixes/Resolves #NNNin the PR body does.needs-reviewlabel.Fix approach
Intelligence over scripts: instead of adding more regex/heuristic dedup logic to bash scripts, tell the worker (an LLM that can reason about semantic similarity) to search for all related issues and link them properly. Two guidance-doc edits, zero new scripts.
Also cleaned up labels on #2421 and #2341 directly.