docs: rename wren-engine package references to wrenai#2317
Conversation
The wren CLI Python package is now distributed as `wrenai` on PyPI; `wren-engine` is frozen at 0.6.x and deprecated. Update every live docs reference so install instructions, SDK runtime-dep notes, and the architecture page all point at the new name. Also align the straggler skill metadata that the previous rename pass missed (skills/AUTHORING.md, skills/index.json, skills/wren-dlt-connector). Files changed: - docs/core/guides/refine.md (3 pip install lines) - docs/core/sdk/langchain.md (runtime dep note + dependency table) - docs/core/sdk/pydantic.md (runtime dep note + dependency table) - docs/core/reference/architecture.md (Wren Python SDK section) - skills/AUTHORING.md (frontmatter example) - skills/index.json (bundle name) - skills/wren-dlt-connector/SKILL.md (frontmatter author) Historical references in README.md (announcing the repo merge) and core/wren/README.md (the package-rename migration guide itself) are intentionally left as-is — they document the rename, not promote the old name. 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 (7)
WalkthroughThis PR updates documentation and skills metadata to reflect the package rename from ChangesPackage branding and documentation updates
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~5 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
The wren CLI Python package is now distributed as
wrenaion PyPI; the previouswren-enginepackage is frozen at 0.6.x and deprecated. This PR sweeps every live docs and skill-metadata reference so that install instructions, SDK runtime-dep notes, the architecture page, and the skill bundle metadata all match the new name. The previous rename pass missed a handful of stragglers — this finishes the job.What changed (11 references across 7 files)
A. Docs — install commands & runtime-dep references
docs/core/guides/refine.mdpip install "wren-engine[...]"lines →wrenai[...]docs/core/sdk/langchain.mddocs/core/sdk/pydantic.mddocs/core/reference/architecture.mdwren-enginePython package…" sentenceB. Skill bundle metadata (consistency with the rest of the skills, which already use
wrenai)skills/AUTHORING.mdauthor: wren-engine→wrenaiskills/wren-dlt-connector/SKILL.mdauthor: wren-engine→wrenaiskills/index.json"name": "wren-engine"→"wrenai"Intentionally left unchanged
README.md:28(announcement that the oldCanner/wren-enginerepo is archived) andcore/wren/README.md:226–253(the package-rename migration guide itself) reference the old name as part of historical context — touching them would obscure the migration story. Verified by post-edit grep.Test plan
grep -rnE 'wren-engine' docs/ skills/returns no hits outside the two intentionally-kept historical references inREADME.mdandcore/wren/README.md.pip install "wrenai[memory]"works (matches thewrenaipackage on PyPI).skills/index.jsonstill parses as valid JSON andnpx skills add Canner/WrenAI --skill wren-onboardingcontinues to resolve.🤖 Generated with Claude Code
Summary by CodeRabbit
Documentation
Chores