feat(help): surface agent skill install in clerk --help#191
Conversation
🦋 Changeset detectedLatest commit: ae10b67 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
|
Warning Rate limit exceeded
Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 56 minutes and 51 seconds. ⌛ 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. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (3)
📝 WalkthroughWalkthroughThe changes add instructional help text to the Clerk CLI to surface a new "Clerk skills" feature. A Changesets entry documents the patch release, the README is updated to show the Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes 🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. 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 |
95fa2a7 to
d1585b1
Compare
Append a one-line tip under the Commands section pointing to `clerk skill install`, so users discover how to give AI coding agents Clerk context without hunting through the subcommand tree.
d1585b1 to
ae10b67
Compare
Summary
Commands:section ofclerk --help(and bareclerkwith no subcommand) pointing toclerk skill install. Rendered via Commander'saddHelpText('after', …)on the root program, so both paths pick it up without duplicating the string.clerkHelpConfiginpackages/cli-core/src/lib/help.ts) untouched — the tip composes as Commander's "after" hook around the customformatHelp.README.md's help snippet to keep the usage docs in sync with the live output (per.claude/rules/commands.md).Before:
After:
Test plan
bun run src/cli.ts --helpshows the tip afterhelp [command]bun run src/cli.ts(no args) shows the same tip and exits 1 (unchanged)clerk init --help,clerk config --help, etc.) are unaffectedbun run format,bun run lint,bun run typecheck, andbun run testall pass locally