Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Standardized `--target` choices, replaced Unicode with ASCII for cp1252 compatibility, and documented missing CLI flags (#519)
- `apm install -g` now correctly deploys to user-scope directories, skips unsupported primitives, and cleans up on uninstall -- including multi-level paths like `~/.config/opencode/` (#542)
- `apm deps update` now correctly re-resolves transitive dependencies instead of reusing stale locked SHAs (#548)
- `apm install` now warns when two packages deploy a native skill with the same name, identifying both the incoming and previous owner so users know which dependency to remove (#545)

### Added

Expand Down
15 changes: 15 additions & 0 deletions docs/src/content/docs/guides/skills.md
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,21 @@ If you see a skill name validation warning:
1. **Check naming:** Names must be lowercase, 1-64 chars, hyphens only (no underscores)
2. **Auto-normalization:** APM automatically normalizes invalid names when possible

### Skill Name Collision Warning

If you see a warning like:

```
[!] Skill 'humanizer': replaced 'org/other-package' -- remove one package to avoid this
```
Comment on lines +383 to +385

Copilot AI Apr 4, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

Copilot uses AI. Check for mistakes.

Two of your installed packages deploy a native skill with the same name. The second install
overwrote the first. To resolve:

1. **Identify the conflict**: The warning names both the incoming package and the previous owner.
2. **Remove one**: Uninstall the package you no longer need with `apm uninstall owner/repo`.
3. **Reinstall**: Run `apm install` again to restore a clean state.

### Metadata Missing

If skill lacks APM metadata:
Expand Down
Loading