docs(skills): quote pip install wrenai[…] consistently#2318
Conversation
zsh (default shell on macOS) treats unquoted square brackets as a glob pattern and errors out with `zsh: no matches found` on `pip install wrenai[memory]`. Every other place in the skill bundle already wraps the spec in double quotes; bring these two stragglers in line so the commands work on bash and zsh alike. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
WalkthroughThis PR quotes pip package names in installation instructions across skills documentation to improve shell compatibility and consistency. The ChangesSkills Documentation Updates
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related PRs
Suggested labels
Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ 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 |
Summary
Two leftover skill files used unquoted
pip install wrenai[<extra>]inside backticks. On zsh (the default macOS shell) the unquoted[…]is parsed as a glob pattern and the command fails withzsh: no matches found. Every other skill wraps the spec in double quotes; this PR brings the stragglers in line.skills/README.mdpip install wrenai/pip install wrenai[<datasource>]→ quotedskills/wren-generate-mdl/SKILL.mdpip install wrenai[<datasource>]→ quotedThis is the follow-up to #2317 — same theme, two stragglers that didn't get touched there.
Test plan
grep -rnE 'pip install [^"]?wrenai\[' skills/returns no hits.pip install "wrenai[memory]"runs withoutzsh: no matches found.🤖 Generated with Claude Code
Summary by CodeRabbit
Release Notes