Uh oh!
There was an error while loading. Please reload this page.
[docs] Update documentation for features from 2026-04-04 - #569
[docs] Update documentation for features from 2026-04-04#569Daniel Meppiel (danielmeppiel) wants to merge 1 commit into
Conversation
- Add CHANGELOG.md entry under [Unreleased] Fixed for the new cross-package native skill name collision warning - Add 'Skill Name Collision Warning' troubleshooting section in docs/src/content/docs/guides/skills.md explaining the warning message and how to resolve the conflict Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Updates user documentation to reflect the newly added native skill name collision warning behavior introduced in #545, ensuring users understand what the warning means and how to resolve it.
Changes:
- Added a troubleshooting section describing the "Skill Name Collision Warning" and remediation steps.
- Added a
Fixedentry under[Unreleased]documenting the native-skill collision warning behavior.
Show a summary per file
| File | Description |
|---|---|
| docs/src/content/docs/guides/skills.md | Adds troubleshooting guidance for native skill name collisions and how to resolve them. |
| CHANGELOG.md | Documents the collision warning behavior under [Unreleased] -> Fixed. |
Copilot's findings
- Files reviewed: 2/2 changed files
- Comments generated: 1
| ``` | ||
| [!] Skill 'humanizer': replaced 'org/other-package' -- remove one package to avoid this | ||
| ``` |
There was a problem hiding this comment.
The example warning message does not match the actual collision warning emitted by SkillIntegrator. Current code formats the detail as "Skill '' from '' replaced '<prev_owner>' -- remove one package to avoid this"; the docs example omits the "from ''" portion (and uses a colon), but the surrounding text says the warning names both packages. Update the example (and any related wording) so it mirrors the real message format users will see.
Documentation Updates - 2026-04-04
This PR updates the documentation based on features merged in the last 24 hours.
Features Documented
Changes Made
CHANGELOG.mdto add aFixedentry under[Unreleased]for the cross-package native skill collision detection introduced in [fix] warn when two packages deploy a native skill with the same name #545.docs/src/content/docs/guides/skills.mdexplaining the new warning message and how users can resolve the conflict.Merged PRs Referenced
[fix] warn when two packages deploy a native skill with the same name-- when two installed packages deploy a native skill with the same leaf directory name, APM now emits a warning identifying both the incoming package and the previous owner, and tells the user to remove one to resolve the conflict. Previously the second install silently overwrote the first.Notes
No other PRs were merged in the last 24 hours. The CHANGELOG entry and troubleshooting note cover all user-facing aspects of #545.