docs(skill): teach the Claude Code plugin to derive BECs from a CLAUDE.md (F4)#49
Conversation
…E.md Updates the becwright skill, command and plugin README for the agent authoring flow (F4): the --from-claude-md / --baseline init flavors, the new checks (require, max_lines, filename) and exclude:, and the MCP loop — propose_rules_ from_claude_md → list_checks (vocabulary) → preview_rule (validate) → add_rule (confirm). Core rule of thumb baked in: only deterministic prohibitions become BECs; judgment-based guidance stays in CLAUDE.md.
|
Warning Review limit reached
Next review available in: 37 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: defaults 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 |
Why (F4 — closes the agent/MCP layer)
F1–F3 built the MCP tools (
preview_rule,propose_rules_from_claude_md,add_rule). F4 teaches the Claude Code skill/plugin to actually use them, so anagent session turns the deterministic parts of a
CLAUDE.mdinto BECs — and,crucially, knows what not to convert.
What
Updates
integrations/claude-code/(skill, command, plugin README):thumb: deterministic → BEC; judgment-based → stays in CLAUDE.md ("if you can't
name a check that verifies it, it's not a BEC"). Fast path:
--from-claude-md.Thorough path: the MCP loop —
propose_rules_from_claude_md(start) →list_checks(vocabulary) →preview_rule(validate before writing) →add_rule(confirm=true)(persist, after showing the user).require,max_lines,filename, andexclude:./becwright initnow picks the right flavor (--from-claude-md/--baseline)and offers the MCP loop when the server is connected.
Skill/plugin (markdown) only — no code, no rule-format change.
The full line this completes
"Make more of CLAUDE.md deterministic": 3 agnostic checks (#44) →
max_linesauto-mapping (#45) → MCP tools F1–F3 (#46, #47, #48) → the skill that drives
them (F4). becwright guarantees execution; the agent does the translation.
Test plan